@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes 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;
  }
}
@keyframes grow3 {
  to {
    transform: scale(1.2);
    opacity: 0;
  }
  from {
    transform: scale(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;
}
.pointItem {
  width: 100%;
  height: 0;
  transform: translateY(-1.3rem);
}
:root {
  /* COLOR */
  --active_color: #0059FF;
  --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;
  --active_color2: #5CE6FF;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem !important;
}
.mar_t13 {
  margin-top: 0.13rem !important;
}
.mar_t15 {
  margin-top: 0.15rem !important;
}
.mar_t17 {
  margin-top: 0.17rem !important;
}
.mar_t20 {
  margin-top: 0.2rem !important;
}
.mar_t23 {
  margin-top: 0.23rem !important;
}
.mar_t25 {
  margin-top: 0.25rem !important;
}
.mar_t27 {
  margin-top: 0.27rem !important;
}
.mar_t30 {
  margin-top: 0.3rem !important;
}
.mar_t33 {
  margin-top: 0.33rem !important;
}
.mar_t35 {
  margin-top: 0.35rem !important;
}
.mar_t37 {
  margin-top: 0.37rem !important;
}
.mar_t40 {
  margin-top: 0.4rem !important;
}
.mar_t43 {
  margin-top: 0.43rem !important;
}
.mar_t45 {
  margin-top: 0.45rem !important;
}
.mar_t47 {
  margin-top: 0.47rem !important;
}
.mar_t50 {
  margin-top: 0.5rem !important;
}
.mar_t53 {
  margin-top: 0.53rem !important;
}
.mar_t55 {
  margin-top: 0.55rem !important;
}
.mar_t57 {
  margin-top: 0.57rem !important;
}
.mar_t60 {
  margin-top: 0.6rem !important;
}
.mar_t63 {
  margin-top: 0.63rem !important;
}
.mar_t65 {
  margin-top: 0.65rem !important;
}
.mar_t67 {
  margin-top: 0.67rem !important;
}
.mar_t70 {
  margin-top: 0.7rem !important;
}
.mar_t73 {
  margin-top: 0.73rem !important;
}
.mar_t75 {
  margin-top: 0.75rem !important;
}
.mar_t77 {
  margin-top: 0.77rem !important;
}
.mar_t80 {
  margin-top: 0.8rem !important;
}
.mar_t83 {
  margin-top: 0.83rem !important;
}
.mar_t85 {
  margin-top: 0.85rem !important;
}
.mar_t87 {
  margin-top: 0.87rem !important;
}
.mar_t90 {
  margin-top: 0.9rem !important;
}
.mar_t93 {
  margin-top: 0.93rem !important;
}
.mar_t95 {
  margin-top: 0.95rem !important;
}
.mar_t97 {
  margin-top: 0.97rem !important;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
}
.w1440,
.wrap {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1440,
  .wrap {
    max-width: 75%;
  }
}
@media (max-width:990px) {
  .w1440,
  .wrap {
    max-width: 100%;
    padding: 0 20px;
  }
}
.container {
  width: 100%;
  max-width: 1790px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .container {
    max-width: 93.22916%;
  }
}
@media (max-width:990px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.15rem;
  font-family: "Montserrat";
  color: #000000;
  font-size: var(--font16);
}
main.active {
  --header-height: 0.8rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.locate_item {
  width: 100%;
  height: 0;
  transform: translateY(-1.6rem);
}
.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;
  }
}
.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;
}
.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.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;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
.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;
  }
  .top_info .ins_title {
    width: 100% !important;
  }
}
ul li.swiper-slide-active {
  pointer-events: initial;
}
ul li.swiper-slide-active .swiFg .swiOne {
  transform: translateY(0);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.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;
}
.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;
}
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.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;
}
.swiFg {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.swiFg .swiOne {
  transform: translateY(100%);
}
section * {
  scrollbar-color: var(--active_color2) #d4d6d700;
  scrollbar-width: thin;
}
section *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
section *::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
section *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.81rem;
}
.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;
}
.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.24rem;
  height: 0.24rem;
  border-radius: 0.04rem;
  position: relative;
  z-index: 1;
  top: -0.1em;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
}
.layui_item .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
@media (max-width:990px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.3em;
  }
}
/* --------------------------------------------------------------- 新增公共组件 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
.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;
  gap: 0.16rem;
}
.idxPageShow span {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 0.04rem;
  opacity: 1;
  border: 1px solid #CCCCCC;
  background: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
  border-color: var(--active_color);
}
.idxPageShow.bgFFF span {
  border: 1px solid #FFFFFF99;
}
.idxPageShow.bgFFF .swiper-pagination-bullet-active {
  background: var(--active_color2);
  border-color: var(--active_color2);
}
.idx_more {
  width: fit-content;
  --border: 1px solid #FFFFFF4D;
  --color: #FFFFFF;
  --bgColor: none;
}
.idx_more .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}
.idx_more .more .icon {
  width: 0.64rem;
  height: 0.64rem;
  min-width: 40px;
  min-height: 40px;
  border: var(--border);
  background: var(--bgColor);
  border-radius: 0.08rem;
}
.idx_more .more .word {
  width: fit-content;
  padding: 0 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: var(--border);
  background: var(--bgColor);
  height: 0.64rem;
  min-height: 40px;
  color: var(--color);
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font16);
  font-weight: 500;
}
.idx_more .more:hover {
  gap: 0rem;
  transition: all linear 0 !important;
}
.idx_more .more:hover .icon {
  transform: translateX(1px);
}
.idx_more.bgAc {
  --border: 1px solid var(--active_color);
  --color: var(--active_color2);
  --imgFit: brightness(0) invert(1);
  --bgColor: var(--active_color);
}
.idx_more.bgDD {
  --border: 1px solid #DDDDDD;
  --color: #000000E5;
  --imgFit: unset;
  --bgColor: none;
}
.idx_more.bgDD .word {
  font-weight: 500;
}
.idx_more2 {
  width: fit-content;
}
.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;
  gap: 0.16rem;
  font-size: var(--font16);
  color: #DDD;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_more2 .more img {
  width: 0.12rem;
  filter: brightness(0) invert(0.9);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more:hover {
  color: #000000 !important;
}
.idx_more2 .more:hover img {
  filter: unset !important;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 600;
}
.public_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.48rem;
}
.public_item .item {
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-size: var(--font18);
  color: #999999;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.public_item .item::after {
  content: '';
  position: absolute;
  top: 0.4em;
  right: calc(100% + 0.12rem);
  width: 0.08rem;
  height: 0.08rem;
  background: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(0.12rem);
  opacity: 0;
}
.public_item .item:hover {
  color: #000;
}
.public_item .item.active {
  color: var(--active_color);
}
.public_item .item.active::after {
  transform: translateX(0);
  opacity: 1;
}
@media (max-width:990px) {
  .public_item {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.2rem !important;
  }
  .public_item .item {
    width: 100%;
    height: auto;
    padding: 0.2rem;
    color: #333;
    font-weight: normal;
    border-bottom: 1px solid #0000001A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-left: 0.3rem;
  }
  .public_item .item::after {
    top: unset;
    left: 0;
    opacity: 01 !important;
    transform: translateX(0);
  }
  .public_item .item.active {
    color: var(--active_color2) !important;
    font-weight: 600;
  }
}
.idx_laypage {
  margin-top: 0.96rem;
}
.tow_shadow::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff00, #ffffff 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadow::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #ffffff00, #ffffff 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadow00::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #00000000, #000000 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadow00::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #00000000, #000000 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadowf5::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #00000000, #F5F5F5 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadowf5::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #00000000, #F5F5F5 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadow13::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #13131300, #131313 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.tow_shadow13::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #13131300, #131313 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: calc(100% + 0.2rem);
  z-index: 3;
  pointer-events: none;
}
.idx_homeInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeInfo .fixedPoint {
  position: absolute;
  width: auto;
  height: 100vh;
  z-index: 10;
  right: 0.5rem;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeInfo .fixedPoint .point_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.idx_homeInfo .fixedPoint .point_box .point {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 0.04rem;
  opacity: 1;
  border: 1px solid #CCCCCC;
  background: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeInfo .fixedPoint .point_box .point.active {
  background: var(--active_color2);
  border-color: var(--active_color2);
}
@media (max-width:990px) {
  .idx_homeInfo .fixedPoint {
    display: none;
  }
}
.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;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  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;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 600;
  line-height: 1.07;
  text-transform: capitalize;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 img {
  width: 0.44rem;
  height: 0.44rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.48rem;
}
.idx_homeCon1 .swiper_box ul li .img_w100 {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .img_w100 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.idx_homeCon1 .idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  bottom: 0.64rem;
  left: 0;
  z-index: 10;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
    font-size: var(--font48);
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.idx_homeCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem 0.48rem;
  padding-bottom: 0;
  border-radius: 0.08rem;
  overflow: hidden;
  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;
  cursor: pointer;
  -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 .item_box .item .word {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .word .t2 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.08rem;
  color: #333;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .word .idx_more2 {
  margin-top: 0.32rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .img .pb {
  padding-bottom: 76%;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .img .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 .item_box .item .imgBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .imgBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .imgBg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .imgBg2 img,
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item .imgBg2 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2 {
  width: 100%;
  height: auto;
  padding: 0;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2 .word {
  width: 100%;
  height: auto;
  position: absolute;
  padding: 0.4rem 0.48rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2 .imgBig {
  width: 100%;
  height: auto;
  -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 .item_box .item.grid2 .imgBig img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2:hover .idx_more2 .more {
  color: var(--active_color);
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2:hover .idx_more2 .more img {
  filter: unset;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover {
  background: var(--active_color);
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .imgBg,
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .imgBg2 {
  opacity: 1;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .word .t1,
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .word .t2 {
  color: #FFF;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .word .idx_more2 .more {
  color: #FFFFFF;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item:hover .word .idx_more2 .more img {
  filter: brightness(0) invert(1);
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.bgImg:hover {
  background: #FFF;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.bgImg:hover .img,
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.bgImg:hover .imgBig {
  opacity: 0;
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon2 .center_box .swiper_box ul li .centerInfo .item_box .item.grid2 .word {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
}
.idx_homeCon3 .swiper_box {
  width: 100%;
  height: auto;
  background: #000000;
}
.idx_homeCon3 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 0.96rem;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 600;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.32rem;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: 100%;
}
.idx_homeCon3 .swiper_box ul li .centerInfo .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 .swiper_info {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.74rem;
  left: 0;
  z-index: 10;
}
.idx_homeCon3 .swiper_info .content {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .swiper_info .content .idxSwiperNuber {
  width: fit-content;
  color: #FFFFFF;
  font-weight: 500;
}
.idx_homeCon3 .swiper_info .content .idxSwiperNuber .swiper-pagination-current {
  font-size: var(--font48);
  font-weight: 600;
  display: inline-block;
  padding-right: 0.12rem;
  color: var(--active_color2);
}
.idx_homeCon3 .swiper_info .content .swiper_item {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.32rem;
}
.idx_homeCon3 .swiper_info .content .swiper_item ul li {
  width: auto;
  height: auto;
}
.idx_homeCon3 .swiper_info .content .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  padding-top: 0.24rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.idx_homeCon3 .swiper_info .content .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FFFFFF4D;
  -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 .swiper_info .content .swiper_item ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--active_color2);
  top: 0;
  left: 0;
  z-index: 10;
}
.idx_homeCon3 .swiper_info .content .swiper_item ul li.active .centerInfo::before {
  width: 100%;
  transition: all linear 5s;
}
@media (max-width:990px) {
  .idx_homeCon3 .swiper_box ul li .centerInfo .img_w100 img.wap {
    min-height: 500px;
    object-fit: cover;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.38rem;
  padding-bottom: 0.38rem;
  background: linear-gradient(221deg, rgba(245, 245, 245, 0) 1.96%, #F5F5F5 44.48%);
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .top_info {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .top_info .idx_title {
  width: fit-content;
}
.idx_homeCon4 .center_box .top_info .idx_title .idx_more {
  margin-top: 0.4rem;
}
.idx_homeCon4 .center_box .top_info .item_box {
  width: 38.8%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.32rem 0.38rem;
}
.idx_homeCon4 .center_box .top_info .item_box .item {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .top_info .item_box .item .icon {
  width: 100%;
  height: auto;
  font-size: var(--font48);
  font-weight: 600;
}
.idx_homeCon4 .center_box .top_info .item_box .item .icon i {
  color: var(--active_color);
  font-style: normal;
}
.idx_homeCon4 .center_box .top_info .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.04rem;
}
.idx_homeCon4 .center_box .map_info {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .center_box .map_info .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.idx_homeCon4 .center_box .map_info .item_box .item {
  width: 0.08rem;
  height: 0.08rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
  background: var(--active_color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .map_info .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  background: #0059ff6b;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: grow3 var(--time) linear infinite;
}
.idx_homeCon4 .center_box .map_info .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.88rem;
  height: 0.88rem;
  background: #0059FF1A;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(0);
}
.idx_homeCon4 .center_box .map_info .item_box .item .icon {
  width: max-content;
  height: auto;
  position: absolute;
  left: calc(100% + 0.3rem);
  font-size: var(--font20);
  font-weight: 500;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB {
  width: max-content;
  max-width: 3.94rem;
  height: auto;
  right: -0.46rem;
  background: var(--active_color);
  top: 0.57rem;
  position: absolute;
  padding: 0.23rem 0.27rem 0.49rem 0.31rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  border-radius: 0.15rem;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 24px 60px rgba(0, 89, 255, 0.4);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB .img {
  width: 0.48rem;
  height: 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;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--active_color2);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB .word .t1 {
  font-weight: 500;
}
.idx_homeCon4 .center_box .map_info .item_box .item .wordB .word .t2 {
  margin-top: 0.16rem;
}
.idx_homeCon4 .center_box .map_info .item_box .item.left .wordB {
  left: -0.46rem;
}
.idx_homeCon4 .center_box .map_info .item_box .item.left .wordB::after {
  left: 0;
  border-width: 0.2rem 0 0 0.25rem;
  border-color: transparent transparent transparent #0059FF;
}
.idx_homeCon4 .center_box .map_info .item_box .item.left .icon {
  left: unset;
  right: calc(100% + 0.3rem);
}
.idx_homeCon4 .center_box .map_info .item_box .item:hover {
  z-index: 10;
}
.idx_homeCon4 .center_box .map_info .item_box .item:hover .wordB {
  opacity: 1;
  visibility: visible;
}
.idx_homeCon4 .center_box .map_info .item_box .item:hover::before {
  transform: scale(1);
  opacity: 0;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_homeCon4 .center_box .top_info .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .center_box .top_info .item_box {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .idx_homeCon4 .center_box .map_info {
    margin-top: 0.8rem;
  }
  .idx_homeCon4 .center_box .map_info .item_box .item .wordB {
    display: none;
  }
  .idx_homeCon4 .bgImg_adap {
    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;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .top_info {
  width: 100%;
  height: auto;
  gap: 0.4rem;
}
.idx_homeCon5 .center_box .top_info .idx_title {
  width: fit-content;
}
.idx_homeCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .swiper_box::after {
  content: '';
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
}
.idx_homeCon5 .center_box .swiper_box::before {
  content: '';
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #ffffff00 0%, #FFFFFF 15%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
.idx_homeCon5 .center_box .swiper_box ul li {
  width: auto;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F4F5F9;
  border-radius: 0.08rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.31rem;
  padding-top: 0.4rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
  min-height: calc(3em * 1.5);
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 1.03rem;
  border-top: 1px solid #DDD;
  padding-top: 0.33rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box .time {
  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;
  font-size: var(--font16);
  color: #666;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box .time i {
  color: #CCC;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box .time img {
  width: 0.26rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box .idx_more2 .more {
  color: #999;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word .time_box .idx_more2 .more img {
  filter: brightness(0) invert(0.7);
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.04);
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon5 .center_box .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .icon {
  color: var(--active_color);
  padding-bottom: 0.16rem;
  font-weight: 500;
}
.ins_title .t1 {
  font-weight: 600;
}
.ins_title .t2 {
  margin-top: 0.24rem;
  font-weight: normal;
  color: #666666;
  line-height: 1.5;
}
.swiper_btnCon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.08rem;
}
@media (max-width:990px) {
  .swiper_btnCon {
    display: none !important;
  }
}
.swiper_btnImg {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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 #DDDDDD;
  border-radius: 0.12rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_btnImg i {
  color: var(--active_color);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
.swiper_btnImg:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.swiper_btnImg:hover i {
  color: var(--active_color2);
}
@media (max-width:990px) {
  .swiper_btnImg {
    display: none !important;
  }
}
/*
    <div class="pagerBox">
        <a href="#" class="icon"><i class="iconfont icon-jiantou4"></i>Prev</a>
        <a href="#" class="icon"><i class="iconfont icon-daohang1"></i>Case List</a>
        <a href="#" class="icon">Next<i class="iconfont icon-jiantou1"></i></a>
    </div>
*/
.pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.32rem;
}
.pagerBox .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;
  gap: 0.12rem;
  width: max-content;
  padding: 0 0.4rem;
  border: 1px solid #0000001A;
  height: 0.56rem;
  min-height: 40px;
  border-radius: 0.12rem;
  font-size: var(--font16);
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagerBox .icon i {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font16);
}
.pagerBox .icon span {
  font-size: var(--font16);
  color: #000;
}
.pagerBox .icon:hover {
  border-color: var(--active_color);
  background: var(--active_color);
  color: var(--color_fff);
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: #F5F5F5;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin-top: 0.8rem;
}
.ins_productCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding: 0.49rem;
  border-radius: 0.12rem;
  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_productCon1 .center_box .item_box .item .images_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .images_box .img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .images_box .img .pb {
  padding-bottom: 62.2%;
}
.ins_productCon1 .center_box .item_box .item .images_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;
}
.ins_productCon1 .center_box .item_box .item .images_box .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item .images_box .model {
  width: 100%;
  height: auto;
  padding-bottom: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 0.4rem;
  border-bottom: 1px solid #0000001A;
  margin-top: 0.44rem;
}
.ins_productCon1 .center_box .item_box .item .images_box .model .one {
  font-size: var(--font16);
  color: #666666;
}
.ins_productCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  margin-top: 0.34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .word_box .word .t1 {
  color: #000;
  font-weight: 500;
  -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_box .word .t2 {
  margin-top: 0.08rem;
  color: #333333;
}
.ins_productCon1 .center_box .item_box .item .word_box .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  line-height: 1.714;
}
.ins_productCon1 .center_box .item_box .item .word_box .word .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.22rem;
  color: #666666;
  font-size: var(--font14);
}
.ins_productCon1 .center_box .item_box .item .word_box .word .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.7em;
  -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_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_productCon1 .center_box .item_box .item:hover .images_box .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productCon1 .center_box .item_box .item:hover .word_box .word .t1 {
  color: var(--active_color);
}
.ins_productCon1 .center_box .item_box .item:hover .word_box .idx_more2 .more {
  color: #000;
}
.ins_productCon1 .center_box .item_box .item:hover .word_box .idx_more2 .more img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_productCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon1 .bgImg_adap {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon1 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon1 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.ins_aboutCon1 .maskBox .content1 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .maskBox .content1 .word {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.ins_aboutCon1 .maskBox .content1 .word .t1 {
  font-weight: 600;
  flex-shrink: 0;
}
.ins_aboutCon1 .maskBox .content1 .word .img {
  width: 1.72rem;
  height: 0.86rem;
  border-radius: 0.08rem;
  flex-shrink: 0;
  overflow: hidden;
}
.ins_aboutCon1 .maskBox .content1 .word .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 .maskBox .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding-top: 1.82rem;
  transform: translateY(30%);
  opacity: 0;
}
.ins_aboutCon1 .maskBox .content2 .center_box {
  width: 26%;
  height: auto;
}
.ins_aboutCon1 .maskBox .content2 .center_box .logo {
  width: 3.69rem;
}
.ins_aboutCon1 .maskBox .content2 .center_box .word {
  width: 100%;
  color: #FFFFFF;
  margin-top: 0.32rem;
}
@media (max-width:990px) {
  .ins_aboutCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .maskBox .content1 {
    display: none;
  }
  .ins_aboutCon1 .maskBox .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateY(0%);
    opacity: 1;
    padding: 3rem 0;
  }
  .ins_aboutCon1 .maskBox .content2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .maskBox .content2 .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ins_aboutCon1 .maskBox .content2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background-image: url(../images/z12.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  padding-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .center_box .swiper_item ul li {
  width: calc(1.55rem + 0.7rem);
  height: auto;
  padding-right: 1.55rem !important;
}
.ins_aboutCon2 .center_box .swiper_item ul li .centerInfo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font24);
  color: #999999;
  padding-bottom: 0.33rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.ins_aboutCon2 .center_box .swiper_item ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: calc(1.55rem + 0.35rem + 0.16rem);
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  right: calc(0.35rem + 0.08rem);
  opacity: 0.1;
}
.ins_aboutCon2 .center_box .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 0.06rem;
  border: 2px solid #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  transform: translateY(50%);
}
.ins_aboutCon2 .center_box .swiper_item ul li:last-child {
  width: 0.7rem !important;
  padding-right: 0 !important;
}
.ins_aboutCon2 .center_box .swiper_item ul li:last-child::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: calc(0.35rem + 0.08rem);
  opacity: 0.1;
}
.ins_aboutCon2 .center_box .swiper_item ul li:first-child .centerInfo::before {
  width: 100vw;
}
.ins_aboutCon2 .center_box .swiper_item ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_aboutCon2 .center_box .swiper_item ul li.active .centerInfo::after {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_aboutCon2 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .center_box .content .swiper_btnCon {
  position: absolute;
  right: 0;
  top: 0;
  width: fit-content;
  z-index: 10;
}
.ins_aboutCon2 .center_box .content .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .content .swiper_word ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content .swiper_word ul li .centerInfo .number {
  font-size: var(--font64);
  font-weight: 600;
  color: #0059FF;
}
.ins_aboutCon2 .center_box .content .swiper_word ul li .centerInfo .word {
  width: 47%;
  margin-top: 0.32rem;
  color: #666;
  line-height: 1.5;
  font-weight: 500;
  height: 4.2rem;
}
@media (max-width:990px) {
  .ins_aboutCon2 {
    background-attachment: unset;
    padding-bottom: 3rem;
  }
  .ins_aboutCon2 .center_box .content .swiper_word ul li .centerInfo .word {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.8rem;
}
.ins_aboutCon3 .center_box .item_box .item {
  width: 21.45%;
  height: 4.2rem;
  position: relative;
  z-index: 1;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #FFFFFF;
  margin-right: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .item_box .item .cont1 {
  width: 100%;
  height: auto;
  padding: 0.8rem 0.32rem;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .item_box .item .cont1 .t1 {
  color: #999999;
  font-weight: 600;
}
.ins_aboutCon3 .center_box .item_box .item .cont1 .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  line-height: 2;
  color: #999999;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.8rem 0.4rem;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(0.2rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  padding-bottom: 0.4rem;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 .t1 {
  font-weight: 600;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 .list {
  width: 100%;
  height: auto;
  max-height: 0.88rem;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.32rem;
  gap: 0.1rem;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.4em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .item_box .item .cont2 .t2 {
  width: 100%;
  height: calc(4em * 1.3);
  overflow: auto;
  margin-top: 0.6rem;
  line-height: 1.3;
}
.ins_aboutCon3 .center_box .item_box .item .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .item_box .item .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .item_box .item.active {
  width: 34.5%;
  margin-right: 0;
}
.ins_aboutCon3 .center_box .item_box .item.active .cont1 {
  opacity: 0;
}
.ins_aboutCon3 .center_box .item_box .item.active .cont2 {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.ins_aboutCon3 .center_box .item_box .item.active .bgimg {
  opacity: 1;
}
.ins_aboutCon3 .center_box .item_box .item:last-child.active ~ .item {
  margin-right: 0;
}
.ins_aboutCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  display: none;
}
.ins_aboutCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0.8rem 0.4rem;
  color: #000000;
  padding-bottom: 0.4rem;
  background: #FFFFFF;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 .t1 {
  font-weight: 600;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 .list {
  width: 100%;
  height: auto;
  max-height: 0.88rem;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.32rem;
  gap: 0.1rem;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.4em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .cont2 .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  line-height: 1.3;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .item_box {
    display: none !important;
  }
  .ins_aboutCon3 .center_box .swiper_box {
    display: block !important;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon4 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFFFFF;
  top: 1.4rem;
}
.ins_aboutCon4 .content .ins_title {
  width: 50%;
  margin: 0 auto;
}
.ins_aboutCon4 .content .ins_title .t2 {
  color: #FFFFFF;
}
.ins_aboutCon4 .bgImg {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .bgImg img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .bgImg img.wap {
  min-height: 500px;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_aboutCon4 .content .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_serviceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_serviceCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding-bottom: 0.64rem;
}
.ins_serviceCon1 .content .center_box {
  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;
}
.ins_serviceCon1 .content .center_box .words {
  width: 35%;
  height: 100%;
  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;
  color: #FFFFFF;
}
.ins_serviceCon1 .content .center_box .words .t1 {
  font-weight: 600;
}
.ins_serviceCon1 .content .center_box .words .t2 {
  margin-top: 0.24rem;
  line-height: 1.5;
}
.ins_serviceCon1 .content .center_box .words .idx_more {
  margin-top: 0.56rem;
}
.ins_serviceCon1 .content .center_box .words.color00 {
  color: #000000;
}
.ins_serviceCon1 .content .center_box .words.w50 {
  width: 49%;
}
.ins_serviceCon1 .content .center_box .words.w50 .t2 {
  font-weight: 200;
}
.ins_serviceCon1 .content .center_box .words.w70 {
  width: 55%;
}
.ins_serviceCon1 .content .center_box .words.w70 .t2 {
  font-weight: 200;
}
.ins_serviceCon1 .content .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.64rem;
}
.ins_serviceCon1 .content .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid #FFFFFF66;
  padding-top: 0.24rem;
}
.ins_serviceCon1 .content .center_box .item_box .item .icon {
  font-size: var(--font48);
  color: #FFFFFF;
  font-weight: 600;
}
.ins_serviceCon1 .content .center_box .item_box .item .icon i {
  font-size: var(--font32);
  color: var(--active_color2);
  font-style: unset;
  padding-left: 0.08rem;
  display: inline-block;
}
.ins_serviceCon1 .content .center_box .item_box .item .word {
  color: #FFFFFF;
  margin-top: 0.04rem;
}
.ins_serviceCon1 .content .center_box.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;
}
.ins_serviceCon1 .content .center_box.center .words .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.64rem;
}
.ins_serviceCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .img_w100 img.wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_serviceCon1.shadow .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_serviceCon1.shadow .img_w100::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #00000000 10%, #000000bb 100%);
  top: 0;
  left: 0;
}
@media (max-width:990px) {
  .ins_serviceCon1 .content .center_box .words {
    width: 100% !important;
  }
  .ins_serviceCon1 .content .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .ins_serviceCon1 .img_w100::after {
    opacity: 0;
    display: none;
  }
}
.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .left_box {
  width: 37%;
  height: auto;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.48rem;
}
.ins_serviceCon2 .center_box .left_box .word {
  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;
  gap: 0.8rem;
}
.ins_serviceCon2 .center_box .left_box .word .t1 {
  font-weight: 600;
}
.ins_serviceCon2 .center_box .left_box .word .t2 {
  line-height: 1.5;
  color: #666666;
}
.ins_serviceCon2 .center_box .right_box {
  width: 62%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_serviceCon2 .center_box .right_box .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_serviceCon2 .center_box .right_box .images .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_serviceCon2 .center_box .right_box .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_serviceCon2 .center_box .right_box .images .logo {
  width: fit-content;
  height: 0.56rem;
  position: absolute;
  z-index: 3;
  top: 0.32rem;
  right: 0.32rem;
}
.ins_serviceCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_serviceCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin-top: 0.8rem;
}
.ins_serviceCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_serviceCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_serviceCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_serviceCon3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_serviceCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_serviceCon3 .center_box .item_box .item .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.66rem;
  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_serviceCon3 .center_box .item_box .item .word .list .t1 {
  font-weight: 500;
}
.ins_serviceCon3 .center_box .item_box .item .word .list .one {
  color: #666666;
  font-size: var(--font16);
  padding-left: 0.26rem;
  position: relative;
  z-index: 1;
}
.ins_serviceCon3 .center_box .item_box .item .word .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #CCCCCC;
  border-radius: 0.02rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.5em;
}
@media (max-width:990px) {
  .ins_serviceCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_serviceCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.4rem;
  background: #F5F5F5;
}
.ins_serviceCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon4 .center_box .left_box {
  width: 51%;
}
.ins_serviceCon4 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_serviceCon4 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon4 .center_box .right_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_serviceCon4 .center_box .right_box .top_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon4 .center_box .right_box .top_box .idx_more {
  margin-top: 0.64rem;
}
.ins_serviceCon4 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.32rem;
}
.ins_serviceCon4 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_serviceCon4 .center_box .right_box .item_box .item .icon {
  font-size: var(--font48);
  font-weight: 600;
  line-height: 1.2;
}
.ins_serviceCon4 .center_box .right_box .item_box .item .icon i {
  font-size: var(--font32);
  color: var(--active_color);
  font-style: unset;
  padding-left: 0.08rem;
  display: inline-block;
}
.ins_serviceCon4 .center_box .right_box .item_box .item .word {
  margin-top: 0.04rem;
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.08rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .public_item {
  margin-top: 0.4rem;
}
.ins_contactCon1 .center_box .map_info {
  width: 100%;
  height: auto;
  margin-top: 0.96rem;
  position: relative;
  z-index: 1;
  display: none;
}
.ins_contactCon1 .center_box .map_info .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.ins_contactCon1 .center_box .map_info .item_box .item {
  width: 0.08rem;
  height: 0.08rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
  background: var(--active_color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .map_info .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  background: #0059ff6b;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: grow3 var(--time) linear infinite;
}
.ins_contactCon1 .center_box .map_info .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.88rem;
  height: 0.88rem;
  background: #0059FF1A;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(0);
}
.ins_contactCon1 .center_box .map_info .item_box .item .icon {
  width: max-content;
  height: auto;
  position: absolute;
  left: calc(100% + 0.3rem);
  font-size: var(--font20);
  font-weight: 500;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB {
  width: max-content;
  max-width: 3.94rem;
  height: auto;
  right: -0.46rem;
  background: var(--active_color);
  top: 0.57rem;
  position: absolute;
  padding: 0.23rem 0.27rem 0.49rem 0.31rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  border-radius: 0.15rem;
  opacity: 0;
  visibility: hidden;
  border-top-right-radius: 0;
  box-shadow: 0px 24px 60px rgba(0, 89, 255, 0.4);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0.2rem 0.25rem;
  border-color: transparent transparent #0059FF transparent;
  position: absolute;
  bottom: 100%;
  right: 0;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB .img {
  width: 0.48rem;
  height: 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;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--active_color2);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB .word .t1 {
  font-weight: 500;
}
.ins_contactCon1 .center_box .map_info .item_box .item .wordB .word .t2 {
  margin-top: 0.16rem;
}
.ins_contactCon1 .center_box .map_info .item_box .item.left .wordB {
  left: -0.46rem;
  border-top-left-radius: 0;
}
.ins_contactCon1 .center_box .map_info .item_box .item.left .wordB::after {
  left: 0;
  border-width: 0.2rem 0 0 0.25rem;
  border-color: transparent transparent transparent #0059FF;
}
.ins_contactCon1 .center_box .map_info .item_box .item.left .icon {
  left: unset;
  right: calc(100% + 0.3rem);
}
.ins_contactCon1 .center_box .map_info .item_box .item:hover {
  z-index: 10;
}
.ins_contactCon1 .center_box .map_info .item_box .item:hover .wordB {
  opacity: 1;
  visibility: visible;
}
.ins_contactCon1 .center_box .map_info .item_box .item:hover::before {
  transform: scale(1);
  opacity: 0;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.ins_contactCon1 .center_box .map_info.active {
  display: block !important;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.57rem;
  padding-bottom: 1.82rem;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .ins_title {
  width: 42%;
}
.ins_contactCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contactCon2 .center_box .item_box .item .input {
  width: 100%;
  min-height: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.05rem;
  background: #FFFFFF;
  border-radius: 0.12rem;
  padding: 0 0.32rem;
  gap: 0.24rem;
}
.ins_contactCon2 .center_box .item_box .item .input input {
  width: 100%;
  height: 0.5rem;
  border: unset !important;
  background: unset !important;
  box-shadow: unset !important;
  color: #999999;
}
.ins_contactCon2 .center_box .item_box .item .input textarea {
  width: 100%;
  height: 2.54rem;
  background: none;
  border: 0;
  padding: 0.32rem 0;
  color: #999999;
}
.ins_contactCon2 .center_box .item_box .item .input span {
  flex-shrink: 0;
  color: #999999;
}
.ins_contactCon2 .center_box .item_box .item .input span i {
  color: #FF041D;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select .layui-input {
  padding: 0;
}
.ins_contactCon2 .center_box .item_box .item .input .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;
  margin-top: unset !important;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select .layui-edge::after {
  content: '\e623';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font12);
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_contactCon2 .center_box .item_box .item .input.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contactCon2 .center_box .item_box .item .input.select .layui-form-select {
  width: 60px !important;
}
.ins_contactCon2 .center_box .item_box .item .input.select .ic {
  padding-right: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon2 .center_box .item_box .item .input.select .ic::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 0.68rem;
  background: #EEEEEE;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
.ins_contactCon2 .center_box .item_box .item .input.select .on {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.ins_contactCon2 .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
  .ins_contactCon2 .center_box .content {
    width: 100%;
    height: auto;
  }
  .ins_contactCon2 .center_box .content .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon1 .center_box .left_box {
  width: 36%;
}
.ins_caseCon1 .center_box .left_box .idx_more {
  margin-top: 0.64rem;
}
.ins_caseCon1 .center_box .right_box {
  width: 56%;
}
.ins_caseCon1 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-top: 1px solid #0000001A;
}
.ins_caseCon2 .center_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.32rem 0;
  border-bottom: 1px solid #0000001A;
  gap: 0.23rem;
}
.ins_caseCon2 .center_box .list .one .icon {
  width: 1.49rem;
  min-width: 110px;
  flex-shrink: 0;
  font-size: var(--font20);
  font-weight: 600;
}
.ins_caseCon2 .center_box .list .one .word {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem 0.64rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_caseCon2 .center_box .list .one .word .btn {
  width: fit-content;
  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;
  cursor: pointer;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .list .one .word .btn i {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 0.04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #CCCCCC;
  position: relative;
  z-index: 1;
}
.ins_caseCon2 .center_box .list .one .word .btn i::after {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  min-width: 10px;
  min-height: 10px;
  background-image: url(../images/i12.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_caseCon2 .center_box .list .one .word .btn.active i {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_caseCon2 .center_box .list .one .word .btn.active i::after {
  opacity: 1;
}
.ins_caseCon2 .center_box .list .one .word .btn:hover {
  color: var(--active_color);
}
.ins_caseCon2 .center_box .selectBtn {
  width: 100%;
  height: auto;
  display: none;
}
.ins_caseCon2 .center_box .selectBtn .btn {
  width: fit-content;
  padding: 0 0.7rem;
  height: 0.7rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 0;
  background: var(--active_color);
  backdrop-filter: blur(17px);
  color: var(--active_color2);
  gap: 0.2rem;
  font-size: var(--font30);
  border-radius: 0.12rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .list {
    display: none !important;
  }
  .ins_caseCon2 .center_box .selectBtn {
    display: block !important;
    margin-top: 0.4rem;
  }
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem 0.16rem;
}
.ins_caseCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #F5F5F5;
  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 .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  flex-shrink: 0;
}
.ins_caseCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_caseCon3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .word {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  padding-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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon3 .center_box .item_box .item .word .one_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .item_box .item .word .one_box .t1 {
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .word .one_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  line-height: 1.714;
}
.ins_caseCon3 .center_box .item_box .item .word .one_box .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.22rem;
  color: #666666;
  font-size: var(--font14);
}
.ins_caseCon3 .center_box .item_box .item .word .one_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.7em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .word .icon {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  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_caseCon3 .center_box .item_box .item .word .icon .time {
  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.08rem;
  color: #666666;
  font-size: var(--font16);
}
.ins_caseCon3 .center_box .item_box .item .word .icon .time img {
  width: 0.26rem;
  min-width: 15px;
}
.ins_caseCon3 .center_box .item_box .item .word .icon .idx_more2 {
  width: fit-content;
}
.ins_caseCon3 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_caseCon3 .center_box .item_box .item:hover .word .icon .idx_more2 .more {
  color: #000000;
}
.ins_caseCon3 .center_box .item_box .item:hover .word .icon .idx_more2 .more img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .left_box {
  width: 69.5%;
}
.ins_caseCon4 .center_box .left_box .title {
  font-weight: 600;
}
.ins_caseCon4 .center_box .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font16);
  line-height: 1.5;
  color: #666666;
}
.ins_caseCon4 .center_box .left_box .content img {
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .left_box .content .table {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  border: 1px solid #0000001A;
  overflow: hidden;
}
.ins_caseCon4 .center_box .left_box .content .table table {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .left_box .content .table table tr {
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .left_box .content .table table tr td {
  padding: 0.2rem 0.48rem;
}
.ins_caseCon4 .center_box .left_box .content .table table tr td:first-child {
  font-size: var(--font20);
  font-weight: 600;
  width: 38%;
  background: #F5F5F5;
}
.ins_caseCon4 .center_box .left_box .content .table table tr:last-child {
  border-bottom: 0;
}
.ins_caseCon4 .center_box .left_box .content .nameBox {
  width: 100%;
  height: auto;
  background: url(../images/bg12.jpg) no-repeat;
  background-size: cover;
  padding: 0.64rem;
  padding-right: 21%;
  border-radius: 0.08rem;
  overflow: hidden;
  margin-top: 0.65rem;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .t1 {
  font-weight: 700;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666;
  line-height: 1.5;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .one {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .one .icon {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .one .word {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .left_box .content .nameBox .one .word .name {
  font-weight: 700;
  font-size: var(--font16);
}
.ins_caseCon4 .center_box .left_box .content .nameBox .one .word .const {
  color: #999;
  line-height: 1.5;
  font-size: var(--font14);
}
.ins_caseCon4 .center_box .left_box .content .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon4 .center_box .left_box .content .img_box .img {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .left_box .content .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .left_box .content .img_box .idx_more {
  position: absolute;
  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;
  left: 0;
  bottom: 0.48rem;
}
.ins_caseCon4 .center_box .right_box {
  width: 24.16%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
  background: #F5F5F5;
  border-radius: 0.12rem;
}
.ins_caseCon4 .center_box .right_box .title {
  padding: 0.32rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 600;
}
.ins_caseCon4 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  padding: 0.16rem 0.08rem;
}
.ins_caseCon4 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.24rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 0.12rem;
  position: relative;
  z-index: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_caseCon4 .center_box .right_box .item_box .item .img {
  width: 38%;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .right_box .item_box .item .img .pb {
  padding-bottom: 62%;
}
.ins_caseCon4 .center_box .right_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon4 .center_box .right_box .item_box .item .word {
  width: 50%;
}
.ins_caseCon4 .center_box .right_box .item_box .item .word .t1 {
  color: #999999;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.ins_caseCon4 .center_box .right_box .item_box .item .word .t1::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.4em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_caseCon4 .center_box .right_box .item_box .item .word .t2 {
  color: #666666;
  margin-top: 0.12rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_caseCon4 .center_box .right_box .item_box .item::after {
  content: '';
  position: absolute;
  z-index: -2;
  width: calc(100% - 0.48rem);
  height: 1px;
  bottom: 0;
  left: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px dashed #CCCCCC;
}
.ins_caseCon4 .center_box .right_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  background: #FFFFFF;
  top: -1px;
  left: 0;
  z-index: -1;
  border-radius: 0.12rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .right_box .item_box .item:hover::after {
  opacity: 0;
}
.ins_caseCon4 .center_box .right_box .item_box .item:hover::before {
  opacity: 1;
}
.ins_caseCon4 .center_box .right_box .item_box .item:hover .word .t1 {
  padding-left: 0.2rem;
  color: var(--active_color);
}
.ins_caseCon4 .center_box .right_box .item_box .item:hover .word .t1::after {
  opacity: 1;
}
.ins_caseCon4 .center_box .right_box .item_box .item:last-child::after {
  opacity: 0 !important;
}
@media (max-width:990px) {
  .ins_caseCon4 .center_box .left_box .content .nameBox {
    padding: 0.4rem;
  }
  .ins_caseCon4 .center_box .right_box {
    display: none;
  }
}
.ins_caseCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_caseCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_caseCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_caseCon5 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon5 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 61%;
}
.ins_caseCon5 .center_box .swiper_box ul li .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon5 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-top: 0.4rem;
}
.ins_caseCon5 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 500;
  -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 .item .word .icon {
  width: 100%;
  height: auto;
  margin-top: 1.08rem;
  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_caseCon5 .center_box .swiper_box ul li .item .word .icon .time {
  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.08rem;
  color: #666666;
  font-size: var(--font16);
}
.ins_caseCon5 .center_box .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_caseCon5 .center_box .swiper_box ul li .item:hover .word .icon .idx_more2 .more {
  color: #000000;
}
.ins_caseCon5 .center_box .swiper_box ul li .item:hover .word .icon .idx_more2 .more img {
  filter: unset;
}
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.6rem 0;
}
.ins_downloadCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .left_box {
  width: 24%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
}
.ins_downloadCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  margin-top: -1px;
  padding: 0 0.32rem;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  padding: 0.32rem 0;
  font-size: var(--font16);
  font-weight: 600;
  color: #000000;
  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;
  cursor: pointer;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .top i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding: 0.32rem 0;
  padding-top: 0.24rem;
  border-top: 1px solid #0000001A;
  display: none;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot .list .one {
  font-size: var(--font16);
  color: #999999;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.45em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot .list .one.active {
  padding-left: 0.2rem;
  font-weight: 600;
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .left_box .item_box .item .bot .list .one.active::after {
  opacity: 1;
}
.ins_downloadCon1 .center_box .left_box .item_box .item.active .top i {
  transform: rotate(180deg);
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .right_box {
  width: 71.38%;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
}
.ins_downloadCon1 .center_box .right_box .title {
  width: 100%;
  height: auto;
  padding: 0.64rem;
  padding-bottom: 0.61rem;
  border-bottom: 1px solid #DDDDDD;
  font-size: var(--font48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 600;
}
.ins_downloadCon1 .center_box .right_box .title img {
  width: 0.8rem;
  height: 0.8rem;
}
.ins_downloadCon1 .center_box .right_box .content_box {
  width: 100%;
  height: auto;
  padding: 0.64rem;
  padding-top: 0.53rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .more {
  width: fit-content;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  padding: 0.14rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .right_box .content_box .more img {
  width: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .right_box .content_box .more span {
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .right_box .content_box .more:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_downloadCon1 .center_box .right_box .content_box .more:hover span {
  color: #FFFFFF;
}
.ins_downloadCon1 .center_box .right_box .content_box .more:hover img {
  filter: brightness(0) invert(1);
}
.ins_downloadCon1 .center_box .right_box .content_box .content {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .right_box .content_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.24rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px dashed #DDDDDD;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.43rem;
  gap: 0.32rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item .left {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item .left .icon {
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item .left .word {
  font-size: var(--font24);
  font-weight: 500;
}
.ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .tit {
  font-weight: 600;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.23rem;
  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_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.28rem 0.23rem;
  gap: 0.32rem;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item .left {
  width: 45%;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item .left .t1 {
  color: #666666;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item .left .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.05rem;
  color: #000000;
}
.ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item .right {
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width:990px) {
  .ins_downloadCon1 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_downloadCon1 .center_box .right_box .title {
    padding: 0.4rem;
  }
  .ins_downloadCon1 .center_box .right_box .content_box {
    padding: 0.4rem;
  }
  .ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_downloadCon1 .center_box .right_box .content_box .content .item_box .item .left {
    width: 100%;
    height: auto;
  }
  .ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box {
    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_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #dddddd;
  }
  .ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item .left {
    width: 100%;
    height: auto;
  }
  .ins_downloadCon1 .center_box .right_box .content_box .content2 .item_box .item:last-child {
    border-bottom: 0;
  }
}
.ins_warrantyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.6rem 0;
}
.ins_warrantyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_warrantyCon1 .center_box .left_box {
  width: 24%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  padding: 0.32rem;
}
.ins_warrantyCon1 .center_box .left_box .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.16rem;
}
.ins_warrantyCon1 .center_box .left_box .list .one {
  color: #999999;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_warrantyCon1 .center_box .left_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color);
  border-radius: 0.02rem;
  left: 0;
  top: 0.45em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_warrantyCon1 .center_box .left_box .list .one.active {
  padding-left: 0.2rem;
  font-weight: 600;
  color: #000000;
}
.ins_warrantyCon1 .center_box .left_box .list .one.active::after {
  opacity: 1;
}
.ins_warrantyCon1 .center_box .right_box {
  width: 71.38%;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  padding: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.64rem;
}
.ins_warrantyCon1 .center_box .right_box .content {
  width: 100%;
  height: auto;
}
.ins_warrantyCon1 .center_box .right_box .content .t1 {
  font-weight: 600;
}
.ins_warrantyCon1 .center_box .right_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  line-height: 1.5;
  color: #666666;
}
.ins_warrantyCon1 .center_box .right_box.gap32 .content .list {
  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;
}
@media (max-width:990px) {
  .ins_warrantyCon1 .center_box .left_box {
    display: none;
  }
  .ins_warrantyCon1 .center_box .right_box {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    gap: 0.2rem;
  }
  .ins_warrantyCon1 .center_box .right_box .content {
    border: 1px solid #DDDDDD;
    border-radius: 0.12rem;
    padding: 0.4rem;
  }
}
.ins_cssetrainCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_cssetrainCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon1 .center_box .ins_title {
  width: 67%;
  margin: 0 auto;
}
.ins_cssetrainCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.64rem;
}
.ins_cssetrainCon1 .center_box .item_box .item {
  width: fit-content;
  height: auto;
  border-top: 1px solid #FFFFFF66;
}
.ins_cssetrainCon1 .center_box .item_box .item .icon {
  font-size: var(--font48);
  font-weight: 600;
  line-height: 1.2;
}
.ins_cssetrainCon1 .center_box .item_box .item .icon i {
  font-size: var(--font4);
  color: var(--active_color);
  font-style: unset;
  padding-left: 0.08rem;
  display: inline-block;
}
.ins_cssetrainCon1 .center_box .item_box .item .word {
  margin-top: 0.04rem;
}
.ins_cssetrainCon1 .center_box .swiper_info {
  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_cssetrainCon1 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  transform: scale(0.7);
  border-radius: 0.12rem;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: scale(1);
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li.swiper-slide-next .centerInfo {
  transform-origin: left;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li.swiper-slide-prev .centerInfo {
  transform-origin: right;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_btnImg {
  position: absolute;
  z-index: 5;
  background: #FFFFFF;
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_btnImg.prev {
  right: calc(100% + 1.08rem);
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_btnImg.next {
  left: calc(100% + 1.08rem);
}
.ins_cssetrainCon1 .center_box .swiper_info .swiper_btnImg:hover {
  background: var(--active_color);
}
.ins_cssetrainCon1 .center_box .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
@media (max-width:990px) {
  .ins_cssetrainCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_cssetrainCon1 .center_box .ins_title {
    width: 100%;
    height: auto;
    text-align: start !important;
  }
  .ins_cssetrainCon1 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_cssetrainCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
    position: relative;
    z-index: 1;
    transform: scale(1);
  }
  .ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li .centerInfo::after {
    content: '';
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    display: block;
  }
  .ins_cssetrainCon1 .center_box .swiper_info .swiper_box ul li .centerInfo img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
  }
}
.ins_cssetrainCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_cssetrainCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-right: 1px;
}
.ins_cssetrainCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.86rem 0.32rem;
  padding-bottom: 0.76rem;
  border: 1px solid #DDDDDD;
  border-radius: 0.12rem;
  margin-left: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_cssetrainCon2 .center_box .item_box .item .icon {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100px;
  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_cssetrainCon2 .center_box .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px dashed #999999;
}
.ins_cssetrainCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.4rem;
  color: #000000;
  font-size: var(--font16);
}
.ins_cssetrainCon2 .center_box .item_box .item:hover .icon::after {
  transform: rotate(360deg);
  transition: all 60s linear;
}
@media (max-width:990px) {
  .ins_cssetrainCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .ins_cssetrainCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.4rem;
  }
  .ins_cssetrainCon2 .center_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .ins_cssetrainCon2 .center_box .item_box .item .word {
    margin-top: 0;
    text-align: start;
  }
}
.ins_cssetrainCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_cssetrainCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.8rem;
}
.ins_cssetrainCon3 .center_box .item_box .item {
  width: 27.3%;
  height: 5.66rem;
  position: relative;
  z-index: 1;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #FFFFFF;
  margin-right: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 {
  width: 100%;
  height: 100%;
  padding: 0.56rem 0.48rem;
  position: relative;
  z-index: 2;
  -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-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-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .word {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .word .t1 {
  color: #000000;
  padding-bottom: 0.47rem;
  border-bottom: 1px solid #0000001A;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .word .list {
  width: 100%;
  height: auto;
  max-height: 2rem;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 0.48rem;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .word .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
  line-height: 1.5;
  font-size: var(--font16);
  color: #999999;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .word .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #999999;
  opacity: 0.6;
  border-radius: 0.02rem;
  left: 0;
  top: 0.55em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont1 .icon {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100px;
  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_cssetrainCon3 .center_box .item_box .item .cont1 .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px dashed #999999;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.56rem 0.48rem;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(0.2rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  padding-bottom: 0.4rem;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid #FFFFFF1A;
  flex-shrink: 0;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box .icon {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100px;
  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_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box .icon img {
  filter: brightness(0) invert(1);
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px dashed #FFFFFF;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .list {
  width: 100%;
  height: auto;
  max-height: 2.9rem;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 0.48rem;
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
  line-height: 1.5;
  font-size: var(--font16);
}
.ins_cssetrainCon3 .center_box .item_box .item .cont2 .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.55em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cssetrainCon3 .center_box .item_box .item .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cssetrainCon3 .center_box .item_box .item .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_cssetrainCon3 .center_box .item_box .item.active {
  width: 44.2%;
  margin-right: 0;
}
.ins_cssetrainCon3 .center_box .item_box .item.active .cont1 {
  opacity: 0;
}
.ins_cssetrainCon3 .center_box .item_box .item.active .cont2 {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.ins_cssetrainCon3 .center_box .item_box .item.active .bgimg {
  opacity: 1;
}
.ins_cssetrainCon3 .center_box .item_box .item:last-child.active ~ .item {
  margin-right: 0;
}
@media (max-width:990px) {
  .ins_cssetrainCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .ins_cssetrainCon3 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont1 {
    display: none;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    color: #666666;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box {
    width: 100%;
    height: auto;
    color: #000;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box .icon img {
    filter: contrast(0) invert(0);
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont2 .icon_box .icon::after {
    border-color: #DDDDDD;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .cont2 .list {
    width: 100%;
    height: auto;
    max-height: 3rem;
  }
  .ins_cssetrainCon3 .center_box .item_box .item .bgimg {
    opacity: 0 !important;
  }
}
.ins_cssetrainCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_cssetrainCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60.55%;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_cssetrainCon4 .center_box .content1 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  font-size: var(--font20);
  font-weight: 500;
}
.ins_cssetrainCon4 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  background-image: url(../images/bg19.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0.56rem 0.6rem;
  border-radius: 0.12rem;
}
.ins_cssetrainCon4 .center_box .content2 .left_box {
  width: 35%;
}
.ins_cssetrainCon4 .center_box .content2 .right_box {
  width: 55.5%;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.13rem;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .word_box .icon {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .word_box .word .name {
  font-weight: 700;
  font-size: var(--font16);
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .word_box .word .const {
  color: #999;
  line-height: 1.5;
  font-size: var(--font14);
}
.ins_cssetrainCon4 .center_box .content2 .right_box .swiper_name ul li .centerInfo .content {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  line-height: 1.5;
  color: #666666;
}
.ins_cssetrainCon4 .center_box .content2 .right_box .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 1.08rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.ins_cssetrainCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  padding-bottom: 3.12rem;
  background-image: url(../images/bg20.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_cssetrainCon5 .content {
  width: 50%;
  margin: 0 auto;
}
.ins_cssetrainCon5 .content .ins_title {
  color: #FFFFFF;
}
.ins_cssetrainCon5 .content .ins_title .t2 {
  color: #FFFFFF;
}
.ins_cssetrainCon5 .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.46rem;
}
.ins_cssetrainCon5 .content .idx_more .icon img {
  filter: brightness(0) invert(1);
}
.ins_cssetrainCon5 .content .idx_more .word {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_cssetrainCon5 {
    background-attachment: unset;
  }
  .ins_cssetrainCon5 .content {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.96rem;
}
.ins_productdCon1 .content .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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productdCon1 .content .center_box .ins_title .t1,
.ins_productdCon1 .content .center_box .ins_title .t2 {
  color: #FFFFFF;
  line-height: normal;
}
.ins_productdCon1 .content .center_box .ins_title .t2 {
  font-weight: 200;
}
.ins_productdCon1 .images_w100 {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .images_w100 .img {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .images_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .images_w100 .wap img {
  min-height: 500px;
  object-fit: cover;
}
.ins_productdCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdCon2 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .content .center_box .ins_title .t1,
.ins_productdCon2 .content .center_box .ins_title .t2 {
  color: #FFFFFF;
  line-height: normal;
}
.ins_productdCon2 .content .center_box .ins_title .t2 {
  font-weight: 200;
}
.ins_productdCon2 .images_w100 {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .images_w100 .img {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .images_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .images_w100 .wap img {
  min-height: 500px;
  object-fit: cover;
}
.ins_productdCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.28rem 0;
  background: #F5F5F5;
}
.ins_productdCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon3 .center_box .left_box {
  width: fit-content;
}
.ins_productdCon3 .center_box .left_box .word {
  color: #000;
}
.ins_productdCon3 .center_box .right_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.48rem;
}
.ins_productdCon3 .center_box .right_box .one {
  color: #666666;
}
.ins_productdCon3.bg000 {
  background: #131313;
}
.ins_productdCon3.bg000 .center_box .left_box .word {
  color: #FFFFFF;
}
.ins_productdCon3.bg000 .right_box .one {
  color: #999999;
}
@media (max-width:990px) {
  .ins_productdCon3 {
    display: none;
  }
}
.ins_productdCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdCon4 .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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 0.64rem;
}
.ins_productdCon4 .content .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;
}
.ins_productdCon4 .content .center_box .ins_title .t1,
.ins_productdCon4 .content .center_box .ins_title .t2,
.ins_productdCon4 .content .center_box .ins_title .icon {
  color: #FFFFFF;
  line-height: normal;
}
.ins_productdCon4 .content .center_box .ins_title .t2 {
  font-weight: 200;
}
.ins_productdCon4 .content .center_box .ins_title .icon {
  padding-bottom: 0.32rem;
}
.ins_productdCon4 .content .center_box .idx_more {
  margin-top: 0.4rem;
}
.ins_productdCon4 .images_w100 {
  width: 100%;
  height: auto;
}
.ins_productdCon4 .images_w100 .img {
  width: 100%;
  height: auto;
}
.ins_productdCon4 .images_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon4 .images_w100 .wap img {
  min-height: 500px;
  object-fit: cover;
}
.ins_productdCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
}
.ins_productdCon5 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon5 .center_box .ins_title {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productdCon5 .center_box .ins_title .icon {
  width: fit-content;
  background: linear-gradient(90deg, var(--color1) 0%, var(--color2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_productdCon5 .center_box .ins_title .t1 {
  color: var(--color000);
}
@media (max-width:990px) {
  .ins_productdCon5 .center_box .ins_title .t1 {
    font-size: var(--font50);
  }
}
.ins_productdCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon6 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon6 .center_box .left_box {
  width: 37%;
}
.ins_productdCon6 .center_box .left_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon6 .center_box .left_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon6 .center_box .left_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon6 .center_box .left_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon6 .center_box .left_box .ins_title .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.64rem;
  gap: 0.3rem;
}
.ins_productdCon6 .center_box .left_box .ins_title .list .one {
  width: 100%;
  height: auto;
}
.ins_productdCon6 .center_box .left_box .ins_title .list .one .icon1 {
  font-size: var(--font48);
  color: var(--color005);
  line-height: 1;
  font-weight: 600;
}
.ins_productdCon6 .center_box .left_box .ins_title .list .one .icon1 i {
  font-style: unset;
  padding-left: 0.06rem;
}
.ins_productdCon6 .center_box .left_box .ins_title .list .one .word {
  margin-top: 0.04rem;
  font-size: var(--font16);
  color: var(--color000);
}
.ins_productdCon6 .center_box .right_box {
  width: 55.76%;
}
.ins_productdCon6 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon6 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon7 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon7 .center_box .left_box {
  width: 55.76%;
}
.ins_productdCon7 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon7 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon7 .center_box .right_box {
  width: 37%;
}
.ins_productdCon7 .center_box .right_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon7 .center_box .right_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon7 .center_box .right_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon7 .center_box .right_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon7 .center_box .right_box .ins_title .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.64rem;
  gap: 0.3rem;
}
.ins_productdCon7 .center_box .right_box .ins_title .list .one {
  width: 100%;
  height: auto;
}
.ins_productdCon7 .center_box .right_box .ins_title .list .one .icon1 {
  font-size: var(--font48);
  color: var(--color005);
  line-height: 1;
  font-weight: 600;
}
.ins_productdCon7 .center_box .right_box .ins_title .list .one .icon1 i {
  font-style: unset;
  padding-left: 0.06rem;
}
.ins_productdCon7 .center_box .right_box .ins_title .list .one .word {
  margin-top: 0.04rem;
  font-size: var(--font16);
  color: var(--color000);
}
@media (max-width:990px) {
  .ins_productdCon7 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.ins_productdCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon8 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_productdCon8 .center_box .top_info .ins_title {
  width: 50%;
}
.ins_productdCon8 .center_box .top_info .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon8 .center_box .top_info .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon8 .center_box .top_info .word_box {
  width: 43%;
  padding-top: 0.56rem;
}
.ins_productdCon8 .center_box .top_info .word_box .t1 {
  color: var(--color666);
}
.ins_productdCon8 .center_box .top_info .word_box .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  margin-top: 0.32rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_productdCon8 .center_box .top_info .word_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_productdCon8 .center_box .top_info .word_box .list .one .icon {
  width: 0.48rem;
  height: 0.48rem;
  flex-shrink: 0;
  border: 1px solid var(--border1);
  border-radius: 0.12rem;
}
.ins_productdCon8 .center_box .top_info .word_box .list .one .word {
  width: 100%;
  height: auto;
  font-weight: 600;
  color: var(--color000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon8 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
}
.ins_productdCon8 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productdCon8 .center_box .item_box .item .img {
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon8 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon8 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  font-weight: 500;
  color: var(--color000);
}
.ins_productdCon8 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productdCon8 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productdCon8 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productdCon8 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
}
.ins_productdCon8 .center_box .swiper_box ul li .item .img {
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon8 .center_box .swiper_box ul li .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon8 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  font-weight: 500;
  color: var(--color000);
}
.ins_productdCon8 .center_box .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .ins_productdCon8 .center_box .top_info {
    width: 100%;
    height: auto;
  }
  .ins_productdCon8 .center_box .top_info .ins_title {
    width: 100%;
    height: auto;
  }
  .ins_productdCon8 .center_box .top_info .word_box {
    width: 100%;
    height: auto;
  }
  .ins_productdCon8 .center_box .top_info .word_box .list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productdCon8 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.ins_productdCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_productdCon9 .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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productdCon9 .center_box .ins_title {
  width: 60%;
}
.ins_productdCon9 .center_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon9 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon9 .center_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon9 .center_box .ins_title .list {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon9 .center_box .ins_title .list .one {
  width: fit-content;
  height: auto;
  padding: 0 0.48rem;
  border-right: 1px solid #0000001A;
}
.ins_productdCon9 .center_box .ins_title .list .one .icon1 {
  font-size: var(--font48);
  color: var(--color005);
  line-height: 1;
  font-weight: 600;
}
.ins_productdCon9 .center_box .ins_title .list .one .icon1 i {
  font-style: unset;
  padding-left: 0.06rem;
}
.ins_productdCon9 .center_box .ins_title .list .one .word {
  margin-top: 0.04rem;
  font-size: var(--font16);
  color: var(--color000);
}
.ins_productdCon9 .center_box .ins_title .list .one:last-child {
  border-right: 0;
}
.ins_productdCon9 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
}
.ins_productdCon9 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productdCon9 .center_box .item_box .item .img {
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon9 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon9 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  font-weight: 500;
  color: var(--color000);
}
.ins_productdCon9 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productdCon9 .center_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon9 .center_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productdCon9 .center_box .ins_title {
    width: 100%;
    height: auto;
    text-align: start;
  }
  .ins_productdCon9 .center_box .ins_title .list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_productdCon9 .center_box .ins_title .list .one {
    width: 100%;
    height: auto;
  }
  .ins_productdCon9 .center_box .ins_title .list .one:first-child {
    padding-left: 0;
  }
}
.ins_productdCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdCon10 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon10 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon10 .content .center_box .contInfo {
  width: 38%;
  height: auto;
}
.ins_productdCon10 .content .center_box .contInfo .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon10 .content .center_box .contInfo .ins_title .icon {
  color: var(--active_color2);
}
.ins_productdCon10 .content .center_box .contInfo .ins_title .t1 {
  color: #FFFFFF;
}
.ins_productdCon10 .content .center_box .contInfo .ins_title .t2 {
  margin-top: 0.32rem;
  color: #FFFFFF;
  font-weight: 200;
}
.ins_productdCon10 .content .center_box .contInfo .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.32rem;
  margin-top: 0.8rem;
}
.ins_productdCon10 .content .center_box .contInfo .list .one {
  width: 54%;
  height: auto;
  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_productdCon10 .content .center_box .contInfo .list .one .icon {
  width: 0.48rem;
  height: 0.48rem;
  flex-shrink: 0;
  border: 1px solid #5CE6FF33;
  border-radius: 0.12rem;
}
.ins_productdCon10 .content .center_box .contInfo .list .one .word {
  width: 100%;
  height: auto;
  font-weight: 500;
  color: #FFFFFF;
}
.ins_productdCon10 .images_w100 {
  width: 100%;
  height: auto;
}
.ins_productdCon10 .images_w100 .img {
  width: 100%;
  height: auto;
}
.ins_productdCon10 .images_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon10 .images_w100 .wap img {
  min-height: 500px;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_productdCon10 .content .center_box .contInfo {
    width: 100%;
    height: auto;
  }
  .ins_productdCon10 .content .center_box .contInfo .list .one {
    width: 100%;
    height: auto;
  }
  .ins_productdCon10 .content .center_box .contInfo .list .one .word {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdCon11 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon11 .content .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productdCon11 .content .center_box .contInfo {
  width: 38%;
  height: auto;
}
.ins_productdCon11 .content .center_box .contInfo .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon11 .content .center_box .contInfo .ins_title .icon {
  color: var(--active_color2);
}
.ins_productdCon11 .content .center_box .contInfo .ins_title .t1 {
  color: #FFFFFF;
}
.ins_productdCon11 .content .center_box .contInfo .ins_title .t2 {
  margin-top: 0.32rem;
  color: #FFFFFF;
  font-weight: 200;
}
.ins_productdCon11 .content .center_box .contInfo .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.32rem;
  margin-top: 0.8rem;
}
.ins_productdCon11 .content .center_box .contInfo .list .one {
  width: 54%;
  height: auto;
  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_productdCon11 .content .center_box .contInfo .list .one .icon {
  width: 0.48rem;
  height: 0.48rem;
  flex-shrink: 0;
  border: 1px solid #5CE6FF33;
  border-radius: 0.12rem;
}
.ins_productdCon11 .content .center_box .contInfo .list .one .word {
  width: 100%;
  height: auto;
  font-weight: 500;
  color: #FFFFFF;
}
.ins_productdCon11 .images_w100 {
  width: 100%;
  height: auto;
}
.ins_productdCon11 .images_w100 .img {
  width: 100%;
  height: auto;
}
.ins_productdCon11 .images_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon11 .images_w100 .wap img {
  min-height: 500px;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_productdCon11 .content .center_box .contInfo {
    width: 100%;
    height: auto;
  }
  .ins_productdCon11 .content .center_box .contInfo .list .one {
    width: 100%;
    height: auto;
  }
  .ins_productdCon11 .content .center_box .contInfo .list .one .word {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon12 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon12 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_productdCon12 .center_box .top_info .ins_title {
  width: 45%;
}
.ins_productdCon12 .center_box .top_info .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon12 .center_box .top_info .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon12 .center_box .top_info .word_box {
  width: 43%;
  padding-top: 0.56rem;
}
.ins_productdCon12 .center_box .top_info .word_box .t1 {
  color: var(--color666);
}
.ins_productdCon12 .center_box .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.ins_productdCon12 .center_box .images_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_productdCon12 .center_box .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon12 .center_box .images_box .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  bottom: 0.32rem;
}
.ins_productdCon12 .center_box .images_box .word .t1 {
  width: 100%;
  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;
  color: #FFFFFF;
  font-size: var(--font24);
}
@media (max-width:990px) {
  .ins_productdCon12 .center_box .top_info .word_box {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon13 .center_box .ins_title {
  width: 57%;
}
.ins_productdCon13 .center_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon13 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon13 .center_box .ins_title .t2 {
  color: var(--color666);
}
.ins_productdCon13 .center_box .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.ins_productdCon13 .center_box .images_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_productdCon13 .center_box .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon13 .center_box .images_box .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  bottom: 0.32rem;
}
.ins_productdCon13 .center_box .images_box .word .t1 {
  width: 100%;
  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;
  color: #FFFFFF;
  font-size: var(--font24);
}
@media (max-width:990px) {
  .ins_productdCon13 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon14 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon14 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon14 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
}
.ins_productdCon14 .center_box .top_info .ins_title {
  width: 52%;
  height: auto;
}
.ins_productdCon14 .center_box .top_info .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon14 .center_box .top_info .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon14 .center_box .top_info .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon14 .center_box .top_info .list {
  width: 35%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.ins_productdCon14 .center_box .top_info .list .one {
  width: 100%;
  height: auto;
}
.ins_productdCon14 .center_box .top_info .list .one .icon1 {
  font-size: var(--font48);
  color: var(--color005);
  line-height: 1;
  font-weight: 600;
}
.ins_productdCon14 .center_box .top_info .list .one .icon1 i {
  font-style: unset;
  padding-left: 0.06rem;
}
.ins_productdCon14 .center_box .top_info .list .one .word {
  margin-top: 0.04rem;
  font-size: var(--font16);
  color: var(--color000);
}
@media (max-width:990px) {
  .ins_productdCon14 .center_box .top_info .list {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon14 .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productdCon14 .img_box img {
  width: 100%;
  height: auto;
}
.ins_productdCon15 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon15 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon15 .center_box .ins_title {
  width: 52%;
  height: auto;
}
.ins_productdCon15 .center_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon15 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon15 .center_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon15 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon15 .center_box .content .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productdCon15 .center_box .content .images_box .beImg {
  width: 100%;
  height: auto;
}
.ins_productdCon15 .center_box .content .images_box .beImg img {
  width: 100%;
  height: auto;
}
.ins_productdCon15 .center_box .content .images_box .afImg {
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  overflow: hidden;
  border-left: 1px solid #FFFFFF99;
}
.ins_productdCon15 .center_box .content .images_box .afImg img {
  max-width: unset;
  max-height: unset;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.ins_productdCon15 .center_box .content .images_box .dbar {
  position: absolute;
  top: 50%;
  right: 50%;
  background: #FFFFFFCC;
  transform: translateX(50%);
  z-index: 10;
  border-radius: 0.12rem;
  backdrop-filter: blur(6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_productdCon15 .center_box .content .images_box .dbar i {
  width: 0.22rem;
  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;
  color: var(--active_color);
  font-weight: 600;
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.ins_productdCon15 .center_box .content .images_box .dbar i::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.12rem;
  background: #0000001F;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 0;
  transform: translateX(1px);
}
.ins_productdCon15 .center_box .content .images_box .dbar i:last-child::after {
  opacity: 0;
}
@media (max-width:1280px) {
  .ins_productdCon15 .center_box .content .images_box .dbar i {
    transform: scale(0.8);
  }
}
@media (max-width:990px) {
  .ins_productdCon15 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon16 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_productdCon16 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon16 .center_box .ins_title {
  width: 100;
  height: auto;
}
.ins_productdCon16 .center_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon16 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon16 .center_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon16 .center_box .swiper_info {
  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_productdCon16 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  transform: scale(0.7);
  border-radius: 0.12rem;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: scale(1);
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li.swiper-slide-next .centerInfo {
  transform-origin: left;
}
.ins_productdCon16 .center_box .swiper_info .swiper_box ul li.swiper-slide-prev .centerInfo {
  transform-origin: right;
}
.ins_productdCon16 .center_box .swiper_info .swiper_btnImg {
  position: absolute;
  z-index: 5;
  background: #FFFFFF;
}
.ins_productdCon16 .center_box .swiper_info .swiper_btnImg.prev {
  right: calc(100% + 1.08rem);
}
.ins_productdCon16 .center_box .swiper_info .swiper_btnImg.next {
  left: calc(100% + 1.08rem);
}
.ins_productdCon16 .center_box .swiper_info .swiper_btnImg:hover {
  background: var(--active_color);
}
.ins_productdCon16 .center_box .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
@media (max-width:990px) {
  .ins_productdCon16 .center_box .swiper_info .swiper_box ul li .centerInfo {
    position: relative;
    z-index: 1;
    transform: scale(1);
  }
  .ins_productdCon16 .center_box .swiper_info .swiper_box ul li .centerInfo::after {
    content: '';
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    display: block;
  }
  .ins_productdCon16 .center_box .swiper_info .swiper_box ul li .centerInfo img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
  }
}
.ins_productdCon17 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.ins_productdCon17 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_productdCon17 .maskBox .content1,
.ins_productdCon17 .maskBox .content2,
.ins_productdCon17 .maskBox .content3 {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_productdCon17 .maskBox .content1 {
  z-index: 1;
}
.ins_productdCon17 .maskBox .content1 .img {
  width: 100%;
  height: 100%;
}
.ins_productdCon17 .maskBox .content1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productdCon17 .maskBox .content2 {
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.ins_productdCon17 .maskBox .content2 .img {
  width: 100%;
  height: 100%;
}
.ins_productdCon17 .maskBox .content2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productdCon17 .maskBox .content2.active {
  opacity: 1;
}
.ins_productdCon17 .maskBox .content3 {
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon17 .maskBox .content3 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon17 .maskBox .content3 .center_box .ins_title {
  width: 53%;
  height: auto;
}
.ins_productdCon17 .maskBox .content3 .center_box .ins_title .icon {
  color: var(--active_color2);
}
.ins_productdCon17 .maskBox .content3 .center_box .ins_title .t1 {
  color: #FFFFFF;
}
.ins_productdCon17 .maskBox .content3 .center_box .ins_title .t2 {
  color: #FFFFFF;
  font-weight: 200;
}
.ins_productdCon17 .maskBox .content3 .tY_wow {
  transform: translateY(0.5rem);
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_productdCon17 .maskBox .content3.active .tY_wow {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productdCon17 .maskBox .content3 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon18 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_productdCon18 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon18 .center_box .ins_title {
  width: 100;
  height: auto;
}
.ins_productdCon18 .center_box .ins_title .icon {
  color: var(--color005);
}
.ins_productdCon18 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon18 .center_box .ins_title .t2 {
  margin-top: 0.32rem;
  color: var(--color666);
}
.ins_productdCon18 .center_box .swiper_img {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon18 .center_box .swiper_img ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon18 .center_box .swiper_img ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productdCon18 .center_box .swiper_img ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon18 .center_box .swiper_img ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_productdCon18 .center_box .swiper_img ul li .centerInfo .word {
  text-align: center;
  font-size: var(--font16);
  color: #666666;
  margin-top: 0.3rem;
}
.ins_productdCon18 .center_box .item_box {
  width: fit-content;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 0.4rem;
  gap: 0.56rem;
  position: relative;
  z-index: 1;
}
.ins_productdCon18 .center_box .item_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color000);
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.ins_productdCon18 .center_box .item_box .item {
  width: fit-content;
  padding-bottom: 0.24rem;
  font-size: var(--font24);
  color: var(--color669);
  line-height: 1.2;
  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_productdCon18 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--color005);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.ins_productdCon18 .center_box .item_box .item.active {
  color: var(--color000);
  font-weight: 500;
}
.ins_productdCon18 .center_box .item_box .item.active::after {
  width: 100%;
}
.ins_productdCon18 .center_box .item_box .item:hover {
  color: var(--color_000);
}
.ins_productdCon18 .center_box .swiper_word {
  width: 43%;
  height: auto;
  margin: 0 auto;
  margin-top: 0.32rem;
  overflow: hidden;
}
.ins_productdCon18 .center_box .swiper_word ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon18 .center_box .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font16);
  color: var(--color669);
}
@media (max-width:990px) {
  .ins_productdCon18 .center_box .swiper_word {
    display: none;
  }
}
.ins_productdCon19 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: var(--color_b2);
}
.ins_productdCon19 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon19 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon19 .center_box .top_info .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon19 .center_box .top_info .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon19 .center_box .top_info .swiper_btnImg {
  border: 1px solid var(--border2);
}
.ins_productdCon19 .center_box .top_info .swiper_btnImg i {
  color: var(--color005);
}
.ins_productdCon19 .center_box .top_info .swiper_btnImg:hover i {
  color: var(--active_color2);
}
.ins_productdCon19 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productdCon19 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo .word {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.4rem 0.48rem;
  z-index: 10;
  color: #FFFFFF;
}
.ins_productdCon19 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productdCon20 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_productdCon20 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon20 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon20 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon20 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  border-radius: 0.12rem;
  overflow: hidden;
  border: 1px solid #DDDDDD;
}
.ins_productdCon20 .center_box .content::after {
  content: '';
  position: absolute;
  width: 3.36rem;
  height: 100%;
  background: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 0.12rem;
}
.ins_productdCon20 .center_box .content .table_info {
  width: 100%;
  height: auto;
  overflow: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.4rem;
}
.ins_productdCon20 .center_box .content .table_info table {
  width: max-content;
  height: auto;
  display: inline-flex;
  position: relative;
  z-index: 1;
}
.ins_productdCon20 .center_box .content .table_info table::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_productdCon20 .center_box .content .table_info table tbody {
  width: max-content;
  padding: 0.48rem 0;
}
.ins_productdCon20 .center_box .content .table_info table tbody tr {
  width: auto;
  height: auto;
}
.ins_productdCon20 .center_box .content .table_info table tbody tr td {
  width: 3.36rem;
  padding-top: 0.24rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #0000001A;
  margin-right: 0.32rem;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: var(--font16);
  color: var(--color000);
}
.ins_productdCon20 .center_box .content .table_info table tbody tr td:first-child {
  position: sticky;
  left: 0px;
  z-index: 10;
  background: #F5F5F5;
  padding: 0 0.31rem;
  padding-top: 0.24rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #F5F5F5;
  margin-right: 0.64rem;
  font-weight: 500;
  color: var(--color669);
}
.ins_productdCon20 .center_box .content .table_info table tbody tr td:first-child::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.31rem - 0.31rem);
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  bottom: 0;
  left: 0.31rem;
}
.ins_productdCon20 .center_box .content .table_info table tbody .tit {
  width: 100%;
  height: auto;
}
.ins_productdCon20 .center_box .content .table_info table tbody .tit td {
  border-bottom: 0;
}
.ins_productdCon20 .center_box .content .table_info table tbody .tit .one {
  font-size: var(--font20);
  font-weight: 600;
  color: var(--color000);
  padding-top: 0;
}
.ins_productdCon20 .center_box .content.bgFFF {
  border: 1px solid #DDDDDD1A;
}
.ins_productdCon20 .center_box .content.bgFFF::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1E1E1E;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -3;
}
.ins_productdCon20 .center_box .content.bgFFF::after {
  background: #171717;
}
.ins_productdCon20 .center_box .content.bgFFF .table_info table tbody tr td:first-child {
  background: #171717;
}
.ins_productdCon20 .center_box .content.bgFFF .table_info table tbody tr td {
  border-bottom: 1px solid #DDDDDD1A;
}
.ins_productdCon20 .center_box .content.bgFFF .table_info table::after {
  background: #DDDDDD1A;
}
.ins_productdCon20 .center_box .info {
  width: 100%;
  height: auto;
  margin-top: 0.31rem;
  color: #999999;
}
.ins_productdCon20 .center_box * {
  scrollbar-color: #979797 #d4d6d700;
  scrollbar-width: thin;
}
.ins_productdCon20 .center_box *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
.ins_productdCon20 .center_box *::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
.ins_productdCon20 .center_box *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.ins_productdCon21 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_productdCon21 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon21 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon21 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon21 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin-top: 0.8rem;
}
.ins_productdCon21 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  background: var(--color_b3);
  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_productdCon21 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  flex-shrink: 0;
}
.ins_productdCon21 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_productdCon21 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon21 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productdCon21 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productdCon21 .center_box .item_box .item .word_box .word .t1 {
  color: var(--color000);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon21 .center_box .item_box .item .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  font-size: var(--font16);
  color: var(--color666);
}
.ins_productdCon21 .center_box .item_box .item .word_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_productdCon21 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productdCon21 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_productdCon21 .center_box .item_box.hoverBg .item .word_box .idx_more2 .more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon21 .center_box .item_box.hoverBg .item .word_box .idx_more2 .more .img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon21 .center_box .item_box.hoverBg .item .word_box .idx_more2 .more span {
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.ins_productdCon21 .center_box .item_box.hoverBg:hover span {
  color: #FFFFFF !important;
}
.ins_productdCon21 .center_box .item_box.hoverBg .item:hover .word_box .word .t1 {
  color: var(--active_color2);
}
@media (max-width:990px) {
  .ins_productdCon21 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productdCon22 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: var(--color_b2);
}
.ins_productdCon22 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon22 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon22 .center_box .top_info .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon22 .center_box .top_info .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon22 .center_box .top_info .swiper_btnImg {
  border: 1px solid var(--border2);
}
.ins_productdCon22 .center_box .top_info .swiper_btnImg i {
  color: var(--color005);
}
.ins_productdCon22 .center_box .top_info .swiper_btnImg:hover i {
  color: var(--active_color2);
}
.ins_productdCon22 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_productdCon22 .center_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_productdCon22 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  background: var(--color_b1);
  padding: 0.4rem 0.48rem;
  padding-bottom: 0;
  border-radius: 0.08rem;
  overflow: hidden;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--color000);
}
.ins_productdCon22 .center_box .swiper_box ul li .item .word .t2 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.08rem;
  color: var(--color669);
}
.ins_productdCon22 .center_box .swiper_box ul li .item .word .idx_more2 {
  margin-top: 0.32rem;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
  position: relative;
  z-index: 1;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 76%;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .img .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;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .imgBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .imgBg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productdCon22 .center_box .swiper_box ul li .item .imgBg2 img,
.ins_productdCon22 .center_box .swiper_box ul li .item .imgBg2 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productdCon22 .center_box .swiper_box ul li .item:hover {
  background: var(--active_color);
}
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .imgBg,
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .imgBg2 {
  opacity: 1;
}
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .word .t1,
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .word .t2 {
  color: #FFF;
}
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .word .idx_more2 .more {
  color: #FFFFFF !important;
}
.ins_productdCon22 .center_box .swiper_box ul li .item:hover .word .idx_more2 .more img {
  filter: brightness(0) invert(1) !important;
}
.ins_productdCon22 .center_box .swiper_box ul li .item.bgImg:hover {
  background: #FFF;
}
.ins_productdCon22 .center_box .swiper_box ul li .item.bgImg:hover .img,
.ins_productdCon22 .center_box .swiper_box ul li .item.bgImg:hover .imgBig {
  opacity: 0;
}
.ins_productdCon22 .center_box .swiper_box.bgColor000 ul li .item .word .idx_more2 .more {
  color: #999999;
}
.ins_productdCon22 .center_box .swiper_box.bgColor000 ul li .item .word .idx_more2 .more img {
  filter: brightness(0) invert(0.6);
}
.ins_productdCon23 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_productdCon23 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon23 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productdCon23 .center_box .ins_title .t1 {
  color: var(--color000);
}
.ins_productdCon23 .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.4rem;
}
.ins_productdCon23 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border3);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon23 .center_box .item_box .item .word {
  width: fit-content;
  max-width: 60%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--color000);
}
.ins_productdCon23 .center_box .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
}
.ins_productdCon23 .center_box .item_box .item .icon .more {
  width: fit-content;
  cursor: pointer;
  padding: 0.15rem 0.32rem;
  border-radius: 0.12rem;
  border: 1px solid var(--border3);
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color000);
}
.ins_productdCon23 .center_box .item_box .item .icon .more img {
  filter: var(--img_fitr);
}
.ins_productdCon23 .center_box .item_box .item .icon .more:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF !important;
}
.ins_productdCon23 .center_box .item_box .item .icon .more:hover img {
  filter: brightness(0) invert(1) !important;
}
@media (max-width:990px) {
  .ins_productdCon23 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_productdCon23 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .ins_productdCon23 .center_box .item_box .item .icon {
    width: 100%;
    height: auto;
  }
}
.ins_abouotryCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_abouotryCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_abouotryCon1 .center_box .top_info {
  width: 100%;
  height: auto;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_abouotryCon1 .center_box .top_info .word_box {
  width: fit-content;
}
.ins_abouotryCon1 .center_box .top_info .word_box .public_item {
  padding-left: 0.2rem;
  gap: 0.2rem 1rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_abouotryCon1 .center_box .top_info .swiper_btnCon {
  flex-shrink: 0;
}
.ins_abouotryCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_abouotryCon1 .center_box .swiper_box ul li {
  width: 0;
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 110%;
}
.ins_abouotryCon1 .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_abouotryCon1 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  font-size: var(--font16);
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_abouotryCon1 .center_box .swiper_box ul li .centerInfo:hover .word {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_abouotryCon1 .center_box .top_info .word_box {
    width: 100%;
    height: auto;
  }
}
.ins_navbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
}
.ins_navbox .icon {
  font-size: var(--font16);
  color: #999999;
}
.ins_navbox .one {
  font-size: var(--font14);
  color: #999999;
}
.ins_navbox .one.active {
  color: #000000;
}
.ins_navbox .one:hover {
  color: #000000;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
.ins_responsibilitiesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_responsibilitiesCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.3rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responsibilitiesCon1 .center_box .item_box .item {
  width: fit-content;
  font-size: var(--font16);
  color: #666666;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_responsibilitiesCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.45em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_responsibilitiesCon1 .center_box .item_box .item.active,
.ins_responsibilitiesCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_responsibilitiesCon1 .center_box .item_box .item.active::after,
.ins_responsibilitiesCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
  transform: translateX(-0.2rem);
}
@media (max-width:990px) {
  .ins_responsibilitiesCon1 {
    display: none;
  }
}
.ins_responsibilitiesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_responsibilitiesCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon2 .center_box .ins_title2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_responsibilitiesCon2 .center_box .ins_title2 .t1 {
  width: 50%;
  font-weight: 600;
}
.ins_responsibilitiesCon2 .center_box .ins_title2 .t2 {
  width: 44%;
  color: #666666;
  line-height: 1.5;
}
.ins_responsibilitiesCon2 .center_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_responsibilitiesCon2 .center_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_responsibilitiesCon2 .center_box .ins_title2 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_responsibilitiesCon2 .center_box .ins_title2 .t1 {
    width: 100%;
    height: auto;
  }
  .ins_responsibilitiesCon2 .center_box .ins_title2 .t2 {
    width: 100%;
    height: auto;
  }
}
.ins_responsibilitiesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_responsibilitiesCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_responsibilitiesCon3 .center_box .content .left_box {
  width: 55.76%;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info .cont {
  width: 100%;
  height: auto;
  display: none;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info .cont .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info .cont .img img {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info .cont.active {
  display: block;
}
.ins_responsibilitiesCon3 .center_box .content .left_box .content_info .cont.active .img {
  opacity: 1;
}
.ins_responsibilitiesCon3 .center_box .content .right_box {
  width: 37%;
}
.ins_responsibilitiesCon3 .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_responsibilitiesCon3 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font28);
  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;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .top i {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_responsibilitiesCon3 .center_box .content .right_box .item_box .item .top i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--color_999);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .top i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--color_999);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
  border-radius: 100px;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  margin-top: 0.17rem;
  padding-bottom: 0.48rem;
  display: none;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .bot .word {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  line-height: 1.5;
  color: #666666;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item:last-child .bot {
  padding-bottom: 0;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item.active .top {
  color: #000;
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item.active .top i::after {
  background: var(--active_color);
}
.ins_responsibilitiesCon3 .center_box .content .right_box .item_box .item.active .top i::before {
  background: var(--active_color);
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_responsibilitiesCon3 .center_box .content .left_box {
    display: none;
  }
}
.ins_responsibilitiesCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_responsibilitiesCon4 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_responsibilitiesCon4 .center_box .left_box {
  width: 37%;
}
.ins_responsibilitiesCon4 .center_box .right_box {
  width: 55.76%;
}
.ins_responsibilitiesCon4 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
}
.ins_responsibilitiesCon4 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon5 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 5.8rem;
  background-image: url(../images/z68.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ins_responsibilitiesCon5 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_responsibilitiesCon5 .center_box .ins_title {
  width: 73%;
}
.ins_responsibilitiesCon5 .center_box .ins_title .t1 {
  color: #FFFFFF;
}
.ins_responsibilitiesCon5 .center_box .ins_title .t2 {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_responsibilitiesCon5 {
    background-attachment: unset;
  }
  .ins_responsibilitiesCon5 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_responsibilitiesCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_responsibilitiesCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon6 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_responsibilitiesCon6 .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.4rem;
}
.ins_responsibilitiesCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_responsibilitiesCon6 .center_box .item_box .item .word {
  width: fit-content;
  max-width: 60%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_responsibilitiesCon6 .center_box .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
}
.ins_responsibilitiesCon6 .center_box .item_box .item .icon .more {
  width: fit-content;
  cursor: pointer;
  padding: 0.15rem 0.32rem;
  border-radius: 0.12rem;
  border: 1px solid #0000001A;
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.ins_responsibilitiesCon6 .center_box .item_box .item .icon .more:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF !important;
}
.ins_responsibilitiesCon6 .center_box .item_box .item .icon .more:hover img {
  filter: brightness(0) invert(1) !important;
}
@media (max-width:990px) {
  .ins_responsibilitiesCon6 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_responsibilitiesCon6 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .ins_responsibilitiesCon6 .center_box .item_box .item .icon {
    width: 100%;
    height: auto;
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box .top_info .public_item {
  margin-top: 0;
}
.ins_newCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem 0.16rem;
  margin-top: 0.8rem;
}
.ins_newCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #F5F5F5;
  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_newCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  flex-shrink: 0;
}
.ins_newCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_newCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .item_box .item .word {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  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;
}
.ins_newCon1 .center_box .item_box .item .word .t1 {
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.ins_newCon1 .center_box .item_box .item .word .icon {
  width: 100%;
  height: auto;
  margin-top: 1.08rem;
  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-top: 0.32rem;
  border-top: 1px solid #0000001A;
}
.ins_newCon1 .center_box .item_box .item .word .icon .time {
  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.08rem;
  color: #666666;
  font-size: var(--font16);
}
.ins_newCon1 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_newCon1 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_newCon1 .center_box .item_box .item:hover .word .icon .idx_more2 .more {
  color: #000000;
}
.ins_newCon1 .center_box .item_box .item:hover .word .icon .idx_more2 .more img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.3rem;
  }
  .ins_newCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.4rem;
  padding-bottom: 0.8rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.14rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_newCon2 .center_box .content .left_box {
  width: 65%;
}
.ins_newCon2 .center_box .content .left_box .t1 {
  font-weight: 600;
}
.ins_newCon2 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  margin-top: 0.33rem;
}
.ins_newCon2 .center_box .content .left_box .list .one {
  font-size: var(--font16);
  color: #666666;
  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_newCon2 .center_box .content .left_box .list .one img {
  width: 0.26rem;
  min-width: 15px;
}
.ins_newCon2 .center_box .content .right_box {
  width: fit-content;
  flex-shrink: 0;
}
.ins_newCon2 .center_box .content .right_box .share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.ins_newCon2 .center_box .content .right_box .share_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon2 .center_box .content .right_box .share_box .one .icon {
  width: 0.4rem;
  height: 0.4rem;
  background: #e6e6e6;
  border-radius: 100px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content .right_box .share_box .one .imgs {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  bottom: calc(100% + 0.1rem);
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.05rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content .right_box .share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.ins_newCon2 .center_box .content .right_box .share_box .one:hover .icon {
  background: var(--active_color);
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .left_box {
  width: 69.5%;
}
.ins_newCon3 .center_box .left_box .content {
  width: 100%;
  height: auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font16);
  line-height: 1.5;
  color: #666666;
}
.ins_newCon3 .center_box .left_box .content h2 {
  font-weight: 500;
  color: var(--active_color);
  font-size: var(--font24);
}
.ins_newCon3 .center_box .left_box .content img {
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .left_box .content .table {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  border: 1px solid #0000001A;
  overflow: hidden;
}
.ins_newCon3 .center_box .left_box .content .table table {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .left_box .content .table table tr {
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .left_box .content .table table tr td {
  padding: 0.2rem 0.48rem;
}
.ins_newCon3 .center_box .left_box .content .table table tr td:first-child {
  font-size: var(--font20);
  font-weight: 600;
  width: 38%;
  background: #F5F5F5;
}
.ins_newCon3 .center_box .left_box .content .table table tr:last-child {
  border-bottom: 0;
}
.ins_newCon3 .center_box .left_box .content .nameBox {
  width: 100%;
  height: auto;
  background: url(../images/bg12.jpg) no-repeat;
  background-size: cover;
  padding: 0.64rem;
  padding-right: 21%;
  border-radius: 0.08rem;
  overflow: hidden;
  margin-top: 0.65rem;
}
.ins_newCon3 .center_box .left_box .content .nameBox .t1 {
  font-weight: 700;
}
.ins_newCon3 .center_box .left_box .content .nameBox .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666;
  line-height: 1.5;
}
.ins_newCon3 .center_box .left_box .content .nameBox .one {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_newCon3 .center_box .left_box .content .nameBox .one .icon {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
}
.ins_newCon3 .center_box .left_box .content .nameBox .one .word {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .left_box .content .nameBox .one .word .name {
  font-weight: 700;
  font-size: var(--font16);
}
.ins_newCon3 .center_box .left_box .content .nameBox .one .word .const {
  color: #999;
  line-height: 1.5;
  font-size: var(--font14);
}
.ins_newCon3 .center_box .left_box .content .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_newCon3 .center_box .left_box .content .img_box .img {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .left_box .content .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .left_box .content .img_box .idx_more {
  position: absolute;
  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;
  left: 0;
  bottom: 0.48rem;
}
.ins_newCon3 .center_box .right_box {
  width: 24.16%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
  background: #F5F5F5;
  border-radius: 0.12rem;
}
.ins_newCon3 .center_box .right_box .title {
  padding: 0.32rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 600;
}
.ins_newCon3 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  padding: 0 0.32rem;
  margin-top: 0.1rem;
  padding-bottom: 0.16rem;
}
.ins_newCon3 .center_box .right_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;
  border-radius: 0.12rem;
  position: relative;
  z-index: 1;
  border-bottom: 1px dashed #0000001A;
  padding: 0.24rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon3 .center_box .right_box .item_box .item:last-child {
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .right_box {
    display: none;
  }
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.8rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item {
  width: fit-content;
  font-size: var(--font16);
  color: #666666;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0.3rem 0;
}
.ins_joinCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--active_color);
  border-radius: 0.02rem;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_joinCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_joinCon1 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_joinCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_joinCon1 {
    display: none;
  }
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .ins_title2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon2 .center_box .ins_title2 .t1 {
  width: 50%;
  font-weight: 600;
}
.ins_joinCon2 .center_box .ins_title2 .t2 {
  width: 36%;
  color: #666666;
  line-height: 1.5;
}
.ins_joinCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_joinCon2 .center_box .content .left_box {
  width: 55.76%;
}
.ins_joinCon2 .center_box .content .left_box .content_info {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .content .left_box .content_info .cont {
  width: 100%;
  height: auto;
  display: none;
}
.ins_joinCon2 .center_box .content .left_box .content_info .cont .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon2 .center_box .content .left_box .content_info .cont .img img {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .content .left_box .content_info .cont.active {
  display: block;
}
.ins_joinCon2 .center_box .content .left_box .content_info .cont.active .img {
  opacity: 1;
}
.ins_joinCon2 .center_box .content .right_box {
  width: 37%;
}
.ins_joinCon2 .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_joinCon2 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font28);
  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;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .top i {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_joinCon2 .center_box .content .right_box .item_box .item .top i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--color_999);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .top i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--color_999);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
  border-radius: 100px;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  margin-top: 0.17rem;
  display: none;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .bot .word {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  line-height: 1.5;
  color: #666666;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item:last-child .bot {
  padding-bottom: 0;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item.active .top {
  color: #000;
}
.ins_joinCon2 .center_box .content .right_box .item_box .item.active .top i::after {
  background: var(--active_color);
}
.ins_joinCon2 .center_box .content .right_box .item_box .item.active .top i::before {
  background: var(--active_color);
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box .ins_title2 {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_joinCon2 .center_box .ins_title2 .t1 {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .ins_title2 .t2 {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .content {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .content .left_box {
    display: none;
  }
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .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_joinCon3 .center_box .top_info .ins_title {
  width: 51%;
}
.ins_joinCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_joinCon3 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60.55%;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  padding-right: 0.8rem;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  line-height: 1.5;
}
@media (max-width:990px) {
  .ins_joinCon3 .center_box .top_info .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_joinCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_joinCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_joinCon4 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60.55%;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon4 .center_box .content1 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  font-size: var(--font20);
  font-weight: 500;
}
.ins_joinCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_joinCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon5 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_joinCon5 .center_box .ins_title .t2 {
  margin-top: 0.16rem;
}
.ins_joinCon5 .center_box .ins_title .t2 a {
  display: contents;
  color: var(--active_color);
}
.ins_joinCon5 .center_box .select_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.64rem;
  gap: 0.16rem;
  position: relative;
  z-index: 5;
}
.ins_joinCon5 .center_box .select_info .one {
  width: 4.68rem;
}
.ins_joinCon5 .center_box .select_info .one .layui-form-select .layui-input {
  width: 100%;
  height: 0.68rem;
  border-radius: 0.12rem;
  border: 1px solid #DDDDDD;
  padding: 0 0.32rem;
  color: #999999;
  font-size: var(--font16);
}
.ins_joinCon5 .center_box .select_info .one .layui-form-selected dl {
  top: 100% !important;
  bottom: unset;
}
.ins_joinCon5 .center_box .select_info .one .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 35%;
  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.28rem;
  margin-top: unset !important;
}
.ins_joinCon5 .center_box .select_info .one .layui-form-select .layui-edge::after {
  content: '\e623';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font12);
}
.ins_joinCon5 .center_box .select_info .one .layui-form-select dl dd.layui-this {
  font-size: var(--font16);
}
.ins_joinCon5 .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.25rem;
  position: relative;
  z-index: 1;
}
.ins_joinCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0 0.64rem;
}
.ins_joinCon5 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.48rem 0;
}
.ins_joinCon5 .center_box .item_box .item .top .word {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon5 .center_box .item_box .item .top .word .t1 {
  font-weight: 600;
}
.ins_joinCon5 .center_box .item_box .item .top .word .ic {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  color: #999999;
}
.ins_joinCon5 .center_box .item_box .item .top .word .ic img {
  width: 0.4rem;
}
.ins_joinCon5 .center_box .item_box .item .top .icon {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.12rem;
  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;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon5 .center_box .item_box .item .top .icon i {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_joinCon5 .center_box .item_box .item .top .icon i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_joinCon5 .center_box .item_box .item .top .icon i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
  border-radius: 100px;
}
.ins_joinCon5 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.54rem;
  border-top: 1px solid #0000001A;
  padding-top: 0.56rem;
  display: none;
}
.ins_joinCon5 .center_box .item_box .item .bot .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_joinCon5 .center_box .item_box .item .bot .content .one {
  width: 100%;
  height: auto;
}
.ins_joinCon5 .center_box .item_box .item .bot .content .one .t1 {
  font-weight: 600;
  line-height: 1.2;
}
.ins_joinCon5 .center_box .item_box .item .bot .content .one .t2 {
  margin-top: 0.32rem;
  line-height: 1.75;
}
.ins_joinCon5 .center_box .item_box .item.active .top {
  padding-bottom: 0.32rem;
}
.ins_joinCon5 .center_box .item_box .item.active .top .icon {
  background: var(--active_color);
}
.ins_joinCon5 .center_box .item_box .item.active .top .icon i::before {
  transform: rotate(0);
  background: #FFFFFF;
}
.ins_joinCon5 .center_box .item_box .item.active .top .icon i::after {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_joinCon5 .center_box .item_box .item .top {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.2rem;
  }
  .ins_joinCon5 .center_box .item_box .item .top .word {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_joinCon5 .center_box .item_box .item .top .word .t1 {
    width: 100%;
    height: auto;
  }
  .ins_joinCon5 .center_box .item_box .item .top .word .ic {
    width: 100%;
    height: auto;
  }
  .ins_joinCon5 .center_box .item_box .item .top .icon {
    flex-shrink: 0;
  }
}
.ins_searchResultCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.ins_searchResultCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_searchResultCon1 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_searchResultCon1 .center_box .ins_title .input_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  --height: 0.8rem;
  gap: 0.08rem;
}
.ins_searchResultCon1 .center_box .ins_title .input_box input {
  width: 65.9%;
  height: var(--height);
  padding: 0 0.32rem;
  border-radius: 0.12rem;
  border: 0;
  background: #FFFFFF;
}
.ins_searchResultCon1 .center_box .ins_title .input_box .btn {
  width: fit-content;
  height: var(--height);
  padding: 0 0.34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.18rem;
  background: var(--active_color);
  border: 0;
  border-radius: 0.12rem;
  font-size: var(--font20);
  color: #FFFFFF;
  cursor: pointer;
}
.ins_searchResultCon1 .center_box .ins_title .input_box .btn img {
  width: 0.2rem;
  min-width: 15px;
}
.ins_searchResultCon1 .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.2rem 1.26rem;
  margin-top: 1.2rem;
}
.ins_searchResultCon1 .center_box .list .one {
  font-size: var(--font16);
  color: #999999;
  padding-bottom: 0.31rem;
  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_searchResultCon1 .center_box .list .one::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0.02rem;
  background: var(--active_color);
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_searchResultCon1 .center_box .list .one.active {
  color: var(--active_color);
}
.ins_searchResultCon1 .center_box .list .one.active::after {
  width: 100%;
}
@media (max-width:990px) {
  .ins_searchResultCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_searchResultCon1 .center_box .list {
    gap: 0.3rem;
  }
}
.ins_searchResultCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_searchResultCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_searchResultCon2 .center_box .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font24);
}
.ins_searchResultCon2 .center_box .title p {
  font-weight: 200;
}
.ins_searchResultCon2 .center_box .title .Coac {
  font-weight: 600;
}
.ins_searchResultCon2 .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.32rem;
}
.ins_searchResultCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_searchResultCon2 .center_box .item_box .item .list {
  width: 100%;
  height: 100%;
}
.ins_searchResultCon2 .center_box .item_box .item .list .img {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_searchResultCon2 .center_box .item_box .item .list .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item .list .t1 {
  color: #999999;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item .list .t3 {
  margin-top: 0.08rem;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item .list .word {
  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;
  gap: 0.5rem;
}
.ins_searchResultCon2 .center_box .item_box .item .list .word .t2 {
  color: #999999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item .list .cont {
  width: 100%;
  height: auto;
}
.ins_searchResultCon2 .center_box .item_box .item .list .cont .wo {
  font-size: var(--font14);
  line-height: 1.71;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item .list .cont .wo::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color2);
  border-radius: 0.02rem;
  left: 0;
  top: 0.65em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchResultCon2 .center_box .item_box .item:hover .list .img img {
  transform: scale(1.05);
}
.ins_searchResultCon2 .center_box .item_box .item:hover .list .t1 {
  color: var(--active_color);
}
.ins_searchResultCon2 .center_box .item_box .item:hover .list .t2 {
  color: #000;
}
.ins_searchResultCon2 .center_box .item_box .item:hover .list .t3 {
  color: var(--active_color);
}
.ins_searchResultCon2 .center_box .item_box .item:hover .list .cont .wo {
  color: #000;
}
@media (max-width:990px) {
  .ins_searchResultCon2 .center_box .item_box .item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
}
.ins_searchResultCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2.24rem 0;
}
.ins_searchResultCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_searchResultCon3 .center_box .word {
  color: #999999;
}
.ins_404Con1 {
  width: 100%;
  height: 100vh;
  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;
}
.ins_404Con1 .content {
  width: 100%;
  height: auto;
}
.ins_404Con1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_404Con1 .content .center_box .more_info {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_404Con1 .content .center_box .more_info .idx_more.bgDD .word {
  background: #FFFFFF;
  border: 0;
}
.ins_404Con1 .content .center_box .more_info .idx_more.bgDD .icon {
  background: #FFFFFF;
  border: 0;
}
@media (max-width:990px) {
  .ins_404Con1 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-top: 2rem;
  }
}
