@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;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #016BFF;
  --color_fff: #ffffff;
  --color_text: #282828;
  --active_color2: #E60012;
  --color_878: #878E99;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(12px, 0.16rem, 16px);
  --font17: clamp(12px, 0.17rem, 17px);
  --font18: clamp(13px, 0.18rem, 18px);
  --font20: clamp(13px, 0.2rem, 20px);
  --font22: clamp(14px, 0.22rem, 22px);
  --font24: clamp(14px, 0.24rem, 24px);
  --font26: clamp(14px, 0.26rem, 26px);
  --font28: clamp(14px, 0.28rem, 28px);
  --font30: clamp(15px, 0.3rem, 30px);
  --font32: clamp(16px, 0.32rem, 32px);
  --font34: clamp(17px, 0.34rem, 34px);
  --font36: clamp(18px, 0.36rem, 36px);
  --font38: clamp(19px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(20px, 0.4rem, 40px);
  --font42: clamp(21px, 0.42rem, 42px);
  --font44: clamp(22px, 0.44rem, 44px);
  --font46: clamp(23px, 0.46rem, 46px);
  --font48: clamp(24px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(25px, 0.5rem, 50px);
  --font52: clamp(26px, 0.52rem, 52px);
  --font54: clamp(27px, 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);
  --font62: 0.62rem;
}
/* 公共字体 */
.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);
}
.font62 {
  font-size: var(--font62);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
.ptop120 {
  padding-top: 1.2rem !important;
}
.pbot120 {
  padding-bottom: 1.2rem !important;
}
.ptop60 {
  padding-top: 0.6rem !important;
}
.pbot60 {
  padding-bottom: 0.6rem !important;
}
/* 文字颜色 */
.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: "MiSans";
  src: url("../fonts/MiSans-ExtraLight.otf");
  font-weight: 200;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Light.otf");
  font-weight: 250;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Normal.otf");
  font-weight: normal;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Demibold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Semibold.otf");
  font-weight: 900;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1440,
.wrap,
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1440,
  .wrap,
  .container {
    max-width: 75%;
  }
}
@media (max-width:990px) {
  .w1440,
  .wrap,
  .container {
    max-width: 100%;
    padding: 0 0.4rem;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.92rem;
  font-family: "MiSans";
  color: #0C0D0E;
}
main.active {
  --header-height: 0.92rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
  transform: translateY(-2rem);
}
/* --------------------------------------------------------------- 全站左右结构 */
.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(233deg, #00C8FF 17.58%, #006AFF 70.71%);
}
.te_gra {
  background: linear-gradient(89deg, #006AFF 15.57%, #00C8FF 82.93%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0.12rem;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.12rem;
}
.idxPageShow span {
  width: 0.52rem;
  height: 0.08rem;
  border-radius: 100px;
  opacity: 1;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color);
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all linear 5s;
}
.idxPageShow.bgF span {
  border-color: #FFFFFF;
}
.idxPageShow.bgF .swiper-pagination-bullet-active {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
@media (max-width:990px) {
  .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.12rem;
    margin-top: 20px;
  }
  .idxPageShow span {
    width: 5px;
    height: 5px;
    background: var(--active_color);
    opacity: 0.1;
  }
  .idxPageShow .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .idxPageShow .swiper-pagination-bullet-active::after {
    width: 100%;
    transition: all linear 0s;
    background: var(--active_color) !important;
  }
}
.pb120 {
  padding-bottom: 1.2rem !important;
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
/*.toUp_Box.posFix .center_box .item_box .item {*/
/*  padding: 0.28rem 0;*/
/*}*/
.toUp_Box.small {
  top: var(--header-height);
}
.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: auto;
  position: absolute;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: start !important;
    align-items: start !important;
  }
  .top_info .swiper_pagerBox {
    display: none !important;
  }
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw450 {
  font-weight: 450;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.jump_num {
  display: inline-block;
  padding-right: 0.03rem;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
* {
  scrollbar-color: var(--active_color) #d4d6d700;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.idx_more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.idx_more .more {
  width: fit-content;
  height: 0.56rem;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  border-radius: 100px;
  padding: 0 0.32rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.idx_more .more span {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: var(--font18);
}
.idx_more .more.bgCor {
  background: linear-gradient(233deg, #00C8FF 17.58%, #006AFF 70.71%);
  color: #FFFFFF;
  overflow: hidden;
}
.idx_more .more.bgCor::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;
}
.idx_more .more.bgCor:hover::after {
  opacity: 0.1;
}
.idx_more .more.bgCo2 {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(121deg, #FFF 9.2%, #C8E0FF 58.13%);
  color: var(--active_color);
  font-weight: 200;
}
.idx_more .more.bgCo2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;
}
.idx_more .more.bgCo2:hover {
  border: 1px solid #FFF;
}
.idx_more .more.bgCo2:hover::after {
  opacity: 0.2;
}
.idx_more .more.bgFFF {
  color: var(--active_color);
}
.idx_more .more.bgFFF::after {
  content: '';
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 100px;
  border: 1px solid var(--active_color);
}
.idx_more .more.bgFFF:hover {
  color: #0160E5;
}
.idx_more .more.bgFFF:hover::after {
  border: 2px solid #0160E5;
}
.idx_more .more.round {
  width: 0.56rem;
  height: 0.56rem;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid #0160E5;
  padding: 0;
}
.idx_more .more.round:hover {
  border: 2px solid #0160E5;
}
.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.13rem;
  cursor: pointer;
}
.idx_more2 .more img {
  font-size: 0;
}
.idx_more2 .more span {
  color: var(--active_color);
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more i {
  width: 0.18rem;
  height: 0.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #006AFF1A;
  border-radius: 100px;
  overflow: hidden;
  font-size: 0;
}
.idx_more2 .more:hover span {
  color: #0160E5;
}
.idx_more2 .more:hover i img {
  animation: more 0.5s linear;
}
.swiper_pagerBox {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.swiper_pagerBox .icon {
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid #016BFF66;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper_pagerBox .icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.swiper_pagerBox .icon:hover img {
  filter: brightness(0) invert(1);
}
.swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid #016BFF66;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 50%;
  pointer-events: initial;
  transform: translateY(-50%);
  z-index: 10;
}
.swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.swiper_icon.next {
  left: calc(100% + 0.32rem);
}
.swiper_icon.prev {
  right: calc(100% + 0.32rem);
}
@media (max-width:990px) {
  .swiper_icon {
    display: none !important;
  }
}
.layui_item {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font12);
}
.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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font12);
  font-weight: 200;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 0.04rem;
  position: relative;
  z-index: 1;
  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 #CCCCCC;
  background: #FFFFFF;
}
.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:1440px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.2em;
  }
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .icon {
  color: var(--active_color);
  padding-bottom: 0.16rem;
}
.idx_title .t1 {
  color: #878E99;
  font-weight: 900;
}
.idx_title .t1 span {
  background: linear-gradient(89deg, #006AFF 15.57%, #00C8FF 82.93%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx_title .t2 {
  color: #878E99;
  font-weight: 300;
  margin-top: 0.16rem;
}
.idx_title .t3 {
  color: #0C0D0E;
  font-weight: 900;
}
.idx_title .t4 {
  margin-top: 0.32rem;
  color: #878E99;
  font-weight: 250;
}
@media (max-width:990px) {
  .idx_title {
    width: 100% !important;
    text-align: start !important;
    max-width: 100% !important;
  }
  .idx_title .t1 p,
  .idx_title .t4 p,
  .idx_title .t2 p {
    display: contents;
  }
  .idx_title .tc {
    text-align: start !important;
  }
}
.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: #878E99;
}
.ins_navbox .one {
  font-size: var(--font18);
  color: #878E99;
}
.ins_navbox .one.active {
  color: #020C19;
}
.ins_navbox .one:hover {
  color: #020C19;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
.swiper_select {
  width: 100%;
  height: auto;
  margin-top: 0.54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.swiper_select .select {
  width: fit-content;
  max-width: 100%;
}
.swiper_select .select ul li {
  width: auto;
}
.swiper_select .select ul li .centerInfo {
  width: fit-content;
  height: 0.76rem;
  min-height: 50px;
  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;
  gap: 0.12rem;
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper_select .select ul li .centerInfo span {
  font-size: var(--font24);
}
.swiper_select .select ul li .centerInfo img {
  width: 0.4rem;
}
.swiper_select .select ul li .centerInfo:hover {
  color: #666666;
}
.swiper_select .select ul li.active .centerInfo {
  background: #F8F9FA;
}
.bg_graBox::after {
  content: '';
  position: absolute;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 10%, #ffffff00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 8;
  pointer-events: none;
}
.bg_graBox::before {
  content: '';
  position: absolute;
  width: 10%;
  height: 100%;
  background: linear-gradient(-90deg, #ffffff 10%, #ffffff00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: 8;
  pointer-events: none;
}
@media (max-width:990px) {
  .bg_graBox::after,
  .bg_graBox::before {
    width: 0.4rem;
  }
}
.share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.share_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_box .one .icon {
  width: 0.4rem;
  height: 0.4rem;
  background: #DCE0E5;
  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;
}
.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;
  box-shadow: 0 0 10px 1px #8a8a8a1a;
}
.share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.share_box .one:hover .icon {
  background: var(--active_color);
}
.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;
}
.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;
}
.tow_shadowf5::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #F8F9FA00, #F8F9FA 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 6;
  pointer-events: none;
}
.tow_shadowf5::before {
  content: '';
  position: absolute;
  width: 18%;
  height: 100%;
  background: linear-gradient(-90deg, #F8F9FA, #F8F9FA00 90%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: 6;
  pointer-events: none;
}
/*
    <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);
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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 {
  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;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 0.7rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 900;
  line-height: 1.19;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t2 {
  font-weight: 250;
  margin-top: 0.32rem;
  color: #878E99;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.61rem;
  gap: 0.91rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number .word {
  font-family: "Din";
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.12rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .name {
  margin-top: 0.07rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.4rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 .wap {
  min-height: 500px;
  object-fit: cover;
}
.idx_homeCon1 .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_homeCon1 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.3rem;
  z-index: 10;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 0.7rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .list {
  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.4rem 0.84rem;
  margin-top: 0.54rem;
}
.idx_homeCon2 .center_box .list .one {
  width: fit-content;
  height: 0.76rem;
  min-height: 50px;
  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;
  gap: 0.12rem;
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_homeCon2 .center_box .list .one span {
  font-size: var(--font24);
}
.idx_homeCon2 .center_box .list .one img {
  width: 0.4rem;
}
.idx_homeCon2 .center_box .list .one:hover {
  color: #666666;
}
.idx_homeCon2 .center_box .list .one.active {
  background: #F8F9FA;
}
.idx_homeCon2 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.76rem;
}
.idx_homeCon2 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon2 .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  padding: 0.4rem;
  padding-top: 0.24rem;
  border-radius: 0.16rem;
  overflow: hidden;
  cursor: pointer;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .img .pb {
  padding-bottom: 67%;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .word .t1 {
  font-weight: 900;
  color: #0C0D0E;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon2 .center_box .content_info .content .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_homeCon2 .center_box .content_info .content .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon2 .center_box .content_info .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.52rem;
}
.idx_homeCon2 .center_box .content_info .content.active {
  display: block;
}
.idx_homeCon2 .center_box .content_info .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  padding: 0.4rem;
  padding-top: 0.24rem;
  border-radius: 0.16rem;
  overflow: hidden;
  cursor: pointer;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .img .pb {
  padding-bottom: 67%;
}
.idx_homeCon2 .center_box .content_info .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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .word .t1 {
  font-weight: 900;
  color: #0C0D0E;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .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.52rem;
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box .content_info .swiper_box ul li .centerInfo .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.2rem;
  padding-top: 0.7rem;
}
.idx_homeCon3 .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  margin-top: 0.76rem;
}
.idx_homeCon3 .content_info .content {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 0.18rem;
  background: linear-gradient(277deg, #99C5FF -29.38%, #F2F5FA 103.51%);
}
.idx_homeCon3 .content_info .content .cont_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .content .cont_box .left_box {
  width: 38%;
  padding: 1.05rem 0.41rem 1.29rem 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon3 .content_info .content .cont_box .left_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .content .cont_box .left_box .word .t1 {
  font-weight: 900;
}
.idx_homeCon3 .content_info .content .cont_box .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.idx_homeCon3 .content_info .content .cont_box .right_box {
  width: 62%;
}
.idx_homeCon3 .content_info .content .cont_box .right_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .content .cont_box .right_box .img .pb {
  padding-bottom: 70%;
}
.idx_homeCon3 .content_info .content .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.idx_homeCon3 .content_info .content.active {
  display: block;
}
.idx_homeCon3 .content_info .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  background: linear-gradient(277deg, #99C5FF -29.38%, #F2F5FA 103.51%);
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .left_box {
  width: 38%;
  padding: 1.05rem 0.41rem 1.29rem 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .word .t1 {
  font-weight: 900;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .right_box {
  width: 62%;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .img .pb {
  padding-bottom: 70%;
}
.idx_homeCon3 .content_info .swiper_box ul li .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .left_box {
    width: 100%;
    height: auto;
    padding: 0.4rem;
    padding-bottom: 0;
  }
  .idx_homeCon3 .content_info .swiper_box ul li .centerInfo .cont_box .right_box {
    width: 100%;
    height: auto;
    padding: 0 0.2rem;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.94rem 0;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .idx_title .t1 {
  color: #FFFFFF;
}
.idx_homeCon4 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.idx_homeCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #FFFFFF;
  gap: 0.3rem;
}
.idx_homeCon4 .center_box .item_box .item {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.05rem;
}
.idx_homeCon4 .center_box .item_box .item .icon {
  font-weight: 900;
}
.idx_homeCon4 .center_box .item_box .item .word {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_homeCon4 .center_box .item_box .item .word .font24 {
  font-weight: 900;
}
.idx_homeCon4 .center_box .item_box .item .word .font14 {
  font-weight: 200;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .idx_homeCon4 .center_box .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 0.3rem;
  }
  .idx_homeCon4 .center_box .item_box .item .word {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row !important;
  }
  .idx_homeCon4 .center_box .item_box .item .word .font14 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .idx_homeCon4 .center_box .idx_more {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.44rem;
  padding-bottom: 0.41rem;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .swiper_info .swiper_pagerBox {
  position: absolute;
  right: 0;
  top: 0.6rem;
  z-index: 10;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .idx_title {
  width: 50%;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box {
  width: 33%;
  border-radius: 0.18rem;
  background: linear-gradient(348deg, #F3F9FF 9.78%, #D7E6F0 218.79%);
  padding: 0.2rem 0.52rem;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.32rem 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;
  border-bottom: 1px solid #0000001A;
  gap: 0.16rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .word {
  width: 25%;
  height: auto;
  font-weight: 900;
  display: -webkit-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;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .word i {
  font-style: unset;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .word img {
  width: 0.15rem;
  min-width: 9px;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .imgs {
  width: 25%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .imgs img {
  width: 0.48rem;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .icon {
  width: 75%;
  font-size: var(--font18);
  color: #878E99;
  padding-left: 0.1rem;
  font-weight: 250;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .icon span {
  font-weight: 500;
  color: #000;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item .icon.icon1 {
  font-size: var(--font22);
  width: 100%;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .left_box .item_box .item:last-child {
  border-bottom: 0;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box {
  width: 66.2%;
  border-radius: 0.18rem;
  background: linear-gradient(145deg, #D7E4F5 -73.23%, #EFF5FF 82.58%);
  padding: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.9rem;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box .word .t1 {
  font-weight: 900;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box .word .t2 {
  margin-top: 0.24rem;
  color: #878E99;
  font-weight: 300;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box .word .idx_more2 {
  margin-top: 0.4rem;
}
.idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .content .right_box .logo {
  width: 100%;
  height: 0.48rem;
}
.idx_homeCon5 .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 0.58rem;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .swiper_item::after {
  content: '';
  position: absolute;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, #ffffffdc 10%, #ffffff00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 8;
}
.idx_homeCon5 .swiper_item::before {
  content: '';
  position: absolute;
  width: 10%;
  height: 100%;
  background: linear-gradient(-90deg, #ffffffdc 10%, #ffffff00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: 8;
}
.idx_homeCon5 .swiper_item ul li {
  width: 0%;
  height: auto;
}
.idx_homeCon5 .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.idx_homeCon5 .swiper_item ul li .centerInfo .pb {
  padding-bottom: 30%;
  opacity: 0.3;
  filter: brightness(0) invert(0.3);
}
.idx_homeCon5 .swiper_item ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon5 .swiper_item ul li.active .centerInfo {
  background: #F8F9FA;
}
.idx_homeCon5 .swiper_item ul li.active .centerInfo .pb {
  filter: unset;
  opacity: 1;
}
@media (max-width:990px) {
  .idx_homeCon5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.6rem;
  }
  .idx_homeCon5 .center_box .swiper_info .swiper_pagerBox {
    display: none;
  }
  .idx_homeCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_homeCon5 .swiper_item {
    margin-top: 0;
  }
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.8rem;
  padding-bottom: 0.72rem;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon6 .center_box .content1 {
  width: 100%;
  height: auto;
  padding: 0.94rem 0;
  padding-left: 1.32rem;
  background-image: url(../images/bg4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.18rem;
  overflow: hidden;
}
.idx_homeCon6 .center_box .content1 .word_box {
  width: 50%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon6 .center_box .content1 .word_box .t1 {
  font-weight: 250;
}
.idx_homeCon6 .center_box .content1 .word_box .t2 {
  font-weight: 700;
  margin-top: 0.24rem;
}
.idx_homeCon6 .center_box .content1 .idx_more {
  margin-top: 0.46rem;
}
.idx_homeCon6 .center_box .content2 {
  width: 60.6%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(12%);
}
.idx_homeCon6 .center_box .content2 .img {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .content2 .img .pb {
  padding-bottom: 66%;
}
@media (max-width:990px) {
  .idx_homeCon6 {
    background-image: url(../images/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 0.18rem;
    overflow: hidden;
    padding-top: 0.4rem;
  }
  .idx_homeCon6 .center_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon6 .center_box .content1 {
    width: 100%;
    height: auto;
    background: unset !important;
    padding: 0.4rem !important;
  }
  .idx_homeCon6 .center_box .content1 .word_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon6 .center_box .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateX(0);
  }
}
.idx_homeCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 1.21rem;
}
.idx_homeCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.idx_homeCon7 .center_box .content_info .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
  background: #F8F9FA;
}
.idx_homeCon7 .center_box .content_info .content1 .news {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.idx_homeCon7 .center_box .content_info .content1 .news .img {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .content_info .content1 .news .img .pb {
  padding-bottom: 56%;
}
.idx_homeCon7 .center_box .content_info .content1 .news .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_homeCon7 .center_box .content_info .content1 .news .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  font-weight: 300;
}
.idx_homeCon7 .center_box .content_info .content1 .news .word .icon {
  color: #878E99;
}
.idx_homeCon7 .center_box .content_info .content1 .news .word .t1 {
  font-weight: 700;
  margin-top: 0.16rem;
  height: calc(2em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .content_info .content1 .news .word .t2 {
  color: #565C66;
  margin-top: 0.24rem;
  height: calc(4em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.idx_homeCon7 .center_box .content_info .content1 .news .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.97rem;
}
.idx_homeCon7 .center_box .content_info .content1 .news:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_homeCon7 .center_box .content_info .content1 .news:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon7 .center_box .content_info .content1 .item_box {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0 0.32rem;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.32rem 0;
  border-bottom: 1px solid #0000001A;
  cursor: pointer;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item .icon {
  color: #878E99;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item .t1 {
  font-weight: 700;
  margin-top: 0.16rem;
  height: calc(2em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item:last-child {
  border: 0;
}
.idx_homeCon7 .center_box .content_info .content1 .item_box .item:hover .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .idx_homeCon7 .center_box .content_info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.idx_homeCon8 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .idx_title {
  text-align: center !important;
}
.idx_homeCon8 .center_box .idx_title .tc {
  text-align: center !important;
}
.idx_homeCon8 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.idx_homeCon8 .center_box .idx_more .more {
  min-width: 2.25rem;
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .t1 {
  color: var(--active_color);
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.24rem;
  line-height: 1.19;
  font-weight: 900;
}
.ins_bannerCon1 .content .center_box .t3 {
  margin-top: 0.32rem;
  color: var(--color_878);
  font-weight: 300;
}
.ins_bannerCon1 .content .center_box .idx_more {
  margin-top: 0.48rem;
}
.ins_bannerCon1 .content .center_box .idx_more .more.bgFFF img {
  width: 0.28rem;
}
.ins_bannerCon1 .content .center_box.coFFF .t2 {
  color: #FFFFFF;
}
.ins_bannerCon1 .content .center_box.coFFF .t3 {
  color: #FFFFFF;
  font-weight: 200;
}
.ins_bannerCon1 .img_w100 img.wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_bannerCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.52rem 0;
}
.ins_bannerCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .center_box .left_box {
  width: 37%;
}
.ins_bannerCon2 .center_box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .center_box .left_box .word .t1 {
  color: var(--active_color);
}
.ins_bannerCon2 .center_box .left_box .word .t2 {
  margin-top: 0.24rem;
  line-height: 1.19;
  font-weight: 900;
}
.ins_bannerCon2 .center_box .left_box .word .t3 {
  margin-top: 0.32rem;
  color: var(--color_878);
  font-weight: 300;
}
.ins_bannerCon2 .center_box .left_box .word .idx_more {
  margin-top: 0.48rem;
}
.ins_bannerCon2 .center_box .right_box {
  width: 51.388%;
  padding: 0.4rem;
  border-radius: 0.16rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
}
.ins_bannerCon2 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
}
.ins_bannerCon2 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea {
  --color: #BCC2CC;
  border: 1px solid #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input::-webkit-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea::-webkit-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input input textarea::-webkit-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input:-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea:-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input input textarea:-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input::-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea::-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input input textarea::-moz-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input:-ms-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea:-ms-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input input textarea:-ms-input-placeholder,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input:focus,
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea:focus {
  border: 1px solid var(--active_color);
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input input {
  width: 100%;
  height: 0.56rem;
  min-height: 35px;
  border-radius: 0.12rem;
  background: #FFF;
  padding-left: 0.24rem;
  font-size: var(--font18);
  font-weight: 250;
  color: #878E99;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input textarea {
  width: 100%;
  height: 1.26rem;
  border-radius: 0.12rem;
  background: #FFF;
  padding: 0.16rem 0.24rem;
  font-weight: 250;
  color: #878E99;
}
.ins_bannerCon2 .center_box .right_box .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .center_box .right_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.2rem;
  margin-top: unset !important;
}
.ins_bannerCon2 .center_box .right_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_bannerCon2 .center_box .right_box .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_bannerCon2 .center_box .right_box .content {
  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.24rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_bannerCon2 .center_box .right_box .content .idx_more .more {
  padding: 0 0.52rem;
  font-weight: 200;
}
@media (max-width:990px) {
  .ins_bannerCon2 .center_box .right_box .content {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 0.3rem;
  }
  .ins_bannerCon2 .center_box .right_box .content .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.4em;
  }
}
.ins_bannerCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon3::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: linear-gradient(90deg, #CCE1FF -6.32%, #CCF4FF 104.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_bannerCon3 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.91rem;
  padding-bottom: 1rem;
}
.ins_bannerCon3 .center_box .ins_navbox {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0.24rem;
}
.ins_bannerCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_bannerCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 39%;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box.w47 {
  width: 47%;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word {
  width: 100%;
  height: auto;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .icon {
  color: var(--active_color);
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .t1 {
  font-weight: 900;
  margin-top: 0.24rem;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .t2 {
  margin-top: 0.32rem;
  color: #878E99;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .icon_box .one {
  width: fit-content;
  height: auto;
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .icon_box .one img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .icon_box i {
  width: 1px;
  height: 0.11rem;
  background: #DEDEDE;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .left_box .word .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 45.5%;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 62%;
}
.ins_bannerCon3 .center_box .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_bannerCon3 .center_box .swiper_icon {
  background: #FFFFFF;
}
.ins_bannerCon3 .center_box .swiper_icon:hover {
  background: var(--active_color);
}
.ins_bannerCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon4 .content {
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_bannerCon4 .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_bannerCon4 .content .center_box .t2 {
  margin-top: 0.24rem;
  line-height: 1.19;
  font-weight: 900;
}
.ins_bannerCon4 .content .center_box .t3 {
  font-weight: 200;
  margin-top: 0.32rem;
}
.ins_bannerCon4 .content .center_box .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_bannerCon4 .content .center_box .icon_box .one {
  width: fit-content;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 250;
}
.ins_bannerCon4 .content .center_box .icon_box .one img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
  filter: brightness(0) invert(1);
}
.ins_bannerCon4 .content .center_box .icon_box i {
  width: 1px;
  height: 0.11rem;
  background: #DEDEDE;
}
.ins_bannerCon4 .content .center_box .idx_more {
  margin-top: 0.48rem;
}
.ins_bannerCon4 .content .center_box.coFFF .t2 {
  color: #FFFFFF;
}
.ins_bannerCon4 .content .center_box.coFFF .t3 {
  color: #FFFFFF;
  font-weight: 200;
}
.ins_bannerCon4 .content .center_box.w37 {
  width: 39%;
}
.ins_bannerCon4 .img_w100 img.wap {
  min-height: 500px;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_bannerCon4 .content .center_box {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.ins_topUpCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F8F9FA;
}
.ins_topUpCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  padding: 0.16rem 0;
  display: none;
}
.ins_topUpCon1 .center_box .left_box {
  width: fit-content;
}
.ins_topUpCon1 .center_box .left_box .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.46rem;
}
.ins_topUpCon1 .center_box .left_box .item_box .item {
  width: fit-content;
  height: 0.48rem;
  min-height: 35px;
  padding: 0 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;
  cursor: pointer;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_topUpCon1 .center_box .left_box .item_box .item.active {
  color: var(--active_color);
  background: #006AFF1A;
  border-radius: 0.08rem;
}
.ins_topUpCon1 .center_box .left_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_topUpCon1 .center_box .right_box {
  width: fit-content;
}
@media (max-width:990px) {
  .ins_topUpCon1 {
    position: relative !important;
    display: none;
  }
  .ins_topUpCon1 .center_box .left_box {
    display: none;
  }
}
.ins_topUpCon1.posFix .center_box {
  display: flex !important;
}
.ins_itsmCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_itsmCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.31rem;
}
.ins_itsmCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #F8F9FA;
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_itsmCon1 .center_box .item_box .item .icon {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
}
.ins_itsmCon1 .center_box .item_box .item .icon img {
  width: 0.36rem;
  height: 0.36rem;
}
.ins_itsmCon1 .center_box .item_box .item .icon span {
  font-weight: 900;
}
.ins_itsmCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  color: #878E99;
  font-weight: 250;
}
.ins_itsmCon1 .center_box .item_box .item:hover {
  transform: translateY(-0.02rem);
}
.ins_itsmCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_itsmCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon2 .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_itsmCon2 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 60%;
}
.ins_itsmCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  overflow: hidden;
}
.ins_itsmCon2 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.4rem;
  padding-top: 0.24rem;
  border-radius: 0.16rem;
  overflow: hidden;
  cursor: pointer;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 67%;
}
.ins_itsmCon2 .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_itsmCon2 .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_itsmCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 900;
  color: #0C0D0E;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_itsmCon2 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
}
.ins_itsmCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.59rem;
}
.ins_itsmCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon3 .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_itsmCon3 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 60%;
}
.ins_itsmCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_itsmCon3 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60.55%;
}
.ins_itsmCon3 .center_box .content1 .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_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  font-size: var(--font20);
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #0C0D0E;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  font-weight: 250;
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_itsmCon3 .center_box .content1 .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
}
.ins_itsmCon3.ins_solutionCon7 {
  padding-bottom: 1.2rem;
}
.ins_itsmCon3.ins_solutionCon7 .center_box .content1 .swiper_box ul li .centerInfo .word {
  padding: 0.32rem 0.4rem;
  padding-bottom: 0.52rem;
  padding-right: 0.67rem;
}
.ins_itsmCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_itsmCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon4 .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_itsmCon4 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 60%;
}
.ins_itsmCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  overflow: hidden;
}
.ins_itsmCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 52.4%;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  background: linear-gradient(145deg, #D7E4F5 -73.23%, #EFF5FF 82.58%);
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 71%;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .left_box .img:hover .pb .ab img {
  transform: scale(1.02);
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 41.4%;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .logo {
  width: fit-content;
  height: 0.48rem;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .words {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #878E99;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .words span {
  background: linear-gradient(90deg, #006AFF -2.38%, #00C8FF 55.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.4rem;
  gap: 0.32rem;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item .word {
  width: fit-content;
  height: auto;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item .word i {
  font-style: unset;
  padding-left: 0.05rem;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item .icon {
  width: 75%;
  font-size: var(--font18);
  color: #878E99;
  font-weight: 200;
  margin-top: 0.12rem;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item .icon.icon1 {
  font-size: var(--font22);
  width: 100%;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .item_box .item:last-child {
  border-bottom: 0;
}
.ins_itsmCon4 .center_box .swiper_box ul li .centerInfo .right_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_itsmCon4 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_itsmCon4 .center_box .swiper_info .idxPageShow {
  width: 52.4%;
  position: absolute;
  z-index: 1;
  bottom: 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;
}
@media (max-width:990px) {
  .ins_itsmCon4 .center_box .swiper_info .idxPageShow {
    bottom: 0rem;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    width: 100%;
    height: auto;
  }
}
.ins_itsmCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.72rem;
}
.ins_itsmCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_itsmCon5 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_itsmCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_itsmCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  background: #F8F9FA;
  cursor: pointer;
  border-radius: 0.04rem;
  overflow: hidden;
}
.ins_itsmCon5 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 44%;
}
.ins_itsmCon5 .center_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_itsmCon5 .center_box .swiper_box ul li .centerInfo:hover .pb .ab img {
  opacity: 1;
  filter: unset;
}
.ins_itsmCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_itsmCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_itsmCon6 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_itsmCon6 .center_box .content1 .left_box {
  width: 37.4%;
  height: auto;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid #DADADA;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #DADADA;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.32rem 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .top span {
  font-size: var(--font24);
  font-weight: 900;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .bot {
  padding-bottom: 0.32rem;
  color: #878E99;
  font-size: var(--font18);
  display: none;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .bot .idx_more2 {
  margin-top: 0.32rem;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_itsmCon6 .center_box .content1 .left_box .item_box .item.active .top {
  padding-bottom: 0.24rem;
}
.ins_itsmCon6 .center_box .content1 .right_box {
  width: 50.5%;
  height: auto;
}
.ins_itsmCon6 .center_box .content1 .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_itsmCon6 .center_box .content1 .right_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_itsmCon6 .center_box .content1 .right_box .swiper_box .centerInfo .pb {
  padding-bottom: 65%;
}
.ins_itsmCon6 .center_box .content1 .right_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_itsmCon6 .right_box {
    display: none;
  }
}
.ins_solutionCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.4rem 0;
  background: #F8F9FA;
}
.ins_solutionCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon1 .center_box .word {
  font-size: var(--font18);
  text-align: center;
  color: var(--active_color);
}
.ins_solutionCon1 .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.83rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.35rem;
}
.ins_solutionCon1 .center_box .item_box .item {
  width: fit-content;
  height: 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_solutionCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.6rem;
}
.ins_solutionCon2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_solutionCon2 .center_box .idx_title {
  width: 62%;
}
.ins_solutionCon2 .center_box .images_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_solutionCon2 .center_box .images_box .imgs_box {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  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;
  position: relative;
  z-index: 1;
}
.ins_solutionCon2 .center_box .images_box .imgs_box > img,
.ins_solutionCon2 .center_box .images_box .imgs_box > video {
  width: 100%;
  height: auto;
}
.ins_solutionCon2 .center_box .images_box .imgs_box .icon {
  width: 0.47rem;
  height: 0.47rem;
  position: absolute;
  z-index: 10;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
@media (max-width:990px) {
  .ins_solutionCon2 .center_box .images_box .imgs_box > img,
  .ins_solutionCon2 .center_box .images_box .imgs_box > video {
    min-height: 250px;
    object-fit: cover;
  }
}
.ins_solutionCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_solutionCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.2rem;
}
.ins_solutionCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_solutionCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_solutionCon3 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon3 .center_box .item_box .item .content {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  color: #FFFFFF;
  padding: 0.4rem;
}
.ins_solutionCon3 .center_box .item_box .item .content .t1 {
  font-weight: 900;
}
.ins_solutionCon3 .center_box .item_box .item .content .t2 {
  font-weight: 200;
  margin-top: 0.16rem;
}
.ins_solutionCon3 .center_box .item_box .item:hover .img img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_solutionCon3 .center_box .item_box .item .img img {
    height: 250px;
    object-fit: cover;
  }
}
.ins_solutionCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_solutionCon4 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.94rem;
}
.ins_solutionCon4 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_solutionCon4 .center_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.32rem;
}
.ins_solutionCon4 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.18rem;
}
.ins_solutionCon4 .center_box .content .item_box .item .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.ins_solutionCon4 .center_box .content .item_box .item .icon_box .icon {
  width: 0.36rem;
  height: 0.36rem;
  flex-shrink: 0;
}
.ins_solutionCon4 .center_box .content .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #878E99;
  font-weight: 250;
}
.ins_solutionCon4 .center_box .content .item_box .item .word_box .one {
  display: inline;
  color: var(--active_color);
  text-decoration: underline;
}
.ins_solutionCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.8rem;
}
.ins_solutionCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.24rem;
}
.ins_solutionCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.04rem;
  overflow: hidden;
}
.ins_solutionCon5 .center_box .item_box .item .pb {
  padding-bottom: 43%;
}
.ins_solutionCon5 .center_box .item_box .item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_solutionCon5 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.1rem;
  }
}
.ins_solutionCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
}
.ins_solutionCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon6 .center_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.3rem;
}
.ins_solutionCon6 .center_box .list .one {
  width: fit-content;
  min-height: 0.76rem;
  padding: 0.1rem 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.12rem;
  font-size: var(--font24);
  border-radius: 0.08rem;
  cursor: pointer;
}
.ins_solutionCon6 .center_box .list .one .icon {
  width: 0.4rem;
}
.ins_solutionCon6 .center_box .list .one.active {
  background: #F8F9FA;
}
.ins_solutionCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.76rem;
}
.ins_solutionCon6 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solutionCon6 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_solutionCon6 .center_box .swiper_box ul li .swiper_info .swiper_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_solutionCon6 .center_box .swiper_box ul li .swiper_info .swiper_img .centerInfo {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_solutionCon6 .center_box .swiper_box ul li .swiper_info .swiper_img .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_solutionCon6 .center_box .swiper_box ul li .swiper_info .swiper_img .centerInfo .img .pb {
  padding-bottom: 133%;
}
@media (max-width:990px) {
  .ins_solutionCon6 {
    padding-bottom: 1.2rem;
  }
}
.ins_solutionCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.73rem;
  padding-bottom: 0.72rem;
}
.ins_solutionCon8 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_solutionCon8 .center_box .content1 {
  width: 100%;
  height: 4.52rem;
  padding: 0.94rem 0;
  padding-left: 1.32rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_solutionCon8 .center_box .content1 .word_box {
  width: 50%;
  height: auto;
  color: #FFFFFF;
}
.ins_solutionCon8 .center_box .content1 .word_box .t1 {
  font-weight: 250;
}
.ins_solutionCon8 .center_box .content1 .word_box .t2 {
  font-weight: 700;
  margin-top: 0.24rem;
}
.ins_solutionCon8 .center_box .content1 .idx_more {
  margin-top: 0.46rem;
}
.ins_solutionCon8 .center_box .img_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon8 .center_box .img_box .img {
  width: 15.43rem;
}
.ins_solutionCon8 .center_box .img_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_solutionCon8 .center_box .img_box .img {
    width: 100%;
    height: auto;
  }
  .ins_solutionCon8 .center_box .content1 {
    width: 100%;
    height: auto;
    padding: 0.2rem;
    bottom: 0.3rem;
  }
  .ins_solutionCon8 .center_box .content1 .word_box {
    width: 100%;
    height: auto;
  }
}
.ins_solutionCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_solutionCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 .left_box {
  width: 41.4%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 .left_box .idx_title .t2 {
  margin-top: 0.32rem;
}
.ins_solutionCon9 .center_box .content1 .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
  margin-top: 0.64rem;
}
.ins_solutionCon9 .center_box .content1 .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 .right_box {
  width: 54.5%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 .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.2rem;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.12rem;
  padding: 0 0.4rem;
}
.ins_solutionCon9 .center_box .content1 .right_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.31rem 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.5rem;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .top span {
  font-size: var(--font24);
  font-weight: 900;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .top img {
  flex-shrink: 0;
  width: 0.24rem;
  min-width: 15px;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .bot {
  padding: 0.32rem 0;
  color: #878E99;
  font-size: var(--font18);
  display: none;
  border-top: 1px solid #DADADA;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .bot .idx_more2 {
  margin-top: 0.32rem;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_solutionCon9 .center_box .content1 .right_box .item_box .item.active .top img {
  transform: rotate(0);
}
.ins_solutionCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_solutionCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon10 .center_box .top_info {
  width: 100%;
  height: auto;
  gap: 0.3rem;
}
.ins_solutionCon10 .center_box .top_info .idx_title {
  width: fit-content;
}
.ins_solutionCon10 .center_box .top_info .idx_more {
  width: fit-content;
}
.ins_solutionCon10 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.31rem;
}
.ins_solutionCon10 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon10 .center_box .item_box .item .icon {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
}
.ins_solutionCon10 .center_box .item_box .item .icon img {
  width: 0.36rem;
  height: 0.36rem;
}
.ins_solutionCon10 .center_box .item_box .item .icon span {
  font-weight: 900;
}
.ins_solutionCon10 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  color: #878E99;
  font-weight: 250;
}
.ins_solutionCon10 .center_box .item_box .item:hover {
  transform: translateY(-0.02rem);
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.72rem 0;
  background: #F8F9FA;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_caseCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_caseCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  background: #FFFFFF;
  border-radius: 0.04rem;
  overflow: hidden;
  cursor: pointer;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 40%;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_caseCon2 .center_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .content1 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content1 .item_box .item .layui-form-select .layui-input {
  width: 100%;
  height: 0.56rem;
  background: #F8F9FA;
  border-radius: 0.12rem;
  font-size: var(--font18);
  border: 0;
  padding-left: 0.32rem;
  color: #878E99;
}
.ins_caseCon2 .center_box .content1 .item_box .item .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_caseCon2 .center_box .content1 .item_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
  right: 0.25rem;
  margin-top: unset !important;
}
.ins_caseCon2 .center_box .content1 .item_box .item .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_caseCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_caseCon2 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .content2 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content2 .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_caseCon2 .center_box .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon2 .center_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_caseCon2 .center_box .content2 .item_box .item .word .t1 {
  width: 100%;
  height: calc(3em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .content2 .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .content1 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_caseCon2 .center_box .content2 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.23rem;
  padding-bottom: 1.2rem;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_caseCon3 .center_box .content_info .left_box {
  width: 65.555%;
}
.ins_caseCon3 .center_box .content_info .left_box .title {
  width: 100%;
  height: auto;
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
  gap: 0.8rem;
  padding: 0.32rem 0.52rem;
  padding-bottom: 0.42rem;
  background: #F8F9FA;
  border-radius: 0.12rem;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box .item {
  width: fit-content;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box .item .word {
  width: fit-content;
  height: auto;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box .item .word i {
  font-style: unset;
  padding-left: 0.05rem;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box .item .icon {
  width: 100%;
  font-size: var(--font14);
  color: #878E99;
  font-weight: 200;
  margin-top: 0.12rem;
}
.ins_caseCon3 .center_box .content_info .left_box .item_box .item:last-child {
  border-bottom: 0;
}
.ins_caseCon3 .center_box .content_info .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_caseCon3 .center_box .content_info .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font18);
  line-height: 1.5;
  color: #878E99;
}
.ins_caseCon3 .center_box .content_info .left_box .content h2 {
  font-weight: 900;
  color: #000;
  font-size: var(--font24);
}
.ins_caseCon3 .center_box .content_info .left_box .content img {
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .content_info .left_box .content .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.52rem;
  padding-right: 1.2rem;
  margin-top: 0.52rem;
}
.ins_caseCon3 .center_box .content_info .left_box .content .word_box .t1 span {
  color: #0C0D0E;
}
.ins_caseCon3 .center_box .content_info .left_box .content .word_box .t2 {
  font-size: var(--font18);
  font-weight: 900;
  margin-top: 0.32rem;
}
.ins_caseCon3 .center_box .content_info .left_box .content .word_box .t2 p {
  color: #0C0D0E;
}
.ins_caseCon3 .center_box .content_info .right_box {
  width: 28.611%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .logo {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .logo img {
  width: fit-content;
  height: 0.48rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .tit {
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont {
  padding: 0.4rem 0;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont1 {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont1 .list .one {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont1 .list .one .t1 {
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont1 .list .one .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 .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.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 .list .one {
  width: 100%;
  height: auto;
  padding: 0.24rem;
  border-radius: 0.12rem;
  background: linear-gradient(90deg, #CCE1FF -6.32%, #CCF4FF 104.13%);
  cursor: pointer;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 .list .one .icon {
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 .list .one .icon img {
  width: 0.24rem;
  flex-shrink: 0;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont2 .list .one .word {
  margin-top: 0.5rem;
  color: #878E99;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 .list .one {
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-right: 0.37rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 .list .one .t1 {
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 .list .one .t2 {
  color: #878E99;
  margin-top: 0.16rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont3 .list .one .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 {
  width: 100%;
  height: auto;
  padding-top: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one {
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .img {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .img .pb {
  padding-bottom: 58%;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .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 .content_info .right_box .content1 .cont4 .list .one .word {
  width: 100%;
  height: auto;
  padding: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .word .t1 {
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .word .t2 {
  color: #878E99;
  margin-top: 0.16rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content1 .cont4 .list .one:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon3 .center_box .content_info .right_box .content2 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  padding: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content2 .tit {
  font-weight: 900;
}
.ins_caseCon3 .center_box .content_info .right_box .content2 .cont1 {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon3 .center_box .content_info .right_box .content2 .cont1 .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content2 .cont2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_caseCon3 .center_box .content_info .right_box .content2 .cont2 .share_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box .content_info .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_caseCon3 .center_box .content_info .right_box {
    display: none;
  }
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .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_caseCon4 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 60%;
}
.ins_caseCon4 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_caseCon4 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item .img .pb {
  padding-bottom: 56%;
}
.ins_caseCon4 .center_box .content1 .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_caseCon4 .center_box .content1 .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item .word .t1 {
  width: 100%;
  height: calc(3em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_caseCon4 .center_box .content1 .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon4.ins_solutionCon7 {
  padding-bottom: 1.2rem;
}
.ins_caseCon4.ins_solutionCon7 .center_box .content1 .swiper_box ul li .centerInfo .word {
  padding: 0.32rem 0.4rem;
  padding-bottom: 0.52rem;
  padding-right: 0.67rem;
}
.ins_blogCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  padding: 0.16rem 0;
  background: #F8F9FA;
}
.ins_blogCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon1 .center_box .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.46rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_blogCon1 .center_box .item_box .item {
  padding: 0.12rem 0.24rem;
  border-radius: 0.08rem;
  cursor: pointer;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon1 .center_box .item_box .item.active {
  background: #016BFF1A;
  color: var(--active_color);
}
.ins_blogCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_blogCon1 .center_box .item_box .item .cont {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_blogCon1 .center_box .item_box .item .cont .top {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_blogCon1 .center_box .item_box .item .cont .top i {
  font-size: var(--font14);
}
.ins_blogCon1 .center_box .item_box .item .cont .bot {
  position: absolute;
  top: calc(100% + 0.12rem);
  padding: 0.2rem 0.3rem;
  background: #adadad17;
  width: max-content;
  min-width: 1.8rem;
  line-height: 2;
  font-size: var(--font18);
  border-radius: 0.12rem;
  color: #999999;
  backdrop-filter: blur(10px);
  font-weight: 250;
  display: none;
}
.ins_blogCon1 .center_box .item_box .item .cont .bot .one {
  width: 100%;
  height: auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon1 .center_box .item_box .item .cont .bot .one:hover {
  color: var(--active_color);
}
.ins_blogCon1 .center_box .idx_more .more {
  width: fit-content;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_blogCon1 .center_box .idx_more .more img {
  width: 0.2rem;
  min-width: 13px;
}
@media (max-width:990px) {
  .ins_blogCon1 .center_box .item_box {
    display: none;
  }
}
.ins_blogCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_blogCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.72rem;
  gap: 0.2rem;
}
.ins_blogCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  cursor: pointer;
  background: #F8F9FA;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_blogCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_blogCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  font-weight: 300;
}
.ins_blogCon2 .center_box .item_box .item .word .icon {
  color: #878E99;
}
.ins_blogCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  margin-top: 0.16rem;
  height: calc(2em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .center_box .item_box .item .word .t2 {
  color: #565C66;
  margin-top: 0.24rem;
  height: calc(4em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.ins_blogCon2 .center_box .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.97rem;
}
.ins_blogCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_blogCon2 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_blogCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_blogCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.23rem;
  padding-bottom: 1.2rem;
}
.ins_blogCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_blogCon3 .center_box .content_info .left_box {
  width: 65.555%;
}
.ins_blogCon3 .center_box .content_info .left_box .title {
  width: 100%;
  height: auto;
  font-weight: 900;
}
.ins_blogCon3 .center_box .content_info .left_box .cont0 {
  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: 0.6rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0000001A;
}
.ins_blogCon3 .center_box .content_info .left_box .cont0 .subtitle {
  width: 100%;
  height: auto;
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_blogCon3 .center_box .content_info .left_box .cont0 .subtitle img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
  gap: 0.8rem;
  padding: 0.32rem 0.52rem;
  padding-bottom: 0.42rem;
  background: #F8F9FA;
  border-radius: 0.12rem;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box .item {
  width: fit-content;
  height: auto;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box .item .word {
  width: fit-content;
  height: auto;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box .item .word i {
  font-style: unset;
  padding-left: 0.05rem;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box .item .icon {
  width: 100%;
  font-size: var(--font14);
  color: #878E99;
  font-weight: 200;
  margin-top: 0.12rem;
}
.ins_blogCon3 .center_box .content_info .left_box .item_box .item:last-child {
  border-bottom: 0;
}
.ins_blogCon3 .center_box .content_info .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_blogCon3 .center_box .content_info .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font18);
  line-height: 1.5;
  color: #878E99;
}
.ins_blogCon3 .center_box .content_info .left_box .content h2 {
  font-weight: 900;
  color: #000;
  font-size: var(--font32);
}
.ins_blogCon3 .center_box .content_info .left_box .content h3 {
  font-weight: 900;
  color: #000;
  font-size: var(--font24);
}
.ins_blogCon3 .center_box .content_info .left_box .content img {
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_blogCon3 .center_box .content_info .left_box .content .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.52rem;
  padding-right: 1.2rem;
  margin-top: 0.52rem;
}
.ins_blogCon3 .center_box .content_info .left_box .content .word_box .t1 span {
  color: #0C0D0E;
}
.ins_blogCon3 .center_box .content_info .left_box .content .word_box .t2 {
  font-size: var(--font18);
  font-weight: 900;
  margin-top: 0.32rem;
}
.ins_blogCon3 .center_box .content_info .left_box .content .word_box .t2 p {
  color: #0C0D0E;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .list .one {
  width: fit-content;
  max-width: 46%;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.32rem;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .btn_box .btn {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .btn_box .btn.borr {
  border-radius: 0.12rem;
}
.ins_blogCon3 .center_box .content_info .left_box .cont2 .btn_box .btn:hover {
  border-color: var(--active_color);
}
.ins_blogCon3 .center_box .content_info .right_box {
  width: 28.611%;
  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_blogCon3 .center_box .content_info .right_box .tit {
  font-weight: 900;
}
.ins_blogCon3 .center_box .content_info .right_box .sub {
  color: #878E99;
  margin-top: 0.16rem;
}
.ins_blogCon3 .center_box .content_info .right_box .sub.mt24 {
  margin-top: 0.24rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content1 .tag_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.12rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content1 .tag_box .one {
  padding: 0.12rem 0.24rem;
  border-radius: 0.08rem;
  background: #006AFF1A;
  color: var(--active_color);
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .content_info .right_box .content1 .tag_box .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  padding: 0.4rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input {
  width: 100%;
  height: 0.56rem;
  min-height: 35px;
  background: #FFFFFF;
  border-radius: 0.12rem;
  border: 0;
  padding-left: 0.24rem;
  font-size: var(--font18);
  --color: #BCC2CC;
  font-weight: 250;
  border: 1px solid #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input::-webkit-input-placeholder,
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input:-moz-placeholder,
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input::-moz-placeholder,
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input:-ms-input-placeholder,
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .item_box .item input:focus {
  border-color: var(--active_color);
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.32rem;
}
.ins_blogCon3 .center_box .content_info .right_box .content2 .idx_more .more {
  padding: 0 0.48rem;
}
@media (max-width:990px) {
  .ins_blogCon3 .center_box .content_info .left_box .cont2 {
    display: none;
  }
  .ins_blogCon3 .center_box .content_info .right_box {
    display: none;
  }
}
.ins_blogCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_blogCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon4 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_blogCon4 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 60%;
}
.ins_blogCon4 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_blogCon4 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item {
  width: 100%;
  height: auto;
  cursor: pointer;
  background: #F8F9FA;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .img .pb {
  padding-bottom: 56%;
}
.ins_blogCon4 .center_box .content1 .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_blogCon4 .center_box .content1 .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  font-weight: 300;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .word .icon {
  color: #878E99;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .word .t1 {
  font-weight: 700;
  margin-top: 0.16rem;
  height: calc(2em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .word .t2 {
  color: #565C66;
  margin-top: 0.24rem;
  height: calc(4em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.97rem;
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_blogCon4 .center_box .content1 .swiper_box ul li .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_blogCon4.ins_solutionCon7 {
  padding-bottom: 1.2rem;
}
.ins_blogCon4.ins_solutionCon7 .center_box .content1 .swiper_box ul li .centerInfo .word {
  padding: 0.32rem 0.4rem;
  padding-bottom: 0.52rem;
  padding-right: 0.67rem;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.72rem;
  gap: 0.2rem;
}
.ins_newCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  cursor: pointer;
  background: #F8F9FA;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.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 .img .btnimg {
  position: absolute;
  z-index: 10;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.ins_newCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  font-weight: 300;
}
.ins_newCon1 .center_box .item_box .item .word .icon {
  color: #878E99;
}
.ins_newCon1 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  margin-top: 0.16rem;
  height: calc(2em * 1.32);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .item_box .item .word .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box .item_box .item .word .icon_box .one {
  width: fit-content;
  height: auto;
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon1 .center_box .item_box .item .word .icon_box .one img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_newCon1 .center_box .item_box .item .word .icon_box i {
  width: 1px;
  height: 0.11rem;
  background: #DEDEDE;
}
.ins_newCon1 .center_box .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_newCon1 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon1 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .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: 1.2rem 0;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info .left_box {
  width: 65.555%;
}
.ins_newCon2 .center_box .content_info .left_box .content {
  width: 100%;
  height: auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon2 .center_box .content_info .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font18);
  line-height: 1.5;
  color: #878E99;
}
.ins_newCon2 .center_box .content_info .left_box .content h2 {
  font-weight: 900;
  color: #000;
  font-size: var(--font32);
}
.ins_newCon2 .center_box .content_info .left_box .content h3 {
  font-weight: 900;
  color: #000;
  font-size: var(--font24);
}
.ins_newCon2 .center_box .content_info .left_box .content img {
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon2 .center_box .content_info .left_box .content .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.52rem;
  padding-right: 1.2rem;
  margin-top: 0.52rem;
}
.ins_newCon2 .center_box .content_info .left_box .content .word_box .t1 span {
  color: #0C0D0E;
}
.ins_newCon2 .center_box .content_info .left_box .content .word_box .t2 {
  font-size: var(--font18);
  font-weight: 900;
  margin-top: 0.32rem;
}
.ins_newCon2 .center_box .content_info .left_box .content .word_box .t2 p {
  color: #0C0D0E;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .list .one {
  width: fit-content;
  max-width: 46%;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.32rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .btn {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .btn.borr {
  border-radius: 0.12rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .btn:hover {
  border-color: var(--active_color);
}
.ins_newCon2 .center_box .content_info .right_box {
  width: 28.611%;
  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_newCon2 .center_box .content_info .right_box .tit {
  font-weight: 900;
}
.ins_newCon2 .center_box .content_info .right_box .sub {
  color: #878E99;
  margin-top: 0.16rem;
}
.ins_newCon2 .center_box .content_info .right_box .sub.mt24 {
  margin-top: 0.24rem;
}
.ins_newCon2 .center_box .content_info .right_box .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_newCon2 .center_box .content_info .right_box .content1 .tag_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.12rem;
}
.ins_newCon2 .center_box .content_info .right_box .content1 .tag_box .one {
  padding: 0.12rem 0.24rem;
  border-radius: 0.08rem;
  background: #006AFF1A;
  color: var(--active_color);
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .right_box .content1 .tag_box .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_newCon2 .center_box .content_info .right_box .content2 {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #F8F9FA;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .cont1 {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .cont1:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .name_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .name_box .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .name_box .one .icon {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 100px;
  overflow: hidden;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .name_box .one .word {
  font-size: var(--font18);
  color: #878E99;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .list .one {
  font-size: var(--font18);
  color: #878E99;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .list .one:hover {
  color: var(--active_color);
}
.ins_newCon2 .center_box .content_info .right_box .content2 .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.32rem;
}
.ins_newCon2 .center_box .content_info .right_box .content2 .idx_more .more {
  padding: 0 0.48rem;
}
.ins_newCon2 .center_box .content_info .right_box .content3 {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  position: relative;
  z-index: 1;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_newCon2 .center_box .content_info .right_box .content3 .img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info .right_box .content3 .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .right_box .content3 .cont {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0.24rem;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newCon2 .center_box .content_info .right_box .content3 .cont .t1 {
  font-weight: 900;
  color: #FFFFFF;
}
.ins_newCon2 .center_box .content_info .right_box .content3:hover .img img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .content_info .right_box {
    display: none;
  }
  .ins_newCon2 .center_box .content_info .left_box .cont2 {
    display: none;
  }
}
.ins_freeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_freeCon1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(90deg, #CCE1FF -6.32%, #CCF4FF 104.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.ins_freeCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .idx_title {
  width: 63%;
  margin: 0 auto;
}
.ins_freeCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_freeCon1 .center_box .content .left_box {
  width: 36.5%;
}
.ins_freeCon1 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.4rem);
  border-left: 1px dashed #0000001A;
  top: 0.4rem;
  left: 0.18rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item .word .t1 {
  font-weight: 900;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  font-weight: 250;
}
.ins_freeCon1 .center_box .content .left_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_freeCon1 .center_box .content .right_box {
  width: 57.2%;
}
.ins_freeCon1 .center_box .content .right_box .content1 {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  border: 1px solid #FFF;
}
.ins_freeCon1 .center_box .content .right_box .content1 .word {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .right_box .content1 .word .t1 {
  font-weight: 900;
}
.ins_freeCon1 .center_box .content .right_box .content1 .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
  margin-top: 0.4rem;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea {
  --color: #BCC2CC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #F8F9FA;
  border: 0;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input::-webkit-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea::-webkit-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input textarea::-webkit-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input:-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea:-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input textarea:-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input::-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea::-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input textarea::-moz-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input:-ms-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea:-ms-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input textarea:-ms-input-placeholder,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input:focus,
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea:focus {
  border-color: var(--active_color);
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input input {
  width: 100%;
  height: 0.56rem;
  min-height: 35px;
  border-radius: 0.12rem;
  padding-left: 0.24rem;
  font-size: var(--font18);
  font-weight: 250;
  color: #878E99;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input textarea {
  width: 100%;
  height: 1.26rem;
  border-radius: 0.12rem;
  padding: 0.16rem 0.24rem;
  font-weight: 250;
  color: #878E99;
}
.ins_freeCon1 .center_box .content .right_box .content1 .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_freeCon1 .center_box .content .right_box .content1 .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.2rem;
  margin-top: unset !important;
}
.ins_freeCon1 .center_box .content .right_box .content1 .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_freeCon1 .center_box .content .right_box .content1 .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_freeCon1 .center_box .content .right_box .content1 .content {
  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.24rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_freeCon1 .center_box .content .right_box .content1 .content .idx_more .more {
  padding: 0 0.52rem;
  font-weight: 200;
}
.ins_freeCon1.bgFFF {
  background: #FFFFFF;
}
.ins_freeCon1.bgFFF::after {
  display: none;
}
.ins_freeCon1.bgFFF .center_box .right_box .content1 {
  background: #F8F9FA;
}
.ins_freeCon1.bgFFF .center_box .right_box .content1 .item_box .item .input textarea,
.ins_freeCon1.bgFFF .center_box .right_box .content1 .item_box .item .input input {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_freeCon1 .center_box .content .right_box .content1 .content {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 0.3rem;
  }
  .ins_freeCon1 .center_box .content .right_box .content1 .content .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.4em;
  }
}
.ins_developerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.94rem;
  padding-bottom: 1.2rem;
}
.ins_developerCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_developerCon1 .center_box .selectBtn {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_developerCon1 .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: linear-gradient(233deg, #00C8FF 17.58%, #006AFF 70.71%);
  backdrop-filter: blur(17px);
  color: #FFFF;
  gap: 0.2rem;
  font-size: var(--font24);
  border-radius: 0.16rem;
}
.ins_developerCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  border-radius: 0.18rem;
  border: 1px solid #0000001A;
}
.ins_developerCon1 .center_box .list_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_developerCon1 .center_box .list_box .item .icon {
  width: 2.14rem;
  flex-shrink: 0;
  padding: 0.3rem 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
  border-right: 1px solid #0000001A;
  border-top: 1px solid #0000001A;
  color: #030C1A;
}
.ins_developerCon1 .center_box .list_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.34rem 0.54rem;
  border-top: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.26rem 0.4rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_developerCon1 .center_box .list_box .item .word .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  font-size: var(--font18);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #565C66;
  cursor: pointer;
}
.ins_developerCon1 .center_box .list_box .item .word .one i {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 13px;
  min-height: 13px;
  background: #EEEFF0;
  border-radius: 0.02rem;
  font-weight: 250;
  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_developerCon1 .center_box .list_box .item .word .one i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/i27.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_developerCon1 .center_box .list_box .item .word .one.active i {
  background: var(--active_color);
}
.ins_developerCon1 .center_box .list_box .item .word .one.active i::after {
  opacity: 1;
}
.ins_developerCon1 .center_box .list_box .item:first-child .icon {
  border-top: 0;
}
.ins_developerCon1 .center_box .list_box .item:first-child .word {
  border-top: 0;
}
.ins_developerCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.ins_developerCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  padding: 0.32rem;
  border-radius: 0.18rem;
}
.ins_developerCon1 .center_box .item_box .item .icon2 {
  width: 0.72rem;
  height: 0.72rem;
}
.ins_developerCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_developerCon1 .center_box .item_box .item .word .t1 {
  font-weight: 900;
}
.ins_developerCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  color: #565C66;
}
.ins_developerCon1 .center_box .item_box .item .list {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_developerCon1 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #878E99;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_developerCon1 .center_box .item_box .item .list .one img {
  width: 0.2rem;
  min-width: 13px;
}
.ins_developerCon1 .center_box .item_box .item .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_developerCon1 .center_box .list_box {
    display: none;
  }
  .ins_developerCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-top: 0.6rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.92rem;
}
.ins_aboutCon1 .center_box .content_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon1 .center_box .content_box .content .left_box {
  width: 45.4%;
}
.ins_aboutCon1 .center_box .content_box .content .left_box .title {
  font-weight: 900;
}
.ins_aboutCon1 .center_box .content_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  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;
  gap: 0.16rem;
}
.ins_aboutCon1 .center_box .content_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.28rem;
  color: #878E99;
}
.ins_aboutCon1 .center_box .content_box .content .left_box .item_box .item span {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  left: 0;
}
.ins_aboutCon1 .center_box .content_box .content .left_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_aboutCon1 .center_box .content_box .content .right_box {
  width: 47.91%;
}
.ins_aboutCon1 .center_box .content_box .content .right_box .img_box {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .content_box .content:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box .content_box .content:nth-child(2n) {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .left_box {
  width: 37.56%;
}
.ins_aboutCon2 .center_box .left_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.64rem 0.32rem;
}
.ins_aboutCon2 .center_box .left_box .list_box .list {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .left_box .list_box .list .word {
  font-weight: 900;
}
.ins_aboutCon2 .center_box .left_box .list_box .list .word i {
  font-style: unset;
  color: var(--active_color);
  padding-left: 0.05rem;
}
.ins_aboutCon2 .center_box .left_box .list_box .list .icon {
  margin-top: 0.04rem;
  color: #878E99;
}
.ins_aboutCon2 .center_box .right_box {
  width: 50.416%;
}
.ins_aboutCon2 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon2 .center_box .left_box .list_box {
    gap: 0.4rem;
  }
}
@keyframes dashoffset {
  0% {
    stroke-dashoffset: 360;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_aboutCon3 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box {
  width: 60.76%;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box {
  width: 34.513%;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .name {
  width: fit-content;
  font-weight: 900;
  font-size: var(--font80);
  background: linear-gradient(89deg, #006AFF 15.57%, #00C8FF 82.93%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 1.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.28rem;
  color: #878E99;
  font-weight: 250;
}
.ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .list .one span {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  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;
  top: 0.3em;
}
.ins_aboutCon3 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 1.43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_info .swiper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_info .swiper::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
  top: 0.2rem;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo i {
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  background: #EDF2F9;
  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_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo i::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  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_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo span {
  font-size: var(--font32);
  color: #999999;
  margin-top: 0.31rem;
  font-weight: 900;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active span {
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active .centerInfo i {
  background: var(--active_color);
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active .centerInfo i::after {
  background: #FFFFFF;
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon {
  width: 0.6rem;
  height: 0.6rem;
  top: 0.2rem;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 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;
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon .svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon .svg svg {
  stroke-dasharray: 360;
  stroke-dashoffset: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon img {
  position: absolute;
  width: 0.52rem;
  height: 0.52rem;
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon:hover img {
  filter: unset !important;
}
.ins_aboutCon3 .center_box .swiper_info .swiper_icon:hover .svg svg {
  animation: dashoffset 1s linear;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .list {
    margin-top: 0.4rem;
    gap: 0.2rem;
  }
  .ins_aboutCon3 .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;
  }
  .ins_aboutCon3 .center_box .idx_title {
    order: 1;
  }
  .ins_aboutCon3 .center_box .content1 {
    order: 3;
  }
  .ins_aboutCon3 .center_box .swiper_info {
    order: 2;
    margin-top: 0.6rem;
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box {
  width: 57.6%;
}
.ins_contactCon1 .center_box .left_box .content1 {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  border: 1px solid #FFF;
}
.ins_contactCon1 .center_box .left_box .content1 .word {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .content1 .word .t1 {
  font-weight: 900;
}
.ins_contactCon1 .center_box .left_box .content1 .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
  margin-top: 0.4rem;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea {
  --color: #BCC2CC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #F8F9FA;
  border: 0;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input::-webkit-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea::-webkit-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input textarea::-webkit-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input:-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea:-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input textarea:-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input::-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea::-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input textarea::-moz-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input:-ms-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea:-ms-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input textarea:-ms-input-placeholder,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input:focus,
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea:focus {
  border: 1px solid var(--active_color);
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input input {
  width: 100%;
  height: 0.56rem;
  min-height: 35px;
  border-radius: 0.12rem;
  padding-left: 0.24rem;
  font-size: var(--font18);
  font-weight: 250;
  color: #878E99;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input textarea {
  width: 100%;
  height: 1.26rem;
  border-radius: 0.12rem;
  padding: 0.16rem 0.24rem;
  font-weight: 250;
  color: #878E99;
}
.ins_contactCon1 .center_box .left_box .content1 .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .content1 .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.2rem;
  margin-top: unset !important;
}
.ins_contactCon1 .center_box .left_box .content1 .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_contactCon1 .center_box .left_box .content1 .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_contactCon1 .center_box .left_box .content1 .content {
  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.24rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_contactCon1 .center_box .left_box .content1 .content .idx_more .more {
  padding: 0 0.52rem;
  font-weight: 200;
}
.ins_contactCon1 .center_box .right_box {
  width: 35.12%;
  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_contactCon1 .center_box .right_box .word {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .word .t1 {
  font-weight: 900;
  line-height: 1.19;
}
.ins_contactCon1 .center_box .right_box .word .t2 {
  margin-top: 0.32rem;
  color: #878E99;
}
.ins_contactCon1 .center_box .right_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.4rem;
}
.ins_contactCon1 .center_box .right_box .list .one {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .list .one .icon {
  color: #878E99;
  font-weight: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
}
.ins_contactCon1 .center_box .right_box .list .one .icon img {
  width: 0.2rem;
  min-width: 13px;
}
.ins_contactCon1 .center_box .right_box .list .one .word {
  font-weight: 900;
  margin-top: 0.16rem;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.66rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.18rem;
  padding: 0.4rem;
}
.ins_contactCon2 .center_box .item_box .item .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_contactCon2 .center_box .item_box .item .icon_box .word {
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_contactCon2 .center_box .item_box .item .icon_box .icon {
  flex-shrink: 0;
  width: 0.64rem;
}
.ins_contactCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_contactCon2 .center_box .item_box .item .word_box .word {
  font-weight: 900;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_serviceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.6rem;
}
.ins_serviceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_serviceCon1 .center_box .content1 .left_box {
  width: 50.277%;
  height: auto;
}
.ins_serviceCon1 .center_box .content1 .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_serviceCon1 .center_box .content1 .left_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_serviceCon1 .center_box .content1 .left_box .swiper_box .centerInfo .pb {
  padding-bottom: 65%;
}
.ins_serviceCon1 .center_box .content1 .left_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_serviceCon1 .center_box .content1 .right_box {
  width: 43.19%;
  height: auto;
}
.ins_serviceCon1 .center_box .content1 .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;
  border-top: 1px solid #DADADA;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #DADADA;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.32rem 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item .top span {
  font-size: var(--font24);
  font-weight: 900;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item .bot {
  padding-bottom: 0.32rem;
  color: #878E99;
  font-size: var(--font18);
  display: none;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .center_box .content1 .right_box .item_box .item.active .top {
  padding-bottom: 0.24rem;
}
@media (max-width:990px) {
  .ins_serviceCon1 .left_box {
    display: none;
  }
}
.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .left_box {
  width: 43.19%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_serviceCon2 .center_box .left_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem 0.75rem;
}
.ins_serviceCon2 .center_box .left_box .list_box .list {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .left_box .list_box .list .word {
  font-weight: 900;
}
.ins_serviceCon2 .center_box .left_box .list_box .list .word i {
  font-style: unset;
  color: var(--active_color);
  padding-left: 0.05rem;
}
.ins_serviceCon2 .center_box .left_box .list_box .list .icon {
  margin-top: 0.04rem;
  color: #878E99;
  font-weight: 200;
}
.ins_serviceCon2 .center_box .right_box {
  width: 50.277%;
  height: auto;
}
.ins_serviceCon2 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .right_box .img img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
}
@media (max-width:990px) {
  .ins_serviceCon2 .center_box .left_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_serviceCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_serviceCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon3 .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;
  margin-top: 0.72rem;
}
.ins_serviceCon3 .center_box .item_box .item {
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-right: 0.26rem;
}
.ins_serviceCon3 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  font-size: var(--font24);
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_serviceCon3 .center_box .item_box .item .icon img {
  width: 0.36rem;
}
.ins_serviceCon3 .center_box .item_box .item .icon span {
  font-weight: 900;
}
.ins_serviceCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  color: #878E99;
  font-weight: 250;
  font-size: var(--font18);
}
.ins_serviceCon3 .center_box .item_box.leng4 {
  gap: 0.24rem;
}
.ins_serviceCon3 .center_box .item_box.leng4 .item {
  width: calc(100% / 4 - 0.18rem);
}
.ins_serviceCon3 .center_box .item_box.leng5 {
  gap: 0.24rem;
}
.ins_serviceCon3 .center_box .item_box.leng5 .item {
  width: calc(100% / 3 - 0.16rem);
}
@media (max-width:990px) {
  .ins_serviceCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_serviceCon3 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
}
.ins_contactCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_contactCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}
.ins_contactCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_contactCon4 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_contactCon4 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon4 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0.52rem;
  color: #FFFFFF;
}
.ins_contactCon4 .center_box .item_box .item .word .t1 {
  font-weight: 900;
}
.ins_contactCon4 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  font-weight: 200;
}
.ins_contactCon4 .center_box .item_box .item:hover .img img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .ins_contactCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon4 .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.4rem;
  }
  .ins_contactCon4 .center_box .item_box .item .img {
    width: 100%;
    height: auto;
  }
  .ins_contactCon4 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
    color: #020C19;
    position: relative;
    z-index: 1;
    padding: 0;
  }
}
.ins_cooperationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_cooperationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-top: 0.72rem;
}
.ins_cooperationCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_cooperationCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_cooperationCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cooperationCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  color: #FFFFFF;
}
.ins_cooperationCon1 .center_box .item_box .item .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  font-weight: 200;
}
.ins_cooperationCon1 .center_box .item_box .item:hover .img img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .ins_cooperationCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_cooperationCon1 .center_box .item_box .img img {
    max-height: 250px;
    object-fit: cover;
  }
}
.ins_cooperationCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_cooperationCon1 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  color: #FFFFFF;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 0.16rem;
  font-weight: 200;
}
.ins_cooperationCon1 .center_box .swiper_box ul li .item:hover .img img {
  transform: scale(1.05);
}
.ins_cooperationCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.72rem;
  padding-top: 0.7rem;
}
.ins_cooperationCon2 .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  margin-top: 0.76rem;
}
.ins_cooperationCon2 .content_info .content {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 0.18rem;
  background: linear-gradient(277deg, #99C5FF -29.38%, #F2F5FA 103.51%);
}
.ins_cooperationCon2 .content_info .content .cont_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .content .cont_box .left_box {
  width: 38%;
  padding: 1.05rem 0.41rem 1.29rem 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_cooperationCon2 .content_info .content .cont_box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .content .cont_box .left_box .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon2 .content_info .content .cont_box .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.ins_cooperationCon2 .content_info .content .cont_box .right_box {
  width: 62%;
}
.ins_cooperationCon2 .content_info .content .cont_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .content .cont_box .right_box .img .pb {
  padding-bottom: 70%;
}
.ins_cooperationCon2 .content_info .content .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_cooperationCon2 .content_info .content.active {
  display: block;
}
.ins_cooperationCon2 .content_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .left_box {
  width: 61%;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .img .pb {
  padding-bottom: 67%;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .left_box:hover img {
  transform: scale(1.05);
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box {
  width: 32.56%;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .word {
  width: 100%;
  height: auto;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .word .t2 {
  margin-top: 0.24rem;
  color: #878E99;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.28rem;
  color: #0C0D0E;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .cont_box .right_box .item_box .item span {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  left: 0;
  top: 0;
}
.ins_cooperationCon2 .content_info .swiper_box ul li .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .ins_cooperationCon2 .content_info .content .cont_box {
    gap: 0;
  }
  .ins_cooperationCon2 .content_info .content .cont_box .left_box {
    width: 100%;
    height: auto;
    padding: 0.4rem;
    padding-bottom: 0;
  }
}
.ins_cooperationCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-top: 0.72rem;
}
.ins_cooperationCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border-radius: 0.16rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.72rem;
  overflow: hidden;
}
.ins_cooperationCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.52rem 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_cooperationCon3 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  transform: translateY(1px);
  left: 0;
}
.ins_cooperationCon3 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  transform: translateX(1px);
  right: 0;
}
.ins_cooperationCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_cooperationCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 31%;
}
.ins_cooperationCon3 .center_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F8F9FA;
}
.ins_cooperationCon3 .center_box .item_box .item .img .pb .ab img {
  mix-blend-mode: multiply;
}
.ins_cooperationCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #878E99;
}
@media (max-width:990px) {
  .ins_cooperationCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_cooperationCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_cooperationCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .idx_title {
  width: 63%;
  margin: 0 auto;
}
.ins_cooperationCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_cooperationCon5 .center_box .content .left_box {
  width: 36.5%;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.4rem);
  border-left: 1px dashed #0000001A;
  top: 0.4rem;
  left: 0.18rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
  font-weight: 250;
}
.ins_cooperationCon5 .center_box .content .left_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_cooperationCon5 .center_box .content .right_box {
  width: 57.2%;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  border: 1px solid #FFF;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .word {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .word .t1 {
  font-weight: 900;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .word .t2 {
  margin-top: 0.16rem;
  color: #878E99;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
  margin-top: 0.4rem;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea {
  --color: #BCC2CC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #F8F9FA;
  border: 0;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input::-webkit-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea::-webkit-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input textarea::-webkit-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input:-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea:-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input textarea:-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input::-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea::-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input textarea::-moz-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input:-ms-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea:-ms-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input textarea:-ms-input-placeholder,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input:focus,
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea:focus {
  border: 1px solid var(--active_color);
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input input {
  width: 100%;
  height: 0.56rem;
  min-height: 35px;
  border-radius: 0.12rem;
  padding-left: 0.24rem;
  font-size: var(--font18);
  font-weight: 250;
  color: #878E99;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input textarea {
  width: 100%;
  height: 1.26rem;
  border-radius: 0.12rem;
  padding: 0.16rem 0.24rem;
  font-weight: 250;
  color: #878E99;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .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.2rem;
  margin-top: unset !important;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .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_cooperationCon5 .center_box .content .right_box .content1 .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .content {
  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.24rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_cooperationCon5 .center_box .content .right_box .content1 .content .idx_more .more {
  padding: 0 0.52rem;
  font-weight: 200;
}
