@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: #0098ed;
  --color_fff: #ffffff;
  --color_text: #282828;
  /* --active_color2: #FCB247; */
  --active_color2: #131418;
  --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;
  --bgColor: #F8FCFF;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.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);
}
/* -------------------------------------------------------------------  字体 */
/* --------------------------------------------------------------- 全站内容区 */
.w1200,
.container,
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: "Microsoft YaHei";
  font-size: var(--font16);
}
@media (max-width:1600px) {
  .w1200,
  .container,
  .wrap {
    max-width: 90%;
  }
}
@media (max-width:990px) {
  .w1200,
  .container,
  .wrap {
    max-width: 100%;
    padding: 0 0.4rem;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 64px;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.16rem;
}
.idxPageShow span {
  width: 0.45rem;
  height: 0.06rem;
  border-radius: 100px;
  background: #0000001A;
  opacity: 1;
  -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::after {
  width: 100%;
  transition: all linear 5s;
}
.idxPageShow.bgF span {
  border-color: #FFFFFF;
}
.idxPageShow.bgF .swiper-pagination-bullet-active {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
/* --------------------------------------------------------------- 吸顶 */
.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;
  }
}
.gSpan2 {
  grid-row: span 2;
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
.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;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
.idx_more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
}
.idx_more .more {
  width: fit-content;
  height: 0.48rem;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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.04rem;
  border-radius: 0.08rem;
  padding: 0 0.32rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.idx_more .more span {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: var(--font16);
}
.idx_more .more.bgCor {
  background: var(--active_color);
  color: #FFFFFF;
}
.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.bgBor {
  background: none;
  border: 1px solid var(--active_color);
  color: var(--active_color);
  font-size: var(--font14);
  height: 0.32rem;
  min-height: 28px;
}
.idx_more .more.bgH {
  font-size: var(--font16);
  border-radius: 0.99rem;
  height: 0.44rem;
}
.idx_more2 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  --bgColor: #FCB247;
}
.idx_more2 .more {
  width: fit-content;
  height: 0.44rem;
  min-height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 0.28rem;
  font-size: var(--font16);
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.idx_more2 .more.bgCor {
  background: var(--bgColor);
  color: #FFFFFF;
}
.idx_more2 .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: -1;
  opacity: 0;
}
.idx_more2 .more.bgCor:hover::after {
  opacity: 0.05;
}
.idx_more2 .more.bgBor {
  color: var(--active_color);
  border: 1px solid var(--active_color);
  padding: 0 0.48rem;
}
.idx_more2 .more.bgBor:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: bold;
  color: #131418;
}
.idx_title .t2 {
  color: #3D485D;
  margin-top: 0.08rem;
}
/* --------------------------------------------------------------- 新增公共组件 */
* {
  scrollbar-color: rgba(19, 20, 24, 0.5) #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);
}
body {
  background: #F8FCFF;
}
.bgECF::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.48rem);
  height: 100%;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon1 .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.3rem;
  z-index: 5;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
  padding-left: 0.2rem;
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: bold;
  line-height: 1.19;
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.24rem;
  color: #3D485D;
}
.ins_bannerCon1 .content .center_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_bannerCon1 .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;
  color: #3D485D;
  font-size: var(--font18);
}
.ins_bannerCon1 .content .center_box .idx_more {
  margin-top: 0.4rem;
}
.ins_bannerCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .img_w100 .wap {
  min-height: 500px;
  object-fit: cover;
}
.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.3rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  padding-left: 0.2rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: bold;
  line-height: 1.19;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.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;
  color: #3D485D;
  font-size: var(--font18);
}
.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: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.idx_homeCon2 .center_box .item_box .item {
  width: 26.66666667%;
  background: #ECF6FF;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .cont1 {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.24rem;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .t1 {
  font-weight: bold;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .t2 {
  margin-top: 0.24rem;
  color: #131418;
  line-height: calc(32/18);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.14rem;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  color: #3D485D;
  padding-left: 0.16rem;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .list .one::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--active_color);
  left: 0;
  top: 0.58em;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .cont1 .idx_more2 {
  margin-top: 0.27rem;
}
.idx_homeCon2 .center_box .item_box .item .cont2 {
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.24rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.idx_homeCon2 .center_box .item_box .item .cont2 .t1 {
  width: 100%;
  height: auto;
  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;
}
.idx_homeCon2 .center_box .item_box .item .cont2 .t1 img {
  width: 0.4rem;
  flex-shrink: 0;
}
.idx_homeCon2 .center_box .item_box .item .cont2 .t2 {
  margin-top: 0.24rem;
  height: 1.42rem;
  line-height: calc(24/14);
  color: #3D485D;
}
.idx_homeCon2 .center_box .item_box .item .cont2 .idx_more {
  margin-top: 0.24rem;
}
.idx_homeCon2 .center_box .item_box .item .cont2 .icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  right: 0.14rem;
  bottom: 0.1rem;
}
.idx_homeCon2 .center_box .item_box .item .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.idx_homeCon2 .center_box .item_box .item .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .center_box .item_box .item.active {
  width: 42.62295082%;
}
.idx_homeCon2 .center_box .item_box .item.active .img_bg {
  opacity: 1;
}
.idx_homeCon2 .center_box .item_box .item.active .cont1 {
  opacity: 1;
}
.idx_homeCon2 .center_box .item_box .item.active .cont2 {
  opacity: 0;
}
.idx_homeCon2 .center_box .item_box .mobile .idx_more {
  width: 100%;
}
.idx_homeCon2 .center_box .item_box .mobile .idx_more .more {
  width: 100%;
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon2 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
  .idx_homeCon2 .center_box .item_box .item .img_bg {
    opacity: 1;
  }
  .idx_homeCon2 .center_box .item_box .item .cont1 {
    opacity: 1;
  }
  .idx_homeCon2 .center_box .item_box .item .cont2 {
    opacity: 0;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon3::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.48rem);
  height: 100%;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .list {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  padding: 0.08rem;
  background: rgba(225, 232, 238, 0.8);
  border-radius: 100px;
}
.idx_homeCon3 .center_box .list .one {
  width: fit-content;
  padding: 0.055rem 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_homeCon3 .center_box .list .one:hover {
  color: var(--active_color);
}
.idx_homeCon3 .center_box .list .one.active {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_homeCon3 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.idx_homeCon3 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 {
  width: 100%;
  height: 5.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .icon_box .word {
  font-weight: bold;
  line-height: 1.1;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .icon_box .icon {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
  line-height: 2;
  color: #3D485D;
  font-size: var(--font16);
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .iconBg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item .iconBg img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item.gSpan2 .word_box {
  margin-top: 0.2rem;
}
.idx_homeCon3 .center_box .content_info .content .item_box1 .item:hover {
  transform: scale(1.01);
  box-shadow: 0px 4px 8px 0px rgba(17, 24, 43, 0.04);
}
.idx_homeCon3 .center_box .content_info .content .img_box {
  width: 100%;
  height: auto;
  /* height: 5.3rem; */
}
.idx_homeCon3 .center_box .content_info .content .img_box img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content_info .content .idx_more2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.idx_homeCon3 .center_box .content_info .content .cont1 {
  width: 100%;
  height: 5.3rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box {
  width: 46%;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.56rem;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box .item .word .t1 {
  font-weight: bold;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .left_box .item_box .item .word .t2 {
  color: #3D485D;
  margin-top: 0.2rem;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .right_box {
  /* width: 51%;  */
  width: 5.68rem;
  height: 4.5rem;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content_info .content .cont1 .right_box .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content_info .content.active {
  display: block;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .list {
    width: 100%;
    height: auto;
    border-radius: 0.1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
    padding: 0;
    background: none;
  }
  .idx_homeCon3 .center_box .list .one {
    width: 100%;
    height: auto;
    border-radius: 0.1rem;
    background: #1f35421a;
    padding: 0.18rem 0.1rem;
  }
  .idx_homeCon3 .center_box .content_info .content .item_box1 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon3 .center_box .content_info .content .item_box1 .item {
    width: 100%;
    height: auto;
  }
  .idx_homeCon3 .center_box .content_info .content .item_box1 .item .iconBg {
    position: relative;
    z-index: 1;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.idx_homeCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 94%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -2;
}
.idx_homeCon4 .center_box .item_box .item .left_box {
  width: 57%;
  padding: 0.24rem;
  padding-right: 0;
}
.idx_homeCon4 .center_box .item_box .item .left_box .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  font-size: var(--font20);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon4 .center_box .item_box .item .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.05rem;
  line-height: calc(20 / 12);
}
.idx_homeCon4 .center_box .item_box .item .left_box .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.18rem;
  color: #3D485D;
}
.idx_homeCon4 .center_box .item_box .item .left_box .list .one::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--active_color);
  left: 0.06rem;
  top: 0.65em;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .item_box .item .right_box {
  width: 42.6%;
  padding: 0.16rem 0;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon4 .center_box .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_homeCon4 .center_box .item_box .item::after {
    width: 100%;
  }
  .idx_homeCon4 .center_box .item_box .item .left_box {
    padding: 0.5rem;
  }
  .idx_homeCon4 .center_box .item_box .item .right_box {
    width: 40% !important;
    height: auto;
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    opacity: 0.5;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon5::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.48rem);
  height: 100%;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box1 {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
  margin-top: 0.64rem;
}
.idx_homeCon5 .center_box .item_box1 .item {
  width: 100%;
  height: auto;
  padding-left: 0.28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  border-left: 1px solid #1314181A;
}
.idx_homeCon5 .center_box .item_box1 .item .icon {
  width: 0.44rem;
  flex-shrink: 0;
}
.idx_homeCon5 .center_box .item_box1 .item .word {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box1 .item .word .t1 {
  font-weight: bold;
  display: -webkit-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;
  line-height: 1;
}
.idx_homeCon5 .center_box .item_box1 .item .word .t1 i {
  font-weight: normal;
  font-style: unset;
}
.idx_homeCon5 .center_box .item_box1 .item .word .t2 {
  margin-top: 0.08rem;
  color: #3D485D;
}
.idx_homeCon5 .center_box .item_box1 .item:first-child {
  padding-left: 0;
  border: 0;
}
.idx_homeCon5 .center_box .item_box2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.64rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon5 .center_box .item_box2 .item {
  width: 12.91%;
  height: 4.4rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.idx_homeCon5 .center_box .item_box2 .item .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .item_box2 .item .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .item_box2 .item .cont1 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  color: #FFFFFF;
  bottom: 0.44rem;
  left: 0;
  padding: 0 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon5 .center_box .item_box2 .item .cont1 .t1 {
  font-weight: bold;
  line-height: 1.1;
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box2 .item .cont1 .t2 {
  margin-top: 0.15rem;
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box2 .item .cont1 .number {
  position: absolute;
  bottom: 0;
  transform: translateY(30%);
  width: 2.17rem;
}
.idx_homeCon5 .center_box .item_box2 .item .cont1 .number img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.44rem 0.2rem;
  opacity: 0;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  padding-bottom: 0.32rem;
  border-bottom: 1px dashed #FFFFFF;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .word .t1 {
  font-weight: bold;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .word .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .list {
  width: 100%;
  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.11rem;
  max-height: 2.2rem;
  overflow: hidden;
  height: auto;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.24rem;
  color: #FFFFFF;
  font-size: var(--font16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .list .one::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/i26.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .number {
  position: absolute;
  top: 0.37rem;
  right: 0.22rem;
  width: 2.17rem;
}
.idx_homeCon5 .center_box .item_box2 .item .cont2 .number img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .item_box2 .item.active {
  width: 41.6%;
}
.idx_homeCon5 .center_box .item_box2 .item.active .cont1 {
  opacity: 0;
}
.idx_homeCon5 .center_box .item_box2 .item.active .cont2 {
  opacity: 1;
}
.idx_homeCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.64rem;
  display: none;
}
.idx_homeCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont1 {
  display: none;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0.44rem 0.2rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  padding-bottom: 0.32rem;
  border-bottom: 1px dashed #FFFFFF;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .word .t1 {
  font-weight: bold;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .word .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .list {
  width: 100%;
  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.11rem;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.24rem;
  color: #FFFFFF;
  font-size: var(--font16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .list .one::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/i26.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .number {
  position: absolute;
  top: 0.37rem;
  right: 0.22rem;
  width: 2.17rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .item .cont2 .number img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .item_box1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0.2rem;
  }
  .idx_homeCon5 .center_box .item_box1 .item {
    padding: 0;
    border: 0;
  }
  .idx_homeCon5 .center_box .item_box2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
    display: none !important;
  }
  .idx_homeCon5 .center_box .item_box2 .item {
    width: 100% !important;
  }
  .idx_homeCon5 .center_box .item_box2 .item .cont1 {
    opacity: 0;
  }
  .idx_homeCon5 .center_box .item_box2 .item .cont2 {
    opacity: 1;
  }
  .idx_homeCon5 .center_box .swiper_box {
    display: block !important;
  }
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.idx_homeCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.idx_homeCon6 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  cursor: pointer;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon6 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 41%;
}
.idx_homeCon6 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon6 .center_box .swiper_box ul li .centerInfo:hover .pb .ab img {
  transform: scale(1.04);
}
.idx_homeCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon7::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.48rem);
  height: 100%;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.idx_homeCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .list {
  width: 100%;
  height: auto;
  margin: 0 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.2rem;
  margin-top: 0.4rem;
}
.idx_homeCon7 .center_box .list .one {
  width: fit-content;
  color: #3D485D;
  padding: 0.04rem 0.24rem;
  border: 1px solid #BEC8D9;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .list .one:hover {
  color: var(--active_color);
}
.idx_homeCon7 .center_box .list .one.active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--active_color);
}
.idx_homeCon7 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.idx_homeCon7 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon {
  position: absolute;
  width: 0.32rem;
  height: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #FFFFFF;
  border-radius: 100px;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon img {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon.prev {
  right: calc(100% + 0.2rem);
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon.next {
  left: calc(100% + 0.2rem);
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon:hover {
  opacity: 1;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon:hover img {
  opacity: 1;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .swiper-slide {
  pointer-events: initial !important;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .swiper-slide:hover .centerInfo {
  transform: translateY(-10px) scale(1.02);
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .swiper-slide:hover .centerInfo .img {
  transform: scale(1.02);
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.16rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img .pb {
  padding-bottom: 56%;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.16rem;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--active_color2);
  height: 0.42rem;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .word .t2 {
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #3D485D;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .icon {
  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;
  font-size: var(--font14);
  color: #98A3B7;
  padding-top: 0.16rem;
  border-top: 1px solid #E7E9EB;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .icon .ic {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
}
.idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word_box .icon .ic img {
  width: 0.2rem;
}
.idx_homeCon7 .center_box .idx_more2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .idx_homeCon7 .center_box .list {
    width: 100%;
    height: auto;
    border-radius: 0.1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
    padding: 0;
    background: none;
  }
  .idx_homeCon7 .center_box .list .one {
    width: 100%;
    height: auto;
    border-radius: 0.1rem;
    padding: 0.18rem 0.1rem;
    text-align: center;
    border: 0;
    background: #a3a3a31a;
  }
  .idx_homeCon7 .center_box .list .one.active {
    background: var(--active_color);
    color: #FFFFFF;
  }
  .idx_homeCon7 .center_box .content_info .content .item_box1 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon7 .center_box .content_info .content .item_box1 .item {
    width: 100%;
    height: auto;
  }
  .idx_homeCon7 .center_box .content_info .content .item_box1 .item .iconBg {
    position: relative;
    z-index: 1;
  }
  .idx_homeCon7 .center_box .swiper_box ul li .swiper_info .swiperBtnIcon {
    display: none;
  }
}
.idx_homeCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background: #F8FCFF;
}
.idx_homeCon8 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
}
.idx_homeCon8 .center_box .left_box {
  width: 55.3%;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .left_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding: 0.4rem 0.56rem 0.32rem 0.56rem;
}
.idx_homeCon8 .center_box .left_box .content .word {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .left_box .content .word .t1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: bold;
}
.idx_homeCon8 .center_box .left_box .content .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 0.4rem;
}
.idx_homeCon8 .center_box .left_box .content .word .list .one {
  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;
  text-align: center;
}
.idx_homeCon8 .center_box .left_box .content .word .list .one .ic {
  color: #3D485D;
  line-height: 1.5;
}
.idx_homeCon8 .center_box .left_box .content .word .list .one .on {
  margin-top: 0.12rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.05rem;
}
.idx_homeCon8 .center_box .left_box .content .word .list .one .on img {
  width: 0.15rem;
  transform: translateY(-0.05rem);
}
.idx_homeCon8 .center_box .left_box .content .word .list .one .on span {
  font-size: var(--font40);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.03rem;
}
.idx_homeCon8 .center_box .left_box .content .word .list .one .on span i {
  font-size: var(--font20);
  font-weight: normal;
  font-style: unset;
}
.idx_homeCon8 .center_box .left_box .content .icon {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.idx_homeCon8 .center_box .left_box .content .icon .t1 {
  color: #3D485D;
  line-height: 1.5;
  text-align: center;
}
.idx_homeCon8 .center_box .left_box .content .icon .imgBox {
  width: 100%;
  height: auto;
  /* height: 0.88rem; */
  margin-top: 0.16rem;
}
.idx_homeCon8 .center_box .left_box .content .icon .imgBox img {
  width: 100%;
  height: auto;
  max-height: none;
}
.idx_homeCon8 .center_box .left_box .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.idx_homeCon8 .center_box .left_box .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon8 .center_box .right_box {
  width: 44.7%;
  height: auto;
  padding: 0.5rem 0.6rem;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon8 .center_box .right_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .right_box .word .t1 {
  line-height: calc(40 / 24);
  font-weight: 500;
}
.idx_homeCon8 .center_box .right_box .word .t2 {
  margin-top: 0.08rem;
  line-height: 1.5;
  color: #3D485D;
}
.idx_homeCon8 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.idx_homeCon8 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .right_box .item_box .item input {
  width: 100%;
  height: 0.56rem;
  min-height: 30px;
  padding-left: 0.38rem;
  border-radius: 0.04rem;
  border: 1px solid #DCDFE6;
  background: #FFFFFF;
  font-size: var(--font16);
  --color: #C0C4CC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .right_box .item_box .item input::-webkit-input-placeholder,
.idx_homeCon8 .center_box .right_box .item_box .item input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.idx_homeCon8 .center_box .right_box .item_box .item input:-moz-placeholder,
.idx_homeCon8 .center_box .right_box .item_box .item input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.idx_homeCon8 .center_box .right_box .item_box .item input::-moz-placeholder,
.idx_homeCon8 .center_box .right_box .item_box .item input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.idx_homeCon8 .center_box .right_box .item_box .item input:-ms-input-placeholder,
.idx_homeCon8 .center_box .right_box .item_box .item input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.idx_homeCon8 .center_box .right_box .item_box .item input:focus {
  border-color: var(--active_color);
}
.idx_homeCon8 .center_box .right_box .item_box .item i {
  position: absolute;
  width: 0.38rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #F56C6C;
  font-style: unset;
}
.idx_homeCon8 .center_box .right_box .idx_more {
  margin-top: 0.32rem;
}
.idx_homeCon8 .center_box .right_box .idx_more .more {
  padding: 0 0.48rem;
}
/* 移动端适配 */
@media (max-width: 991px) {
  .idx_homeCon2 .center_box .idx_title .t1 {
    font-size: var(--font30);
  }
  .idx_homeCon3 .center_box .content_info .content .img_box {
    height: auto;
  }
  .idx_homeCon3 .center_box .content_info .content .cont1 {
    height: auto;
  }
  .idx_homeCon4 .center_box .item_box .item .right_box {
    display: none;
  }
}
.ins_studyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_studyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_studyCon1 .center_box .content .left_box {
  width: 37%;
}
.ins_studyCon1 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.2rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.16rem;
  border: 1px solid #ffffff00;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item .icon {
  width: 0.64rem;
  height: 0.64rem;
  flex-shrink: 0;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item .word .t1 {
  color: #16181A;
  font-weight: 500;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
  color: #3D485D;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item .img {
  position: absolute;
  right: 0.24rem;
  opacity: 0;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item.active {
  border: 1px solid var(--active_color);
  background: #FFFFFF;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item.active .img {
  opacity: 1;
}
.ins_studyCon1 .center_box .content .left_box .item_box .item:hover {
  background: #FFFFFF;
}
.ins_studyCon1 .center_box .content .right_box {
  width: 58.7%;
  height: auto;
  background: linear-gradient(180deg, #E5EFF4 0%, #F8F9FD 100%);
  border: 0.02rem solid #FFFFFF;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(192, 199, 218, 0.35);
  border-radius: 0.16rem;
}
.ins_studyCon1 .center_box .content .right_box .cont {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0.44rem 0.32rem;
  border-radius: 0.16rem;
  overflow: hidden;
  -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;
  display: none;
}
.ins_studyCon1 .center_box .content .right_box .cont .t1 {
  width: 100%;
  height: auto;
  padding: 0.16rem 0;
  font-weight: bold;
}
.ins_studyCon1 .center_box .content .right_box .cont .list {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_studyCon1 .center_box .content .right_box .cont .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  color: #131418;
  font-size: var(--font16);
  gap: 0.08rem;
}
.ins_studyCon1 .center_box .content .right_box .cont .list .one img {
  transform: translateY(0.03rem);
}
.ins_studyCon1 .center_box .content .right_box .cont .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_studyCon1 .center_box .content .right_box .cont .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.ins_studyCon1 .center_box .content .right_box .cont .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_studyCon1 .center_box .content .right_box .cont.active {
  display: flex !important;
}
.ins_studyCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_studyCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_studyCon2 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}
.ins_studyCon2 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
}
.ins_studyCon2 .center_box .content .item_box .item .one {
  width: 100%;
  height: auto;
}
.ins_studyCon2 .center_box .content .item_box .item .one .title {
  width: 100%;
  height: 100%;
  padding: 0.2rem 0.1rem;
  text-align: center;
  color: var(--active_color);
  font-weight: bold;
  background: #FFFFFF;
  border-radius: 0.08rem;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_studyCon2 .center_box .content .item_box .item .tow {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
}
.ins_studyCon2 .center_box .content .item_box .item .tow .t1 {
  width: 100%;
  height: auto;
  background-image: url(../images/bg5.png);
  background-size: 100% 100%;
  background-color: #0098ED;
  padding: 0.18rem;
  font-size: var(--font16);
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}
.ins_studyCon2 .center_box .content .item_box .item .tow .t2 {
  width: 100%;
  height: auto;
  padding: 0.2rem 0.16rem;
  color: #3D485D;
  line-height: 1.71;
}
.ins_studyCon2 .center_box .content .btn_box {
  width: 100%;
  height: auto;
  padding: 0.2rem;
  text-align: center;
  font-weight: bold;
  color: var(--active_color);
  margin-top: 0.2rem;
  background: linear-gradient(180deg, #FCFCFC 0%, #FFFFFF 100%);
  border-radius: 0.08rem;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  position: relative;
  z-index: 2;
  font-size: var(--font18);
}
.ins_studyCon2 .center_box .mobile .swiper_box {
  overflow: hidden;
}
.ins_studyCon2 .center_box .mobile .swiper_box .item_box {
  flex-direction: initial;
  gap: 0;
}
.ins_studyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_studyCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_studyCon3 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_studyCon3 .center_box .content .item_box .item {
  width: 18.66%;
  height: auto;
  background: linear-gradient(180deg, rgba(0, 152, 237, 0.2) 0%, rgba(0, 152, 237, 0) 64%), #FFFFFF;
  padding: 0.4rem 0.2rem;
  border: 2px solid #FFFFFF;
  border-radius: 0.16rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 .img {
  width: 100%;
  height: auto;
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 .img .pb {
  padding-bottom: 88%;
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 .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_studyCon3 .center_box .content .item_box .item .cont1 .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 .word .t1 {
  font-weight: bold;
  text-align: center;
}
.ins_studyCon3 .center_box .content .item_box .item .cont1 .word .t2 {
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.71;
  color: #3D485D;
}
.ins_studyCon3 .center_box .content .item_box .item .cont2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.24rem;
  line-height: 1.71;
  background: rgba(0, 152, 237, 0.9);
  color: #FFFFFF;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_studyCon3 .center_box .content .item_box .item .cont2 .t1 p {
  min-height: 0.5em;
}
.ins_studyCon3 .center_box .content .item_box .item:hover .cont2 {
  opacity: 1;
  visibility: visible;
}
.ins_studyCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0 0.22rem 0;
  margin: 0 auto;
}
.ins_studyCon4::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-image: url(../images/bg6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_studyCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon4 .center_box .content {
  width: 100%;
  height: auto;
  /* margin-top: 0.79rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_studyCon4 .center_box .content .images_box {
  width: 6.5803rem;
  height: 6.4rem;
  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_studyCon4 .center_box .content .images_box .img_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_studyCon4 .center_box .content .images_box .img_bg img {
  width: 100%;
  height: auto;
}
.ins_studyCon4 .center_box .content .images_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin: 0 auto;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /* 排除第二个item中的.img img */
  /* 奇数行：右侧圆点 */
  /* 偶数行：左侧圆点 */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .img {
  position: absolute;
  z-index: 2;
  width: 2.52rem;
  height: 0.47rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  /* transition: transform 0.3s ease; */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .img img {
  transform: scaleX(-1);
  filter: FlipH;
  /* 兼容旧版IE */
  -ms-filter: "FlipH";
  /* IE8 */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item.item:nth-child(2) .img img {
  transform: none;
  filter: none;
  -ms-filter: none;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item.item:nth-child(3) .img img {
  transform: rotate(180deg);
  filter: FlipH;
  /* 兼容旧版IE */
  -ms-filter: "FlipH";
  /* IE8 */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item.item:nth-child(4) .img img {
  transform: scaleX(-1) rotate(180deg);
  filter: FlipH;
  /* 兼容旧版IE */
  -ms-filter: "FlipH";
  /* IE8 */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .flipped1 {
  transform: none !important;
  /* 禁用所有变换 */
  filter: none;
  /* 清除旧版IE滤镜 */
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .flipped2 {
  transform: scaleX(-1) !important;
  filter: FlipH;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .flipped3 {
  transform: scaleX(-1) rotate(180deg) !important;
  filter: FlipH;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .flipped4 {
  transform: rotate(180deg) !important;
  filter: FlipH;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word {
  position: absolute;
  width: max-content;
  text-align: end;
  padding: 0.2rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.6);
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word .t1 {
  color: #0098ED;
  font-size: var(--font18);
  font-weight: bold;
  line-height: 1.44;
  padding-bottom: 0.15rem;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word .t2 {
  margin: 0.17rem 0 0.12rem 0;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word .t2 p {
  position: relative;
  padding-left: 0.08rem;
  padding-right: 0.08rem;
  color: #3D485D;
  font-size: var(--font14);
  line-height: 1.71;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word .t3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word .t3 > div {
  padding: 0.04rem 0.08rem;
  border-radius: 0.04rem;
  border: 0.01rem solid #E5E5E5;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(210, 217, 236, 0.3);
  color: #3D485D;
  font-size: var(--font14);
  line-height: 1.71;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item .word:hover {
  background-color: #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
}
.ins_studyCon4 .center_box .content .images_box .item_box .item.item:nth-child(odd) .word .t2 p::before {
  content: '·';
  position: absolute;
  right: 0;
  color: #3D485D;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item.item:nth-child(even) .word .t2 p::after {
  content: '·';
  position: absolute;
  left: 0;
  color: #3D485D;
}
.ins_studyCon4 .center_box .content .images_box .item_box .item:nth-child(2n) .word {
  left: calc(100% - 0.4rem);
  right: unset;
  text-align: start;
}
.ins_studyCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  margin: 0 auto;
}
.ins_studyCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_studyCon5 .center_box .content .img_w100 {
  width: 100%;
  height: auto;
}
.ins_studyCon5 .center_box .content .img_w100 .wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_studyCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  margin: 0 auto;
}
.ins_studyCon6::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background-color: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_studyCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon6 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
  position: relative;
}
.ins_studyCon6 .center_box .content .img_box {
  width: 3.71rem;
  height: 3.7rem;
  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;
  margin: 0.5rem 0;
  /* 交替布局 */
}
.ins_studyCon6 .center_box .content .img_box .imgs {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_studyCon6 .center_box .content .img_box .imgs .img {
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_studyCon6 .center_box .content .img_box .imgs .img:nth-child(1) {
  animation: run 100s linear infinite reverse;
}
.ins_studyCon6 .center_box .content .img_box .imgs .img:nth-child(2) {
  animation: run 200s linear infinite;
}
.ins_studyCon6 .center_box .content .img_box .imgs .product_img {
  width: 35.37%;
  height: 35.44%;
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
.ins_studyCon6 .center_box .content .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  --color: #7DD0FF;
  /* 旋转动画 */
}
.ins_studyCon6 .center_box .content .img_box .item_box .item > .icon {
  position: absolute;
  z-index: 2;
  width: 1.34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item > .icon .b1 {
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border: 0.02rem solid var(--color);
  background: #FFFFFF;
  border-radius: 50%;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item > .icon .b2 {
  display: block;
  flex: 1;
  height: 0.01rem;
  border-top: 0.01rem dashed var(--color);
}
.ins_studyCon6 .center_box .content .img_box .item_box .item > .icon .b3 {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  border: 0.04rem solid var(--color);
  background: #FFFFFF;
  border-radius: 50%;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .rotate-icon {
  transform: scaleX(-1);
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .word {
  position: absolute;
  width: max-content;
  right: calc(100% + 0.36rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(210, 217, 236, 0.3);
  border: 0.01rem solid #FFFFFF;
  border-radius: 0.08rem;
  background: linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .word .icon {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .word .icon img {
  width: 100%;
  height: 100%;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .word .t1 {
  color: var(--active_color2);
  line-height: 1.44;
  margin-left: 0.08rem;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item .word:hover {
  border: 0.01rem solid #0098ED;
  background: linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(0, 152, 237, 0.2);
}
.ins_studyCon6 .center_box .content .img_box .item_box .item:nth-child(2n) .word {
  left: calc(100% + 0.36rem);
  right: unset;
  text-align: start;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item:nth-of-type(1) .word,
.ins_studyCon6 .center_box .content .img_box .item_box .item:nth-last-child(2) .word {
  right: calc(100% + 0.52rem) !important;
}
.ins_studyCon6 .center_box .content .img_box .item_box .item:nth-of-type(2) .word,
.ins_studyCon6 .center_box .content .img_box .item_box .item:nth-last-child(1) .word {
  left: calc(100% + 0.52rem) !important;
}
.ins_studyCon6 .center_box .content .img_box .item:has(.word:hover) {
  --color: #0098ED;
}
.ins_studyCon6 .center_box .content .img_box .item:nth-of-type(1n) .word {
  padding: 0.2rem 0.52rem 0.2rem 0.2rem;
}
.ins_studyCon6 .center_box .content .img_box .item:nth-of-type(2n) .word {
  padding: 0.2rem 0.2rem 0.2rem 0.52rem;
}
.ins_studyCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  margin: 0 auto;
}
.ins_studyCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon7 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_studyCon7 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
  margin: 0.4rem 0;
}
.ins_studyCon7 .center_box .content .con .item {
  border-radius: 0.16rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #FCFCFC 0%, #FFFFFF 100%);
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  overflow: hidden;
  cursor: pointer;
}
.ins_studyCon7 .center_box .content .con .item .img {
  width: 100%;
  height: auto;
}
.ins_studyCon7 .center_box .content .con .item .img img {
  width: 100%;
  height: auto;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
}
.ins_studyCon7 .center_box .content .con .item .t1 {
  line-height: 1.66;
  margin: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_studyCon7 .center_box .content .con .item:hover .img img {
  transform: scale(1.05);
}
.ins_studyCon7 .center_box .content .idx_more {
  margin: 0 auto;
}
.ins_studyCon7 .center_box .content .idx_more .more {
  padding: 0 0.48rem;
}
.courseCard {
  width: 100%;
  height: auto;
}
.courseCard .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
  margin: 0.4rem 0;
}
.courseCard .con .item {
  border-radius: 0.16rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #FCFCFC 0%, #FFFFFF 100%);
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  overflow: hidden;
  cursor: pointer;
}
.courseCard .con .item .img {
  width: 100%;
  height: auto;
}
.courseCard .con .item .img img {
  width: 100%;
  height: auto;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
}
.courseCard .con .item .t1 {
  line-height: 1.66;
  margin: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.courseCard .con .item:hover .img img {
  transform: scale(1.05);
}
.courseCard .idx_more {
  margin: 0 auto;
}
.courseCard .idx_more .more {
  padding: 0 0.48rem;
}
.ins_studyCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  margin: 0 auto;
}
.ins_studyCon8::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background-color: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_studyCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_studyCon8 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  position: relative;
}
.ins_studyCon8 .center_box .content .tab {
  width: max-content;
  height: auto;
  margin: 0 auto;
  padding: 0.08rem;
  border-radius: 0.99rem;
  background: rgba(225, 232, 238, 0.8);
  backdrop-filter: blur(0.32rem);
}
.ins_studyCon8 .center_box .content .tab .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  color: var(--active_color2);
}
.ins_studyCon8 .center_box .content .tab .item .t1 {
  line-height: 1.5;
  padding: 0.055rem 0.16rem;
  border-radius: 0.32rem;
  cursor: pointer;
}
.ins_studyCon8 .center_box .content .tab .item .t1.active {
  color: var(--color_fff);
  background-color: #0098ED;
}
.ins_studyCon8 .center_box .content .tab_con {
  background-color: #FFFFFF;
  border-radius: 0.16rem;
  margin-top: 0.2rem;
}
.ins_studyCon8 .center_box .content .tab_con .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 4.8rem;
  padding: 0.44rem 0.37rem 0.44rem 0.44rem;
}
.ins_studyCon8 .center_box .content .tab_con .con.hidden {
  display: none;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box {
  width: 38.33%;
  height: auto;
  /* padding: 0 0.44rem; */
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.4rem;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.16rem;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .t1 {
  color: var(--active_color2);
  line-height: 1.33;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .word .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  color: #3D485D;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .word .t2 .icon {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 12px;
  min-height: 12px;
  display: -webkit-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_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .word .t2 .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box .card .word .t2 > span {
  flex: 1;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .line_r {
  width: 0.01rem;
  height: -webkit-fill-available;
  /* margin: 0.44rem 0; */
  background-color: #DBEAF7;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .right_box {
  /* width: 54.16%; */
  width: 6.5rem;
  height: auto;
  /* margin: 0.5rem 0.37rem; */
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .right_box .img {
  width: 100%;
  height: auto;
}
.ins_studyCon8 .center_box .content .tab_con .con .con_flex .right_box .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* 移动端适配 */
@media (max-width: 991px) {
  .ins_studyCon2 .center_box .content .item_box .item {
    grid-template-columns: 1fr;
  }
  .ins_studyCon3 .center_box .content .item_box {
    flex-direction: column;
  }
  .ins_studyCon3 .center_box .content .item_box .item {
    flex: 1 1 100%;
    min-width: unset;
    width: 100%;
  }
  .ins_studyCon4 .center_box .content {
    margin-top: 0.4rem;
  }
  .ins_studyCon4 .center_box .content .images_box {
    width: 100%;
    height: auto;
  }
  .ins_studyCon4 .center_box .content .images_box .img_bg {
    display: none;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box {
    width: 100%;
    height: auto;
    position: initial;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.2rem;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box .item {
    width: 100%;
    height: auto;
    position: initial;
    display: block;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box .item .img {
    display: none;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box .item .word {
    width: 100%;
    height: auto;
    position: initial;
    text-align: left;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box .item .word .t2 p::before,
  .ins_studyCon4 .center_box .content .images_box .item_box .item .word .t2 p::after {
    content: none !important;
  }
  .ins_studyCon4 .center_box .content .images_box .item_box .item .word .t3 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_studyCon6 .center_box .content .img_box {
    width: 100%;
    height: auto;
  }
  .ins_studyCon6 .center_box .content .img_box .imgs {
    width: 60%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 1rem;
  }
  .ins_studyCon6 .center_box .content .img_box .item_box {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
    margin: 0.5rem 0 1.85rem 0;
  }
  .ins_studyCon6 .center_box .content .img_box .item_box .item {
    position: initial;
    width: 100%;
    height: auto;
  }
  .ins_studyCon6 .center_box .content .img_box .item_box .item .icon {
    display: none;
  }
  .ins_studyCon6 .center_box .content .img_box .item_box .item .word {
    position: initial;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .ins_studyCon7 .content .con,
  .courseCard .con {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ins_studyCon8 .center_box .content .tab_con .con {
    height: auto;
  }
  .ins_studyCon8 .center_box .content .tab_con .con .con_flex {
    flex-direction: row;
    /* 平板/PC端横向排列 */
    flex-wrap: wrap;
  }
  .ins_studyCon8 .center_box .content .tab_con .con .con_flex .left_box {
    width: 100%;
    padding-bottom: 0.44rem;
  }
  .ins_studyCon8 .center_box .content .tab_con .con .con_flex .line_r {
    display: none;
  }
  .ins_studyCon8 .center_box .content .tab_con .con .con_flex .right_box {
    width: 100%;
  }
}
/* ----------------- 学习平台 ----------------- */
.idx_more .more .icon {
  width: 0.16rem;
  height: 0.16rem;
}
.ins_lpCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_lpCon1 .img_w100 .wap {
  min-height: 500px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_lpCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_lpCon1 .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;
  z-index: 5;
}
.ins_lpCon1 .content .center_box {
  width: 52.25%;
  height: auto;
  padding-left: 0.2rem;
}
.ins_lpCon1 .content .center_box .t1 {
  font-weight: bold;
  line-height: normal;
  color: var(--active_color2);
}
.ins_lpCon1 .content .center_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_lpCon1 .content .center_box .list .one {
  width: fit-content;
  color: #3D485D;
  font-size: var(--font18);
}
.ins_lpCon1 .content .center_box .idx_more {
  margin-top: 0.4rem;
}
.ins_lpCon1 .content .center_box .idx_more .more {
  padding: 0 0.42rem;
}
.ins_lpCon1 .content .center_box .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_lpCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #FFFFFF;
}
.ins_lpCon2 .content .center_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.9rem 0;
}
.ins_lpCon2 .content .center_box .item {
  padding: 0.44rem 0.32rem;
  border-radius: 0.16rem;
  background: linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  border: 1px solid #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_lpCon2 .content .center_box .item .img {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
}
.ins_lpCon2 .content .center_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_lpCon2 .content .center_box .item .t1 {
  margin: 0.4rem auto 0.2rem auto;
  font-family: Microsoft YaHei;
  font-size: var(--font24);
  line-height: 1.33;
  text-align: center;
}
.ins_lpCon2 .content .center_box .item .t2 {
  font-size: var(--font16);
  color: #3D485D;
  line-height: 2;
}
.ins_lpCon2 .content .center_box .item:hover {
  background: #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(0, 152, 237, 0.2);
  border: 1px solid #0098ED;
}
.ins_lpCon {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_lpCon > .content {
  width: 100%;
  height: 100%;
  background-color: #F7FBFF;
  padding: 0.9rem 0;
}
.ins_lpCon > .content .center_box {
  width: 100%;
  height: 100%;
  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;
  flex-direction: row;
  flex-wrap: wrap;
}
.ins_lpCon > .content .center_box .text-content {
  width: 43.333333%;
  height: auto;
}
.ins_lpCon > .content .center_box .text-content .t1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  line-height: normal;
  color: var(--active_color2);
}
.ins_lpCon > .content .center_box .text-content .t2 {
  font-size: var(--font14);
  color: #98A3B7;
  line-height: 1.71;
  margin-top: 0.08rem;
}
.ins_lpCon > .content .center_box .text-content .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: 1fr;
  /* 单列布局 */
  gap: 0.2rem;
}
.ins_lpCon > .content .center_box .text-content .list .one {
  width: fit-content;
  color: #3D485D;
  font-size: var(--font16);
  line-height: 1.5;
  padding-left: 0.2rem;
  /* 整体左缩进 */
  text-indent: -0.2rem;
  /* 首行回退缩进 */
}
.ins_lpCon > .content .center_box .text-content .idx_more {
  margin-top: 0.4rem;
}
.ins_lpCon > .content .center_box .text-content .idx_more .more {
  padding: 0 0.48rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_lpCon > .content .center_box .text-content .idx_more .more:hover {
  background-color: var(--active_color);
  color: var(--color_fff);
}
.ins_lpCon > .content .center_box .text-content .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_lpCon > .content .center_box .image-content {
  width: 50%;
  height: auto;
}
.ins_lpCon > .content .center_box .image-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_lpCon > .content .center_box.reverse {
  flex-direction: row-reverse;
}
.ins_lpCon > .content:nth-child(2n) {
  background-color: var(--color_fff);
}
/* 移动端适配 - 单列布局 */
@media (max-width: 991px) {
  .ins_lpCon1 .content .center_box {
    width: 100%;
  }
  .ins_lpCon2 .content .center_box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ins_lpCon .content .center_box {
    flex-direction: column !important;
    gap: 0.4rem;
    /* 移动端改为垂直排列 */
  }
  .ins_lpCon .content .center_box .text-content,
  .ins_lpCon .content .center_box .image-content {
    width: 100% !important;
    height: auto;
  }
}
.ins_lpCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  background-color: var(--color_fff);
}
.ins_lpCon11 .center_box1 {
  width: 100%;
  height: auto;
}
.ins_lpCon11 .center_box1 .top_item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.8rem;
}
.ins_lpCon11 .center_box1 .top_item .img {
  width: 0.7rem;
  height: auto;
}
.ins_lpCon11 .center_box1 .top_item .topImg {
  position: absolute;
  left: 0;
  top: 0.3rem;
}
.ins_lpCon11 .center_box1 .top_item .bottomImg {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
}
.ins_lpCon11 .center_box1 .top_item .t1 {
  font-size: var(--font16);
  color: var(--active_color2);
  line-height: 2;
  text-align: center;
}
.ins_lpCon11 .center_box1 .top_item .t1 span {
  color: var(--active_color);
}
.ins_lpCon11 .center_box2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_lpCon11 .center_box2 .content {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  /* 单列布局 */
  gap: 0.16rem;
  font-family: Microsoft YaHei;
}
.ins_lpCon11 .center_box2 .content .t1,
.ins_lpCon11 .center_box2 .content .t2,
.ins_lpCon11 .center_box2 .content .t6 {
  width: 100%;
  height: auto;
  padding: 0.12rem 0.16rem;
  font-size: var(--font18);
  font-weight: 600;
  color: var(--color_fff);
  line-height: 1.444;
  text-align: center;
  border: 0.02rem solid #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  border-radius: 0.08rem;
}
.ins_lpCon11 .center_box2 .content .t1 {
  background-color: #FA5151;
}
.ins_lpCon11 .center_box2 .content .t2 {
  background-color: #07B9B9;
}
.ins_lpCon11 .center_box2 .content .con_info {
  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_lpCon11 .center_box2 .content .con_info .left {
  grid-template-columns: repeat(2, 1fr);
}
.ins_lpCon11 .center_box2 .content .con_info .right {
  grid-template-columns: repeat(3, 1fr);
}
.ins_lpCon11 .center_box2 .content .con_info .left,
.ins_lpCon11 .center_box2 .content .con_info .right {
  width: 35.916666%;
  display: grid;
  align-items: center;
  /* grid-auto-rows: 1fr; */
  gap: 0.16rem 0.2rem;
  font-size: var(--font16);
  color: var(--active_color2);
}
.ins_lpCon11 .center_box2 .content .con_info .left .item,
.ins_lpCon11 .center_box2 .content .con_info .right .item {
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  border: 0.02rem solid #0098ED;
  border-radius: 0.08rem;
  background-color: #F7FBFF;
}
.ins_lpCon11 .center_box2 .content .con_info .left .item:last-child,
.ins_lpCon11 .center_box2 .content .con_info .right .item:last-child {
  grid-column: 1 / -1;
  /* 让最后一个item跨所有列 */
}
.ins_lpCon11 .center_box2 .content .con_info .left .head,
.ins_lpCon11 .center_box2 .content .con_info .right .head {
  width: 100%;
  height: 100%;
  min-height: 0.64rem;
  background-color: #0098ED;
  background-image: url('../images/bg30.png');
  background-size: cover;
  background-repeat: no-repeat;
  font-size: var(--font16);
  font-weight: 600;
  color: var(--color_fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_lpCon11 .center_box2 .content .con_info .left .t3 p,
.ins_lpCon11 .center_box2 .content .con_info .right .t3 p {
  line-height: 1.5;
}
.ins_lpCon11 .center_box2 .content .con_info .left .t4,
.ins_lpCon11 .center_box2 .content .con_info .right .t4 {
  padding: 0.12rem 0;
  background-color: #3662EC;
  border: 2px solid #FFFFFF;
  text-align: center;
  font-size: var(--font18);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.444444;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card,
.ins_lpCon11 .center_box2 .content .con_info .right .card {
  /* max-height: 2.16rem; */
  /* 统一基础高度 */
  height: 100%;
  min-height: 2.16rem;
  /* 确保内容撑开高度 */
  flex: 1;
  font-family: Source Han Sans CN;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card > div,
.ins_lpCon11 .center_box2 .content .con_info .right .card > div {
  display: -webkit-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_lpCon11 .center_box2 .content .con_info .left .card1,
.ins_lpCon11 .center_box2 .content .con_info .right .card1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem 0.4rem;
  /* 竖向20px 横向16px */
  justify-items: center;
  padding: 0.2rem 0.5075rem;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card1 .text,
.ins_lpCon11 .center_box2 .content .con_info .right .card1 .text {
  width: 2em;
  /* 调整为2个中文字符宽度 */
  word-break: break-all;
  white-space: pre-wrap;
  /* 保留空白符 */
  overflow: hidden;
  display: inline-block;
  /* 确保宽度限制生效 */
  line-height: 1.5;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  padding: 0.2rem 0;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 > div,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 > div {
  flex: 1;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .t5,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .t5 {
  display: block;
  text-align: center;
  line-height: 1.5;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .br,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .br {
  width: 0.64rem;
  height: 0.64rem;
  min-height: 0;
  background-color: #0098ED;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--color_fff);
  line-height: 1.5;
  box-sizing: border-box;
  flex-shrink: 0;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .icon,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .icon {
  width: 0.16rem;
  min-width: 12px;
  height: 0.16rem;
  min-height: 12px;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .icon img,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .icon img {
  width: 100%;
  height: auto;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .img,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .img {
  width: 1.0771rem;
  height: 1.2rem;
  max-width: 100%;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card2 .img img,
.ins_lpCon11 .center_box2 .content .con_info .right .card2 .img img {
  width: 100%;
  height: auto;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card3,
.ins_lpCon11 .center_box2 .content .con_info .right .card3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.16rem;
}
.ins_lpCon11 .center_box2 .content .con_info .left .card3 .item,
.ins_lpCon11 .center_box2 .content .con_info .right .card3 .item {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.16rem 0;
}
.ins_lpCon11 .center_box2 .content .con_info .right {
  width: 60.75%;
  height: auto;
}
.ins_lpCon11 .center_box2 .content .icon {
  width: 0.24rem;
  height: auto;
  margin: 0 auto;
}
.ins_lpCon11 .center_box2 .content .icon img {
  width: 100%;
  height: auto;
}
.ins_lpCon11 .center_box2 .content .t6 {
  background-color: #3662EC;
}
/* 移动端适配 */
@media (max-width: 991px) {
  .ins_lpCon11 .center_box1 .top_item {
    padding: 0.8rem 0;
  }
  .ins_lpCon11 .center_box2 .content .con_info {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.4rem;
    /* 移动端单列布局 */
  }
  .ins_lpCon11 .center_box2 .content .con_info .left,
  .ins_lpCon11 .center_box2 .content .con_info .right {
    width: 100%;
  }
  .ins_lpCon11 .center_box2 .content .con_info .left .card2 .br,
  .ins_lpCon11 .center_box2 .content .con_info .right .card2 .br {
    width: 1rem;
    height: 1rem;
    /* font-size: clamp(10px, (0.10rem * 1), 10px); */
  }
}
/* 客户案例 */
.line {
  width: 100%;
  height: 0.01rem;
  margin: 0.28rem 0;
  background-color: #E5E5E5;
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.4rem 0 0.9rem;
}
.ins_caseCon1::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background: var(--bgColor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_caseCon1 .center_box .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_caseCon1 .center_box .tab .tab_title {
  margin-right: 0.16rem;
  font-weight: 600;
  line-height: 1.57;
  width: 6em;
}
.ins_caseCon1 .center_box .tab .tab_item {
  display: -webkit-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;
  flex-wrap: wrap;
}
.ins_caseCon1 .center_box .tab .tab_item .t1 {
  padding: 0.01rem 0.16rem;
  color: var(--active_color2);
  line-height: 1.57;
  cursor: pointer;
}
.ins_caseCon1 .center_box .tab .tab_item .t1.active {
  background: #FFFFFF;
  border-radius: 0.99rem;
  color: #0098ED;
  font-weight: 600;
}
.ins_caseCon1 .center_box .content {
  margin-top: 0.32rem;
}
.ins_caseCon1 .center_box .content .con {
  display: none;
}
.ins_caseCon1 .center_box .content .con.active {
  display: block;
}
.ins_caseCon1 .center_box .content .con .con_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
}
.ins_caseCon1 .center_box .content .con .con_grid .item {
  padding: 0.16rem;
  border-radius: 0.16rem;
  background: linear-gradient(180deg, #FCFCFC 0%, #FFFFFF 100%);
  border: 0.02rem solid #FFFFFF;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(210, 217, 236, 0.3);
}
.ins_caseCon1 .center_box .content .con .con_grid .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .img img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.16rem;
  margin-top: 0.16rem;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .t1 {
  font-weight: 600;
  line-height: 1.66;
  color: #131418;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .t2 {
  line-height: 1.71;
  color: #3D485D;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more .img {
  width: auto;
  height: 0.22rem;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more .img img {
  width: 100%;
  height: 100%;
  transform: scale(0.95);
  object-fit: cover;
  /* 保持图片比例并填充容器 */
  object-position: center;
  /* 图片居中显示 */
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more .t3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 0.04rem;
  line-height: 1.57;
  color: #0098ED;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more .t3 .icon {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_caseCon1 .center_box .content .con .con_grid .item .word .more .t3 .icon img {
  width: 100%;
  height: 100%;
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_caseCon2::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_caseCon2 .center_box .content .swiper-container {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  margin: 0.4rem 0 0.6rem 0;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  padding: 0.24rem;
  background: linear-gradient(90deg, #F4F5F8 0%, #FEFEFE 100%);
  box-shadow: 0px 8px 16px 0px rgba(192, 199, 218, 0.3);
  border-radius: 0.16rem;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .img {
  width: 27.85%;
  height: auto;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.08rem;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word {
  width: 66.48%;
  position: relative;
  padding: 0.24rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .icon1,
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .icon2 {
  position: absolute;
  width: 0.685rem;
  height: 0.395rem;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .icon1 {
  top: 0;
  left: 0;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .icon2 {
  bottom: 0;
  right: 0;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .t1 {
  line-height: 1.75;
  color: var(--active_color2);
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word .t2 {
  line-height: 1.5;
  color: #3D485D;
  text-align: right;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-pagination {
  bottom: 0rem;
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.3rem;
  height: 0.04rem;
  border-radius: 0.06rem;
  background: rgba(0, 0, 0, 0.1);
}
.ins_caseCon2 .center_box .content .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #0098ED;
}
.ins_navbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.04rem;
  line-height: 1.71;
  margin-bottom: 0.2rem;
}
.ins_navbox .icon {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_navbox .t1 {
  color: var(--active_color2);
}
.ins_navbox .t2 {
  color: #3D485D;
}
@media (max-width: 991px) {
  .ins_navbox {
    display: none;
  }
}
.ins_detailsCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #ECF6FF;
}
.ins_detailsCon1 .center_box {
  width: 100%;
  height: auto;
  margin: 0.4rem 0;
}
.ins_detailsCon1 .center_box > .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_detailsCon1 .center_box > .con .left {
  width: 71.66%;
  padding: 0.4rem 0.32rem;
  background-color: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_detailsCon1 .center_box > .con .left .t1 {
  font-weight: 600;
  color: var(--active_color2);
  line-height: 1.25;
}
.ins_detailsCon1 .center_box > .con .left .t2 {
  color: #98A3B7;
  line-height: 1.71;
  margin: 0.16rem 0 0.28rem 0;
}
.ins_detailsCon1 .center_box > .con .left .t4 {
  color: #131418;
  line-height: 2;
}
.ins_detailsCon1 .center_box > .con .left .content {
  font-size: var(--font16);
}
.ins_detailsCon1 .center_box > .con .left .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  line-height: 2;
}
.ins_detailsCon1 .center_box > .con .left .content img {
  border-radius: 0.08rem;
  overflow: hidden;
  width: 100%;
  height: auto !important;
}
.ins_detailsCon1 .center_box > .con .right {
  width: 26.66%;
}
.ins_detailsCon1 .center_box > .con .right > .img {
  width: 100%;
  height: auto;
}
.ins_detailsCon1 .center_box > .con .right > .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.08rem;
}
.ins_detailsCon1 .center_box > .con .right .t1 {
  font-weight: 600;
  line-height: 1.77;
  color: var(--active_color2);
  margin-bottom: 0.2rem;
}
.ins_detailsCon1 .center_box > .con .right .word {
  border-radius: 0.16rem;
  margin-top: 0.2rem;
  background-color: #FFFFFF;
  padding: 0.24rem;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.16rem;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box .t2 {
  color: #3D485D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box .t2 span {
  color: #98A3B7;
  margin-right: 0.08rem;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box .t2:nth-child(1) span {
  color: #FA5151;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box .t2:nth-child(2) span {
  color: #FF8F1F;
}
.ins_detailsCon1 .center_box > .con .right .word .t2_box .t2:nth-child(3) span {
  color: #FFC300;
}
.ins_detailsCon1 .center_box > .con .right .recommend-container .con {
  max-height: 4.32rem;
  overflow-y: auto;
}
/* 热门推荐 */
.recommend-container {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background-color: #FFFFFF;
  padding: 0.24rem;
}
.recommend-container > .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.24rem;
}
.recommend-container > .con .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.16rem;
}
.recommend-container > .con .item .img {
  width: 0.8533rem;
  height: auto;
}
.recommend-container > .con .item .img img {
  width: 100%;
  height: auto;
  border-radius: 0.04rem;
}
.recommend-container > .con .item .t2 {
  flex: 1;
  color: var(--active_color2);
  line-height: 1.71;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.recommend-container > .con .item:hover .t2 {
  color: var(--active_color);
}
/* 移动端适配 */
@media (max-width: 991px) {
  .ins_detailsCon1 .center_box .con .left {
    width: 100%;
  }
  .ins_detailsCon1 .center_box .con .right {
    display: none;
  }
  .ins_resourcesCon1 .center_box .con .left {
    width: 100% !important;
  }
  .ins_resourcesCon1 .center_box .con .left .item {
    flex-wrap: wrap;
  }
  .ins_resourcesCon1 .center_box .con .left .item .img {
    width: 100% !important;
  }
  .ins_resourcesCon1 .center_box .con .left .item .word {
    width: 100%;
  }
  .ins_resourcesCon1 .center_box .con .right {
    display: none;
  }
  .ins_caseCon1 .center_box .content .con .con_grid {
    grid-template-columns: 1fr;
  }
  .ins_caseCon1 .center_box .content .con .con_grid .item {
    padding: 0.32rem 0.16rem;
  }
  .ins_caseCon1 .center_box .content .con .con_grid .item .word .more .img {
    min-height: 0.4rem;
  }
  .ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con {
    flex-wrap: wrap;
  }
  .ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .img {
    order: 1;
    width: 100%;
  }
  .ins_caseCon2 .center_box .content .swiper-container .swiper-wrapper .swiper-slide .con .word {
    order: 2;
    width: 100%;
  }
}
/* 资源中心 */
.ins_resourcesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_resourcesCon1 .center_box {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
}
.ins_resourcesCon1 .center_box .tab {
  width: 100%;
  height: auto;
  margin: 0.4rem 0;
}
.ins_resourcesCon1 .center_box .tab .item {
  width: fit-content;
  height: auto;
  border-radius: 0.99rem;
  margin: 0 auto;
  padding: 0.08rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #E1E8EE;
}
.ins_resourcesCon1 .center_box .tab .item .t1 {
  padding: 0.04rem 0.16rem;
  color: var(--active_color2);
  cursor: pointer;
}
.ins_resourcesCon1 .center_box .tab .item .active {
  color: #FFFFFF;
  background-color: var(--active_color2);
  border-radius: 0.99rem;
}
.ins_resourcesCon1 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_resourcesCon1 .center_box .content > .con {
  width: 100%;
  height: auto;
  display: none;
}
.ins_resourcesCon1 .center_box .content > .con.active {
  display: block;
}
.ins_resourcesCon1 .center_box .content > .con .courseCard .idx_more {
  margin-bottom: 0.8rem;
}
.ins_resourcesCon1 .center_box .content > .con .card {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .left {
  width: 71.66%;
  height: max-content;
  background-color: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.24rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .title {
  font-weight: 600;
  line-height: 1.77;
  margin-bottom: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .line {
  margin: 0.24rem 0;
}
.ins_resourcesCon1 .center_box .content > .con .card .left a:hover .word .t1 {
  color: var(--active_color);
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .img {
  width: 2.6rem;
  height: auto;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .img img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  object-fit: cover;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .img:hover {
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .word {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.16rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .word .t1 {
  flex: 1;
  font-weight: 600;
  color: var(--active_color2);
  line-height: 1.44;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .word .t2 {
  line-height: 1.71;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #3D485D;
}
.ins_resourcesCon1 .center_box .content > .con .card .left .item .word .t3 {
  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;
  color: #98A3B7;
  line-height: 1.71;
}
.ins_resourcesCon1 .center_box .content > .con .card .right {
  width: 26.66%;
  height: max-content;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .search-container {
  width: 100%;
  height: auto;
  max-height: 0.44rem;
  /* max-width: 600px; padding: 0 20px; */
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .search-container .search-form {
  min-height: min-content;
  /* 确保高度适应内容最小需求 */
  box-sizing: border-box;
  /* 包含padding和border在总高度内 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  width: 100%;
  border-radius: 0.99rem;
  overflow: hidden;
  padding: 0.11rem 0.16rem;
  background-color: #FFFFFF;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .search-container .search-form .search-icon {
  width: 0.2rem;
  height: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .search-container .search-form .search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--font14);
  line-height: 1.57;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .t1 {
  font-weight: 600;
  line-height: 1.77;
  color: var(--active_color2);
  margin-bottom: 0.2rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .tag-container {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background-color: #FFFFFF;
  padding: 0.24rem;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .tag-container > .con {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  flex-wrap: wrap;
}
.ins_resourcesCon1 .center_box .content > .con .card .right .con_grid .tag-container > .con > .item {
  font-size: var(--font14);
  color: #3D485D;
  padding: 0.08rem 0.1rem;
  border: 0.01rem solid #E5E5E5;
  border-radius: 0.04rem;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(210, 217, 236, 0.3);
  cursor: pointer;
}
.ins_resourcesCon1 .center_box .content > .con .card.handpickCard .left .item .img {
  width: 1.92rem;
}
.ins_resourcesDetailsCon1 .center_box > .con .left .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #98A3B7;
}
.ins_resourcesDetailsCon1 .center_box > .con .left .t2 .t3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
/* 关于我们 */
.ins_aboutCon1 {
  background: #0098ED;
}
.ins_aboutCon1 .center_box .t1 {
  color: var(--color_fff);
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_aboutCon2 .content {
  width: 100%;
  height: auto;
  padding: 0.9rem 0;
}
.ins_aboutCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem;
  padding: 0.4rem 0 0.4rem 0.4rem;
  margin-top: 0.4rem;
}
.ins_aboutCon2 .content .center_box .content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: calc(100% - 0.6rem);
  height: 100%;
  background-position: center;
  background-color: #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .content .center_box .content .t2 {
  flex: 1;
  width: 48.41%;
  color: #3D485D;
  line-height: 1.75;
  text-indent: 2em;
}
.ins_aboutCon2 .content .center_box .content .img {
  width: 46.41%;
  /* width: 5.57rem;  */
  height: auto;
}
.ins_aboutCon2 .content .center_box .content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.16rem;
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_aboutCon3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0.24rem;
  z-index: -2;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background-color: #ECF6FF;
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 > .content {
  width: 100%;
  height: auto;
  padding: 0.9rem 0 0.9rem 0;
}
.ins_aboutCon3 > .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 > .content .center_box .timeline {
  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;
  overflow: hidden;
  margin: 0.4rem auto 0.08rem auto;
  cursor: pointer;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item {
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item .timeline-title {
  color: var(--active_color2);
  line-height: 1.44;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item .timeline-year {
  color: #3D485D;
  line-height: 1.71;
  margin-top: 0.04rem;
  margin-bottom: 0.08rem;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item .timeline-dot {
  display: inline-block;
  width: 0.16rem;
  height: 0.16rem;
  background-color: var(--color_fff);
  border-radius: 50%;
  border: 0.02rem solid #C0C4CC;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item.active .timeline-title,
.ins_aboutCon3 > .content .center_box .timeline .timeline-item.active .timeline-year {
  color: #0098ED;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item.active .timeline-dot {
  border: 0.04rem solid #0098ED;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:first-child {
  /* 左侧 */
  /* 右侧 */
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:first-child .timeline-dot::before {
  content: '';
  position: absolute;
  left: 0.08rem;
  bottom: 0.12rem;
  width: calc(50% - 0.16rem);
  height: 0;
  border-top: 0.01rem dashed #e0e0e0;
  /* 左边虚线区域 */
  z-index: -1;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:first-child .timeline-dot::after {
  content: '';
  position: absolute;
  left: calc(50% + 0.08rem);
  /* 右侧实线区域 */
  right: 0;
  bottom: 0.12rem;
  width: 100%;
  height: 0.01rem;
  background: #e0e0e0;
  /* 实线颜色 */
  z-index: -1;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:last-child {
  /* 左侧 */
  /* 右侧 */
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:last-child .timeline-dot::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.12rem;
  width: 50%;
  height: 1px;
  background: #e0e0e0;
  /* 实线颜色 */
  z-index: -1;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:last-child .timeline-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.12rem;
  width: 50%;
  height: 0;
  border-top: 1px dashed #e0e0e0;
  /* 虚线样式 */
  z-index: -1;
}
.ins_aboutCon3 > .content .center_box .timeline .timeline-item:not(:first-child):not(:last-child) .timeline-dot::before {
  content: '';
  position: absolute;
  left: 0.08rem;
  bottom: 0.12rem;
  width: 100%;
  height: 0.01rem;
  background: #e0e0e0;
  z-index: -1;
}
.ins_aboutCon3 > .content .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 0.4rem;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-prev,
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-next {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: calc(50% - 0.32rem);
  transform: translateY(-50%);
  margin-top: 0.32rem;
  background-size: 50% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0rem 0.02rem 0.08rem 0rem rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-prev .img,
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-next .img {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-prev .img img,
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-next .img img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-prev {
  left: -0.54rem;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-button-next {
  right: -0.54rem;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper {
  width: 100%;
  height: auto;
  /* .swiper-slide.swiper-slide-active, */
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
  width: 3.8667rem;
  padding: 0.24rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide .t1 {
  line-height: 1.66;
  color: var(--active_color2);
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide .t2 {
  line-height: 1.71;
  color: #3D485D;
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide.active {
  background: var(--active_color) !important;
  border: 0.02rem solid #FFFFFF !important;
  box-shadow: 0px 0.16rem 0.32rem 0px rgba(0, 152, 237, 0.2);
}
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide.active .t1,
.ins_aboutCon3 > .content .center_box .swiper_box .swiper-container .swiper-wrapper .swiper-slide.active .t2 {
  color: #fff;
}
@media (max-width:990px) {
  .ins_aboutCon3 .content .center_box .swiper_box .swiper-button-prev,
  .ins_aboutCon3 .content .center_box .swiper_box .swiper-button-next {
    display: none;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_aboutCon4 > .content {
  width: 100%;
  height: auto;
  padding: 0.9rem 0;
}
.ins_aboutCon4 > .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 > .content .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.ins_aboutCon4 > .content .center_box .content .item {
  width: 100%;
  height: auto;
  padding: 0.44rem 0.32rem;
  text-align: center;
  border: 0.01rem solid #FFFFFF;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(210, 217, 236, 0.3);
  border-radius: 0.16rem;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(1),
.ins_aboutCon4 > .content .center_box .content .item:nth-child(1):hover {
  background: url('../images/a_bg2.png') no-repeat right bottom, linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  background-size: 1.72rem, 1.72rem;
  background-position: right 0 bottom 0.12rem, 0 0;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(2),
.ins_aboutCon4 > .content .center_box .content .item:nth-child(2):hover {
  background: url('../images/a_bg3.png') no-repeat right bottom, linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  background-size: 1.72rem, 1.72rem;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(3),
.ins_aboutCon4 > .content .center_box .content .item:nth-child(3):hover {
  background: url('../images/a_bg4.png') no-repeat right bottom, linear-gradient(180deg, #F7F8FA 0%, #FAFBFD 100%);
  background-size: 1.72rem, 1.72rem;
}
.ins_aboutCon4 > .content .center_box .content .item:hover {
  border: 0.01rem solid #0098ED;
  box-shadow: 0rem 0.16rem 0.32rem 0rem rgba(0, 152, 237, 0.2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(1):hover {
  background: url('../images/a_bg2.png') no-repeat right bottom, var(--color_fff);
  background-size: 1.72rem, 1.72rem;
  background-position: right 0 bottom 0.12rem, 0 0;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(2):hover {
  background: url('../images/a_bg3.png') no-repeat right bottom, var(--color_fff);
  background-size: 1.72rem, 1.72rem;
}
.ins_aboutCon4 > .content .center_box .content .item:nth-child(3):hover {
  background: url('../images/a_bg4.png') no-repeat right bottom, var(--color_fff);
  background-size: 1.72rem, 1.72rem;
}
.ins_aboutCon4 > .content .center_box .content .item .icon {
  width: 0.64rem;
  height: 0.64rem;
  margin: 0 auto;
}
.ins_aboutCon4 > .content .center_box .content .item .icon img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon4 > .content .center_box .content .item .t1 {
  margin: 0.4rem auto 0.2rem auto;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.33;
}
.ins_aboutCon4 > .content .center_box .content .item .t2 {
  color: #3D485D;
  line-height: 2;
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
  padding: 0.9rem 0;
}
.ins_aboutCon5::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0.24rem;
  z-index: -2;
  width: calc(100% - 0.48rem);
  height: 100%;
  background-position: center;
  background-color: #ECF6FF;
  border-radius: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 > .content {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 > .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 > .content .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0;
  margin-top: 0.4rem;
}
.ins_aboutCon5 > .content .center_box .item_box .line {
  width: 0.01rem;
  height: 100%;
  background-color: #131418;
  opacity: 0.1;
  margin: 0 auto;
}
.ins_aboutCon5 > .content .center_box .item_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  padding: 0 0.28rem;
  /* width: 2.58rem; */
}
.ins_aboutCon5 > .content .center_box .item_box .item .icon {
  width: 0.44rem;
  height: 0.44rem;
  margin: 0.0733rem 0;
}
.ins_aboutCon5 > .content .center_box .item_box .item .icon img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon5 > .content .center_box .item_box .item .word {
  flex: 1;
  min-width: 1.94rem;
}
.ins_aboutCon5 > .content .center_box .item_box .item .word .t1 {
  line-height: 1.4;
  color: var(--active_color2);
  display: -webkit-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_aboutCon5 > .content .center_box .item_box .item .word .t2 {
  line-height: 1.57;
  color: #3D485D;
}
.ins_aboutCon5 > .content .swiper-con3 {
  width: calc(100% - 0.48rem);
  height: 2rem;
  position: relative;
  left: 0.24rem;
  overflow: hidden;
  margin-top: 0.64rem;
}
.ins_aboutCon5 > .content .swiper-con3 .swiper-wrapper {
  width: 100%;
  height: 100%;
  /* .flex; .j_center; */
}
.ins_aboutCon5 > .content .swiper-con3 .swiper-wrapper .swiper-slide {
  width: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 > .content .swiper-con3 .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon5 > .content .swiper-con3 .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 > .content .swiper-con3 .swiper-wrapper .swiper-slide .img:hover img {
  transform: scale(1.04);
}
.ins_aboutCon5 > .content .swiper-con3::before,
.ins_aboutCon5 > .content .swiper-con3::after {
  content: '';
  position: absolute;
  top: 0;
  width: 3.36rem;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.ins_aboutCon5 > .content .swiper-con3::before {
  left: 0;
  background: linear-gradient(270deg, rgba(240, 247, 253, 0) 0%, #F0F7FD 100%);
}
.ins_aboutCon5 > .content .swiper-con3::after {
  right: 0;
  background: linear-gradient(90deg, rgba(240, 247, 253, 0) 0%, #F0F7FD 100%);
}
@media (max-width:990px) {
  .ins_aboutCon5 .content .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem 0.2rem !important;
    margin-top: 0.5rem;
  }
  .ins_aboutCon5 .content .center_box .item_box .line {
    display: none !important;
  }
  .ins_aboutCon5 .content .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.ins_aboutCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_aboutCon6 > .content {
  width: 100%;
  height: auto;
  padding: 0.9rem 0;
}
.ins_aboutCon6 > .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 > .content .center_box .content .t2 {
  color: #3D485D;
  line-height: 2;
  margin-top: 0.4rem;
}
.ins_aboutCon6 > .content .center_box .content .pictureCon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.32rem;
  margin-top: 0.4rem;
}
.ins_aboutCon6 > .content .center_box .content .pictureCon .item:hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_aboutCon6 .content .center_box .content .t2 {
    line-height: 1.4;
  }
  .ins_aboutCon6 .content .center_box .content .t2 p {
    display: contents;
  }
}
.ins_aboutCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bgColor);
}
.ins_aboutCon7 > .content {
  width: 100%;
  height: auto;
  padding: 0.8rem 0;
}
.ins_aboutCon7 > .content .center_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_aboutCon7 > .content .center_box .content {
  width: 72.41%;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_aboutCon7 > .content .center_box .content .left_box {
  width: 37.05%;
  height: auto;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .item_box .item i {
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  border: 2px solid var(--color);
  border-radius: 10px;
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .item_box .item .word {
  position: absolute;
  width: max-content;
  left: calc(100% + 0.16rem);
}
.ins_aboutCon7 > .content .center_box .content .left_box .image_box .item_box .item .word .t1 {
  line-height: 1.5;
  color: var(--active_color2);
  font-family: Microsoft YaHei;
}
.ins_aboutCon7 > .content .center_box .content .line_a {
  width: 0.01rem;
  height: -webkit-fill-available;
  background-color: #0098ED;
  opacity: 0.1;
  margin: 0.4rem;
}
.ins_aboutCon7 > .content .center_box .content .right_box {
  width: 45.6%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.4rem;
  margin: 0.4rem 0;
}
.ins_aboutCon7 > .content .center_box .content .right_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.ins_aboutCon7 > .content .center_box .content .right_box .item .img {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.99rem;
  background: var(--color_fff);
  box-shadow: 0px 8px 16px 0px rgba(192, 199, 218, 0.3);
}
.ins_aboutCon7 > .content .center_box .content .right_box .item .img img {
  width: 0.32rem;
  height: 0.32rem;
}
.ins_aboutCon7 > .content .center_box .content .right_box .item .word .t1 {
  line-height: 1.5;
  color: #3D485D;
}
.ins_aboutCon7 > .content .center_box .content .right_box .item .word .t2 {
  line-height: 1.44;
  color: var(--active_color2);
  margin-top: 0.04rem;
}
/* 移动端适配 */
@media (max-width: 991px) {
  .ins_aboutCon2 .content .center_box .content {
    flex: 1 1 100% !important;
    /* 强制单列布局 */
    gap: 0.11rem;
    padding: 0.4rem;
  }
  .ins_aboutCon2 .content .center_box .content::after {
    width: 100%;
  }
  .ins_aboutCon2 .content .center_box .content .t2 {
    width: 100% !important;
    margin-bottom: 0.2rem;
    max-height: 5rem;
    overflow: auto;
  }
  .ins_aboutCon2 .content .center_box .content .img {
    width: 100% !important;
  }
  .ins_aboutCon3 .content .center_box .content .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
    padding: 0.24rem 0.56rem;
  }
  .ins_aboutCon3 .content .center_box .content .swiper_box .swiper-button-prev {
    left: 0.16rem;
  }
  .ins_aboutCon3 .content .center_box .content .swiper_box .swiper-button-next {
    right: 0.16rem;
  }
  .ins_aboutCon4 .content .center_box .content {
    grid-template-columns: 1fr;
  }
  .ins_aboutCon5 .content .center_box .content {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    justify-items: center;
    margin: 0 auto;
    /* grid-template-columns: 1fr 0.01rem 1fr; gap: 0.4rem; justify-items: center; .line:nth-child(4) { display: none; } */
  }
  .ins_aboutCon5 .content .center_box .content .line {
    width: 50%;
    height: 0.01rem;
  }
  .ins_aboutCon5 .content .swiper-con3 {
    margin-top: 0.4rem;
  }
  .ins_aboutCon6 .content .center_box .content .t2 {
    width: 100%;
    margin: 0.4rem 0;
  }
  .ins_aboutCon6 .content .center_box .content .pictureCon {
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_aboutCon7 .content .center_box .content {
    width: 100%;
    flex-direction: column;
  }
  .ins_aboutCon7 .content .center_box .content .left_box,
  .ins_aboutCon7 .content .center_box .content .right_box {
    width: 100%;
  }
  .ins_aboutCon7 .content .center_box .content .line_a {
    display: none;
  }
  .ins_aboutCon7 .content .center_box .content .right_box {
    margin: 0 auto;
  }
}
.ins_serviceBanner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_serviceBanner .content {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 0.39rem;
}
.ins_serviceBanner .content .center_box .t1 {
  line-height: normal;
}
.ins_serviceBanner .content .center_box .t3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.08rem;
  margin-top: 0.32rem;
}
.ins_serviceBanner .content .center_box .t3 .t3_item {
  display: -webkit-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;
  padding: 0.015rem;
  color: #3D485D;
}
.ins_serviceBanner .content .center_box .t3 .t3_item .icon {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 14px;
  min-height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_serviceBanner .content .center_box .t3 .t3_item .icon img {
  width: 100%;
  height: 100%;
}
.ins_serviceBanner .content .center_box .idx_more {
  margin-top: 0.32rem;
}
.ins_serviceBanner .content .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_serviceBanner .content .img_w100 img {
  width: 100%;
  height: 100%;
}
.ins_serviceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_serviceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .center_box .img {
  width: 76%;
  margin: 0 auto;
  margin-top: 0.4rem;
}
.ins_serviceCon1 .center_box .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.9rem 0;
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .list_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.9rem;
  display: -webkit-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;
  padding: 0.08rem;
  background: #e1e8eecc;
  border-radius: 100px;
}
.ins_serviceCon2 .center_box .list_box .list a {
  width: fit-content;
  padding: 0.06rem 0.16rem;
  font-size: var(--font16);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .center_box .list_box .list a:hover {
  color: var(--active_color);
}
.ins_serviceCon2 .center_box .list_box .list a.active {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_serviceCon2 .swiper_item {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .swiper_item > .swiper-wrapper > .swiper-slide.swiper-slide-active {
  z-index: 10;
}
.ins_serviceCon2 .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0 0.24rem;
  margin-top: 0.4rem;
}
.ins_serviceCon2 .content1 .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 0.47rem;
}
.ins_serviceCon2 .content1 .content_box .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_serviceCon2 .content1 .content_box .img_box .img {
  width: 72.2%;
}
.ins_serviceCon2 .content1 .content_box .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .content2 {
  width: 100%;
  height: auto;
  padding-top: 1.3rem;
  position: relative;
  z-index: 1;
}
.ins_serviceCon2 .content2 .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_serviceCon2 .content2 .img_box img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .content2 .swiper_content {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  padding: 0 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_serviceCon2 .content2 .swiper_content .left_box {
  width: 49%;
  padding: 0.46rem 0;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .t1 {
  font-weight: 700;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.04rem;
  position: relative;
  z-index: 1;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 152, 237, 0) 0%, #0098ED 16%, #0098ED 52%, #0098ED 85%, rgba(0, 152, 237, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  position: relative;
  z-index: 1;
  padding: 0.16rem 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;
  cursor: pointer;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 4px;
  height: 4px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  left: 0.18rem;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0098ED 0%, #0098ED 60%, rgba(255, 255, 255, 0) 99%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item span {
  width: 100%;
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item:hover span {
  color: var(--active_color);
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item:hover::after {
  background: var(--active_color);
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item.active span {
  color: #FFFFFF;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item.active::before {
  width: 100%;
}
.ins_serviceCon2 .content2 .swiper_content .left_box .item_box .item.active::after {
  opacity: 0;
}
.ins_serviceCon2 .content2 .swiper_content .right_box {
  width: 49%;
  padding: 0.24rem 0;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li .swiper_info .swiper_word {
  width: 34.5%;
  height: auto;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
  transform: scale(0.9);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .pb {
  padding-bottom: 217%;
}
.ins_serviceCon2 .content2 .swiper_content .right_box .swiper_box ul li .swiper_info .swiper_word .swiper-slide-active .centerInfo {
  transform: scale(1);
}
.ins_serviceCon2 .content3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.3rem;
  padding: 0.9rem 0;
}
.ins_serviceCon2 .content3::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.48rem);
  height: 100%;
  background: #ECF6FF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0.24rem;
  border-radius: 0.32rem;
  z-index: -2;
}
.ins_serviceCon2 .content3 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .content3 .center_box .swiper_img {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_serviceCon2 .content3 .center_box .swiper_img .swiper-wrapper {
  display: -webkit-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_serviceCon2 .content3 .center_box .swiper_img ul li {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 10;
  pointer-events: initial;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .imgs {
  width: 100%;
  height: auto;
  padding: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .imgs .img {
  /* width: 100%; height: auto; */
  width: 2.41rem;
  height: 3.06rem;
  border-radius: 0.08rem;
  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_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  padding: 0.24rem 0.22rem;
  padding-top: 0;
  text-align: center;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .word .t2 {
  margin-top: 0.08rem;
  color: #3D485D;
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo:hover {
  box-shadow: 0px 16px 32px 0px rgba(0, 152, 237, 0.2);
}
.ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo:hover .imgs .img {
  transform: scale(1.05);
}
.ins_serviceCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.9rem;
}
.ins_serviceCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon3 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  gap: 0.2rem;
}
.ins_serviceCon3 .center_box .content_box .t1 {
  font-weight: 600;
  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_serviceCon3 .center_box .content_box .t1 img {
  width: 0.4rem;
}
.ins_serviceCon3 .center_box .content_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_serviceCon3 .center_box .content_box .list .one {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
  color: #131418;
}
.ins_serviceCon3 .center_box .content_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0.5em;
  left: 0.06rem;
}
.ins_serviceCon3 .center_box .content_box .list .one:first-child {
  margin-top: 0;
}
.ins_serviceCon3 .center_box .content_box .list .tow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  margin-top: 0.08rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding-left: 0.24rem;
}
.ins_serviceCon3 .center_box .content_box .list .tow span {
  padding: 0.04rem 0.12rem;
  background: #F8F8F8;
  color: #3D485D;
  font-size: var(--font14);
}
.ins_serviceCon3 .center_box .content_box .img {
  width: 91%;
  height: auto;
  margin-top: 0.69rem;
}
.ins_serviceCon3 .center_box .content_box .left_box {
  width: 42%;
}
.ins_serviceCon3 .center_box .content_box .left_box .content {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.32rem;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
  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_serviceCon3 .center_box .content_box .right_box {
  width: 57%;
  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_serviceCon3 .center_box .content_box .right_box .content {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.32rem;
  box-shadow: 0px 16px 32px 0px rgba(210, 217, 236, 0.3);
}
.ins_serviceCon3 .center_box .idx_more2 {
  margin: 0.4rem auto 0 auto;
}
/* 移动端适配 */
@media (max-width: 991px) {
  .ins_serviceCon2 .center_box .list_box .list {
    font-size: var(--font14);
  }
  .ins_serviceCon2 .content3 .center_box .swiper_img ul li .centerInfo .imgs .img .pb {
    width: 100%;
  }
}
.sticky {
  position: fixed;
  top: calc(var(--header-height) + 0.2rem);
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0 auto !important;
  padding: 0 20px;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
