@charset "UTF-8";
/* 技术：小王 QQ：491813163  微信：18223904336 */
* {
  margin: 0;
  padding: 0;
  -moz-outline: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px !important;
  overflow-x: hidden;
}
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;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
  font-weight: normal;
}
strong {
  font-weight: normal;
}
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;
}
/* 动画延迟 */
/* 图片放大 */
/* 旋转 */
.xzx {
  transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.xzy {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
/* 比例 */
.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;
}
/* 侧边条 */
/* 媒体查询 缩写 */
/* 布局 */
.w1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.w1800 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
.w1720 {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
.w1680 {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
.w1640 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.w1360 {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.w1350 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.w1240 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.w1150 {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:1840px) {
  .w1720 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1800px) {
  .w1680 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1760px) {
  .w1640 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1680px) {
  .w1560 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1520px) {
  .w1400 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1470px) {
  .w1350 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1400px) {
  .w1280 {
    padding: 0 60px;
  }
}
@media (max-width:1360px) {
  .w1240 {
    padding: 0 60px;
  }
}
@media (max-width:1320px) {
  .w1200 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1270px) {
  .w1150 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1024px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1600,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    max-width: 100%;
    padding: 0 20px;
  }
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
  .w1440 {
    max-width: 100%;
  }
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* 大 => 小 */
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 透明度  1 => 0 */
@keyframes bgfd {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* 宽度  0 => 100 */
@keyframes width100 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* 默认 空标签 */
.cle {
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  font-size: 0px;
}
/* 图片 垂直居中 */
.imgmid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 100%;
  width: 1px;
  margin-left: -1px;
  vertical-align: middle;
  font-size: 0px;
}
.block_a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.none {
  display: none;
}
/* 移动端不兼容 暂不推荐使用 */
.ratio {
  -webkit-aspect-ratio: 1 / 1;
  aspect-ratio: 1 / 1;
}
.center_box {
  position: relative;
  z-index: 5;
}
.m1px {
  margin-bottom: -1px;
}
:root {
  /* 字体 */
  --active_color: #3468F6;
  --text_color: #282828;
  --background_color: #f5f5f5;
  /* 1280px ~ 1800px */
  /* 60px ~ 160px */
  --font160: clamp(3.75rem, calc( -3.393rem + 11.16vw), 10rem);
  /* 32px ~ 80px */
  --font80: clamp(2rem, calc(-5.385rem + 9.23vw), 5rem);
  /* 31px ~ 62px */
  --font62: clamp(1.938rem, calc(-2.832rem + 5.96vw), 3.875rem);
  /* 30px ~ 60px */
  --font60: clamp(1.875rem, calc(-2.740rem + 5.77vw), 3.75rem);
  /* 29px ~ 58px */
  --font58: clamp(1.813rem, calc(-2.649rem + 5.58vw), 3.625rem);
  /* 28px ~ 52px */
  --font52: clamp(1.75rem, calc(-1.942rem + 4.62vw), 3.25rem);
  /* 28px ~ 50px */
  --font50: clamp(1.625rem, calc(-2.067rem + 4.62vw), 3.125rem);
  /* 26px ~ 48px */
  --font48: clamp(1.625rem, calc(-1.760rem + 4.23vw), 3rem);
  /* 24px ~ 42px */
  --font42: clamp(1.5rem, calc(-1.269rem + 3.46vw), 2.625rem);
  /* 24px ~ 40px */
  --font40: clamp(1.5rem, calc(-0.962rem + 3.08vw), 2.5rem);
  /* 24px ~ 38px */
  --font38: clamp(1.5rem, calc(-0.654rem + 2.69vw), 2.375rem);
  /* 22px ~ 36px */
  --font36: clamp(1.375rem, calc(-0.779rem + 2.69vw), 2.25rem);
  /* 22px ~ 34px */
  --font34: clamp(1.375rem, calc(-0.471rem + 2.31vw), 2.125rem);
  /* 20px ~ 32px */
  --font32: clamp(1.25rem, calc(-0.596rem + 2.31vw), 2rem);
  /* 20px ~ 30px */
  --font30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  /* 18px ~ 28px */
  --font28: clamp(1.125rem, calc(-0.413rem + 1.92vw), 1.75rem);
  /* 18px ~ 26px */
  --font26: clamp(1.125rem, calc(-0.106rem + 1.54vw), 1.625rem);
  /* 17px ~ 24px */
  --font24: clamp(1.063rem, calc(-0.014rem + 1.35vw), 1.5rem);
  /* 16px ~ 22px */
  --font22: clamp(1rem, calc(0.0770rem + 1.15vw), 1.375rem);
  /* 15px ~ 20px */
  --font20: clamp(0.938rem, calc(0.1680rem + 0.96vw), 1.25rem);
  /* 14px ~ 18px */
  --font18: clamp(0.875rem, calc(0.2600rem + 0.77vw), 1.125rem);
  /* 13px ~ 16px */
  --font16: clamp(0.813rem, calc(0.3510rem + 0.58vw), 1rem);
  /* 12px ~ 14px */
  --font14: clamp(0.75rem, calc(0.4420rem + 0.38vw), 0.875rem);
  /* 圆角 */
  --border-radius20: clamp(0.625rem, calc(-0.913rem + 1.92vw), 1.25rem);
  --border-radius18: clamp(0.625rem, calc(-0.606rem + 1.54vw), 1.125rem);
  --border-radius16: clamp(0.5rem, calc(-0.731rem + 1.54vw), 1rem);
  --border-radius14: clamp(0.5rem, calc(-0.423rem + 1.15vw), 0.875rem);
  --border-radius12: clamp(0.375rem, calc(-0.548rem + 1.15vw), 0.75rem);
  --border-radius10: clamp(0.313rem, calc(-0.457rem + 0.96vw), 0.625rem);
  --border-radius8: clamp(0.25rem, calc(-0.365rem + 0.77vw), 0.5rem);
  /* 数值 */
  /* 70px ~ 310px */
  --num_310: clamp(4.375rem, calc(-32.548rem + 46.15vw), 19.375rem);
  /* 70px ~ 300px */
  --num_300: clamp(4.375rem, calc(-31.010rem + 44.23vw), 18.75rem);
  /* 70px ~ 230px */
  --num_230: clamp(4.375rem, calc(-20.240rem + 30.77vw), 14.375rem);
  /* 70px ~ 220px */
  --num_220: clamp(4.375rem, calc(-18.702rem + 28.85vw), 13.75rem);
  /* 70px ~ 210px */
  --num_210: clamp(4.375rem, calc(-17.163rem + 26.92vw), 13.125rem);
  /* 70px ~ 200px */
  --num_200: clamp(4.375rem, calc(-15.625rem + 25.00vw), 12.5rem);
  /* 70px ~ 190px */
  --num_190: clamp(4.375rem, calc(-14.087rem + 23.08vw), 11.875rem);
  /* 70px ~ 180px */
  --num_180: clamp(4.375rem, calc(-12.548rem + 21.15vw), 11.25rem);
  /* 70px ~ 170px */
  --num_170: clamp(4.375rem, calc(-11.010rem + 19.23vw), 10.625rem);
  /* 70px ~ 160px */
  --num_160: clamp(4.375rem, calc(-9.4710rem + 17.31vw), 10rem);
  /* 70px ~ 150px */
  --num_150: clamp(4.375rem, calc(-7.9330rem + 15.38vw), 9.375rem);
  /* 70px ~ 140px */
  --num_140: clamp(4.375rem, calc(-6.3940rem + 13.46vw), 8.75rem);
  /* 65px ~ 130px */
  --num_130: clamp(4.063rem, calc(-5.9380rem + 12.50vw), 8.125rem);
  /* 60px ~ 120px */
  --num_120: clamp(3.75rem, calc(-5.4810rem + 11.54vw), 7.5rem);
  /* 55px ~ 110px */
  --num_110: clamp(3.438rem, calc(-5.0240rem + 10.58vw), 6.875rem);
  /* 50px ~ 105px */
  --num_105: clamp(3.125rem, calc(-5.3370rem + 10.58vw), 6.563rem);
  /* 50px ~ 100px */
  --num_100: clamp(3.125rem, calc(-4.5670rem + 9.620vw), 6.25rem);
  /* 45px ~ 95px */
  --num_95: clamp(2.813rem, calc(-4.880rem + 9.62vw), 5.938rem);
  /* 45px ~ 90px */
  --num_90: clamp(2.813rem, calc(-4.111rem + 8.65vw), 5.625rem);
  /* 40px ~ 85px */
  --num_85: clamp(2.5rem, calc(-4.423rem + 8.65vw), 5.313rem);
  /* 40px ~ 80px */
  --num_80: clamp(2.5rem, calc(-3.654rem + 7.69vw), 5rem);
  /* 35px ~ 75px */
  --num_75: clamp(2.188rem, calc(-3.966rem + 7.69vw), 4.688rem);
  /* 35px ~ 70px */
  --num_70: clamp(2.188rem, calc(-3.197rem + 6.73vw), 4.375rem);
  /* 30px ~ 65px */
  --num_65: clamp(1.875rem, calc(-3.510rem + 6.73vw), 4.063rem);
  /* 30px ~ 60px */
  --num_60: clamp(1.875rem, calc(-2.740rem + 5.77vw), 3.75rem);
  /* 25px ~ 55px */
  --num_55: clamp(1.563rem, calc(-3.053rem + 5.77vw), 3.438rem);
  /* 25px ~ 50px */
  --num_50: clamp(1.563rem, calc(-2.284rem + 4.81vw), 3.125rem);
  /* 20px ~ 45px */
  --num_45: clamp(1.25rem, calc(-2.596rem + 4.81vw), 2.813rem);
  /* 20px ~ 40px */
  --num_40: clamp(1.25rem, calc(-1.827rem + 3.85vw), 2.5rem);
  /* 15px ~ 35px */
  --num_35: clamp(0.938rem, calc(-2.139rem + 3.85vw), 2.188rem);
  /* 15px ~ 30px */
  --num_30: clamp(0.938rem, calc(-1.370rem + 2.88vw), 1.875rem);
  /* 10px ~ 25px */
  --num_25: clamp(0.625rem, calc(-1.683rem + 2.88vw), 1.563rem);
  /* 10px ~ 20px */
  --num_20: clamp(0.625rem, calc(-0.913rem + 1.92vw), 1.25rem);
  /* 08px ~ 15px */
  --num_15: clamp(0.5rem, calc(-0.577rem + 1.35vw), 0.938rem);
  /*-------------------- 具体指*/
  --digit24: 24px;
  --digit32: clamp(0.938rem, calc(-1.370rem + 2.88vw), 1.875rem);
  --digit37: 37px;
}
@media (max-width:768px) {
  :root {
    /* 52px ~ 160px */
    --font160: 52px;
    /* 30px ~ 80px */
    --font80: 30px;
    /* 28px ~ 60px */
    --font60: 28px;
    /* 26px ~ 50px */
    --font50: 26px;
    /* 24px ~ 48px */
    --font48: 24px;
    /* 22px ~ 42px */
    --font42: 22px;
    /* 20px ~ 40px */
    --font40: 20px;
    /* 20px ~ 38px */
    --font38: 20px;
    /* 19px ~ 36px */
    --font36: 19px;
    /* 19px ~ 34px */
    --font34: 19px;
    /* 18px ~ 32px */
    --font32: 18px;
    /* 18px ~ 30px */
    --font30: 18px;
    /* 18px ~ 28px */
    --font28: 17px;
    /* 18px ~ 26px */
    --font26: 16px;
    /* 18px ~ 24px */
    --font24: 16px;
    /* 17px ~ 22px */
    --font22: 16px;
    /* 17px ~ 22px */
    --font20: 14px;
    /* 17px ~ 22px */
    --font18: 14px;
    /* 17px ~ 22px */
    --font16: 13px;
  }
}
/* 盒子大小 */
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Thin.ttf');
  font-weight: 200;
}
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Bold.ttf');
  font-weight: 600;
}
@font-face {
  font-family: 'HarmonyOS_Sans';
  src: url('https://img1.weiling.cn/wstmart/home/view/default/fonts/HarmonyOS_Sans_SC_Black.ttf');
  font-weight: 700;
}
body {
  font-family: "HarmonyOS_Sans";
}
.h100 {
  height: 100%;
}
.color34 {
  color: #3468F6 !important;
}
.text_c {
  text-align: center;
}
.font62 {
  font-size: var(--font62);
  line-height: 1.1;
  font-weight: 600;
}
.font62 * {
  font-size: var(--font62);
  line-height: 1.1;
  font-weight: 600;
}
.font58 {
  font-size: var(--font58);
  line-height: 1.5;
  font-weight: 600;
}
.font58 * {
  font-size: var(--font58);
  line-height: 1.5;
  font-weight: 600;
}
.font52 {
  font-size: var(--font52);
  line-height: 1.5;
  font-weight: 600;
}
.font52 * {
  font-size: var(--font52);
  line-height: 1.5;
  font-weight: 600;
}
.font42 {
  font-size: var(--font42);
  line-height: 1.1;
  font-weight: 600;
}
.font42 * {
  font-size: var(--font42);
  line-height: 1.1;
  font-weight: 600;
}
@media (max-width:990px) {
  .font42 {
    line-height: 1.5;
  }
  .font42 * {
    line-height: 1.5;
  }
}
.font40 {
  font-size: var(--font40);
  line-height: 1.1;
  font-weight: 600;
}
.font40 * {
  font-size: var(--font40);
  line-height: 1.1;
  font-weight: 600;
}
@media (max-width:990px) {
  .font40 {
    line-height: 1.5;
  }
  .font40 * {
    line-height: 1.5;
  }
}
.font36 {
  font-size: var(--font36);
  line-height: 1.1;
  font-weight: 600;
}
.font36 * {
  font-size: var(--font36);
  line-height: 1.1;
  font-weight: 600;
}
@media (max-width:990px) {
  .font36 {
    line-height: 1.5;
  }
  .font36 * {
    line-height: 1.5;
  }
}
.font32 {
  font-size: var(--font32);
  line-height: 1.1;
  font-weight: 600;
}
.font32 * {
  font-size: var(--font32);
  line-height: 1.1;
  font-weight: 600;
}
@media (max-width:990px) {
  .font32 {
    line-height: 1.5;
  }
  .font32 * {
    line-height: 1.5;
  }
}
.font28 {
  font-size: var(--font28);
  line-height: 1.2;
  font-weight: 500;
}
.font28 * {
  font-size: var(--font28);
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width:990px) {
  .font28 {
    line-height: 1.5;
  }
  .font28 * {
    line-height: 1.5;
  }
}
.font26 {
  font-size: var(--font26);
  line-height: 1.2;
}
.font26 * {
  font-size: var(--font26);
  line-height: 1.2;
}
@media (max-width:990px) {
  .font26 {
    line-height: 1.5;
  }
  .font26 * {
    line-height: 1.5;
  }
}
.font24 {
  font-size: var(--font24);
  line-height: 1.2;
}
.font24 * {
  font-size: var(--font24);
  line-height: 1.2;
}
@media (max-width:990px) {
  .font24 {
    line-height: 1.5;
  }
  .font24 * {
    line-height: 1.5;
  }
}
.font20 {
  font-size: var(--font20);
  line-height: 1.2;
}
.font20 * {
  font-size: var(--font20);
  line-height: 1.2;
}
@media (max-width:990px) {
  .font20 {
    line-height: 1.5;
  }
  .font20 * {
    line-height: 1.5;
  }
}
.font18 {
  font-size: var(--font18);
  line-height: 1.5;
}
.font18 * {
  font-size: var(--font18);
  line-height: 1.5;
}
@media (max-width:990px) {
  .font18 {
    line-height: 1.5;
  }
  .font18 * {
    line-height: 1.5;
  }
}
.font16 {
  font-size: var(--font16);
  line-height: 1.2;
}
.font16 * {
  font-size: var(--font16);
  line-height: 1.2;
}
@media (max-width:990px) {
  .font16 {
    line-height: 1.5;
  }
  .font16 * {
    line-height: 1.5;
  }
}
* {
  scrollbar-color: #3468F6 #d4d6d7;
}
*::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #d4d6d7;
}
*::-webkit-scrollbar-thumb {
  background-color: #3468F6;
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
body {
  --g_bnum: 0px;
}
body.active {
  --g_bnum: clamp(3.75rem, calc(-2.404rem + 7.69vw), 6.25rem);
}
/* -------------------------------------------------------------------  最大 内容盒子 */
main {
  width: 100%;
  height: auto;
  overflow: hidden;
  --header-height: clamp(3.75rem, calc(0.673rem + 3.85vw), 5rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main * {
  scrollbar-color: #3468F6 #d4d6d7;
}
main *::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #d4d6d7;
}
main *::-webkit-scrollbar-thumb {
  background-color: #3468F6;
  border-radius: 10px;
}
main *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
@media (max-width:990px) {
  main {
    --header-height: 60px !important;
    --g_bnum: 0 !important;
  }
  main * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  main *::-webkit-scrollbar {
    display: none;
  }
}
main.active {
  --g_bnum: 0px;
}
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* -------------------------------------------------------------------  弹窗 */
.popup_text {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: #000000b0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  --tetx_width: 800px;
  --text_height: 500px;
  --paddingX: 40px;
  --paddingY: 40px;
  padding: 30px;
}
.popup_text .text_box {
  max-width: var(--tetx_width);
  max-height: var(--text_height);
  width: 100%;
  height: auto;
  background: #FFF;
  border-radius: var(--border-radius20);
  padding: var(--paddingX) var(--paddingY);
  position: relative;
  z-index: 1;
}
.popup_text .text_box .title {
  font-size: var(--font20);
}
.popup_text .text_box .list {
  width: 100%;
  height: auto;
  margin-top: 30px;
  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: 5px;
}
.popup_text .text_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.popup_text .text_box .list .one .icon_1 {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font18);
}
.popup_text .text_box .list .one .icon_1 img {
  width: 15px;
}
.popup_text .text_box .list .one .word {
  font-size: var(--font18);
}
.popup_text .text_box .icon {
  width: 50px;
  height: 50px;
  background: #3468F6;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_text .text_box .icon i {
  width: 0;
  height: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_text .text_box .icon i::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.popup_text .text_box .icon i::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.popup_text .text_box .icon:hover i {
  transform: rotate(360deg);
}
.popup_text.active {
  opacity: 1;
  visibility: visible;
}
.popup_video {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: #000000b0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_video .images {
  max-width: 80%;
  min-width: 50%;
  width: 100%;
  max-height: 80vh;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.popup_video .images .video {
  width: fit-content;
  height: fit-content;
  min-width: 80%;
}
.popup_video .images .video iframe {
  width: 100%;
  height: auto;
  min-height: 80vh;
}
.popup_video .images .icon {
  width: 50px;
  height: 50px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_video .images .icon i {
  width: 0;
  height: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_video .images .icon i::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.popup_video .images .icon i::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.popup_video .images .icon:hover {
  background: #3468F6;
}
.popup_video .images .icon:hover i {
  transform: rotate(360deg);
}
.popup_video .images .icon:hover i::after {
  background: #FFF;
}
.popup_video .images .icon:hover i::before {
  background: #FFF;
}
.popup_video.active {
  opacity: 1;
  visibility: visible;
}
/* -------------------------------------------------------------------  手机端头部 */
header {
  width: 100%;
  height: auto;
}
header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
}
header .m_header_box .header_title {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  position: relative;
  background: #FFF;
  display: -webkit-box;
  display: -ms-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;
  overflow: hidden;
}
header .m_header_box .header_title .logo {
  width: 50%;
  max-width: 120px;
  height: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
header .m_header_box .header_title .logo svg {
  width: 100%;
  height: 100%;
}
header .m_header_box .header_title .logo svg .cls-1,
header .m_header_box .header_title .logo svg .cls-3 {
  fill: var(--color);
}
header .m_header_box .header_title .logo svg .cls-2 {
  fill: #3468F6;
}
header .m_header_box .header_title .logo a {
  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;
}
header .m_header_box .header_title .column {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .m_header_box .header_title .column .menu_btn {
  width: 24px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
}
header .m_header_box .header_title .column .menu_btn .icon {
  width: 100%;
  height: 100%;
  position: relative;
}
header .m_header_box .header_title .column .menu_btn .icon::after,
header .m_header_box .header_title .column .menu_btn .icon::before,
header .m_header_box .header_title .column .menu_btn .icon i {
  width: 100%;
  height: 2px;
  display: block;
  background: #3468F6;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -50%;
  transform-origin: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .menu_btn .icon::before {
  content: '';
  margin-top: -8px;
}
header .m_header_box .header_title .column .menu_btn .icon::after {
  content: '';
  margin-top: 6px;
}
header .m_header_box .header_title .column .menu_btn.active .icon i {
  opacity: 0;
}
header .m_header_box .header_title .column .menu_btn.active .icon::before {
  margin-top: -1px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 5px;
}
header .m_header_box .header_title .column .menu_btn.active .icon::after {
  margin-top: -1px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  border-radius: 5px;
}
header .m_header_box .header_title .column .head_btn {
  width: auto;
  height: 30px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
header .m_header_box .header_title .column .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: #000;
  margin-top: 3px;
}
header .m_header_box .header_title .column .head_btn .link span {
  opacity: 0.6;
}
header .m_header_box .header_title .column .head_btn .link a {
  color: #000;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .head_btn .link a:hover {
  opacity: 1;
}
header .m_header_box .header_title .column .head_btn:hover .icon {
  filter: invert(1);
}
header .m_header_box .header_title .column .head_btn:hover .link {
  color: #000;
}
header .m_header_box .header_title .column .head_btn:hover .link a,
header .m_header_box .header_title .column .head_btn:hover .link span {
  color: #000;
}
header .m_header_box .header_title::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0.1;
}
header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 60px);
  background: #FFF;
  display: none;
  overflow: hidden;
}
header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
header .m_header_box .header_body .menu_nav ul {
  width: 100%;
  height: auto;
}
header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
  --oneA: #000;
}
header .m_header_box .header_body .menu_nav ul li .one a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 16px;
  line-height: 20px;
  color: var(--oneA);
}
header .m_header_box .header_body .menu_nav ul li .one a .icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_body .menu_nav ul li .one a .icon i {
  font-size: 12px;
  color: var(--oneA);
}
header .m_header_box .header_body .menu_nav ul li .one.active a {
  --oneA: #3468F6;
}
header .m_header_box .header_body .menu_nav ul li .one.active.is_active a .icon {
  --color: #3468F6;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
header .m_header_box .header_body .menu_nav ul li .one + ul {
  padding: 0 0 20px;
}
header .m_header_box .header_body .menu_nav ul li .one + ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .one + ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li .two {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .two a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 5px 0;
  position: relative;
  --towA: #000;
}
header .m_header_box .header_body .menu_nav ul li .two a .icon {
  width: 20px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
  --color: var(--towA);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_body .menu_nav ul li .two a .icon i {
  font-size: 10px;
  color: var(--towA);
}
header .m_header_box .header_body .menu_nav ul li .two a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 14px;
  line-height: 16px;
  color: var(--towA);
}
header .m_header_box .header_body .menu_nav ul li .two.active a {
  --towA: #3468F6;
}
header .m_header_box .header_body .menu_nav ul li .two + ul {
  padding: 10px 0 10px 20px;
}
header .m_header_box .header_body .menu_nav ul li .two + ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .two + ul > li > a {
  padding: 0 0 0 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--threeA);
  --threeA: #999;
}
header .m_header_box .header_body .menu_nav ul li .two + ul > li > a::after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background: var(--threeA);
}
header .m_header_box .header_body .menu_nav ul li .two + ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li .three {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .three a {
  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;
  position: relative;
  --threeA: #757575;
}
header .m_header_box .header_body .menu_nav ul li .three a .icon {
  width: 20px;
  height: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_body .menu_nav ul li .three a .icon::after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background: var(--threeA);
}
header .m_header_box .header_body .menu_nav ul li .three a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 14px;
  line-height: 16px;
  color: var(--threeA);
}
header .m_header_box .header_body .menu_nav ul li .three.active a {
  --threeA: #3468F6;
}
header .m_header_box .header_body .menu_nav ul li .three + ul {
  padding: 10px 0 10px 20px;
}
header .m_header_box .header_body .menu_nav ul li .three + ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .three + ul > li > a {
  padding: 0 0 0 20px;
}
header .m_header_box .header_body .menu_nav ul li .three + ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li ul {
  display: none;
}
header .m_header_box .header_body .menu_nav ul li li {
  border: 0;
}
header .m_header_box .header_body .menu_nav ul li > a {
  font-size: 12px;
  color: #999;
}
header .m_header_box .header_body .menu_nav ul li > a.active {
  color: #3468F6;
}
header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 44px;
  background: #F8F8F8;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  background: transparent;
  font-size: 14px;
  color: #282f36;
  border: 0;
}
header .m_header_box .header_body .menu_form .center form button {
  width: 50px;
  padding: 0;
}
header .m_header_box .header_body .menu_form .center form button i {
  font-size: 18px;
  color: #FFF;
}
header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0 20px;
  font-size: 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;
  overflow: hidden;
  display: none !important;
}
header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #fff;
  border-radius: 50px;
  font-size: 12px;
  color: #282f36;
}
header .m_header_box .header_body .menu_lang .one a.active {
  background: #3468F6;
  color: #fff;
}
@media (max-width:990px) {
  header .m_header_box {
    display: block;
  }
}
header .m_header_nbsp {
  width: 100%;
  height: var(--header-height);
  display: none;
  overflow: hidden;
}
@media (max-width:990px) {
  header .m_header_nbsp {
    display: block;
  }
}
/* -------------------------------------------------------------------  导航高度 占位 */
.head_nbsp {
  width: 100%;
  height: calc(var(--header-height) + var(--g_bnum));
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .head_nbsp {
    height: 60px !important;
  }
}
/* -------------------------------------------------------------------  pc头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box {
  width: 100%;
  height: auto;
  height: var(--header-height);
  padding: 0 43px;
  background: var(--bg_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  --color1: #1F2329;
  --bg_color: #FFFFFF;
}
header .header_box .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;
}
header .header_box .center_box .column_left {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_60);
}
header .header_box .center_box .column_left .logo_box {
  width: auto;
  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;
  gap: 30px;
}
header .header_box .center_box .column_left .logo_box .logo {
  max-width: clamp(6.563rem, calc(1.024rem + 6.92vw), 8.813rem);
}
header .header_box .center_box .column_left .logo_box .WeCom {
  transform: translateY(2px);
  max-width: clamp(8.75rem, calc(4.442rem + 5.38vw), 10.5rem);
}
header .header_box .center_box .column_left .item_box {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_30);
}
header .header_box .center_box .column_left .item_box .item {
  width: auto;
  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;
}
header .header_box .center_box .column_left .item_box .item .one {
  font-size: var(--font18);
  color: #1F2329;
  display: -webkit-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: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .one i {
  font-size: var(--font14);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .one.active {
  color: #3468F6;
}
header .header_box .center_box .column_left .item_box .item .one.active i {
  color: #3468F6;
}
header .header_box .center_box .column_left .item_box .item .drop_down {
  position: absolute;
  width: 100vw;
  height: auto;
  max-height: 80vh;
  overflow: auto;
  left: 50%;
  transform: translateX(-50vw);
  top: 100%;
  background: var(--url) no-repeat bottom center / cover;
  opacity: 0;
  visibility: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: var(--num_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;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box {
  width: 67.7778%;
  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: var(--num_25);
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box {
  width: 100%;
  height: auto;
  padding-bottom: var(--num_25);
  border-bottom: 1px solid #D1D9F8;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .title {
  font-weight: 500;
  line-height: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 24px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 8px;
  border-radius: 6px;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list .word {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list .word .t1 {
  color: #1F2329;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list .word .t2 {
  font-size: 12px;
  margin-top: 6px;
  color: #646A73;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list:hover,
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list.active {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box .list_info .list.active .word .t1 {
  color: var(--active_color);
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .word_box .list_box:last-child {
  padding-bottom: 0;
  border: 0;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .line {
  width: 1px;
  height: auto;
  background: #D1D9F8;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box {
  width: 22.916%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .img {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .img .pb {
  padding-bottom: 56.7%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .word {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .word .t1 {
  font-size: var(--font20);
  color: #1F2329;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .word .t2 {
  margin-top: 16px;
  font-size: var(--font14);
  color: #646A73;
  line-height: 1.7142;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .new_box .new .idx_more {
  margin-top: 16px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
  display: block;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 36.7%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .header_box .center_box .column_left .item_box .item .drop_down .resource .images_box .swiper_box .idxPageShow {
  position: absolute;
  bottom: 20px;
  z-index: 5;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: var(--num_90);
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .images_box {
  width: 16.6666%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .images_box .word {
  font-size: var(--font24);
  color: #FFFFFF;
  position: absolute;
  width: auto;
  height: auto;
  top: var(--num_30);
  padding-left: var(--num_25);
  padding-right: var(--num_70);
  font-weight: 500;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list {
  width: 78.055%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .tit_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 24px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .tit_box .tow {
  text-align: center;
  font-size: var(--font16);
  font-weight: 600;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 24px;
  margin-top: 30px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo .img .pb {
  padding-bottom: 41.43%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo .icon {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6B3;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo .icon img {
  width: 20px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .caseNav .list .logo_list .logo:hover .icon {
  opacity: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 60px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--num_40) var(--num_70);
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .word {
  width: 100%;
  height: auto;
  text-align: center;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .word .t1 {
  font-size: var(--font16);
  font-weight: 600;
  color: #1F2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .word .t2 {
  margin-top: 12px;
  font-size: 12px;
  color: #646A73;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: var(--num_25);
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon .img {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon .img .pb {
  padding-bottom: 52%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon .img .ic_on {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6B3;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon .img .ic_on img {
  width: 20px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list .icon .img:hover .ic_on {
  opacity: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list.active .word .t1,
header .header_box .center_box .column_left .item_box .item .drop_down .solveNav .list_box .list:hover .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 60px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box {
  width: 49.444%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .title {
  font-size: var(--font20);
  font-weight: 600;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_25);
  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: var(--num_20);
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow {
  display: block;
  color: #646A73;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  width: fit-content;
  height: auto;
  font-size: var(--font16);
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #3468F6;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow:hover,
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow.active {
  color: #3468F6;
  transform: translateX(5px);
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow:hover::after,
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow.active::after {
  opacity: 1;
}
@media (max-width:1270px) {
  header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .list_box .list .tow_box .tow {
    font-size: 12px;
  }
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box {
  width: 45.55%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .title {
  font-size: var(--font20);
  font-weight: 600;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .img_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_40);
  text-align: center;
  margin-top: var(--num_25);
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .img_box .word {
  margin-top: 12px;
  font-size: var(--font14);
  color: #000000;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_30);
  margin-top: 35px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box .email {
  padding-right: var(--num_30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box .email::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 20px;
  background: #D1D9F8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box .email:last-child::after {
  display: none;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box .email .t1 {
  color: #1F2329;
  font-size: var(--font16);
  line-height: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .aboutctNav .images_box .email_box .email .t2 {
  font-size: 12px;
  color: #646A73;
  margin-top: 6px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 35px;
  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;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box {
  width: 67.7778%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_75);
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .title {
  font-weight: 500;
  line-height: 1;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-top: 24px;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 8px;
  border-radius: 6px;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list .word {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list .word .t1 {
  color: #1F2329;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list .word .t2 {
  font-size: 12px;
  margin-top: 6px;
  color: #646A73;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list:hover,
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list.active {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box .list_info .list.active .word .t1 {
  color: var(--active_color);
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .list_box:last-child {
  padding-bottom: 0;
  border: 0;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .word_box .martop40 {
  margin-top: var(--num_40);
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .line {
  width: 1px;
  height: auto;
  background: #D1D9F8;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box {
  width: 22.916%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_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: var(--num_55);
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new {
  width: 100%;
  height: auto;
  padding-bottom: var(--num_60);
  position: relative;
  z-index: 1;
  cursor: pointer;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #D1D9F8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new .word {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new .word .t1 {
  font-size: var(--font20);
  color: #1F2329;
  font-weight: 600;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new .img {
  width: 100%;
  height: auto;
  margin-top: 24px;
  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;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new .img .pb {
  padding-bottom: 56.7%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new .img .icon {
  position: absolute;
  z-index: 7;
  width: auto;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new:last-child {
  padding-bottom: 0;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .new_box .new:last-child::after {
  display: none;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 36.7%;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .header_box .center_box .column_left .item_box .item .drop_down .productNav .images_box .swiper_box .idxPageShow {
  position: absolute;
  bottom: 20px;
  z-index: 5;
}
header .header_box .center_box .column_left .item_box .item:hover .one {
  color: #3468F6;
}
header .header_box .center_box .column_left .item_box .item:hover .one i {
  transform: rotate(180deg);
  color: #3468F6;
}
header .header_box .center_box .column_left .item_box .item:hover .drop_down {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .item_box .item .drop_down.active {
  opacity: 1;
  visibility: visible;
}
header .header_box .center_box .column_right {
  width: auto;
  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;
  gap: var(--num_30);
}
header .header_box .center_box .column_right .search_box {
  cursor: pointer;
  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;
}
header .header_box .center_box .column_right .search_box .search {
  position: absolute;
  right: 20px;
  padding-right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(20px);
}
header .header_box .center_box .column_right .search_box .search input {
  width: 240px;
  font-size: var(--font14);
  border-radius: 100px;
  overflow: hidden;
  height: 40px;
  padding: 10px 20px;
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
header .header_box .center_box .column_right .search_box:hover .search {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
header .header_box .center_box .column_right .button {
  width: auto;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_right .button a {
  min-width: clamp(7.5rem, calc(1.962rem + 6.92vw), 9.75rem);
  height: clamp(2.375rem, calc(1.298rem + 1.35vw), 2.813rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  background: #3468F6;
  color: #FFFFFF;
  font-size: var(--font18);
}
header .header_box .center_box .column_right .button:hover {
  opacity: 0.9;
}
header .header_box .center_box .column_right .logon_box {
  font-size: var(--font18);
  color: #646A73;
}
@media (max-width:990px) {
  header .header_box {
    display: none !important;
  }
}
header.active {
  transform: translateY(-100%);
}
header .adver_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--num_90);
  background-image: url(../images/back/bg9.png);
  height: var(--g_bnum);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 50px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-size: 100%;
}
header .adver_box .word {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--num_30);
}
header .adver_box .word .t1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font36);
  color: #FFFFFF;
  font-weight: 600;
}
header .adver_box .word .t1 span {
  color: #FFDC60;
}
header .adver_box .word .idx_morebg {
  width: auto;
}
header .adver_box .word .idx_morebg a {
  background: #FFFFFF;
  color: #3468F6;
  border: 1px solid #FFFFFF;
  height: clamp(2.188rem, calc(0.803rem + 1.73vw), 2.75rem);
  min-width: clamp(5.938rem, calc(0.861rem + 6.35vw), 8rem);
}
header .adver_box .word .idx_morebg a:hover span {
  opacity: 0.8;
}
header .adver_box .word .idx_morebg a::after {
  opacity: 0;
}
header .adver_box .icon {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_40);
}
header .adver_box .icon i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--color);
  border-radius: 100px;
  overflow: hidden;
}
header .adver_box .clos_Box {
  position: absolute;
  right: 40px;
  cursor: pointer;
}
header .adver_box .clos_Box i {
  font-size: var(--font20);
  color: #FFFFFF;
}
header .adver_box.active {
  height: 0;
  overflow: hidden;
  transform: translateY(-100%);
}
@media (max-width:990px) {
  header .adver_box {
    display: none;
  }
}
@media (max-width:990px) {
  header.active {
    transform: translateY(0%) !important;
  }
}
/* -------------------------------------------------------------------  底部 */
footer {
  width: 100%;
  height: auto;
  background: #0F1420;
  position: relative;
  z-index: 10;
}
footer .footer_box {
  width: 100%;
  height: auto;
}
footer .footer_box .footer_top {
  width: 100%;
  height: auto;
  padding: var(--digit32) 0;
  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;
  position: relative;
  z-index: 1;
}
footer .footer_box .footer_top::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_top .item_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--digit24);
}
footer .footer_box .footer_top .item_box .item {
  width: auto;
  height: auto;
  --wnum: clamp(2.813rem, calc(1.736rem + 1.35vw), 3.25rem);
  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;
}
footer .footer_box .footer_top .item_box .item .images_box {
  position: absolute;
  bottom: calc(100% + 20px);
  width: max-content;
  height: auto;
  max-width: 120px;
  opacity: 0;
  visibility: hidden;
}
footer .footer_box .footer_top .item_box .item .icon {
  width: var(--wnum);
  height: var(--wnum);
  background: #FFFFFF;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
footer .footer_box .footer_top .item_box .item:hover .images_box {
  opacity: 1;
  visibility: visible;
}
footer .footer_box .footer_center {
  width: 100%;
  height: auto;
  padding-top: var(--digit32);
  padding-bottom: var(--digit37);
  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;
  position: relative;
  z-index: 1;
}
footer .footer_box .footer_center * {
  color: #FFFFFF;
}
footer .footer_box .footer_center .item_box {
  width: 77.97%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_60);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .footer_box .footer_center .item_box .item {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--digit32);
}
footer .footer_box .footer_center .item_box .item .list_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: 16px;
}
footer .footer_box .footer_center .item_box .item .list_box .title {
  font-size: var(--font18);
}
footer .footer_box .footer_center .item_box .item .list_box .title i {
  display: none;
}
footer .footer_box .footer_center .item_box .item .list_box .list {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
footer .footer_box .footer_center .item_box .item .list_box .list a {
  font-size: var(--font14);
  line-height: calc(32 / 14);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_center .item_box .item .list_box .list a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .footer_box .footer_center .images_box {
  width: 19.652%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
footer .footer_box .footer_center .images_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_center .images_box .content {
  width: auto;
  height: auto;
  text-align: center;
}
footer .footer_box .footer_center .images_box .content .title {
  font-size: var(--font20);
  text-align: center;
}
footer .footer_box .footer_center .images_box .content .images {
  margin-top: 24px;
  width: clamp(7.5rem, calc(2.885rem + 5.77vw), 9.375rem);
}
footer .footer_box .footer_bottom {
  width: 100%;
  height: auto;
  padding: var(--num_35) 0;
  position: relative;
  z-index: 1;
}
footer .footer_box .footer_bottom::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_bottom * {
  color: #FFFFFF80;
  font-size: var(--font14);
}
footer .footer_box .footer_bottom .link_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--digit24);
  padding-bottom: 32px;
}
footer .footer_box .footer_bottom .link_box .title {
  font-size: var(--font18);
  flex-shrink: 0;
}
footer .footer_box .footer_bottom .link_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 12px 30px;
  transform: translateY(0.1rem);
}
footer .footer_box .footer_bottom .link_box .item_box .one {
  font-size: var(--font14);
}
footer .footer_box .footer_bottom .link_box .icon {
  opacity: 0.5;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
footer .footer_box .footer_bottom .copy_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: var(--gap);
  padding-top: var(--digit32);
  position: relative;
  z-index: 1;
  --gap: var(--num_30);
}
footer .footer_box .footer_bottom .copy_box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_bottom .copy_box .copyright {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: var(--gap);
}
footer .footer_box .footer_bottom .copy_box .copyleft {
  display: -webkit-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: var(--gap);
}
footer .images_bg {
  width: 42.76%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}
@media (max-width:990px) {
  footer {
    --digit32: 20px;
  }
  footer .footer_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;
  }
  footer .footer_box .footer_top {
    order: 2;
    padding: 20px 0;
  }
  footer .footer_box .footer_top::after {
    top: 0;
  }
  footer .footer_box .footer_top .logo {
    max-width: 120px;
  }
  footer .footer_box .footer_top .item_box {
    gap: 10px;
  }
  footer .footer_box .footer_top .item_box .item {
    --wnum: 22px;
  }
  footer .footer_box .footer_center {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    order: 1;
  }
  footer .footer_box .footer_center .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  footer .footer_box .footer_center .item_box .item {
    gap: 20px;
  }
  footer .footer_box .footer_center .item_box .item .list_box .title {
    font-size: 16px;
    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: 10px;
    padding: 5px 0;
  }
  footer .footer_box .footer_center .item_box .item .list_box .title i {
    display: block !important;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  footer .footer_box .footer_center .item_box .item .list_box .list {
    display: none;
  }
  footer .footer_box .footer_center .item_box .item .list_box .list a {
    display: block;
    font-size: 14px;
  }
  footer .footer_box .footer_center .item_box .item.active .title i {
    transform: rotate(90deg);
  }
  footer .footer_box .footer_center .images_box {
    display: none !important;
  }
  footer .footer_box .footer_bottom {
    order: 3;
    padding: 20px 0;
  }
  footer .footer_box .footer_bottom .link_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  footer .footer_box .footer_bottom .link_box .icon {
    display: none;
  }
  footer .footer_box .footer_bottom .copy_box {
    --gap: 10px;
  }
}
/* -------------------------------------------------------------------  动效文字 */
.ani-text {
  opacity: 0;
}
.ani-text.is-show {
  opacity: 1;
}
.ani-text .c-text {
  width: auto;
  height: auto;
  position: relative;
  display: inline-flex;
  transform: translate3d(0, 10px, 0);
}
.ani-text .c-text span {
  display: inline-flex;
  transform: perspective(1000px) translate3d(0, 100%, 0) rotateX(-90deg);
  opacity: 0;
}
.ani-text.ani-init .c-text {
  transition-delay: 0s !important;
}
.ani-text.ani-init .c-text span {
  transition-delay: 0s !important;
}
.ani-text.is-view .c-text {
  transform: translateZ(0);
  transition: transform 1s cubic-bezier(0.47, 0.16, 0.24, 1);
}
.ani-text.is-view .c-text span {
  opacity: 1;
  transform: perspective(1000px) translateZ(0);
  transition: opacity 0.8s cubic-bezier(0.47, 0.16, 0.24, 1), transform 0.8s cubic-bezier(0.47, 0.16, 0.24, 1);
}
@media (max-width:990px) {
  .ani-text {
    opacity: 1;
  }
}
.kefu_box {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 20%;
  right: 0;
  z-index: 90;
  --number: 68px;
}
.kefu_box .item_box {
  width: var(--number);
  height: auto;
  padding: 24px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--num_30);
}
.kefu_box .item_box .item {
  text-align: center;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1;
}
.kefu_box .item_box .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.5);
}
.kefu_box .item_box .item .word {
  font-size: 12px;
  color: #646A73;
  margin-top: 4px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.kefu_box .item_box .item .word span {
  width: auto;
  height: auto;
  display: block;
}
.kefu_box .item_box .item .word span:last-child {
  display: none;
}
.kefu_box .item_box .item .info_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  width: max-content;
  height: auto;
  right: calc(100% + 28px);
  background: #FFFFFF;
  padding: 25px 30px;
  padding-right: 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  text-align: start;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.kefu_box .item_box .item .info_box::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10.5px 0 10.5px 10px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.kefu_box .item_box .item .info_box .title {
  font-size: var(--font20);
  color: #3468F6;
  line-height: 1;
}
.kefu_box .item_box .item .info_box .subtitle {
  font-size: 12px;
  color: #666666;
  margin-top: 10px;
}
.kefu_box .item_box .item:hover .icon img {
  filter: unset !important;
}
.kefu_box .item_box .item:hover .word {
  color: #3468F6;
}
.kefu_box .item_box .item:hover .info_box {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
}
.kefu_box .goUp {
  width: var(--number);
  height: var(--number);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: 50%;
  margin-top: 12px;
  cursor: pointer;
}
.kefu_box .goUp img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.5);
}
.kefu_box .goUp:hover img {
  filter: unset !important;
}
@media (max-width:1560px) {
  .kefu_box {
    --number: 50px;
  }
  .kefu_box .item_box .item .word span {
    display: none;
  }
  .kefu_box .item_box .item .word span:last-child {
    display: block !important;
  }
}
@media (max-width:990px) {
  .kefu_box {
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 4px;
  }
  .kefu_box .item_box {
    flex-direction: row;
    width: 100%;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
  }
  .kefu_box .item_box .item {
    flex: 1;
  }
  .kefu_box .item_box .item .info_box {
    display: none !important;
  }
  .kefu_box .goUp {
    display: none;
  }
}
/* -------------------------------------------------------------------  公共和全局 */
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more a,
.idx_more .more {
  font-size: var(--font16);
  color: #3468F6;
  font-weight: 500;
  display: -webkit-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: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}
.idx_more a:hover,
.idx_more .more:hover {
  gap: 5px;
  opacity: 0.8;
}
.idx_moreImg {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}
.idx_moreImg a,
.idx_moreImg .more {
  width: fit-content;
  color: #3468F6;
  -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;
  cursor: pointer;
}
.idx_moreImg a:last-child,
.idx_moreImg .more:last-child {
  background: none;
  color: #3468F6;
}
.idx_moreImg a:hover,
.idx_moreImg .more:hover {
  opacity: 0.8;
}
.idx_morebg {
  width: 100%;
  height: auto;
}
.idx_morebg a,
.idx_morebg .more {
  width: fit-content;
  height: 44px;
  border: 1px solid #3468F6;
  padding: 10px 15px;
  min-width: 128px;
  font-size: var(--font16);
  border-radius: 100px;
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.idx_morebg a::after,
.idx_morebg .more::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  transform: translateX(-100%);
}
.idx_morebg a span,
.idx_morebg .more span {
  position: relative;
  z-index: 2;
}
.idx_morebg a:hover,
.idx_morebg .more:hover {
  color: #FFFFFF;
}
.idx_morebg a:hover::after,
.idx_morebg .more:hover::after {
  transform: translateX(0%);
}
@media (max-width:990px) {
  .idx_morebg a,
  .idx_morebg .more {
    padding: 8px 15px !important;
    height: 35px !important;
    min-width: 104px !important;
  }
}
.idx_bntbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}
.idx_bntbox a,
.idx_bntbox .more {
  padding: 10px 15px;
  min-width: clamp(6.875rem, calc(-0.817rem + 9.62vw), 10rem);
  width: fit-content;
  height: clamp(2.625rem, calc(0.625rem + 2.5vw), 3.438rem);
  border: 1px solid #3468F6;
  background: #3468F6;
  color: #FFFFFF;
  border-radius: 100px;
  font-weight: 500;
  font-size: var(--font20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.idx_bntbox a::after,
.idx_bntbox .more::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  transform: translateX(-100%);
}
.idx_bntbox a span,
.idx_bntbox .more span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_bntbox a:hover,
.idx_bntbox .more:hover {
  color: #3468F6;
}
.idx_bntbox a:hover span,
.idx_bntbox .more:hover span {
  color: #3468F6;
}
.idx_bntbox a:hover::after,
.idx_bntbox .more:hover::after {
  transform: translateX(0%);
}
@media (max-width:990px) {
  .idx_bntbox a,
  .idx_bntbox .more {
    padding: 8px 23px !important;
    height: 35px;
    min-width: unset !important;
  }
  .idx_bntbox a:hover,
  .idx_bntbox .more:hover {
    color: #3468F6;
  }
  .idx_bntbox a:hover span,
  .idx_bntbox .more:hover span {
    color: #3468F6;
  }
  .idx_bntbox a:hover::after,
  .idx_bntbox .more:hover::after {
    transform: translateX(0%);
  }
}
.idx_bntbox .back_none {
  background: none;
  padding: 0 var(--num_40);
}
.idx_bntbox .back_none * {
  color: #3468F6;
}
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 12px;
}
.idxPageShow span {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  margin: 0 !important;
  padding: 0 !important;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .idxPageShow {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    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;
  }
  .idxPageShow span {
    width: 5px;
    height: 5px;
    background: #3468F6;
    opacity: 0.5;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .idxPageShow .swiper-pagination-bullet-active {
    width: 12px;
    background: #3468F6;
    opacity: 1;
  }
}
.idxPageShow_in {
  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: 12px;
  margin-top: 20px;
}
.idxPageShow_in span {
  width: 8px;
  height: 8px;
  background: var(--active_color);
  border-radius: 50%;
  margin: 0 !important;
  padding: 0 !important;
}
.idxPageShow_in .swiper-pagination-bullet-active {
  background: var(--active_color);
}
@media (max-width:990px) {
  .idxPageShow_in {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    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;
  }
  .idxPageShow_in span {
    width: 5px;
    height: 5px;
    background: #3468F6;
    opacity: 0.5;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .idxPageShow_in .swiper-pagination-bullet-active {
    width: 12px;
    background: #3468F6;
    opacity: 1;
  }
}
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    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;
    background: #3468F6;
    opacity: 0.5;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    width: 12px;
    background: #3468F6;
    opacity: 1;
  }
}
.hh_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;
  gap: var(--gap);
  --left_width: auto;
  --right_width: auto;
  --gap: auto;
}
.hh_info .hh_left {
  width: var(--left_width);
}
.hh_info .hh_right {
  width: var(--right_width);
}
.hh_info * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.hh_info *::-webkit-scrollbar {
  display: none;
}
@media (max-width:990px) {
  .hh_info {
    flex-direction: column !important;
  }
  .hh_info .hh_left {
    width: 100%;
    height: auto;
    position: relative !important;
    top: unset !important;
    z-index: 1;
  }
  .hh_info .hh_right {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
.swiper_btn1 {
  width: clamp(2.813rem, calc(0.197rem + 3.27vw), 3.875rem);
  height: clamp(2.813rem, calc(0.197rem + 3.27vw), 3.875rem);
  border-radius: 50%;
  background: #ffffffbd;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper_btn1 i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font22);
  color: #CEDCFB;
}
.swiper_btn1:hover {
  background: #3468F6 !important;
}
@media (max-width:990px) {
  .swiper_btn1 {
    display: none !important;
  }
}
.label_tag {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: var(--num_20);
  position: relative;
  z-index: 2;
}
.label_tag .tag {
  width: fit-content;
  padding: 12px var(--num_25);
  font-size: var(--font16);
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  background: #3468f61a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .label_tag .tag {
    padding: 6px 12px;
  }
  .label_tag .tag i {
    transform: translateY(0) !important;
    font-size: 12px !important;
  }
}
.swiper_strip {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 16px;
}
.swiper_strip span {
  width: 64px;
  height: 4px;
  border-radius: 100px;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
}
.swiper_strip span::before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_strip span::after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_strip .swiper-pagination-bullet-active::after {
  animation: 5s width100 linear;
}
@media (max-width:990px) {
  .swiper_strip {
    gap: 5px;
    margin-top: 20px;
  }
  .swiper_strip span {
    width: 5px;
    height: 5px;
    background: #3468F6;
    opacity: 0.5;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .swiper_strip .swiper-pagination-bullet-active {
    width: 12px;
    background: #3468F6;
    opacity: 1;
  }
  .swiper_strip .swiper-pagination-bullet-active::after {
    animation: unset !important;
    width: 100% !important;
  }
}
.pager_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: var(--num_65);
}
.pager_box .layui-laypage {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.pager_box .layui-laypage * {
  line-height: 1 !important;
}
.pager_box .layui-laypage a,
.pager_box .layui-laypage span {
  padding: 0;
  margin: 0;
  width: 41px;
  height: 41px;
  border-radius: 100%;
  border: 0;
  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;
  font-size: var(--font16);
}
.pager_box .layui-laypage-spr {
  padding-bottom: 10px;
}
@media (max-width:990px) {
  .pager_box .layui-laypage {
    gap: 5px;
  }
  .pager_box .layui-laypage a,
  .pager_box .layui-laypage span {
    width: 30px;
    height: 30px;
  }
}
.locate_b {
  width: 100%;
  height: 0;
  transform: translateY(calc((var(--header-height) + 100px + var(--g_bnum)) * -1));
}
.locate_box {
  width: 100%;
  height: 0;
}
.locate_a {
  transform: translateY(calc((var(--header-height) + 50px + var(--g_bnum)) * -1));
}
.anchor {
  width: 100%;
  height: 0;
  transform: translateY(calc((var(--header-height) + 0px + var(--g_bnum)) * -1));
}
@media (max-width:990px) {
  .anchor {
    transform: translateY(-60px);
  }
}
.background_image {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.background_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background_img {
  width: 100%;
  height: auto;
}
.background_img img {
  width: 100%;
  height: auto;
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  首页 公共标题 */
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo .scale_1 {
  transform: translateY(0);
  opacity: 1;
}
.idx_banner .swiper_box ul li .centerInfo .scale {
  transform: translateY(0);
  opacity: 1;
}
.idx_banner .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: var(--num_80);
  text-align: center;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 16px;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span {
  padding: 14px var(--num_40);
  border: 1px solid #3468F6;
  background: #3468F6;
  color: #FFFFFF;
  border-radius: 100px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span:hover::after {
  transform: translateX(0);
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span:hover span {
  color: #3468F6 !important;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .but_box .span:last-child {
  background: none;
  color: #3468F6;
}
.idx_banner .swiper_box ul li .centerInfo .images_box {
  margin-top: 10px;
}
.idx_banner .swiper_box ul li .centerInfo .images_box .pb {
  padding-bottom: 34%;
}
.idx_banner .swiper_box ul li .centerInfo .images_box .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_banner .swiper_box ul li .centerInfo .images_box {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .word_box .t1 {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .word_box .t2 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .word_box .but_box {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .scale {
  transform: translateY(0);
  opacity: 1;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .scale_1 {
  transform: translateY(0);
  opacity: 1;
}
.idx_banner .swiper_btn1 {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  --num_1: 60px;
  right: var(--num_1);
  cursor: pointer;
}
.idx_banner .swiper_btn1.prev {
  left: var(--num_1);
}
.idx_banner .idxPageHide {
  padding-bottom: 20px;
}
@media (max-width:990px) {
  .idx_banner .swiper_box ul li .centerInfo .word_box .but_box a {
    padding: 8px 15px;
  }
  .idx_banner .swiper_box ul li .centerInfo .images_box .pb {
    padding-bottom: 60% !important;
  }
}
.idx_maincon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/back/bg6.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
.idx_indexCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 45px;
  overflow: hidden;
}
.idx_indexCon1 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idx_indexCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: var(--num_40);
  padding-right: 19.7%;
  padding-top: var(--num_30);
  background: #FFFFFFB3;
}
.idx_indexCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon1 .center_box .item_box .item .images_bg {
  position: absolute;
  z-index: 1;
  width: 48%;
  height: 100%;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_indexCon1 .center_box .item_box .item .t1 {
  width: 100%;
  height: auto;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.idx_indexCon1 .center_box .item_box .item .but_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
  position: relative;
  z-index: 2;
}
.idx_indexCon1 .center_box .item_box .item .but_box a {
  font-size: var(--font16);
  color: #3468F6;
  font-weight: 500;
  display: -webkit-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: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: fit-content;
}
.idx_indexCon1 .center_box .item_box .item .but_box a:hover {
  gap: 5px;
  opacity: 0.8;
}
@media (max-width:990px) {
  .idx_indexCon1 {
    padding: 25px 0;
  }
  .idx_indexCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .idx_indexCon1 .center_box .item_box .item {
    padding: 20px !important;
  }
  .idx_indexCon1 .center_box .item_box .item .but_box {
    margin-top: 20px;
  }
  .idx_indexCon1 .center_box .item_box .item::after {
    width: 4px;
  }
}
.idx_indexCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 45px;
  overflow: hidden;
}
.idx_indexCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx_indexCon2 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: var(--num_90);
}
.idx_indexCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  max-width: 65.277%;
  overflow: hidden;
}
.idx_indexCon2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_indexCon2 .center_box .content .swiper_box ul li .t1 {
  display: none;
  padding-bottom: 30px;
  color: #646A73;
}
.idx_indexCon2 .center_box .content .swiper_box ul li .images {
  width: 100%;
  height: auto;
}
.idx_indexCon2 .center_box .content .swiper_box ul li .pb {
  padding-bottom: 70.745%;
}
.idx_indexCon2 .center_box .content .swiper_box ul li .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_indexCon2 .center_box .content .swiper_box ul li .idx_bntbox {
  display: none;
}
.idx_indexCon2 .center_box .content .item_but {
  width: 100%;
  height: auto;
  max-width: 29.23611%;
}
.idx_indexCon2 .center_box .content .item_but .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: 17px;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item {
  width: 100%;
  height: auto;
  padding: clamp(0.5rem, calc(-0.577rem + 1.35vw), 0.938rem) var(--digit32);
  border-radius: var(--border-radius20);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  --padd: 34px;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .top_box .icon {
  width: var(--padd);
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .top_box .icon img {
  filter: brightness(0) invert(0.6);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .top_box .word {
  font-weight: 500;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .bot_box {
  width: 100%;
  height: auto;
  margin-top: clamp(0.375rem, calc(-0.548rem + 1.15vw), 0.75rem);
  display: none;
  padding-left: calc(var(--padd) + 14px);
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .bot_box .t1 {
  color: #646A73;
}
.idx_indexCon2 .center_box .content .item_but .item_box .item .bot_box .idx_more {
  margin-top: clamp(0.5rem, calc(-0.731rem + 1.54vw), 1rem);
}
.idx_indexCon2 .center_box .content .item_but .item_box .item.active {
  background: #FFFFFFB3;
  padding: var(--digit32);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.idx_indexCon2 .center_box .content .item_but .item_box .item.active .top_box .icon img {
  filter: unset !important;
}
.idx_indexCon2 .center_box .content .item_but .idx_bntbox {
  padding-left: var(--digit32);
  margin-top: 36px;
}
@media (max-width:990px) {
  .idx_indexCon2 .center_box .content {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .idx_indexCon2 .center_box .content .item_but {
    max-width: 100%;
    overflow: auto;
    padding-bottom: 10px;
  }
  .idx_indexCon2 .center_box .content .item_but .item_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
  }
  .idx_indexCon2 .center_box .content .item_but .item_box .item {
    padding: 10px !important;
    width: max-content;
    min-width: 140px;
  }
  .idx_indexCon2 .center_box .content .item_but .item_box .item .bot_box {
    display: none !important;
  }
  .idx_indexCon2 .center_box .content .item_but .item_box .item .top_box .icon {
    width: 30px;
  }
  .idx_indexCon2 .center_box .content .item_but .idx_bntbox {
    display: none;
  }
  .idx_indexCon2 .center_box .content .swiper_box {
    max-width: 100%;
    margin-top: 50px;
  }
  .idx_indexCon2 .center_box .content .swiper_box ul li .t1 {
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx_indexCon2 .center_box .content .swiper_box ul li .idx_bntbox {
    display: flex !important;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.idx_indexCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: var(--num_80);
}
.idx_indexCon3::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60vh;
  background: linear-gradient(0deg, #ffffff 0%, #00000000 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon3 .w1440 {
  position: relative;
  z-index: 1;
}
.idx_indexCon3 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_60) var(--num_85);
}
.idx_indexCon3 .center_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: var(--num_60) 0;
}
.idx_indexCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1;
  --whnum: 0%;
}
.idx_indexCon3 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: var(--whnum);
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon3 .center_box .item_box .item * {
  color: #FFFFFF;
}
.idx_indexCon3 .center_box .item_box .item .pb {
  padding-bottom: 68%;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(9, 28, 80, 0.7);
  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: 20px;
  padding: 23px 40px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(5px);
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #2250DB 0%, #1C99FF 55%, #02FBFF 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  backdrop-filter: blur(10px);
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .word {
  width: 100%;
  height: auto;
  text-align: start;
  position: relative;
  z-index: 2;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .word .font32 {
  font-size: var(--font32);
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .word .font16 {
  font-size: var(--font16);
  margin-top: 6px;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .idx_bntbox {
  width: fit-content;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .idx_bntbox .more {
  width: fit-content;
  height: 44px;
  border: 1px solid #FFFFFF80;
  background: none;
  padding: 0 15px;
  min-width: 128px;
  font-size: var(--font16);
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .idx_bntbox .more:hover span {
  color: #3468F6 !important;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_indexCon3 .center_box .item_box .item .pb .ab .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_indexCon3 .center_box .item_box .item:hover .pb .ab .word_box::after {
  opacity: 0.7;
}
.idx_indexCon3 .center_box .item_box .item:hover .pb .ab .word_box .idx_bntbox {
  opacity: 1;
  transform: translateX(0);
}
.idx_indexCon3 .center_box .left_box {
  width: 50%;
}
.idx_indexCon3 .center_box .left_box .ins_title {
  padding-bottom: var(--num_80);
}
.idx_indexCon3 .center_box .left_box .ins_title .idx_moreImg {
  margin-top: var(--num_30);
}
.idx_indexCon3 .center_box .right_box {
  width: 50%;
}
.idx_indexCon3 .center_box .right_box .wap {
  display: none;
}
@media (max-width:990px) {
  .idx_indexCon3 {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .idx_indexCon3::after {
    display: none;
  }
  .idx_indexCon3 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .idx_indexCon3 .center_box .left_box,
  .idx_indexCon3 .center_box .right_box {
    width: 100% !important;
  }
  .idx_indexCon3 .center_box .item_box {
    gap: 15px;
  }
  .idx_indexCon3 .center_box .item_box .item .pb {
    padding-bottom: 55%;
  }
  .idx_indexCon3 .center_box .item_box .displayNone {
    display: none;
  }
  .idx_indexCon3 .center_box .wap {
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 30px;
  }
  .idx_indexCon3 .center_box .wap.disNone {
    display: none !important;
  }
  .idx_indexCon3 .center_box .item_box .item .pb .ab .word_box {
    padding: 10px 20px;
    gap: 10px;
  }
  .idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .word .font16 {
    display: none !important;
  }
  .idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .idx_bntbox {
    opacity: 1;
    transform: translateX(0);
  }
  .idx_indexCon3 .center_box .item_box .item .pb .ab .word_box .idx_bntbox .more {
    height: 30px;
  }
}
.idx_indexCon3a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_120);
  padding-bottom: var(--num_140);
  overflow: hidden;
}
.idx_indexCon3a .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon3a .center_box .item_box {
  width: 100%;
  margin: auto;
  height: auto;
  margin-top: var(--num_60);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_20) var(--num_70);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_indexCon3a .center_box .item_box .item {
  font-size: var(--font20);
  color: #646A73;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon3a .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.idx_indexCon3a .center_box .item_box .item:hover {
  color: var(--active_color);
}
.idx_indexCon3a .center_box .item_box .item.active {
  color: var(--active_color);
}
.idx_indexCon3a .center_box .item_box .item.active::after {
  opacity: 1;
}
.idx_indexCon3a .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_35);
}
.idx_indexCon3a .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: var(--num_120);
  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;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .t1 {
  font-size: var(--font32);
  font-weight: 600;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .t2 {
  margin-top: 12px;
  font-size: var(--font20);
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list {
  width: 100%;
  height: auto;
  margin-top: 15px;
  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: 12px;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list .one {
  font-size: var(--font18);
  color: #646A73;
  display: -webkit-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: 12px;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list .one img {
  flex-shrink: 0;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
}
.idx_indexCon3a .center_box .swiper_box ul li .centerInfo .images img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}
.idx_indexCon3a .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}
@media (max-width:990px) {
  .idx_indexCon3a .center_box .item_box {
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .idx_indexCon3a .center_box .item_box .item {
    word-break: keep-all;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title {
    padding: 0 20px;
    background: #ffffff82;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .t1 {
    font-size: 16px;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .t2 {
    font-size: 14px;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list {
    gap: 6px;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list span {
    font-size: 12px;
  }
  .idx_indexCon3a .center_box .swiper_box ul li .centerInfo .ins_title .list .one img {
    width: 16px;
  }
}
.idx_maincon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/back/bg7.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_maincon2 .bg_img {
  position: absolute;
  top: var(--num_150);
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 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;
}
.idx_indexCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_110);
  padding-bottom: var(--num_50);
}
.idx_indexCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon4 .center_box .ins_title {
  text-align: center;
  color: #FFFFFF;
}
.idx_indexCon4 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 9%;
  position: relative;
  z-index: 1;
  margin-top: 62px;
}
.idx_indexCon4 .center_box .content .item_info {
  width: 19.5%;
  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;
  overflow: hidden;
}
.idx_indexCon4 .center_box .content .item_info .pb {
  padding-bottom: 25.33%;
  overflow: unset !important;
}
.idx_indexCon4 .center_box .content .item_info .pb .ab {
  overflow: unset !important;
}
.idx_indexCon4 .center_box .content .swiper_item {
  width: 100%;
  height: 100%;
  transform: translateY(-34%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li {
  width: 100%;
  height: auto !important;
}
.idx_indexCon4 .center_box .content .swiper_item ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(0.5);
  cursor: pointer;
  opacity: 0;
}
.idx_indexCon4 .center_box .content .swiper_item ul li.swiper-slide-prev .centerInfo,
.idx_indexCon4 .center_box .content .swiper_item ul li.swiper-slide-next .centerInfo {
  opacity: 0.5;
  transform: scale(0.767);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.swiper-slide-active .centerInfo {
  opacity: 1;
  transform: scale(1);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.swiper-slide-next {
  transform: translateY(20%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.swiper-slide-prev {
  transform: translateY(-20%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.s_active .centerInfo,
.idx_indexCon4 .center_box .content .swiper_item ul li.i_active .centerInfo {
  transform: scale(0.6178) translateY(0%);
  opacity: 0.3;
}
.idx_indexCon4 .center_box .content .swiper_item ul li.s_active .centerInfo {
  transform: scale(0.6178) translateY(-20%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.traY_1 .centerInfo,
.idx_indexCon4 .center_box .content .swiper_item ul li.traY_2 .centerInfo {
  opacity: 0.1;
}
.idx_indexCon4 .center_box .content .swiper_item ul li.traY_1 {
  transform: translateY(-20%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.traY_2 {
  transform: translateY(5%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.s_active {
  transform: translateY(20%);
}
.idx_indexCon4 .center_box .content .swiper_item ul li.i_active {
  transform: translateY(-13%);
}
.idx_indexCon4 .center_box .content .swiper_box {
  width: 70%;
  height: auto;
  background: rgba(9, 28, 80, 0.5);
  border-radius: 20px 20px 200px 20px;
}
.idx_indexCon4 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  padding: var(--num_45) var(--num_75) var(--num_70) var(--num_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;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo * {
  color: #FFFFFFE6;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box {
  width: 39.06%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_60);
  padding: 16px 0;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .word_info {
  width: 100%;
  height: auto;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .word_info .word {
  margin-top: var(--num_30);
  font-size: var(--font16);
  line-height: 1.625;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .name_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .name_box .word .name {
  font-size: var(--font20);
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .name_box .word .font {
  font-size: var(--font14);
  margin-top: 4px;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .images {
  width: 52.68%;
}
.idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 89%;
}
@media (max-width:1440px) {
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .images {
    width: 40%;
  }
}
@media (max-width:990px) {
  .idx_indexCon4 {
    width: 100%;
    height: auto;
  }
  .idx_indexCon4 .center_box .content {
    margin-top: 90px;
  }
  .idx_indexCon4 .center_box .content .item_info {
    display: none;
  }
  .idx_indexCon4 .center_box .content .swiper_box {
    width: 100%;
    border-radius: 20px !important;
    background: none;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo {
    padding: 20px;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(9, 28, 80, 0.5);
    border-radius: 20px !important;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    height: auto;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .name_box {
    margin-top: 20px;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .word_box .word_info .icon {
    max-width: 150px;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li .centerInfo .images {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    transform: translateY(-50%) translateX(20%);
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 150px;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li {
    position: relative;
    z-index: 1;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li.swiper-slide-active {
    z-index: 3;
  }
  .idx_indexCon4 .center_box .content .swiper_box ul li.swiper-slide-active .centerInfo .images {
    opacity: 1;
  }
}
.idx_indexCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_indexCon5 .center_box {
  width: 100%;
  height: auto;
  padding: 0 30px;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  padding-top: var(--num_100);
  padding-bottom: var(--num_75);
}
.idx_indexCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.idx_indexCon5 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.idx_indexCon5 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  background: #FFFFFF59;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .pb {
  padding-bottom: 56.15%;
  z-index: 1;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: auto;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .more_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  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;
  font-size: var(--font18);
  color: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .more_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo .more_box span {
  position: relative;
  z-index: 2;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo:hover .more_box {
  opacity: 1;
}
.idx_indexCon5 .center_box .swiper_box .centerInfo:hover .more_box::after {
  width: 250px;
  height: 250px;
}
.idx_indexCon5 .center_box .swiper_box + .swiper_box {
  margin-top: 30px;
}
@media (max-width:990px) {
  .idx_indexCon5 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .idx_indexCon5 .center_box .swiper_box + .swiper_box {
    margin-top: 10px;
  }
}
.idx_indexCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_75);
  padding-bottom: var(--num_75);
  overflow: hidden;
}
.idx_indexCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon6 .center_box .ins_title .font42 {
  text-align: center;
}
.idx_indexCon6 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  margin-top: var(--num_60);
}
.idx_indexCon6 .center_box .content .cont1,
.idx_indexCon6 .center_box .content .cont2 {
  background: #FFFFFF;
  padding: var(--num_40);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius20);
  position: relative;
  z-index: 1;
}
.idx_indexCon6 .center_box .content .cont1 .title,
.idx_indexCon6 .center_box .content .cont2 .title {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 1;
  margin: auto;
}
.idx_indexCon6 .center_box .content .cont1 .title .logo_box,
.idx_indexCon6 .center_box .content .cont2 .title .logo_box {
  position: absolute;
  bottom: 45%;
  left: calc(100% + 10px);
  width: clamp(3.75rem, calc(-2.096rem + 7.31vw), 6.125rem);
  height: auto;
}
.idx_indexCon6 .center_box .content .cont1 {
  width: 23.95%;
}
.idx_indexCon6 .center_box .content .cont1 .item_box {
  box-shadow: unset !important;
  border-radius: 0 !important;
}
.idx_indexCon6 .center_box .content .cont1 .item_box .item {
  padding: var(--num_30) 0;
  padding-bottom: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.idx_indexCon6 .center_box .content .cont1 .item_box .item .idx_morebg .more {
  color: #002F66;
  border: 1px solid #002F66;
}
.idx_indexCon6 .center_box .content .cont1 .item_box .item .idx_morebg .more:hover {
  color: #FFFFFF;
}
.idx_indexCon6 .center_box .content .cont2 {
  width: 74.65%;
}
.idx_indexCon6 .center_box .content .cont2 .item_box .item {
  position: relative;
  z-index: 1;
}
.idx_indexCon6 .center_box .content .cont2 .item_box .item::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  background: #D7DFF9;
}
.idx_indexCon6 .center_box .content .cont2 .item_box .item:first-child::after {
  display: none;
}
.idx_indexCon6 .center_box .title {
  font-size: var(--font36);
  text-align: center;
  font-weight: 600;
}
.idx_indexCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: var(--num_30);
  border-radius: var(--border-radius20);
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.idx_indexCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  flex: 1;
  background: #FFFFFF;
  padding: var(--num_30);
  position: relative;
  z-index: 1;
}
.idx_indexCon6 .center_box .item_box .item .all_a {
  display: none;
}
.idx_indexCon6 .center_box .item_box .item .t1 {
  font-size: var(--font26);
  font-weight: 600;
  text-align: center;
}
.idx_indexCon6 .center_box .item_box .item .t2 {
  font-size: var(--font18);
  margin-top: 10px;
  color: #646A73;
  line-height: 1.6;
  height: calc(2em * 1.6);
  overflow: hidden;
  text-align: center;
}
.idx_indexCon6 .center_box .item_box .item .t3 {
  font-size: var(--font24);
  text-align: center;
  margin-top: var(--num_50);
  font-weight: 500;
}
.idx_indexCon6 .center_box .item_box .item .t3 span {
  font-size: var(--font42);
  font-weight: 600;
}
.idx_indexCon6 .center_box .item_box .item .idx_morebg {
  margin-top: 18px;
  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;
}
.idx_indexCon6 .center_box .item_box .item .idx_morebg i {
  display: none;
}
.idx_indexCon6 .center_box .item_box .item .idx_morebg .more {
  height: clamp(3.438rem, calc(1.13rem + 2.88vw), 4.375rem);
  min-width: clamp(12.5rem, calc(4.808rem + 9.62vw), 15.625rem);
  font-size: var(--font20);
  width: fit-content;
}
@media (max-width:1270px) {
  .idx_indexCon6 .center_box .item_box .item .idx_morebg .more {
    min-width: 160px;
    height: 45px;
  }
}
.idx_indexCon6 .center_box .item_box .item .t4 {
  font-size: var(--font24);
  margin-top: 52px;
  font-weight: 500;
  line-height: 1.1666;
  height: calc(2em * 1.1666);
  overflow: hidden;
}
.idx_indexCon6 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 32px;
  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: var(--num_25);
}
.idx_indexCon6 .center_box .item_box .item .list .one {
  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: 20px;
}
.idx_indexCon6 .center_box .item_box .item .list .one .icon {
  font-size: var(--font16);
  display: -webkit-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: 10px;
  font-weight: 500;
}
.idx_indexCon6 .center_box .item_box .item .list .one .word {
  font-size: var(--font14);
  color: #1F2329;
  opacity: 0.3;
  font-weight: 500;
}
@media (max-width:990px) {
  .idx_indexCon6 .center_box .content .cont2 .item_box .item::after {
    display: none;
  }
  .idx_indexCon6 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .idx_indexCon6 .center_box .content .cont1,
  .idx_indexCon6 .center_box .content .cont2 {
    width: 100% !important;
  }
  .idx_indexCon6 .center_box .content .cont1 {
    width: 23.95%;
  }
  .idx_indexCon6 .center_box .content .cont1 .item_box .item {
    background: #FFFFFF !important;
    padding: var(--num_30) !important;
  }
  .idx_indexCon6 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    box-shadow: 0 !important;
  }
  .idx_indexCon6 .center_box .item_box .item {
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius20);
    overflow: hidden;
  }
  .idx_indexCon6 .center_box .item_box .item .all_a {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block !important;
  }
  .idx_indexCon6 .center_box .item_box .item .t1,
  .idx_indexCon6 .center_box .item_box .item .t2 {
    text-align: center;
  }
  .idx_indexCon6 .center_box .item_box .item .t4,
  .idx_indexCon6 .center_box .item_box .item .list {
    display: none !important;
  }
  .idx_indexCon6 .center_box .item_box .item .t3 span {
    color: #3468F6;
  }
  .idx_indexCon6 .center_box .item_box .item .idx_morebg {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    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;
    margin-top: 0;
  }
  .idx_indexCon6 .center_box .item_box .item .idx_morebg i {
    display: block !important;
    font-size: 20px;
    opacity: 0.5;
  }
  .idx_indexCon6 .center_box .item_box .item .idx_morebg .more {
    display: none !important;
  }
}
.idx_indexCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_75);
  padding-bottom: var(--num_130);
  overflow: hidden;
}
.idx_indexCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon7 .center_box .ins_title .font42 {
  text-align: center;
}
.idx_indexCon7 .center_box .it_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
}
.idx_indexCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: var(--num_20) var(--num_75);
}
.idx_indexCon7 .center_box .item_box .item {
  width: fit-content;
  height: auto;
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
  font-size: var(--font20);
  color: #646A73;
  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;
  cursor: pointer;
}
.idx_indexCon7 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .item_box .item:hover {
  color: #3468F6;
}
.idx_indexCon7 .center_box .item_box .item.active {
  color: #3468F6;
}
.idx_indexCon7 .center_box .item_box .item.active::after {
  width: 100%;
}
.idx_indexCon7 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
  overflow: hidden;
}
.idx_indexCon7 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 10px;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  display: block;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box .float_box {
  position: absolute;
  z-index: 2;
  top: var(--num_30);
  left: var(--num_30);
  width: fit-content;
  height: auto;
  min-width: 112px;
  height: 39px;
  background: #FFFFFFB3;
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  color: #3468F6;
  font-size: var(--font16);
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #FFFFFF;
  position: absolute;
  z-index: 2;
  bottom: var(--num_40);
  left: 0px;
  padding: 0 var(--num_40);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, #000000 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box:hover .images img {
  transform: scale(1.05);
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .left_box:hover .title {
  color: #3468F6;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box {
  width: 50%;
  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: 10px;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list {
  width: 50%;
  display: block;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .images .pb {
  z-index: 1;
  padding-bottom: 85%;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .images .float_box {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: fit-content;
  height: auto;
  min-width: 112px;
  height: 39px;
  background: #FFFFFFB3;
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  color: #3468F6;
  font-size: var(--font16);
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .word_box {
  width: 100%;
  height: auto;
  margin-top: 32px;
  padding: 0 24px;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .word_box .time {
  font-size: var(--font16);
  color: #3468F6;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .word_box .t1 {
  margin-top: 18px;
  font-size: var(--font18);
  line-height: calc(26 / 18);
  font-weight: 500;
  height: calc(2em * calc(26 / 18));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1F2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list .word_box .t2 {
  margin-top: 24px;
  font-size: var(--font14);
  line-height: calc(24 / 15);
  color: #646A73;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list:hover .images img {
  transform: scale(1.07);
}
.idx_indexCon7 .center_box .swiper_box .centerInfo .right_box .list:hover .word_box .t1 {
  color: #3468F6;
}
@media (max-width:990px) {
  .idx_indexCon7 .center_box {
    width: 100%;
    height: auto;
  }
  .idx_indexCon7 .center_box .ins_title .font42 {
    white-space: break-spaces;
  }
  .idx_indexCon7 .it_info {
    max-height: 36px;
    overflow: hidden;
  }
  .idx_indexCon7 .item_box {
    overflow: auto;
    padding-bottom: 10px;
    justify-content: start !important;
  }
  .idx_indexCon7 .item_box .item {
    white-space: nowrap;
    font-size: 16px !important;
  }
  .idx_indexCon7 .float_box {
    min-width: 90px !important;
    height: 33px !important;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .left_box,
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box {
    width: 100% !important;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box .list {
    width: 100% !important;
    background: #3468f60f;
    border-radius: 10px;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box .list .images {
    display: none;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box .list .word_box {
    padding: 20px !important;
    margin-top: 0 !important;
  }
  .idx_indexCon7 .swiper_box ul li .centerInfo .right_box .list .word_box .t2 {
    display: none;
  }
}
.idx_indexCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: var(--num_70) 0;
  overflow: hidden;
}
.idx_indexCon8 .center_box {
  width: 100%;
  height: auto;
}
.idx_indexCon8 .center_box * {
  color: #FFFFFF;
}
.idx_indexCon8 .center_box .ins_title {
  text-align: center;
}
.idx_indexCon8 .center_box .ins_title .font40 {
  font-weight: 500;
  line-height: calc(52 / 40);
}
.idx_indexCon8 .center_box .ins_title .font40 * {
  font-weight: 500;
  line-height: calc(52 / 40);
}
.idx_indexCon8 .center_box .ins_title .font20 {
  margin-top: 24px;
  font-weight: 300;
}
.idx_indexCon8 .center_box .btu_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 24px;
  margin-top: var(--num_40);
}
.idx_indexCon8 .center_box .btu_box .idx_bntbox,
.idx_indexCon8 .center_box .btu_box .idx_morebg {
  width: fit-content;
}
.idx_indexCon8 .center_box .btu_box .idx_bntbox a {
  background: #FFFFFF;
  color: #3468F6;
  padding: 10px 40px;
  border: 0;
  border: 1px solid #FFFFFF;
}
.idx_indexCon8 .center_box .btu_box .idx_bntbox a span {
  color: #3468F6;
}
.idx_indexCon8 .center_box .btu_box .idx_bntbox a::after {
  background: #3468F6;
  opacity: 0;
}
.idx_indexCon8 .center_box .btu_box .idx_bntbox a:hover span {
  opacity: 0.8;
}
.idx_indexCon8 .center_box .btu_box .idx_morebg a {
  height: clamp(2.625rem, calc(0.625rem + 2.5vw), 3.438rem);
  padding: 10px 40px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  font-size: var(--font20);
}
.idx_indexCon8 .center_box .btu_box .idx_morebg a::after {
  background: none;
  border: 1px solid #FFFFFF;
  transform: translateX(0);
  opacity: 0;
}
.idx_indexCon8 .center_box .btu_box .idx_morebg a:hover::after {
  opacity: 1;
}
.idx_indexCon8 .images_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.idx_indexCon8 .images_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_indexCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_indexCon9 .center_box {
  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;
}
.idx_indexCon9 .center_box .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.idx_indexCon9 .center_box .word_box .ins_title * {
  color: #FFFFFF;
}
.idx_indexCon9 .center_box .word_box .idx_bntbox {
  margin-top: var(--num_40);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_indexCon9 .center_box .word_box .idx_bntbox a {
  background: #FFFFFF;
  color: #3468F6;
  padding: 10px var(--num_40);
}
.idx_indexCon9 .center_box .word_box .idx_bntbox a:hover span {
  opacity: 0.8;
}
.idx_indexCon9 .images_bg {
  width: 100%;
  height: auto;
}
.idx_indexCon9 .images_bg img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
}
@keyframes width_1 {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
.icon_box_1 {
  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;
}
.icon_box_1 .icon {
  background: #f5f5f5;
  position: relative;
}
.icon_box_1 .icon i {
  overflow: hidden;
  display: block;
  border-radius: 100px;
}
.icon_box_1 .icon i::after {
  content: '';
  position: absolute;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: width_1 linear 1s infinite;
}
.icon_box_1 .icon .ic1 {
  width: 28px;
  height: 60px;
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  transform: rotate(-30deg);
  transform-origin: bottom left;
}
.icon_box_1 .icon .ic1::after {
  top: 0;
  right: 0;
  background: linear-gradient(21deg, #1C9FFF 0%, #00FFFF 100%);
}
.icon_box_1 .icon .ic2 {
  width: 20px;
  height: 52px;
  position: absolute;
  z-index: 3;
  left: -5px;
  bottom: 9px;
  transform: rotate(15deg);
  transform-origin: bottom left;
}
.icon_box_1 .icon .ic2::after {
  bottom: 0;
  right: 0;
  background: linear-gradient(176deg, #1C92FF 0%, #1C9FFF 100%);
}
.icon_box_1 .icon .ic3 {
  width: 20px;
  height: 46px;
  position: absolute;
  z-index: 2;
  left: 2px;
  bottom: 4px;
  transform-origin: top left;
  transform: rotate(-30deg);
}
.icon_box_1 .icon .ic3::after {
  top: 0;
  right: 0;
  background: linear-gradient(191deg, #1C96FF 0%, #3C72FF 97%);
}
.icon_box_1 .icon .ic4 {
  width: 14px;
  height: 36px;
  position: absolute;
  z-index: 1;
  left: 21px;
  bottom: 16px;
  transform-origin: bottom left;
  transform: rotate(19deg);
}
.icon_box_1 .icon .ic4::after {
  bottom: 0;
  right: 0;
  background: linear-gradient(152deg, #1940CC 0%, #3776FF 100%);
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  产品获客 */
.main_productHkCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-image: url(../images/z6.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.main_productHkCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/z8.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_banner::after {
  content: '';
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #ffffff00 50%, #3468f649 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.ins_banner .center_box {
  width: 100%;
  height: auto;
}
.ins_banner .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_banner .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_banner .center_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_banner .center_box .swiper_box .centerInfo .word_box {
  width: fit-content;
  max-width: 35%;
  transform: translateY(11px);
}
.ins_banner .center_box .swiper_box .centerInfo .word_box .t1 {
  color: #3468F6;
}
.ins_banner .center_box .swiper_box .centerInfo .word_box .t2 {
  color: #646a73;
  margin-top: var(--num_25);
  line-height: calc(28 / 18);
}
.ins_banner .center_box .swiper_box .centerInfo .word_box .t2 * {
  line-height: calc(28 / 18);
}
.ins_banner .center_box .swiper_box .centerInfo .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
.ins_banner .center_box .swiper_box .centerInfo .images {
  width: 60.5%;
}
.ins_banner .center_box .swiper_box .centerInfo .images .pb {
  padding-bottom: 73.463%;
}
.ins_banner .center_box .swiper_box .centerInfo .images .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_banner .center_box .swiper_strip {
  position: absolute;
  z-index: 5;
  bottom: 20px;
}
@media (max-width:990px) {
  .ins_banner .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_banner .center_box .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
  }
  .ins_banner .center_box .swiper_box ul li .centerInfo .images {
    width: 100%;
    height: auto;
  }
}
.ins_navBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid #d4ddf9;
}
.ins_navBox .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  min-height: clamp(3.875rem, calc(-0.433rem + 5.38vw), 5.625rem);
}
.ins_navBox .center_box .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_60);
  height: auto;
}
.ins_navBox .center_box .item_box .item {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #1f2329;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_navBox .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navBox .center_box .item_box .item.active {
  color: #3468F6;
  font-weight: 600;
}
.ins_navBox .center_box .item_box .item.active::after {
  width: 100%;
}
.ins_navBox .center_box .item_box .item:hover {
  color: #3468F6;
}
.ins_navBox .center_box .idx_bntbox {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 0;
  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;
}
@media (max-width:990px) {
  .ins_navBox {
    display: none;
  }
}
.ins_navBox.active {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  background: #EEF5FE;
}
.ins_navBox.active .center_box {
  min-height: 50px;
}
.ins_productHkCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productHkCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon1 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon1 .center_box .item_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_productHkCon1 .center_box .item_box .item .background_image {
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  height: auto;
  top: 0;
  opacity: 0;
}
.ins_productHkCon1 .center_box .item_box .item .images {
  width: 56.25%;
}
.ins_productHkCon1 .center_box .item_box .item .images .pb {
  padding-bottom: 71.43%;
}
.ins_productHkCon1 .center_box .item_box .item .images .pb .ab {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productHkCon1 .center_box .item_box .item .word_box {
  width: 39.791%;
  padding: 40px 0;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6;
  padding-bottom: 20px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .icon.padbot0 {
  padding-bottom: 0 !important;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .word .t2 {
  margin-top: var(--num_40);
  color: #646a73;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .word.martop30 {
  margin-top: var(--num_30);
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--num_40);
  margin-top: 16px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list .t3 {
  color: #1F2329;
  font-weight: 500;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list .t4 {
  margin-top: 16px;
  color: #646a73;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list_in {
  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: 15px;
  margin-top: var(--num_25);
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list_in .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list_in .one .ic_on {
  flex-shrink: 0;
  transform: translateY(0.05em);
}
.ins_productHkCon1 .center_box .item_box .item .word_box .list_in .one .word {
  color: #646A73;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .zx_one {
  width: 100%;
  height: auto;
  margin-top: 25px;
  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: 16px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .zx_one .list_a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .zx_one .list_a .wr {
  font-size: var(--font18);
  color: #646A73;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .idx_morebg {
  margin-top: 25px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box {
  width: 100%;
  height: auto;
  padding-right: var(--num_70);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box a {
  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;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box a .pb {
  padding-bottom: 30.36%;
}
.ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box a .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .zx_one {
    margin-top: 15px;
    gap: 8px;
  }
  .ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box {
    padding-right: 0;
    gap: 5px;
    margin-top: 20px;
  }
  .ins_productHkCon1 .center_box .item_box .item .word_box .zx_box .lo_box a .pb {
    padding-bottom: 40%;
  }
}
.ins_productHkCon1 .center_box .item_box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.ins_productHkCon1.padbot70 {
  padding-bottom: var(--num_70);
}
.ins_productHkCon1.ins_productHkCon_1 .center_box .item_box .item .background_image {
  opacity: 0;
}
.ins_productHkCon1.ins_prozsjmCon3 {
  padding-top: var(--num_70);
}
.ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box {
  margin-top: var(--num_60);
}
@media (max-width:990px) {
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item {
    flex-direction: column-reverse !important;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-top: 20px;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .word_box .icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: none;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .word_box .icon img {
    max-width: 70%;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .word_box .word {
    margin-top: 0 !important;
  }
  .ins_productHkCon1.ins_prozsjmCon3 .center_box .item_box .item .word_box .word .t2 {
    margin-top: 10px;
  }
  .ins_productHkCon1 .center_box .item_box .item .images,
  .ins_productHkCon1 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item {
    padding-top: 40px;
    flex-direction: column-reverse !important;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-bottom: 40px;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .word_box .icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: none;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .word_box .icon img {
    max-width: 70%;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .word_box .word {
    margin-top: 0 !important;
  }
  .ins_productHkCon1 .center_box .hkCon1 .item .word_box .word .t2 {
    margin-top: 10px;
  }
  .ins_productHkCon1 .center_box .hkCon2 .item {
    padding-top: 40px;
    flex-direction: column !important;
  }
  .ins_productHkCon1 .center_box .hkCon2 .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon1 .center_box .hkCon2 .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-bottom: 40px;
  }
  .ins_productHkCon1 .center_box .hkCon2 .item .word_box .list {
    margin-top: 10px;
    gap: 10px;
  }
  .ins_productHkCon1 .center_box .hkCon2 .item .word_box .list .t4 {
    margin-top: 5px;
  }
}
.ins_productHkCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_130);
  padding-bottom: var(--num_70);
  overflow: hidden;
}
.ins_productHkCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon2 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon2 .center_box .ins_title .t1 {
  color: #FFFFFF;
}
.ins_productHkCon2 .center_box .ins_title .t2 {
  color: #FFFFFF;
  margin-top: var(--num_25);
}
.ins_productHkCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
}
.ins_productHkCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ebf0fb;
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 50%;
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_50) var(--num_40);
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  line-height: 1.14;
  font-weight: 600;
  height: calc(2em * 1.14);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_productHkCon2 .center_box .swiper_box ul li .centerInfo .word_box .idx_more {
  margin-top: var(--num_40);
}
.ins_productHkCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_70);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_productHkCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon3 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon3 .center_box .ins_title span {
  color: #3468F6;
}
.ins_productHkCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--num_40) var(--num_30);
  margin-top: var(--num_70);
}
.ins_productHkCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #ffffff66;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
}
.ins_productHkCon3 .center_box .item_box .item .pb {
  padding-bottom: 55.82%;
  z-index: 1;
}
.ins_productHkCon3 .center_box .item_box .item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productHkCon3 .center_box .item_box .item .more_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  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;
  font-size: var(--font18);
  color: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_productHkCon3 .center_box .item_box .item .more_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.ins_productHkCon3 .center_box .item_box .item .more_box span {
  position: relative;
  z-index: 2;
}
.ins_productHkCon3 .center_box .item_box .item:hover .more_box {
  opacity: 1;
}
.ins_productHkCon3 .center_box .item_box .item:hover .more_box::after {
  width: 250px;
  height: 250px;
}
@media (max-width:990px) {
  .ins_productHkCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.ins_productHkCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_80);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_productHkCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon4 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon4 .center_box .ins_title span {
  color: #3468F6;
}
.ins_productHkCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
  overflow: hidden;
}
.ins_productHkCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  height: 100%;
  background: url(../images/z9.png) no-repeat top right;
  background-color: #ffffff99;
  padding: var(--num_45);
  border-radius: var(--border-radius20);
  display: block;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  margin-top: var(--num_20);
}
.ins_productHkCon4 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 600;
  color: #1F2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: var(--num_20);
  color: #646a73;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item:hover .icon {
  transform: rotate(360deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productHkCon4 .center_box .swiper_box ul li .item:hover .word .t1 {
  color: #3468F6;
}
.ins_productHkCon4 .center_box .idxPageShow {
  margin-top: 40px;
}
.ins_productHkCon4 .center_box .idxPageShow span {
  background: var(--active_color);
}
.ins_productHkCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--num_20);
  margin-top: var(--num_60);
}
.ins_productHkCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: url(../images/z9.png) no-repeat top right;
  background-color: #ffffff99;
  padding: var(--num_45);
  border-radius: var(--border-radius20);
  display: block;
}
.ins_productHkCon4 .center_box .item_box .item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6;
}
.ins_productHkCon4 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: var(--num_20);
}
.ins_productHkCon4 .center_box .item_box .item .word .t1 {
  font-weight: 600;
  color: #1F2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productHkCon4 .center_box .item_box .item .word .t2 {
  margin-top: var(--num_20);
  color: #646a73;
}
.ins_productHkCon4 .center_box .item_box .item:hover .icon {
  transform: rotate(360deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productHkCon4 .center_box .item_box .item:hover .word .t1 {
  color: #3468F6;
}
@media (max-width:990px) {
  .ins_productHkCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .ins_productHkCon4 .center_box .item_box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 20px;
  }
  .ins_productHkCon4 .center_box .item_box .item .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .ins_productHkCon4 .center_box .item_box .item .icon img {
    max-width: 50%;
  }
  .ins_productHkCon4 .center_box .item_box .item .word {
    margin-top: 0;
  }
}
.ins_productHkCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_80);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_productHkCon5 .center_box {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 20px 20px 20px 20px;
}
.ins_productHkCon5 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: var(--num_70) var(--num_100);
  padding-top: var(--num_90);
  --num_l: 70px;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_btn1 {
  position: absolute;
  background: #FFFFFF80;
  width: 62px;
  height: 62px;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_btn1.prev {
  right: calc(100% + var(--num_l));
}
.ins_productHkCon5 .center_box .swiper_info .swiper_btn1.next {
  left: calc(100% + var(--num_l));
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_70);
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  max-width: 300px;
  flex-shrink: 0;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 56%;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .images .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_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t1 {
  width: 100%;
  height: auto;
  padding-right: var(--num_110);
  position: relative;
  z-index: 1;
  padding-bottom: var(--num_50);
  border-bottom: 1px solid #D9D9D9;
  line-height: 1.6;
  font-weight: 500;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t1 img {
  position: absolute;
  bottom: var(--num_50);
  right: 0;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t2 {
  width: 100%;
  height: auto;
  padding-top: var(--num_45);
  display: -webkit-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: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t2 span {
  font-weight: 600;
}
.ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t2 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3468F6;
  margin: 0 10px;
}
@media (max-width:1680px) {
  .ins_productHkCon5 .center_box .swiper_info {
    --num_l: 10px;
  }
}
@media (max-width:1600px) {
  .ins_productHkCon5 .center_box .swiper_info {
    --num_l: -20px;
  }
}
@media (max-width:990px) {
  .ins_productHkCon5 .center_box {
    background: none;
  }
  .ins_productHkCon5 .center_box .swiper_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin-top: 30px;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .images {
    max-width: 100%;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t1 {
    padding: 0px;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t1 img {
    width: 20px;
    bottom: 2px;
    display: none !important;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t2 {
    gap: 5px;
  }
  .ins_productHkCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word_box .t2 i {
    display: none;
  }
}
.ins_productHkCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--num_80);
  padding-bottom: var(--num_80);
}
.ins_productHkCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon10 .center_box .ins_title {
  text-align: center;
}
.ins_productHkCon10 .center_box .item_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon10 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_productHkCon10 .center_box .item_box .item .background_image {
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  height: auto;
  top: 0;
  opacity: 0;
}
.ins_productHkCon10 .center_box .item_box .item .images {
  width: 56.25%;
}
.ins_productHkCon10 .center_box .item_box .item .images .pb {
  padding-bottom: 71.43%;
}
.ins_productHkCon10 .center_box .item_box .item .images .pb .ab {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productHkCon10 .center_box .item_box .item .word_box {
  width: 39.791%;
  padding: 40px 0;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #3468F6;
  padding-bottom: 20px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .icon.padbot0 {
  padding-bottom: 0 !important;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .word .t2 {
  margin-top: var(--num_40);
  color: #646a73;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .word.martop30 {
  margin-top: var(--num_30);
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--num_40);
  margin-top: 16px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list .t3 {
  color: #1F2329;
  font-weight: 500;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list .t4 {
  margin-top: 16px;
  color: #646a73;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list_in {
  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: 15px;
  margin-top: var(--num_25);
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list_in .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list_in .one .ic_on {
  flex-shrink: 0;
  transform: translateY(0.05em);
}
.ins_productHkCon10 .center_box .item_box .item .word_box .list_in .one .word {
  color: #646A73;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box {
  width: 100%;
  height: auto;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .zx_one {
  width: 100%;
  height: auto;
  margin-top: 25px;
  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: 16px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .zx_one .list_a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .zx_one .list_a .wr {
  font-size: var(--font18);
  color: #646A73;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .idx_morebg {
  margin-top: 25px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box {
  width: 100%;
  height: auto;
  padding-right: var(--num_70);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box a {
  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;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box a .pb {
  padding-bottom: 30.36%;
}
.ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box a .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .zx_one {
    margin-top: 15px;
    gap: 8px;
  }
  .ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box {
    padding-right: 0;
    gap: 5px;
    margin-top: 20px;
  }
  .ins_productHkCon10 .center_box .item_box .item .word_box .zx_box .lo_box a .pb {
    padding-bottom: 40%;
  }
}
.ins_productHkCon10 .center_box .item_box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.ins_productHkCon10.padbot70 {
  padding-bottom: var(--num_70);
}
.ins_productHkCon10.ins_productHkCon_1 .center_box .item_box .item .background_image {
  opacity: 0;
}
.ins_productHkCon10.ins_prozsjmCon3 {
  padding-top: var(--num_70);
}
.ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box {
  margin-top: var(--num_60);
}
@media (max-width:990px) {
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item {
    flex-direction: column-reverse !important;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-top: 20px;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .word_box .icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: none;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .word_box .icon img {
    max-width: 70%;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .word_box .word {
    margin-top: 0 !important;
  }
  .ins_productHkCon10.ins_prozsjmCon3 .center_box .item_box .item .word_box .word .t2 {
    margin-top: 10px;
  }
  .ins_productHkCon10 .center_box .item_box .item .images,
  .ins_productHkCon10 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item {
    padding-top: 40px;
    flex-direction: column-reverse !important;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-bottom: 40px;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .word_box .icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: none;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .word_box .icon img {
    max-width: 70%;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .word_box .word {
    margin-top: 0 !important;
  }
  .ins_productHkCon10 .center_box .hkCon1 .item .word_box .word .t2 {
    margin-top: 10px;
  }
  .ins_productHkCon10 .center_box .hkCon2 .item {
    padding-top: 40px;
    flex-direction: column !important;
  }
  .ins_productHkCon10 .center_box .hkCon2 .item .images .pb .ab {
    padding: 0;
  }
  .ins_productHkCon10 .center_box .hkCon2 .item .word_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-bottom: 40px;
  }
  .ins_productHkCon10 .center_box .hkCon2 .item .word_box .list {
    margin-top: 10px;
    gap: 10px;
  }
  .ins_productHkCon10 .center_box .hkCon2 .item .word_box .list .t4 {
    margin-top: 5px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  案例列表 */
.main_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../img/z10.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_70);
  padding-bottom: var(--num_50);
  overflow: hidden;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_caseCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 18px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image {
  width: 46.8578%;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image .pb {
  padding-bottom: 56.3%;
  z-index: 1;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image .img {
  position: absolute;
  z-index: 2;
  top: var(--num_30);
  left: var(--num_30);
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image .more_box {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 12px var(--num_25);
  background: #00000080;
  top: var(--num_30);
  right: var(--num_40);
  font-size: var(--font16);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 45.43%;
  padding-right: var(--num_90);
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 20px;
  color: #646a73;
}
.ins_caseCon1 .center_box .swiper_box ul li .centerInfo .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
.ins_caseCon1 .center_box .swiper_strip {
  margin-top: var(--num_60);
}
@media (max-width:990px) {
  .ins_caseCon1 .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image,
  .ins_caseCon1 .center_box .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
  .ins_caseCon1 .center_box .swiper_box ul li .centerInfo .image .more_box {
    top: unset !important;
    bottom: 20px;
  }
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_50);
  padding-bottom: var(--num_50);
  overflow: hidden;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .ins_title {
  text-align: center;
}
.ins_caseCon2 .center_box .itm_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;
  gap: 20px;
  margin-top: var(--num_60);
}
.ins_caseCon2 .center_box .itm_info .list_one {
  width: 45.83%;
}
.ins_caseCon2 .center_box .itm_info .list_one .item {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.ins_caseCon2 .center_box .itm_info .list_one .item .img {
  position: absolute;
  z-index: 2;
  top: var(--num_35);
  left: var(--num_35);
  max-width: 50%;
}
.ins_caseCon2 .center_box .itm_info .list_one .item .more_box {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 12px var(--num_25);
  background: #00000080;
  top: var(--num_30);
  right: var(--num_40);
  font-size: var(--font16);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
}
.ins_caseCon2 .center_box .itm_info .list_one .item .t1 {
  position: absolute;
  z-index: 2;
  bottom: var(--num_40);
  left: var(--num_40);
  color: #FFFFFF;
}
.ins_caseCon2 .center_box .itm_info .list_one .item .pb {
  padding-bottom: 85%;
  z-index: 1;
}
.ins_caseCon2 .center_box .itm_info .list_one .item .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .itm_info .list_one .item:hover .pb .ab img {
  transform: scale(1.05);
}
.ins_caseCon2 .center_box .itm_info .item_box {
  width: 52.777%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ins_caseCon2 .center_box .itm_info .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.ins_caseCon2 .center_box .itm_info .item_box .item .img {
  position: absolute;
  z-index: 2;
  top: var(--num_35);
  left: var(--num_35);
  max-width: 50%;
}
.ins_caseCon2 .center_box .itm_info .item_box .item .more_box {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 12px var(--num_25);
  background: #00000080;
  top: var(--num_20);
  right: var(--num_20);
  font-size: var(--font16);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
}
.ins_caseCon2 .center_box .itm_info .item_box .item .t1 {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  bottom: 20px;
  text-align: center;
  padding: 0 20px;
  color: #FFFFFF;
}
.ins_caseCon2 .center_box .itm_info .item_box .item .pb {
  z-index: 1;
  padding-bottom: 73%;
}
.ins_caseCon2 .center_box .itm_info .item_box .item .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .itm_info .item_box .item:first-child {
  grid-column: span 2;
}
.ins_caseCon2 .center_box .itm_info .item_box .item:first-child .pb {
  padding-bottom: 35.6%;
}
.ins_caseCon2 .center_box .itm_info .item_box .item:hover .pb .ab img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .itm_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .ins_caseCon2 .center_box .itm_info .list_one,
  .ins_caseCon2 .center_box .itm_info .item_box {
    width: 100%;
    height: auto;
  }
  .ins_caseCon2 .center_box .itm_info .item_box .item .more_box,
  .ins_caseCon2 .center_box .itm_info .list_one .item .more_box {
    padding: 6px 12px;
  }
  .ins_caseCon2 .center_box .itm_info .item_box {
    gap: 10px;
  }
  .ins_caseCon2 .center_box .itm_info .item_box .item .t1 {
    bottom: 5px;
  }
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_50);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .ins_title {
  text-align: center;
}
.ins_caseCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: var(--num_90);
}
.ins_caseCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ffffff99;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
.ins_caseCon3 .center_box .item_box .item .images .pb {
  padding-bottom: 56.7%;
}
.ins_caseCon3 .center_box .item_box .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_45);
}
.ins_caseCon3 .center_box .item_box .item .word_box .t1 {
  line-height: 1.5;
  font-weight: 600;
  color: #1f2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em * 1.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_caseCon3 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: var(--num_20);
  position: relative;
  z-index: 2;
}
.ins_caseCon3 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  padding: 12px var(--num_25);
  font-size: var(--font16);
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  background: #3468f61a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .item_box .item .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_caseCon3 .center_box .item_box .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.ins_caseCon3 .center_box .item_box .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon3 .center_box .item_box .item:hover .word_box .t1 {
  color: #3468F6;
}
.ins_caseCon3 .center_box .idx_bntbox {
  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;
  margin-top: var(--num_90);
}
.ins_caseCon3 .center_box .idx_bntbox a,
.ins_caseCon3 .center_box .idx_bntbox .more {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.ins_caseCon3 .center_box .idx_bntbox a span,
.ins_caseCon3 .center_box .idx_bntbox .more span {
  color: #3468F6;
}
.ins_caseCon3 .center_box .idx_bntbox a::after,
.ins_caseCon3 .center_box .idx_bntbox .more::after {
  background: #3468F6;
}
.ins_caseCon3 .center_box .idx_bntbox a:hover span,
.ins_caseCon3 .center_box .idx_bntbox .more:hover span {
  color: #FFFFFF !important;
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ins_caseCon3 .center_box .item_box .item .word_box .list .one {
    padding: 6px 12px;
  }
}
@media (max-width:480px) {
  .ins_caseCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  案例列表详情 */
.main_casedataCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../img/z11.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_caseDataCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_85);
  padding-bottom: var(--num_40);
  overflow: hidden;
}
.ins_caseDataCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseDataCon1 .center_box .word_box {
  width: 38.194%;
}
.ins_caseDataCon1 .center_box .word_box .t1 {
  margin-top: 20px;
}
.ins_caseDataCon1 .center_box .word_box .time {
  margin-top: 20px;
  color: #000000;
  font-size: var(--font16);
}
.ins_caseDataCon1 .center_box .word_box .t2 {
  margin-top: 20px;
  color: #646a73;
}
.ins_caseDataCon1 .center_box .word_box .list_one {
  margin-top: var(--num_40);
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px var(--num_60);
}
.ins_caseDataCon1 .center_box .word_box .list_one .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseDataCon1 .center_box .word_box .list_one .one::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 43px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.2;
}
.ins_caseDataCon1 .center_box .word_box .list_one .one .font42 {
  color: #3468F6;
  font-weight: 600;
}
.ins_caseDataCon1 .center_box .word_box .list_one .one .font16 {
  margin-top: 10px;
  color: #646a73;
  line-height: 1.5;
  font-size: var(--font16);
}
.ins_caseDataCon1 .center_box .word_box .list_one .one:last-child::after {
  opacity: 0;
}
.ins_caseDataCon1 .center_box .images {
  width: 55.555%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.ins_caseDataCon1 .center_box .images img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_caseDataCon1 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_caseDataCon1 .center_box .word_box,
  .ins_caseDataCon1 .center_box .images {
    width: 100%;
  }
}
.ins_caseDataCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_40);
  padding-bottom: var(--num_60);
}
.ins_caseDataCon2 .center_box {
  width: 100%;
  height: auto;
  --left_width: 68.68%;
  --right_width: 26.38%;
}
.ins_caseDataCon2 .center_box .hh_left .people_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: var(--num_50);
  position: relative;
  z-index: 1;
}
.ins_caseDataCon2 .center_box .hh_left .people_box .img {
  width: 24.26%;
}
.ins_caseDataCon2 .center_box .hh_left .people_box .img img {
  border-radius: var(--border-radius20);
}
.ins_caseDataCon2 .center_box .hh_left .people_box .word {
  width: 70.475%;
}
.ins_caseDataCon2 .center_box .hh_left .people_box .word .t1 {
  line-height: 1.625;
  min-height: 0.5em;
  font-weight: 500;
  padding-bottom: 25px;
  border-bottom: 1px solid #d6e4ef;
  position: relative;
  z-index: 1;
  padding-right: var(--num_100);
}
.ins_caseDataCon2 .center_box .hh_left .people_box .word .t2 {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseDataCon2 .center_box .hh_left .people_box .word .t2 span {
  font-weight: 600;
  flex-shrink: 0;
}
.ins_caseDataCon2 .center_box .hh_left .people_box .icon {
  position: absolute;
  bottom: 25px;
  right: 0;
}
.ins_caseDataCon2 .center_box .hh_left .content {
  width: 100%;
  height: auto;
  margin-top: var(--num_70);
}
.ins_caseDataCon2 .center_box .hh_left .content p {
  font-size: var(--font16);
  line-height: 1.625;
  min-height: 0.5em;
  font-weight: 500;
}
.ins_caseDataCon2 .center_box .hh_left .content h1 {
  font-size: var(--font24);
}
.ins_caseDataCon2 .center_box .hh_left .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: 20px;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item {
  width: 100%;
  height: auto;
  padding: var(--num_40) var(--num_50);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 3.256px 9.455px 90px 0px rgba(25, 82, 146, 0.2);
  border-radius: var(--border-radius20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: var(--num_35);
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .left {
  width: 38.4%;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .left .t1 {
  font-size: var(--font18);
  font-weight: 600;
  color: #000000;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .left .t2 {
  font-size: var(--font16);
  color: #646a73;
  line-height: 1.5;
  margin-top: 15px;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .icon {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right {
  width: 38.91%;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right .t1 {
  font-size: var(--font18);
  font-weight: 600;
  color: #000000;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right .t2 {
  margin-top: 15px;
  font-size: var(--font16);
  color: #646a73;
  line-height: 1.5;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right .label_tag {
  margin-top: 20px;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right .label_tag .tag {
  display: -webkit-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: 5px;
}
.ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right .label_tag .tag i {
  font-size: 14px;
  transform: translateY(2px);
}
.ins_caseDataCon2 .center_box .hh_left .next_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 50px;
}
.ins_caseDataCon2 .center_box .hh_left .next_box a {
  width: fit-content;
  max-width: 45%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 16px 20px;
  min-width: 124px;
  border: 1px solid #0000001a;
  color: #000000;
  font-size: var(--font18);
  line-height: 1;
  border-radius: 4px;
  gap: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon2 .center_box .hh_left .next_box a .icon {
  flex-shrink: 0;
}
.ins_caseDataCon2 .center_box .hh_left .next_box a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ins_caseDataCon2 .center_box .hh_left .next_box a:hover {
  border: 1px solid #3468F6;
  color: #3468F6;
}
.ins_caseDataCon2 .center_box .hh_right {
  position: sticky;
  top: calc(var(--header-height) + 20px + var(--g_bnum));
  height: 100%;
  max-height: 80vh;
  overflow: auto;
}
.ins_caseDataCon2 .center_box .hh_right .list_one {
  width: 100%;
  height: auto;
  background: #ffffff99;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_caseDataCon2 .center_box .hh_right .list_one .word_box {
  width: 100%;
  height: auto;
  background: url(../img/y16.jpg) no-repeat top right / cover;
  padding: var(--num_35) var(--num_30);
}
.ins_caseDataCon2 .center_box .hh_right .list_one .word_box .t1 {
  font-weight: 600;
  margin-top: 15px;
}
.ins_caseDataCon2 .center_box .hh_right .list_one .icon_box {
  width: 100%;
  height: auto;
  padding: var(--num_20);
  padding-bottom: var(--num_50);
}
.ins_caseDataCon2 .center_box .hh_right .list_one .icon_box .idx_morebg .more {
  width: 100%;
  min-height: clamp(2.75rem, calc(0.288rem + 3.08vw), 3.75rem);
  border-radius: var(--border-radius10);
}
.ins_caseDataCon2 .center_box .hh_right .list_one .icon_box .idx_morebg .more::after {
  border-radius: 2px;
}
.ins_caseDataCon2 .center_box .hh_right .list_one .icon_box .get_box {
  font-size: var(--font18);
  margin-top: var(--num_30);
  text-align: center;
  color: #3468F6;
  cursor: pointer;
  display: block;
}
.ins_caseDataCon2 .center_box .hh_right .item_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_65);
}
.ins_caseDataCon2 .center_box .hh_right .item_info .title {
  font-size: var(--font24);
  padding-left: 20px;
  font-weight: 600;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .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: 20px;
  margin-top: 25px;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item {
  padding-left: 20px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 20px;
  line-height: 1.444;
  color: #1f2329;
  overflow: hidden;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: var(--font18);
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #aeb9c9;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: 1px;
  opacity: 0.05;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item:hover a {
  color: #3468F6;
}
.ins_caseDataCon2 .center_box .hh_right .item_info .item_box .item:hover::after {
  background: #3468F6;
}
@media (max-width:990px) {
  .ins_caseDataCon2 .center_box .hh_left .logo_box {
    max-width: 150px;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box .word {
    width: 100%;
    border-bottom: 1px solid #d6e4ef;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box .word .t1 {
    padding-right: 0px;
    padding-bottom: 10px;
    border-bottom: 0;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box .word .t1 .icon {
    width: 15px;
    bottom: 5px;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box .word .t2 {
    margin-top: 0;
    padding-bottom: 20px;
  }
  .ins_caseDataCon2 .center_box .hh_left .people_box .img {
    width: fit-content;
  }
  .ins_caseDataCon2 .center_box .hh_left .content {
    margin-top: 20px;
  }
  .ins_caseDataCon2 .center_box .hh_left .content .item_box {
    gap: 10px;
  }
  .ins_caseDataCon2 .center_box .hh_left .content .item_box .item {
    gap: 10px;
    padding: 20px !important;
  }
  .ins_caseDataCon2 .center_box .hh_left .content .item_box .item .left,
  .ins_caseDataCon2 .center_box .hh_left .content .item_box .item .right {
    width: 45%;
  }
  .ins_caseDataCon2 .center_box .hh_left .content .item_box .item .icon {
    width: 10px;
    flex-shrink: 0;
  }
  .ins_caseDataCon2 .center_box .hh_left .next_box a {
    padding: 8px 10px;
  }
  .ins_caseDataCon2 .center_box .hh_right {
    display: none !important;
  }
}
.ins_caseDataCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_60);
  padding-bottom: var(--num_70);
  overflow: hidden;
}
.ins_caseDataCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseDataCon3 .center_box .ins_title {
  text-align: center;
}
.ins_caseDataCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_90);
}
.ins_caseDataCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ffffff99;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .images .pb {
  padding-bottom: 56.7%;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_45);
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box .t1 {
  line-height: 1.5;
  font-weight: 600;
  color: #1f2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em * 1.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: var(--num_20);
  position: relative;
  z-index: 2;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box .list .one {
  width: fit-content;
  padding: 12px var(--num_25);
  font-size: var(--font16);
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  background: #3468f61a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_caseDataCon3 .center_box .swiper_box ul li .item:hover .word_box .t1 {
  color: #3468F6;
}
@media (max-width:990px) {
  .ins_caseDataCon3 .center_box .swiper_box {
    margin-top: 30px;
  }
  .ins_caseDataCon3 .center_box .swiper_box ul li .item .word_box .list .one {
    padding: 6px 12px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  资源中心 */
.main_resourceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../img/z12.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_resourceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_70);
  padding-bottom: var(--num_50);
  overflow: hidden;
}
.ins_resourceCon1 .center_box {
  width: 100%;
  height: auto;
  --left_width: 65.97%;
  --right_width: 31.94%;
  gap: 30px;
}
.ins_resourceCon1 .center_box .hh_left {
  position: relative;
  z-index: 1;
  height: 100%;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .pb {
  padding-bottom: 57.6%;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .word {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 20px var(--num_70);
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .word * {
  color: #FFFFFF;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .word .t1 {
  font-weight: 300;
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .word .t2 {
  margin-top: var(--num_22);
}
.ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .word .t3 {
  font-weight: 200;
  margin-top: var(--num_40);
}
.ins_resourceCon1 .center_box .hh_left .swiper_strip {
  position: absolute;
  bottom: var(--num_30);
  left: 0;
}
.ins_resourceCon1 .center_box .hh_left .swiper_strip span {
  background: none;
}
.ins_resourceCon1 .center_box .hh_left .swiper_strip span::before {
  opacity: 0.5;
  background: #FFFFFF;
}
.ins_resourceCon1 .center_box .hh_left .swiper_strip span::after {
  background: #FFFFFF;
}
.ins_resourceCon1 .center_box .hh_right .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: 30px;
}
.ins_resourceCon1 .center_box .hh_right .item_box .item {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
}
.ins_resourceCon1 .center_box .hh_right .item_box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_resourceCon1 .center_box .hh_right .item_box .item .images .pb {
  padding-bottom: 56.4%;
}
.ins_resourceCon1 .center_box .hh_right .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_resourceCon1 .center_box .hh_right .item_box .item .logo {
  position: absolute;
  z-index: 2;
  top: var(--num_30);
  left: var(--num_35);
  filter: brightness(0) invert(1);
}
.ins_resourceCon1 .center_box .hh_right .item_box .item .t1 {
  position: absolute;
  z-index: 2;
  bottom: var(--num_35);
  left: var(--num_35);
  color: #FFFFFF;
}
.ins_resourceCon1.ins_resourceCon3 .center_box .hh_left .swiper_box ul li .images .word {
  height: fit-content;
  bottom: var(--num_40);
  top: unset;
}
.ins_resourceCon1.ins_resourceCon3 .center_box .hh_left .swiper_box ul li .images .word .t1 {
  font-weight: normal;
}
@media (max-width:990px) {
  .ins_resourceCon1 .center_box {
    gap: 0;
  }
  .ins_resourceCon1 .center_box .hh_left .swiper_box ul li .images .pb {
    padding-bottom: 70%;
  }
  .ins_resourceCon1 .center_box .hh_left .swiper_box ul li .word .t2 * {
    font-size: 22px;
  }
  .ins_resourceCon1 .center_box .hh_right {
    margin-top: 10px;
  }
  .ins_resourceCon1 .center_box .hh_right .item_box {
    gap: 10px;
  }
  .ins_resourceCon1 .center_box .hh_right .item_box .item .images .pb {
    padding-bottom: 45%;
  }
}
.ins_resourceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: var(--num_60);
}
.ins_resourceCon2 .center_box {
  width: 100%;
  height: auto;
  --left_width: 65.97%;
  --right_width: 30.55%;
}
.ins_resourceCon2 .center_box .hh_left .input_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #ffffffb3;
  padding: 7px;
  border-radius: 100px;
  overflow: hidden;
}
.ins_resourceCon2 .center_box .hh_left .input_box .icon {
  flex-shrink: 0;
  width: 60px;
  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_resourceCon2 .center_box .hh_left .input_box .input {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .hh_left .input_box .input input {
  width: 100%;
  height: 100%;
  min-height: 40px;
  font-size: var(--font18);
  border: 0;
  background: none;
}
.ins_resourceCon2 .center_box .hh_left .input_box .btn_box {
  flex-shrink: 0;
  min-width: clamp(6.25rem, calc(2.25rem + 5vw), 7.875rem);
  height: clamp(2.375rem, calc(-0.087rem + 3.08vw), 3.375rem);
  border: 1px solid #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
  color: #FFFFFF;
  background: #3468F6;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.ins_resourceCon2 .center_box .hh_left .input_box .btn_box span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .input_box .btn_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(-100%);
  border-radius: 100px;
}
.ins_resourceCon2 .center_box .hh_left .input_box .btn_box:hover span {
  color: #3468F6;
}
.ins_resourceCon2 .center_box .hh_left .input_box .btn_box:hover::after {
  transform: translateX(0);
}
.ins_resourceCon2 .center_box .hh_left .tag_list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
  color: #646a73;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding-left: var(--num_30);
}
.ins_resourceCon2 .center_box .hh_left .tag_list span {
  flex-shrink: 0;
  font-size: var(--font16);
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a {
  margin: 0 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #646a73;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font16);
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a::after {
  content: '';
  position: absolute;
  right: -14px;
  width: 1px;
  height: 70%;
  background: #000;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a:hover {
  color: #3468F6;
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a:hover::before {
  opacity: 1;
}
.ins_resourceCon2 .center_box .hh_left .tag_list .tag_a a:last-child::after {
  opacity: 0;
}
.ins_resourceCon2 .center_box .hh_left .select_b {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: var(--num_50);
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px var(--num_40);
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one {
  font-size: var(--font20);
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one.active {
  color: #3468F6;
  font-weight: 600;
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one.active::after {
  opacity: 1;
}
.ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one:hover {
  color: #3468F6;
}
.ins_resourceCon2 .center_box .hh_left .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 6px;
  margin-top: 35px;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  padding-bottom: 25px;
  border-radius: var(--border-radius20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .images {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .images .pb {
  padding-bottom: 54.5%;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .word .t1 {
  font-weight: 500;
  line-height: 1.5555;
  color: #000000;
  height: calc(2em * 1.555);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item .word .t2 {
  margin-top: 20px;
  color: #3468F6;
  font-weight: 500;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item:hover {
  background: #ffffffb3;
}
.ins_resourceCon2 .center_box .hh_left .item_box .item:hover .images .pb .ab img {
  transform: scale(1.06);
}
.ins_resourceCon2 .center_box .hh_left .item_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--num_35);
  margin-top: var(--num_50);
}
.ins_resourceCon2 .center_box .hh_left .item_info .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--num_80);
  padding-bottom: var(--num_35);
  position: relative;
  z-index: 1;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.05;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .images {
  width: 36.401%;
  flex-shrink: 0;
  height: 100%;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .images .pb {
  padding-bottom: 56.4%;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .word_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .word_box .t1 {
  color: #000000;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .word_box .t2 {
  margin-top: 15px;
  color: #646a73;
  line-height: 1.625;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item .word_box .t3 {
  margin-top: 20px;
  color: #646a73;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_resourceCon2 .center_box .hh_left .item_info .item:hover .word_box .t1 {
  color: #3468F6;
}
.ins_resourceCon2 .center_box .hh_left .item_info .item:hover::after {
  opacity: 1;
  background: #3468F6;
}
.ins_resourceCon2 .center_box .hh_right .label_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .hh_right .label_box .t1 {
  font-weight: 600;
}
.ins_resourceCon2 .center_box .hh_right .label_box .label_tag .tag {
  background: #FFFFFF;
  color: #1f2329;
}
.ins_resourceCon2 .center_box .hh_right .item_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_65);
}
.ins_resourceCon2 .center_box .hh_right .item_info .title {
  font-size: var(--font24);
  font-weight: 600;
}
.ins_resourceCon2 .center_box .hh_right .item_info .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: 20px;
  margin-top: 25px;
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 20px;
  line-height: 1.444;
  color: #1f2329;
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: var(--font18);
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: -25px;
  width: 7px;
  height: 7px;
  background: #aeb9c9;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: 1px;
  opacity: 0.05;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item:hover a {
  color: #3468F6;
}
.ins_resourceCon2 .center_box .hh_right .item_info .item_box .item:hover::after {
  background: #3468F6;
}
.ins_resourceCon2 .center_box .hh_right .list_one {
  width: 100%;
  height: auto;
  background: #ffffff99;
  border-radius: var(--border-radius20);
  overflow: hidden;
  margin-top: var(--num_55);
  max-width: 380px;
}
.ins_resourceCon2 .center_box .hh_right .list_one .word_box {
  width: 100%;
  height: auto;
  background: url(../images/y16.jpg) no-repeat top right / cover;
  padding: 35px 30px;
}
.ins_resourceCon2 .center_box .hh_right .list_one .word_box .t1 {
  font-weight: 600;
  margin-top: 15px;
}
.ins_resourceCon2 .center_box .hh_right .list_one .icon_box {
  width: 100%;
  height: auto;
  padding: 20px;
  padding-bottom: 50px;
}
.ins_resourceCon2 .center_box .hh_right .list_one .icon_box .idx_morebg .more {
  width: 100%;
  min-height: clamp(2.75rem, calc(0.288rem + 3.08vw), 3.75rem);
  border-radius: var(--border-radius10);
}
.ins_resourceCon2 .center_box .hh_right .list_one .icon_box .idx_morebg .more::after {
  border-radius: 2px;
}
.ins_resourceCon2 .center_box .hh_right .list_one .icon_box .get_box {
  font-size: var(--font18);
  margin-top: 30px;
  text-align: center;
  color: #3468F6;
  cursor: pointer;
  display: block;
}
.ins_resourceCon2.ins_resourceCon4 {
  padding-top: var(--num_50);
}
.ins_resourceCon2.ins_resourceCon4 .center_box .hh_left .sele_box {
  margin-top: 0;
}
@media (max-width:990px) {
  .ins_resourceCon2 .center_box .hh_left .input_box {
    padding: 5px;
  }
  .ins_resourceCon2 .center_box .hh_left .input_box .icon {
    width: 40px;
  }
  .ins_resourceCon2 .center_box .hh_left .input_box .input input {
    min-height: 35px;
  }
  .ins_resourceCon2 .center_box .hh_left .input_box .btn_box {
    min-width: 70px;
  }
  .ins_resourceCon2 .center_box .hh_left .tag_list {
    display: none;
  }
  .ins_resourceCon2 .center_box .hh_left .select_b {
    position: relative;
    z-index: 1;
    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: 10px;
  }
  .ins_resourceCon2 .center_box .hh_left .select_b .icon {
    flex-shrink: 0;
    transform: translateY(-2px);
  }
  .ins_resourceCon2 .center_box .hh_left .select_b .icon i {
    font-size: 12px;
  }
  .ins_resourceCon2 .center_box .hh_left .select_b .sele_box {
    overflow: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }
  .ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one {
    width: max-content;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .ins_resourceCon2 .center_box .hh_left .select_b .sele_box .one::after {
    height: 2px;
  }
  .ins_resourceCon2 .center_box .hh_left .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 0;
  }
  .ins_resourceCon2 .center_box .hh_left .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 0;
    gap: 20px;
    border-bottom: 1px solid #e5e5e5;
  }
  .ins_resourceCon2 .center_box .hh_left .item_box .item .images {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
  }
  .ins_resourceCon2 .center_box .hh_left .item_box .item .images .pb {
    padding-bottom: 80%;
  }
  .ins_resourceCon2 .center_box .hh_left .item_box .item .word {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 10px 0;
  }
  .ins_resourceCon2 .center_box .hh_left .item_info {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_resourceCon2 .center_box .hh_left .item_info .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_resourceCon2 .center_box .hh_left .item_info .item .images {
    width: 100%;
    flex-shrink: 0;
    border-radius: 4px;
  }
  .ins_resourceCon2 .center_box .hh_left .item_info .item .images .pb {
    padding-bottom: 50%;
  }
  .ins_resourceCon2 .center_box .hh_left .item_info .item .word {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 10px 0;
  }
  .ins_resourceCon2 .center_box .hh_right {
    display: none;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  资源中心-开发者平台 */
.main_resourceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/z13.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_resourcekfCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_resourcekfCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box {
  width: 100%;
  height: auto;
  max-width: 550px;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .t1 {
  color: #3468F6;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .t2 {
  margin-top: 30px;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .idx_bntbox {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .idx_bntbox a:last-child {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #3468F6;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .idx_bntbox a:last-child::after {
  background: #3468F6;
}
.ins_resourcekfCon1 .swiper_box ul li .centerInfo .center_box .idx_bntbox a:last-child:hover span {
  color: #FFFFFF;
}
.ins_resourcekfCon1 .swiper_box ul li .images_bg {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon1 .swiper_box ul li .images_bg img {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon1 .swiper_box ul li .images_bg .wap {
  min-height: 50vh;
  object-fit: cover;
}
.ins_resourcekfCon1 .swiper_strip {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 20px;
}
.ins_resourcekfCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--num_70);
  padding-bottom: var(--num_20);
}
.ins_resourcekfCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .ins_title {
  text-align: center;
}
.ins_resourcekfCon2 .center_box .ins_title span {
  color: #3468F6;
}
.ins_resourcekfCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 10px;
}
.ins_resourcekfCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
  --left_width: 53.125%;
  --right_width: 39.791%;
}
.ins_resourcekfCon2 .center_box .item_box .item .background_image {
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  height: auto;
  top: 0;
}
.ins_resourcekfCon2 .center_box .item_box .item .swiper_box {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .item_box .item .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .item_box .item .swiper_box .images {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .item_box .item .swiper_box .images .pb {
  padding-bottom: 86.28%;
}
.ins_resourcekfCon2 .center_box .item_box .item .swiper_box .images .pb .ab {
  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;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_80) 0;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .word .t2 {
  margin-top: var(--num_30);
  color: #646a73;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_30);
  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: var(--num_20);
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info {
  width: 100%;
  height: auto;
  background: #ffffff66;
  padding: var(--num_30) var(--num_40);
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .top_box {
  width: 100%;
  height: auto;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .top_box .t1 {
  font-weight: 600;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .bot_box {
  width: 100%;
  height: auto;
  padding-top: 15px;
  display: none;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .bot_box .t1 {
  color: #646a73;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .bot_box .list {
  width: 100%;
  height: auto;
  margin-top: var(--num_25);
  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: 10px;
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .bot_box .list .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  color: #646a73;
  font-size: var(--font16);
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info .bot_box .list .one span {
  transform: translateY(-2px);
}
.ins_resourcekfCon2 .center_box .item_box .item .word_box .list_box .list_info.active .top_box .t1 {
  color: #3468F6;
}
.ins_resourcekfCon2 .center_box .item_box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.main_resourceCon2 .ins_productHkCon3 {
  padding-bottom: var(--num_150);
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  搜索结果 */
.main_searchCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../img/z14.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_searchCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--num_90);
  padding-bottom: var(--num_110);
}
.ins_searchCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_searchCon1 .center_box .ins_title {
  width: 100%;
  height: auto;
  max-width: 950px;
  margin: auto;
}
.ins_searchCon1 .center_box .ins_title .t1 {
  text-align: center;
}
.ins_searchCon1 .center_box .ins_title .input_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #ffffffb3;
  padding: 7px;
  border-radius: 100px;
  overflow: hidden;
  margin-top: var(--num_50);
}
.ins_searchCon1 .center_box .ins_title .input_box .icon {
  flex-shrink: 0;
  width: 60px;
  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_searchCon1 .center_box .ins_title .input_box .input {
  width: 100%;
  height: auto;
}
.ins_searchCon1 .center_box .ins_title .input_box .input input {
  width: 100%;
  height: 100%;
  min-height: 40px;
  font-size: var(--font18);
  border: 0;
  background: none;
}
.ins_searchCon1 .center_box .ins_title .input_box .btn_box {
  flex-shrink: 0;
  min-width: clamp(6.25rem, calc(2.25rem + 5vw), 7.875rem);
  height: clamp(2.375rem, calc(-0.087rem + 3.08vw), 3.375rem);
  border: 1px solid #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
  color: #FFFFFF;
  background: #3468F6;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.ins_searchCon1 .center_box .ins_title .input_box .btn_box span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .ins_title .input_box .btn_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(-100%);
  border-radius: 100px;
}
.ins_searchCon1 .center_box .ins_title .input_box .btn_box:hover span {
  color: #3468F6;
}
.ins_searchCon1 .center_box .ins_title .input_box .btn_box:hover::after {
  transform: translateX(0);
}
.ins_searchCon1 .center_box .ins_title .tag_list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
  color: #646a73;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_searchCon1 .center_box .ins_title .tag_list span {
  flex-shrink: 0;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a {
  margin: 0 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #646a73;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a::after {
  content: '';
  position: absolute;
  right: -14px;
  width: 1px;
  height: 70%;
  background: #000;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a:hover {
  color: #3468F6;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a:hover::before {
  opacity: 1;
}
.ins_searchCon1 .center_box .ins_title .tag_list .tag_a a:last-child::after {
  opacity: 0;
}
.ins_searchCon1 .center_box .ins_title .tip_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: var(--num_40);
}
.ins_searchCon1 .center_box .ins_title .tip_box a {
  color: #3468F6;
  position: relative;
  z-index: 1;
}
.ins_searchCon1 .center_box .ins_title .tip_box a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #3468F6;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .ins_title .tip_box a:hover::after {
  opacity: 1;
}
.ins_searchCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding: var(--num_60) var(--num_70);
  background: linear-gradient(0deg, #FFFFFF00 10%, #FFFFFF 100%);
  border-radius: var(--border-radius20);
  overflow: hidden;
  margin-top: var(--num_70);
}
.ins_searchCon1 .center_box .content .sele_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px var(--num_50);
}
.ins_searchCon1 .center_box .content .sele_box .one {
  font-size: var(--font20);
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .content .sele_box .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_searchCon1 .center_box .content .sele_box .one.active {
  color: #3468F6;
}
.ins_searchCon1 .center_box .content .sele_box .one.active::after {
  opacity: 1;
}
.ins_searchCon1 .center_box .content .sele_box .one:hover {
  color: #3468F6;
}
.ins_searchCon1 .center_box .content .con_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_70);
  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: var(--num_85);
}
.ins_searchCon1 .center_box .content .con_info .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;
  gap: var(--num_50);
  --numwh: clamp(2.813rem, calc(-1.957rem + 5.96vw), 4.75rem);
}
.ins_searchCon1 .center_box .content .con_info .item .icon {
  flex-shrink: 0;
  width: var(--numwh);
  height: var(--numwh);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_searchCon1 .center_box .content .con_info .item .icon img {
  max-width: 45%;
}
.ins_searchCon1 .center_box .content .con_info .item .icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.1;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_searchCon1 .center_box .content .con_info .item .word_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: 15px;
}
.ins_searchCon1 .center_box .content .con_info .item .word_box .t1 {
  font-weight: 500;
  color: #1f2329;
}
.ins_searchCon1 .center_box .content .con_info .item .word_box .t1 span {
  color: #3468F6;
}
.ins_searchCon1 .center_box .content .con_info .item .word_box .t2 {
  line-height: 1.625;
  color: #646a73;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.ins_searchCon1 .center_box .content .pager_box {
  width: 100%;
  height: auto;
  margin-top: 100px;
}
@media (max-width:990px) {
  .ins_searchCon1 .center_box .ins_title .tag_list {
    display: none;
  }
  .ins_searchCon1 .center_box .ins_title .input_box {
    padding: 5px;
  }
  .ins_searchCon1 .center_box .ins_title .input_box .icon {
    width: 40px;
  }
  .ins_searchCon1 .center_box .ins_title .input_box .input input {
    min-height: 35px;
  }
  .ins_searchCon1 .center_box .ins_title .input_box .btn_box {
    min-width: 70px;
  }
  .ins_searchCon1 .center_box .content {
    padding: 20px;
  }
  .ins_searchCon1 .center_box .content .sele_box {
    overflow: auto;
    padding-bottom: 10px;
  }
  .ins_searchCon1 .center_box .content .sele_box .one {
    width: max-content;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .ins_searchCon1 .center_box .content .sele_box .one::after {
    height: 2px;
  }
  .ins_searchCon1 .center_box .content .con_info .item {
    gap: 15px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  新闻列表 */
.main_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/z15.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_90);
  padding-bottom: var(--num_50);
  overflow: hidden;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .image {
  width: 49.3%;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .image .pb {
  padding-bottom: 56.3%;
  z-index: 1;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .image .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .image .img {
  position: absolute;
  z-index: 2;
  top: var(--num_30);
  left: var(--num_30);
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .image .more_box {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 12px var(--num_25);
  background: #00000080;
  top: var(--num_30);
  right: var(--num_40);
  font-size: var(--font16);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 43.4%;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .time {
  color: #3468F6;
  font-size: var(--font16);
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  margin-top: var(--num_20);
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: var(--num_20);
  color: #646a73;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
.ins_newCon1 .center_box .swiper_strip {
  margin-top: var(--num_80);
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_newCon1 .center_box .swiper_box ul li .centerInfo .image,
  .ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    height: auto;
  }
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_50);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .ins_title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_55);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon2 .center_box .ins_title .item {
  color: #1f2329;
  opacity: 0.5;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .ins_title .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #3468F6;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .ins_title .item.active {
  color: #3468F6;
  opacity: 1;
}
.ins_newCon2 .center_box .ins_title .item.active::after {
  opacity: 1;
}
.ins_newCon2 .center_box .ins_title .item:hover {
  color: #3468F6;
  opacity: 1;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: var(--num_90);
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ffffff99;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
.ins_newCon2 .center_box .item_box .item .images .pb {
  padding-bottom: 56.7%;
}
.ins_newCon2 .center_box .item_box .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_55) var(--num_50);
}
.ins_newCon2 .center_box .item_box .item .word_box .time {
  font-size: var(--font16);
  color: #3468F6;
}
.ins_newCon2 .center_box .item_box .item .word_box .t1 {
  line-height: 1.5;
  font-weight: 600;
  color: #1f2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 15px;
  height: calc(2em * 1.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: var(--num_20);
  position: relative;
  z-index: 2;
}
.ins_newCon2 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  padding: 12px var(--num_25);
  font-size: var(--font16);
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  background: #3468f61a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_newCon2 .center_box .item_box .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.ins_newCon2 .center_box .item_box .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon2 .center_box .item_box .item:hover .word_box .t1 {
  color: #3468F6;
}
.ins_newCon2 .center_box .idx_bntbox {
  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;
  margin-top: var(--num_90);
}
.ins_newCon2 .center_box .idx_bntbox a,
.ins_newCon2 .center_box .idx_bntbox .more {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.ins_newCon2 .center_box .idx_bntbox a span,
.ins_newCon2 .center_box .idx_bntbox .more span {
  color: #3468F6;
}
.ins_newCon2 .center_box .idx_bntbox a::after,
.ins_newCon2 .center_box .idx_bntbox .more::after {
  background: #3468F6;
}
.ins_newCon2 .center_box .idx_bntbox a:hover span,
.ins_newCon2 .center_box .idx_bntbox .more:hover span {
  color: #FFFFFF !important;
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .ins_title .item::after {
    height: 2px;
  }
  .ins_newCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .ins_newCon2 .center_box .item_box .word_box {
    padding: 20px !important;
  }
  .ins_newCon2 .center_box .item_box .word_box .list .one {
    padding: 6px 12px !important;
  }
}
.ins_newDataCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_90);
  padding-bottom: var(--num_60);
}
.ins_newDataCon1 .center_box {
  width: 100%;
  height: auto;
  --left_width: 68.68%;
  --right_width: 26.38%;
}
.ins_newDataCon1 .center_box .hh_left .time {
  margin-top: 20px;
  color: #000000;
  font-size: var(--font16);
}
.ins_newDataCon1 .center_box .hh_left .label_tag {
  margin-top: 30px;
}
.ins_newDataCon1 .center_box .hh_left .content {
  width: 100%;
  height: auto;
  margin-top: var(--num_70);
}
.ins_newDataCon1 .center_box .hh_left .content p {
  font-size: var(--font16);
  line-height: 1.625;
  min-height: 0.5em;
  font-weight: 500;
}
.ins_newDataCon1 .center_box .hh_left .content p img {
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_newDataCon1 .center_box .hh_left .content h1 {
  font-size: var(--font24);
}
.ins_newDataCon1 .center_box .hh_left .content li {
  list-style: unset;
}
.ins_newDataCon1 .center_box .hh_left .content ul {
  padding-left: 20px;
}
.ins_newDataCon1 .center_box .hh_left .next_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 50px;
}
.ins_newDataCon1 .center_box .hh_left .next_box a {
  width: fit-content;
  max-width: 45%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 16px 20px;
  min-width: 124px;
  border: 1px solid #0000001a;
  color: #000000;
  font-size: var(--font18);
  line-height: 1;
  border-radius: 4px;
  gap: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon1 .center_box .hh_left .next_box a .icon {
  flex-shrink: 0;
}
.ins_newDataCon1 .center_box .hh_left .next_box a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ins_newDataCon1 .center_box .hh_left .next_box a:hover {
  border: 1px solid #3468F6;
  color: #3468F6;
}
.ins_newDataCon1 .center_box .hh_right {
  position: sticky;
  top: calc(var(--header-height) + 20px + var(--g_bnum));
  height: 100%;
  max-height: 85vh;
  overflow: auto;
}
.ins_newDataCon1 .center_box .hh_right .list_one {
  width: 100%;
  height: auto;
  background: #ffffff99;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_newDataCon1 .center_box .hh_right .list_one .word_box {
  width: 100%;
  height: auto;
  background: url(../images/y16.jpg) no-repeat top right / cover;
  padding: 35px 30px;
}
.ins_newDataCon1 .center_box .hh_right .list_one .word_box .t1 {
  font-weight: 600;
  margin-top: 15px;
}
.ins_newDataCon1 .center_box .hh_right .list_one .icon_box {
  width: 100%;
  height: auto;
  padding: 20px;
  padding-bottom: 50px;
}
.ins_newDataCon1 .center_box .hh_right .list_one .icon_box .idx_morebg .more {
  width: 100%;
  min-height: clamp(2.75rem, calc(0.288rem + 3.08vw), 3.75rem);
  border-radius: var(--border-radius10);
}
.ins_newDataCon1 .center_box .hh_right .list_one .icon_box .idx_morebg .more::after {
  border-radius: 2px;
}
.ins_newDataCon1 .center_box .hh_right .list_one .icon_box .get_box {
  font-size: var(--font18);
  margin-top: 30px;
  text-align: center;
  color: #3468F6;
  cursor: pointer;
  display: block;
}
.ins_newDataCon1 .center_box .hh_right .label_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_50);
}
.ins_newDataCon1 .center_box .hh_right .label_box .t1 {
  font-weight: 600;
}
.ins_newDataCon1 .center_box .hh_right .label_box .label_tag .tag {
  background: #FFFFFF;
  color: #1f2329;
}
.ins_newDataCon1 .center_box .hh_right .item_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_65);
}
.ins_newDataCon1 .center_box .hh_right .item_info .title {
  font-size: var(--font24);
  padding-left: 20px;
  font-weight: 600;
}
.ins_newDataCon1 .center_box .hh_right .item_info .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: 20px;
  margin-top: 25px;
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item {
  padding-left: 20px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 20px;
  line-height: 1.444;
  color: #1f2329;
  overflow: hidden;
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: var(--font18);
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #aeb9c9;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: 1px;
  opacity: 0.05;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item:hover a {
  color: #3468F6;
}
.ins_newDataCon1 .center_box .hh_right .item_info .item_box .item:hover::after {
  background: #3468F6;
}
@media (max-width:990px) {
  .ins_newDataCon1 .center_box .hh_right {
    display: none;
  }
}
.ins_newDataCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_60);
  padding-bottom: var(--num_70);
  overflow: hidden;
}
.ins_newDataCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newDataCon2 .center_box .ins_title {
  text-align: center;
}
.ins_newDataCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_90);
}
.ins_newDataCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ffffff99;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .images .pb {
  padding-bottom: 56.7%;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_55) var(--num_50);
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box .time {
  font-size: var(--font16);
  color: #3468F6;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box .t1 {
  line-height: 1.5;
  font-weight: 600;
  color: #1f2329;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 15px;
  height: calc(2em * 1.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: var(--num_20);
  position: relative;
  z-index: 2;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box .list .one {
  width: fit-content;
  padding: 12px var(--num_25);
  font-size: var(--font16);
  color: #3468F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  background: #3468f61a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_newDataCon2 .center_box .swiper_box ul li .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.ins_newDataCon2 .center_box .swiper_box ul li .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_newDataCon2 .center_box .swiper_box ul li .item:hover .word_box .t1 {
  color: #3468F6;
}
.ins_labelCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_90);
  padding-bottom: var(--num_60);
  overflow: visible;
}
.ins_labelCon1 .center_box {
  width: 100%;
  height: auto;
  --left_width: 68.68%;
  --right_width: 26.38%;
}
.ins_labelCon1 .center_box .hh_left .ins_title {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 20px;
}
.ins_labelCon1 .center_box .hh_left .ins_title .label_info {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_labelCon1 .center_box .hh_left .ins_title .label_info span {
  font-size: var(--font20);
  color: #000000;
}
.ins_labelCon1 .center_box .hh_left .ins_title .label_info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: 5px;
  padding: 5px var(--num_25);
  width: auto;
  height: auto;
  min-height: 40px;
  border-radius: 4px;
  background: #3468F6;
  color: #FFFFFF;
  line-height: 1;
}
.ins_labelCon1 .center_box .hh_left .ins_title .label_info a i {
  cursor: pointer;
  font-size: var(--font16);
}
.ins_labelCon1 .center_box .hh_left .ins_title .number {
  font-size: var(--font20);
}
.ins_labelCon1 .center_box .hh_left .item_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--num_35);
  margin-top: var(--num_50);
}
.ins_labelCon1 .center_box .hh_left .item_info .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--num_80);
  padding-bottom: var(--num_35);
  position: relative;
  z-index: 1;
}
.ins_labelCon1 .center_box .hh_left .item_info .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.05;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .images {
  width: 36.401%;
  flex-shrink: 0;
  height: 100%;
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .images .pb {
  padding-bottom: 56.4%;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .images .time {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  min-width: 120px;
  height: 40px;
  padding: 10px 5px;
  background: #00000080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  border-bottom-right-radius: var(--border-radius20);
}
.ins_labelCon1 .center_box .hh_left .item_info .item .word_box {
  width: 100%;
  height: auto;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .word_box .t1 {
  color: #000000;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .word_box .t2 {
  margin-top: 15px;
  color: #646a73;
  line-height: 1.625;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .word_box .label_tag {
  margin-top: 20px;
  color: #646a73;
  position: relative;
  z-index: 1;
  z-index: 2;
}
.ins_labelCon1 .center_box .hh_left .item_info .item .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_labelCon1 .center_box .hh_left .item_info .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_labelCon1 .center_box .hh_left .item_info .item:hover .word_box .t1 {
  color: #3468F6;
}
.ins_labelCon1 .center_box .hh_left .item_info .item:hover::after {
  opacity: 1;
  background: #3468F6;
}
.ins_labelCon1 .center_box .hh_right .list_one {
  width: 100%;
  height: auto;
  background: #ffffff99;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_labelCon1 .center_box .hh_right .list_one .word_box {
  width: 100%;
  height: auto;
  background: url(../images/y16.jpg) no-repeat top right / cover;
  padding: 35px 30px;
}
.ins_labelCon1 .center_box .hh_right .list_one .word_box .t1 {
  font-weight: 600;
  margin-top: 15px;
}
.ins_labelCon1 .center_box .hh_right .list_one .icon_box {
  width: 100%;
  height: auto;
  padding: 20px;
  padding-bottom: 50px;
}
.ins_labelCon1 .center_box .hh_right .list_one .icon_box .idx_morebg .more {
  width: 100%;
  min-height: clamp(2.75rem, calc(0.288rem + 3.08vw), 3.75rem);
  border-radius: var(--border-radius10);
}
.ins_labelCon1 .center_box .hh_right .list_one .icon_box .idx_morebg .more::after {
  border-radius: 2px;
}
.ins_labelCon1 .center_box .hh_right .list_one .icon_box .get_box {
  font-size: var(--font18);
  margin-top: 30px;
  text-align: center;
  color: #3468F6;
  cursor: pointer;
  display: block;
}
.ins_labelCon1 .center_box .hh_right .label_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_50);
}
.ins_labelCon1 .center_box .hh_right .label_box .t1 {
  font-weight: 600;
}
.ins_labelCon1 .center_box .hh_right .label_box .label_tag .tag {
  background: #FFFFFF;
  color: #1f2329;
}
.ins_labelCon1 .center_box .hh_right .item_info {
  width: 100%;
  height: auto;
  margin-top: var(--num_65);
}
.ins_labelCon1 .center_box .hh_right .item_info .title {
  font-size: var(--font24);
  font-weight: 600;
}
.ins_labelCon1 .center_box .hh_right .item_info .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: 20px;
  margin-top: 25px;
}
.ins_labelCon1 .center_box .hh_right .item_info .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 20px;
  line-height: 1.444;
  color: #1f2329;
  overflow: hidden;
}
.ins_labelCon1 .center_box .hh_right .item_info .item_box .item a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: var(--font18);
}
.ins_labelCon1 .center_box .hh_right .item_info .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: 1px;
  opacity: 0.05;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_labelCon1 .center_box .hh_right .item_info .item_box .item:hover a {
  color: #3468F6;
}
.ins_labelCon1 .center_box .hh_right .item_info .item_box .item:hover::after {
  background: #3468F6;
}
@media (max-width:990px) {
  .ins_labelCon1 .center_box .hh_right {
    display: none;
  }
}
@media (max-width:640px) {
  .ins_labelCon1 .center_box .hh_left .item_info .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_labelCon1 .center_box .hh_left .item_info .item .images {
    width: 100%;
  }
  .ins_labelCon1 .center_box .hh_left .ins_title {
    gap: 20px 10px;
  }
  .ins_labelCon1 .center_box .hh_left .ins_title .label_info {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 5px;
  }
  .ins_labelCon1 .center_box .hh_left .ins_title .label_info a {
    padding: 5px 10px;
    min-height: 34px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  公共标题 */
.ins_proyxhkCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_proyxhkCon1 .center_box {
  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;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ins_proyxhkCon1 .center_box .word_box {
  width: 36.805%;
}
.ins_proyxhkCon1 .center_box .word_box .t2 {
  margin-top: 16px;
  color: #646A73;
}
.ins_proyxhkCon1 .center_box .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
.ins_proyxhkCon1 .center_box .word_box .idx_bntbox a:last-child {
  background: #FFFFFF;
  color: var(--active_color);
  border: 1px solid var(--active_color);
}
@media (max-width:990px) {
  .ins_proyxhkCon1 .center_box .word_box {
    width: 100%;
  }
}
.ins_proyxhkCon1 .images_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_proyxhkCon1 .images_bg img {
  width: 100%;
  height: auto;
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  招商加盟 */
.ins_prozsjmCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/z16.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
.ins_prozsjmCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_prozsjmCon1 .center_box .word_box {
  width: 36.805%;
}
.ins_prozsjmCon1 .center_box .word_box .t2 {
  margin-top: 16px;
  color: #646A73;
}
.ins_prozsjmCon1 .center_box .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
@media (max-width:990px) {
  .ins_prozsjmCon1 .center_box .word_box {
    width: 100%;
  }
}
.ins_prozsjmCon1 .center_box .images {
  width: 60.27%;
}
.ins_prozsjmCon1 .center_box .images .pb {
  padding-bottom: 73.75%;
}
.ins_prozsjmCon1 .center_box .images .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_prozsjmCon1 .images_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_prozsjmCon1 .images_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_prozsjmCon1 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_prozsjmCon1 .center_box .word_box {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
  }
  .ins_prozsjmCon1 .center_box .images {
    width: 100%;
    height: auto;
  }
}
.ins_prozsjmCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--num_100);
  padding-bottom: var(--num_70);
}
.ins_prozsjmCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_prozsjmCon2 .center_box .ins_title {
  text-align: center;
}
.ins_prozsjmCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--num_30) var(--num_40);
  margin-top: var(--num_60);
}
.ins_prozsjmCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 9px 66px 0px rgba(0, 0, 0, 0.05);
  padding: var(--num_50);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: var(--border-radius20);
}
.ins_prozsjmCon2 .center_box .item_box .item .images_bg {
  position: absolute;
  z-index: 1;
  right: 0;
  width: 38%;
}
.ins_prozsjmCon2 .center_box .item_box .item .images_bg img {
  width: 100%;
  height: auto;
}
.ins_prozsjmCon2 .center_box .item_box .item .t1 {
  padding-left: var(--num_25);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.ins_prozsjmCon2 .center_box .item_box .item .t1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_prozsjmCon2 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  padding-left: var(--num_25);
  margin-top: var(--num_30);
  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: 12px;
  position: relative;
  z-index: 2;
}
.ins_prozsjmCon2 .center_box .item_box .item .list .t2 {
  color: #646A73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
.ins_prozsjmCon2 .center_box .item_box .item .list .t2 span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #D1D9F8;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
  transform: translateY(0.3em);
}
@media (max-width:990px) {
  .ins_prozsjmCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_prozsjmCon2 .center_box .item_box .item {
    padding: 20px;
  }
  .ins_prozsjmCon2 .center_box .item_box .item .t1 {
    padding-left: 0;
  }
  .ins_prozsjmCon2 .center_box .item_box .item .t1::after {
    transform: translateX(-10px);
    opacity: 0;
  }
  .ins_prozsjmCon2 .center_box .item_box .item .list {
    padding-left: 0;
  }
  .ins_prozsjmCon2 .center_box .item_box .item .list .t2 {
    gap: 8px;
  }
  .ins_prozsjmCon2 .center_box .item_box .item .list .t2 * {
    font-size: var(--font14);
  }
  .ins_prozsjmCon2 .center_box .item_box .item .list .t2 span {
    transform: translateY(0);
  }
}
.ins_prozsjmCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_130);
  padding-bottom: var(--num_70);
  overflow: hidden;
}
.ins_prozsjmCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_prozsjmCon4 .center_box .ins_title {
  text-align: center;
}
.ins_prozsjmCon4 .center_box .ins_title .t1 {
  color: #FFFFFF;
}
.ins_prozsjmCon4 .center_box .ins_title .t2 {
  color: #FFFFFF;
  margin-top: var(--num_25);
}
.ins_prozsjmCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
}
.ins_prozsjmCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #ebf0fb;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 37%;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  padding: var(--num_50) var(--num_40);
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
  position: relative;
  z-index: 2;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag .tag {
  color: var(--color);
  position: relative;
  z-index: 1;
  background: none;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag .tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag .tag span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag .tag:hover span {
  color: #FFFFFF !important;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .label_tag .tag:hover::after {
  opacity: 1;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .img_box {
  width: 100%;
  height: auto;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .img_box .pb {
  padding-bottom: 14.3%;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .img_box .pb .ab {
  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;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  line-height: 1.14;
  font-weight: 600;
  height: calc(2em * 1.14);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 12px;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .idx_more {
  margin-top: 40px;
}
.ins_prozsjmCon4 .center_box .swiper_box ul li .centerInfo .word_box .all_a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  关于我们-加入我们 */
.main_aboutjoinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/z17.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.main_aboutjoinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/z18.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100 auto;
}
.ins_aboutjoinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_90);
  padding-bottom: var(--num_65);
  overflow: hidden;
}
.ins_aboutjoinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon1 .center_box .ins_title {
  text-align: center;
}
.ins_aboutjoinCon1 .center_box .ins_title .t2 {
  margin-top: 15px;
}
.ins_aboutjoinCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: var(--num_80);
  border-radius: var(--border-radius20);
  position: relative;
  z-index: 1;
}
.ins_aboutjoinCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon1 .center_box .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon1 .center_box .swiper_box .idxPageShow {
  position: absolute;
  z-index: 10;
  bottom: 10px;
}
.ins_aboutjoinCon1 .center_box .swiper_box .idxPageShow span {
  background: #3468F6;
}
.ins_aboutjoinCon1 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: var(--num_100);
}
.ins_aboutjoinCon1 .center_box .content .icon {
  width: 27.083%;
}
.ins_aboutjoinCon1 .center_box .content .word {
  width: 72.917%;
  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: 15px;
}
.ins_aboutjoinCon1 .center_box .content .word p {
  line-height: 1.6;
}
@media (max-width:990px) {
  .ins_aboutjoinCon1 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutjoinCon1 .center_box .content .word,
  .ins_aboutjoinCon1 .center_box .content .icon {
    width: 100%;
  }
  .ins_aboutjoinCon1 .center_box .content .word {
    margin-top: 20px;
  }
}
@media (max-width:480px) {
  .ins_aboutjoinCon1 .center_box .ins_title .t1 {
    font-size: 20px;
  }
}
.ins_aboutjoinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_65);
  padding-bottom: var(--num_110);
  overflow: hidden;
}
.ins_aboutjoinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon2 .center_box .ins_title {
  text-align: center;
}
.ins_aboutjoinCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_75);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--num_30);
}
.ins_aboutjoinCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: var(--num_50) var(--num_40);
  border-radius: var(--border-radius20);
  overflow: hidden;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutjoinCon2 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_aboutjoinCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: var(--num_35);
}
.ins_aboutjoinCon2 .center_box .item_box .item .word .t2 {
  color: #646a73;
  line-height: 1.6;
  margin-top: var(--num_30);
}
.ins_aboutjoinCon2 .center_box .item_box .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.ins_aboutjoinCon2 .center_box .item_box .item:hover .icon {
  transform: rotate(360deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_aboutjoinCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutjoinCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 25px;
  }
  .ins_aboutjoinCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    padding: 15px 20px;
  }
  .ins_aboutjoinCon2 .center_box .item_box .item .icon {
    width: 50px;
  }
  .ins_aboutjoinCon2 .center_box .item_box .item .word {
    margin-top: 0;
    text-align: start;
  }
  .ins_aboutjoinCon2 .center_box .item_box .item .word .t2 {
    margin-top: 5px;
  }
}
.ins_aboutjoinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_120);
  overflow: hidden;
}
.ins_aboutjoinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon3 .center_box .ins_title {
  text-align: center;
}
.ins_aboutjoinCon3 .center_box .ins_title * {
  color: #FFFFFF;
}
.ins_aboutjoinCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: var(--num_70);
}
.ins_aboutjoinCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutjoinCon3 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 75%;
  border-radius: var(--border-radius20);
}
.ins_aboutjoinCon3 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutjoinCon3 .center_box .swiper_box ul li .centerInfo .icon {
  position: absolute;
  z-index: 6;
  bottom: 20px;
  width: 100%;
  height: auto;
  padding: 0 20px;
  left: 0;
  font-size: var(--font20);
  color: #FFFFFF;
  text-align: center;
}
.ins_aboutjoinCon3 .center_box .swiper_strip {
  margin-top: var(--num_90);
}
.ins_aboutjoinCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_80);
  padding-bottom: var(--num_70);
  overflow: hidden;
}
.ins_aboutjoinCon4 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutjoinCon4 .center_box .word_box {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-left: 7.63%;
  display: -webkit-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_aboutjoinCon4 .center_box .word_box .word {
  width: 29.16%;
}
.ins_aboutjoinCon4 .center_box .word_box .word .t2 {
  margin-top: var(--num_20);
  color: #646a73;
}
.ins_aboutjoinCon4 .center_box .word_box .word .t2 * {
  line-height: 1.6;
}
.ins_aboutjoinCon4 .center_box .word_box .item_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 63.21%;
  gap: var(--num_60);
}
.ins_aboutjoinCon4 .center_box .word_box .item_box .item {
  text-align: center;
  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: 20px;
}
.ins_aboutjoinCon4 .center_box .word_box .item_box .item .icon {
  width: clamp(6.25rem, calc(-2.981rem + 11.54vw), 10rem);
}
.ins_aboutjoinCon4 .center_box .images_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutjoinCon4 .center_box .images_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutjoinCon4 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutjoinCon4 .center_box .word_box {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_aboutjoinCon4 .center_box .word_box .word {
    width: 100%;
    height: auto;
  }
  .ins_aboutjoinCon4 .center_box .word_box .item_box {
    width: 100%;
    height: auto;
    margin-top: 20px;
    gap: 20px;
  }
  .ins_aboutjoinCon4 .center_box .images_bg {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
  }
  .ins_aboutjoinCon4 .center_box .images_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutjoinCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: var(--num_100);
  overflow: hidden;
}
.ins_aboutjoinCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutjoinCon5 .center_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: 9px;
}
.ins_aboutjoinCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: var(--border-radius20);
  padding: 0 var(--num_70);
}
.ins_aboutjoinCon5 .center_box .item_box .item .top {
  padding: 35px 0;
  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;
  cursor: pointer;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one {
  font-size: var(--font20);
  line-height: 1;
  color: #646a73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one i {
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one:nth-child(1) {
  width: 16.97%;
  font-weight: 600;
  color: #0F1420;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one:nth-child(2) {
  width: 33.56%;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one:nth-child(3) {
  width: 21.6%;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one:nth-child(4) {
  width: 22.37%;
}
.ins_aboutjoinCon5 .center_box .item_box .item .top .one:nth-child(5) {
  width: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: var(--num_65);
  border-top: 1px solid #f2f2f2;
  display: none;
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_40);
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow {
  width: 50%;
  height: auto;
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow .t1 {
  font-weight: 600;
  color: #0F1420;
  padding-left: 7px;
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow .list {
  width: 100%;
  height: auto;
  margin-top: var(--num_25);
  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: 8px;
}
.ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow .list .one {
  font-size: var(--font16);
  color: #000000;
}
.ins_aboutjoinCon5 .center_box .item_box .item.active .top .one:nth-child(5) {
  color: #3468F6;
}
.ins_aboutjoinCon5 .center_box .item_box .item.active .top .one i {
  transform: rotate(180deg);
  color: #3468F6;
}
@media (max-width:990px) {
  .ins_aboutjoinCon5 .center_box .item_box .item {
    padding: 0 20px;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 5px;
    padding: 20px 0;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .top .one {
    width: auto !important;
    height: auto;
    line-height: 1.5 !important;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .top .one:first-child {
    width: 100% !important;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .top .one:last-child {
    display: none;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow {
    width: 100%;
    height: auto;
  }
  .ins_aboutjoinCon5 .center_box .item_box .item .bot .tow_box .tow .list {
    gap: 0;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  关于我们-优质服务 */
#kefu {
  position: relative;
  z-index: 100;
}
/* 弹窗 */
.popup_img {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: #000000b0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images {
  max-width: 80%;
  min-width: 50%;
  max-height: 80vh;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.popup_img .images .img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.popup_img .images .img img {
  width: auto;
  height: auto;
}
.popup_img .images .icon {
  width: 50px;
  height: 50px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images .icon i {
  width: 0;
  height: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images .icon i::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.popup_img .images .icon i::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.popup_img .images .icon:hover {
  background: #3468F6;
}
.popup_img .images .icon:hover i {
  transform: rotate(360deg);
}
.popup_img .images .icon:hover i::after {
  background: #FFF;
}
.popup_img .images .icon:hover i::before {
  background: #FFF;
}
.popup_img.active {
  opacity: 1;
  visibility: visible;
}
.popup_QRcode {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: #000000b0;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
}
.popup_QRcode .content {
  width: 225px;
  height: auto;
  padding: var(--num_40);
  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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--border-radius20);
  background: #ffffffe3;
}
.popup_QRcode .content::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  width: 160%;
  height: 175px;
  background: linear-gradient(214deg, #C4DAF6 0%, #FFFFFF 50%, #CCDBF4 100%);
  border-radius: 0px 0px 50% 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_QRcode .content .title {
  text-align: center;
}
.popup_QRcode .content .images {
  margin-top: 20px;
  padding: 8px;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}
.popup_QRcode .content .images img {
  width: 100%;
  height: auto;
}
.popup_QRcode .content .subtitle {
  margin-top: var(--num_20);
  font-size: var(--font16);
  color: #646A73;
}
.popup_QRcode .icon {
  margin-top: var(--num_30);
  color: #FFFFFF;
  cursor: pointer;
}
.popup_QRcode .icon i {
  font-size: var(--font22);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_QRcode .icon:hover i {
  opacity: 0.8;
}
.popup_QRcode.active {
  opacity: 1;
  visibility: visible;
}
.popup_getCase {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: #000000b0;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
}
.popup_getCase .content {
  width: 593px;
  max-width: 100%;
  height: auto;
  padding: var(--num_30) var(--num_40);
  position: relative;
  z-index: 1;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--border-radius10);
  background: linear-gradient(180deg, #E6EDFE 0%, #FFFFFF 100%);
}
.popup_getCase .content .icon_box {
  color: #646A73;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}
.popup_getCase .content .icon_box i {
  font-size: var(--font22);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_getCase .content .icon_box:hover i {
  color: var(--active_color);
}
.popup_getCase .content .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #D1D9F8;
  font-weight: 600;
  font-size: 20px;
}
.popup_getCase .content .left_box {
  width: 57%;
}
.popup_getCase .content .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 20px;
  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: var(--num_30);
}
.popup_getCase .content .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
}
.popup_getCase .content .left_box .list .one .icon {
  flex-shrink: 0;
}
.popup_getCase .content .left_box .list .one .word {
  width: 100%;
  height: auto;
}
.popup_getCase .content .left_box .list .one .word .t1 {
  font-size: 16px;
  font-weight: 500;
}
.popup_getCase .content .left_box .list .one .word .t2 {
  margin-top: 12px;
  font-size: 12px;
}
.popup_getCase .content .right_box {
  width: 33%;
}
.popup_getCase .content .right_box .images {
  margin-top: 20px;
  padding: 8px;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}
.popup_getCase .content .right_box .images img {
  width: 100%;
  height: auto;
}
.popup_getCase .content .right_box .subtitle {
  margin-top: var(--num_20);
  font-size: var(--font16);
  color: #646A73;
}
.popup_getCase .content.active {
  display: flex !important;
}
.popup_getCase .content_box {
  width: 716px;
  max-width: 100%;
  height: auto;
  padding: var(--num_30) var(--num_40);
  position: relative;
  z-index: 1;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--border-radius10);
  background: linear-gradient(180deg, #E6EDFE 0%, #FFFFFF 100%);
}
.popup_getCase .content_box .icon_box {
  color: #646A73;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}
.popup_getCase .content_box .icon_box i {
  font-size: var(--font22);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_getCase .content_box .icon_box:hover i {
  color: var(--active_color);
}
.popup_getCase .content_box .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #D1D9F8;
  font-weight: 600;
  font-size: 20px;
}
.popup_getCase .content_box .left_box {
  width: 46%;
}
.popup_getCase .content_box .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 20px;
  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: var(--num_25);
}
.popup_getCase .content_box .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #D1D9F8;
  padding-bottom: var(--num_20);
}
.popup_getCase .content_box .left_box .list .one .icon {
  flex-shrink: 0;
}
.popup_getCase .content_box .left_box .list .one .word {
  width: 100%;
  height: auto;
}
.popup_getCase .content_box .left_box .list .one .word .t1 {
  font-size: 16px;
  font-weight: 500;
}
.popup_getCase .content_box .left_box .list .one .word .t2 {
  margin-top: 12px;
  font-size: 12px;
}
.popup_getCase .content_box .left_box .list .one:last-child {
  border: 0;
}
.popup_getCase .content_box .right_box {
  width: 46%;
}
.popup_getCase .content_box .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 20px;
  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: var(--num_25);
}
.popup_getCase .content_box .right_box .list .one {
  width: 100%;
  height: auto;
}
.popup_getCase .content_box .right_box .list .one .word {
  font-size: 12px;
  color: #1F2329;
  font-weight: 500;
}
.popup_getCase .content_box .right_box .list .one .word span {
  color: var(--active_color);
}
.popup_getCase .content_box .right_box .list .one .input {
  margin-top: 10px;
  width: 100%;
  height: auto;
}
.popup_getCase .content_box .right_box .list .one .input input {
  height: 38px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  width: 100%;
  font-size: 12px;
  padding: 0 12px;
  color: var(--text_color);
  --color: #CFCFCF;
}
.popup_getCase .content_box .right_box .list .one .input input::-webkit-input-placeholder,
.popup_getCase .content_box .right_box .list .one .input input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCase .content_box .right_box .list .one .input input:-moz-placeholder,
.popup_getCase .content_box .right_box .list .one .input input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCase .content_box .right_box .list .one .input input::-moz-placeholder,
.popup_getCase .content_box .right_box .list .one .input input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCase .content_box .right_box .list .one .input input:-ms-input-placeholder,
.popup_getCase .content_box .right_box .list .one .input input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCase .content_box .right_box .list .one .icon {
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.popup_getCase .content_box .right_box .list .one .icon .layui-form-radio > * {
  font-size: 12px;
}
.popup_getCase .content_box .right_box .list .one .icon .layui-form-radio {
  margin: auto;
}
.popup_getCase .content_box .right_box button {
  width: 100%;
  height: 38px;
  background: var(--active_color);
  color: #FFFFFF;
  font-size: 12px;
  border: 0;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
}
.popup_getCase .content_box.active {
  display: flex !important;
}
.popup_getCase.active {
  opacity: 1;
  visibility: visible;
}
.popup_getCaseTow {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: #000000b0;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
}
.popup_getCaseTow .content {
  width: 358px;
  max-width: 100%;
  height: auto;
  padding: var(--num_30) var(--num_40);
  position: relative;
  z-index: 1;
  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;
  border-radius: var(--border-radius10);
  background: linear-gradient(180deg, #E6EDFE 0%, #FFFFFF 100%);
}
.popup_getCaseTow .content .icon_box {
  color: #646A73;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}
.popup_getCaseTow .content .icon_box i {
  font-size: var(--font22);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_getCaseTow .content .icon_box:hover i {
  color: var(--active_color);
}
.popup_getCaseTow .content .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #D1D9F8;
  font-weight: 600;
  font-size: 20px;
}
.popup_getCaseTow .content .right_box {
  width: 100%;
}
.popup_getCaseTow .content .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 20px;
  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: var(--num_25);
}
.popup_getCaseTow .content .right_box .list .one {
  width: 100%;
  height: auto;
}
.popup_getCaseTow .content .right_box .list .one .word {
  font-size: 12px;
  color: #1F2329;
  font-weight: 500;
}
.popup_getCaseTow .content .right_box .list .one .word span {
  color: var(--active_color);
}
.popup_getCaseTow .content .right_box .list .one .input {
  margin-top: 10px;
  width: 100%;
  height: auto;
}
.popup_getCaseTow .content .right_box .list .one .input input {
  height: 38px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  width: 100%;
  font-size: 12px;
  padding: 0 12px;
  color: var(--text_color);
  --color: #CFCFCF;
}
.popup_getCaseTow .content .right_box .list .one .input input::-webkit-input-placeholder,
.popup_getCaseTow .content .right_box .list .one .input input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCaseTow .content .right_box .list .one .input input:-moz-placeholder,
.popup_getCaseTow .content .right_box .list .one .input input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCaseTow .content .right_box .list .one .input input::-moz-placeholder,
.popup_getCaseTow .content .right_box .list .one .input input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCaseTow .content .right_box .list .one .input input:-ms-input-placeholder,
.popup_getCaseTow .content .right_box .list .one .input input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.popup_getCaseTow .content .right_box .list .one .icon {
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.popup_getCaseTow .content .right_box .list .one .icon .layui-form-radio > * {
  font-size: 12px;
}
.popup_getCaseTow .content .right_box .list .one .icon .layui-form-radio {
  margin: auto;
}
.popup_getCaseTow .content .right_box button {
  width: 100%;
  height: 38px;
  background: var(--active_color);
  color: #FFFFFF;
  font-size: 12px;
  border: 0;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  border: 1px solid var(--active_color);
}
.popup_getCaseTow.active {
  opacity: 1;
  visibility: visible;
}
.cooperate_box {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  background: #00000080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
}
.cooperate_box .cooperate {
  width: 100%;
  height: auto;
  max-width: 1064px;
  max-height: 80vh;
  overflow: auto;
  background: #FFFFFF;
  border-radius: var(--border-radius20);
  padding: var(--num_40) var(--num_30);
  position: relative;
  z-index: 1;
}
.cooperate_box .cooperate .close {
  position: absolute;
  top: var(--num_20);
  right: var(--num_20);
  cursor: pointer;
}
.cooperate_box .cooperate .close i {
  font-size: var(--font20);
}
.cooperate_box .cooperate .close:hover {
  color: #3468F6;
}
.cooperate_box .cooperate .t1 {
  text-align: center;
}
.cooperate_box .cooperate .item_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
}
.cooperate_box .cooperate .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: var(--num_15) var(--num_20);
  border-radius: var(--border-radius10);
}
.cooperate_box .cooperate .item_box .item .word,
.cooperate_box .cooperate .item_box .item .icon {
  width: 50%;
  font-size: var(--font16);
}
.cooperate_box .cooperate .item_box .item .word *,
.cooperate_box .cooperate .item_box .item .icon * {
  font-size: var(--font16);
}
.cooperate_box .cooperate .item_box .item .word {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}
.cooperate_box .cooperate .item_box .item .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 20px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cooperate_box .cooperate .item_box .item .icon {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
}
.cooperate_box .cooperate .item_box .item .icon .one {
  text-align: center;
}
.cooperate_box .cooperate .item_box .item .icon .one:last-child {
  cursor: pointer;
}
.cooperate_box .cooperate .item_box .item .icon .one:last-child:hover {
  color: #3468F6;
}
.cooperate_box .cooperate .item_box .item:first-child {
  width: 100%;
  height: auto;
  height: 67px;
  background: #3468F6;
}
.cooperate_box .cooperate .item_box .item:first-child * {
  color: #FFFFFF;
}
.cooperate_box .cooperate .item_box .item:first-child .word {
  padding-left: 0px;
}
.cooperate_box .cooperate .item_box .item:first-child .icon .one:last-child {
  color: #FFFFFF !important;
  cursor: unset;
}
.cooperate_box.active {
  opacity: 1;
  visibility: visible;
}
.main_aboutyzfwCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/z19.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.ins_aboutyzfwCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutyzfwCon1 .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutyzfwCon1 .center_box .word_box {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon1 .center_box .word_box .t1 {
  text-align: center;
}
.ins_aboutyzfwCon1 .images_bg {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon1 .images_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutyzfwCon1 .center_box .word_box .t1 * {
    font-size: 21px;
  }
}
.ins_aboutyzfwCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: var(--num_70);
}
.ins_aboutyzfwCon2 .item_nav {
  width: auto;
  height: 100%;
  position: sticky;
  z-index: 10;
  top: calc(var(--header-height) + 20px + var(--g_bnum));
  left: var(--num_65);
  float: left;
  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: var(--num_35);
}
.ins_aboutyzfwCon2 .item_nav .item {
  font-size: var(--font20);
  color: #646a73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 13px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}
.ins_aboutyzfwCon2 .item_nav .item i {
  width: clamp(0.313rem, calc(-0.149rem + 0.58vw), 0.5rem);
  height: clamp(0.313rem, calc(-0.149rem + 0.58vw), 0.5rem);
  border-radius: 100px;
  background: #646a73;
  display: block;
}
.ins_aboutyzfwCon2 .item_nav .item.active {
  color: #3468F6;
}
.ins_aboutyzfwCon2 .item_nav .item.active i {
  background: #3468F6;
}
.ins_aboutyzfwCon2 .content {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box .idx_title {
  text-align: center;
  color: #3468F6;
}
.ins_aboutyzfwCon2 .content .center_box .idx_title .t2 {
  color: #646a73;
  margin-top: 10px;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .ins_title {
  width: 100%;
  height: auto;
  text-align: center;
  max-width: 830px;
  margin: auto;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .ins_title .t1 * {
  line-height: 1.5;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .ins_title .t2 {
  margin-top: var(--num_20);
  color: #646a73;
  line-height: 1.5;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .images {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .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: var(--num_80);
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--num_40);
  margin-top: var(--num_60);
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .list .one {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .list .one .image {
  width: 100%;
  height: auto;
  background: #f5fbfe;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .list .one .image .pb {
  padding-bottom: 66.667%;
  mix-blend-mode: multiply;
}
.ins_aboutyzfwCon2 .content .center_box .infoCon2 .list .one .image .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_aboutyzfwCon2 .content .center_box .infoCon2 .list .one .word {
  font-size: var(--font20);
  color: #646a73;
  padding: 0 var(--num_55);
  margin-top: var(--num_50);
  text-align: center;
  line-height: 1.65;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 {
  width: 100%;
  height: auto;
  background-image: url(../images/z20.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: var(--border-radius20);
  overflow: hidden;
  padding: 0 var(--num_100);
  padding-top: var(--num_70);
  padding-bottom: var(--num_120);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 {
  width: 100%;
  height: auto;
  margin-top: var(--num_70);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .ins_title {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .ins_title .t2 {
  margin-top: var(--num_20);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: var(--num_60);
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box .item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: var(--font20);
  cursor: pointer;
  font-weight: 600;
  color: #FFFFFF;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box .item:first-child {
  color: #3468F6;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .images_bg {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .images_bg img {
  width: 100%;
  height: 100%;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 30px;
  background: #ffffff99;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: var(--num_50);
  padding-right: var(--num_30);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .word_box {
  width: 37.0689%;
  border-right: 1px solid #e7ebf1;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .word_box .t1 {
  color: #3468F6;
  font-weight: 600;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .word_box .t2 {
  color: #646a73;
  margin-top: var(--num_20);
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box {
  width: 56.034%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .icon {
  flex-shrink: 0;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .word {
  background: #e6effe;
  padding: var(--num_30) var(--num_45);
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  border-top-left-radius: 0;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .word .t1 {
  font-size: var(--font16);
  color: #646a73;
  line-height: 1.5;
  max-width: 390px;
}
.ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .word .idx_more {
  margin-top: 20px;
}
.ins_aboutyzfwCon2 .content .center_box .content_info2 {
  width: 100%;
  height: auto;
  margin-top: var(--num_70);
  background-image: url(../images/z21.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: var(--border-radius20);
  overflow: hidden;
  padding: var(--num_80) var(--num_100);
}
.ins_aboutyzfwCon2 .content .center_box .content_info2 .infoCon2 {
  margin-top: var(--num_100);
}
@media (max-width:990px) {
  .ins_aboutyzfwCon2 .item_nav {
    display: none;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1,
  .ins_aboutyzfwCon2 .content .center_box .content_info2 {
    padding: 40px 20px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info {
    border-radius: 0;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box {
    position: relative;
    z-index: 1;
    gap: 10px;
    overflow: auto;
    padding-bottom: 15px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box .item {
    width: max-content;
    height: auto;
    min-height: 35px;
    background: #FFFFFF;
    color: #3468F6;
    padding: 0px 10px;
    min-width: 100px;
    border-radius: 4px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .item_box .item.active {
    background: #3468F6 !important;
    color: #FFFFFF;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .item_info .images_bg {
    display: none;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .word_box,
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box {
    gap: 10px;
    margin-top: 30px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .icon {
    width: 50px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon2 .list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info2 .infoCon2 {
    margin-top: 30px;
  }
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .word_box .t2,
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .word .t1,
  .ins_aboutyzfwCon2 .content .center_box .content_info1 .infoCon1 .swiper_box ul li .centerInfo .icon_box .word .idx_more * {
    font-size: var(--font14);
  }
}
.ins_aboutyzfwCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_70);
  padding-bottom: var(--num_150);
  overflow: hidden;
}
.ins_aboutyzfwCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon3 .center_box .ins_title {
  text-align: center;
}
.ins_aboutyzfwCon3 .center_box .ins_title .t1 {
  color: #3468F6;
}
.ins_aboutyzfwCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_80);
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 75%;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo .icon {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo .icon::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #3468F6;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo .icon img {
  position: relative;
  z-index: 4;
}
.ins_aboutyzfwCon3 .center_box .swiper_box ul li .centerInfo:hover .icon {
  opacity: 1;
}
.ins_aboutyzfwCon3 .center_box .idx_progressbar {
  width: 100%;
  height: 4px;
  margin-top: var(--num_100);
  background: #3166f61a;
  border-radius: 100px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.ins_aboutyzfwCon3 .center_box .idx_progressbar .swiper-pagination-progressbar-fill {
  background: #3468F6;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_aboutyzfwCon3 .center_box .swiper_box {
    margin-top: 30px;
  }
  .ins_aboutyzfwCon3 .center_box .idx_progressbar {
    margin-top: 20px;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  公共标题 */
.main_productGrCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/z25.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_productgrCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_110);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_productgrCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productgrCon1 .center_box .ins_title .font42 {
  text-align: center;
}
.ins_productgrCon1 .center_box .ins_title .font42 * {
  line-height: 1.2;
}
.ins_productgrCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  margin-top: var(--num_90);
}
.ins_productgrCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  flex: 1;
  background: #FFFFFF80;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius20);
  padding: var(--num_40);
  position: relative;
  z-index: 1;
}
.ins_productgrCon1 .center_box .item_box .item .all_a {
  display: none;
}
.ins_productgrCon1 .center_box .item_box .item .t1 {
  font-size: var(--font40);
  font-weight: 600;
}
.ins_productgrCon1 .center_box .item_box .item .t2 {
  font-size: var(--font20);
  margin-top: 10px;
  color: #646A73;
  line-height: 1.6;
  height: calc(2em * 1.6);
  overflow: hidden;
}
.ins_productgrCon1 .center_box .item_box .item .t3 {
  font-size: var(--font24);
  margin-top: var(--num_30);
  font-weight: 500;
}
.ins_productgrCon1 .center_box .item_box .item .t3 span {
  font-size: var(--font40);
  font-weight: 600;
}
.ins_productgrCon1 .center_box .item_box .item .idx_morebg {
  margin-top: 18px;
}
.ins_productgrCon1 .center_box .item_box .item .idx_morebg i {
  display: none;
}
.ins_productgrCon1 .center_box .item_box .item .idx_morebg .more {
  height: clamp(2.75rem, calc( -1.25rem + 5vw), 4.375rem);
  width: 100%;
  font-size: var(--font20);
}
.ins_productgrCon1 .center_box .item_box .item .t4 {
  font-size: var(--font24);
  margin-top: 52px;
  font-weight: 500;
  line-height: 1.1666;
  height: calc(2em * 1.1666);
  overflow: hidden;
}
.ins_productgrCon1 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 32px;
  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: 24px;
}
.ins_productgrCon1 .center_box .item_box .item .list .one {
  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: 20px;
}
.ins_productgrCon1 .center_box .item_box .item .list .one .icon {
  font-size: var(--font16);
  display: -webkit-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: 10px;
  font-weight: 500;
}
.ins_productgrCon1 .center_box .item_box .item .list .one .word {
  font-size: var(--font14);
  color: #1F2329;
  opacity: 0.3;
  font-weight: 500;
}
@media (max-width:990px) {
  .ins_productgrCon1 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  .ins_productgrCon1 .center_box .item_box .item {
    position: relative;
    z-index: 1;
  }
  .ins_productgrCon1 .center_box .item_box .item .all_a {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block !important;
  }
  .ins_productgrCon1 .center_box .item_box .item .t4,
  .ins_productgrCon1 .center_box .item_box .item .list {
    display: none !important;
  }
  .ins_productgrCon1 .center_box .item_box .item .t3 span {
    color: #3468F6;
  }
  .ins_productgrCon1 .center_box .item_box .item .idx_morebg {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    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;
    margin-top: 0;
  }
  .ins_productgrCon1 .center_box .item_box .item .idx_morebg i {
    display: block !important;
    font-size: 20px;
    opacity: 0.5;
  }
  .ins_productgrCon1 .center_box .item_box .item .idx_morebg .more {
    display: none !important;
  }
}
.ins_productgrCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: var(--num_50);
}
.ins_productgrCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productgrCon2 .center_box .ins_title {
  text-align: center;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}
.ins_productgrCon2 .center_box .ins_title .t1 img {
  transform: rotate(180deg);
}
.ins_productgrCon2 .center_box .ins_title .t2 {
  display: none;
}
.ins_productgrCon2 .center_box .ins_title.active .t1 {
  display: none;
}
.ins_productgrCon2 .center_box .ins_title.active .t2 {
  display: block;
}
.ins_productgrCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: var(--num_80);
}
.ins_productgrCon2 .center_box .content .item_box {
  width: 100%;
  height: auto;
}
.ins_productgrCon2 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productgrCon2 .center_box .content .item_box .item .one {
  width: 100%;
  height: auto;
  min-height: clamp(2.5rem, calc(0.654rem + 2.31vw), 3.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #FFFFFFB3;
  position: relative;
  z-index: 1;
  padding: 0 24px;
  font-size: var(--font14);
  color: #646A73;
}
.ins_productgrCon2 .center_box .content .item_box .item .one span {
  font-size: var(--font18);
  font-weight: 600;
  color: #1F2329;
}
.ins_productgrCon2 .center_box .content .item_box .item .one .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.ins_productgrCon2 .center_box .content .item_box .item .one .icon .word {
  position: absolute;
  width: max-content;
  z-index: 5;
  left: calc(100% + 20px);
  background: #FFFFFF;
  padding: 16px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: var(--font14);
  color: #646A73;
  font-weight: normal !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 70vw;
}
.ins_productgrCon2 .center_box .content .item_box .item .one .icon:hover .word {
  opacity: 1;
  visibility: visible;
}
.ins_productgrCon2 .center_box .content .item_box .item .one:first-child {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  font-weight: 600;
  z-index: 5;
}
.ins_productgrCon2 .center_box .content .item_box .item.borblue .one {
  border-bottom: 2px solid #D1D9F8;
}
.ins_productgrCon2 .center_box .content .item_box .item:first-child .one {
  min-height: clamp(3.438rem, calc(-1.178rem + 5.77vw), 5.313rem);
  background: #3468F6;
  color: #FFFFFF;
  font-size: var(--font18);
}
.ins_productgrCon2 .center_box .content .item_box .item:first-child .one:first-child {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productgrCon2 .center_box .content .item_box .item:hover {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_productgrCon2 .center_box .content .item_box .one {
    font-size: 12px !important;
    padding: 10px !important;
    min-height: 40px;
  }
  .ins_productgrCon2 .center_box .content .item_box .one .ic_on img {
    width: 10px;
  }
  .ins_productgrCon2 .center_box .content .item_box .icon {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 5px !important;
  }
  .ins_productgrCon2 .center_box .content .item_box .icon img {
    width: 15px;
  }
}
.ins_productgrCon3 {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 98;
  top: calc(var(--header-height) + var(--g_bnum));
  padding: 30px 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}
.ins_productgrCon3 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ins_productgrCon3 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.ins_productgrCon3 .item_box .item .t1 {
  font-size: var(--font22);
  font-weight: 600;
}
.ins_productgrCon3 .item_box .item .t2 {
  font-size: 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_productgrCon3 .item_box .item .t2 span {
  font-size: var(--font18);
  font-weight: 600;
}
.ins_productgrCon3 .item_box .item .idx_bntbox,
.ins_productgrCon3 .item_box .item .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productgrCon3.active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  .ins_productgrCon3 {
    padding: 10px 0 !important;
  }
  .ins_productgrCon3 .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ins_productgrCon3 .item_box .item:first-child {
    display: none;
  }
  .ins_productgrCon3 .item_box .item .idx_bntbox a {
    padding: 8px 12px !important;
    height: auto;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  公共标题 */
.main_aboutcontantCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../img/bg1.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_aboutcontantCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_100);
  padding-bottom: var(--num_65);
  overflow: hidden;
}
.ins_aboutcontantCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutcontantCon1 .center_box .ins_title {
  text-align: center;
}
.ins_aboutcontantCon1 .center_box .ins_title .t2 {
  margin-top: 20px;
}
.ins_aboutcontantCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--num_30);
  margin-top: var(--num_80);
}
.ins_aboutcontantCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: url(../img/bg2.jpg) no-repeat top center / cover;
  padding: var(--num_50);
  text-align: center;
  border-radius: var(--num_40);
  overflow: hidden;
}
.ins_aboutcontantCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_aboutcontantCon1 .center_box .item_box .item .word .t1 {
  line-height: 1;
  font-weight: 600;
}
.ins_aboutcontantCon1 .center_box .item_box .item .word .t2 {
  margin-top: var(--num_20);
  line-height: 1;
  color: #646a73;
}
.ins_aboutcontantCon1 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: var(--num_30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutcontantCon1 .center_box .item_box .item .icon .img {
  border-radius: var(--border-radius20);
  background: #FFFFFF;
  box-shadow: 0px 10px 30px 0px rgba(43, 64, 112, 0.2);
  overflow: hidden;
  width: clamp(7.5rem, calc(-3.269rem + 13.46vw), 11.875rem);
}
.ins_aboutcontantCon1 .center_box .item_box .item .icon .t1 {
  margin-top: var(--num_45);
  font-size: var(--font18);
  color: #646a73;
  line-height: 1;
}
.ins_aboutcontantCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_50);
  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: var(--num_30);
}
.ins_aboutcontantCon1 .center_box .list_box .item {
  width: 15%;
  height: auto;
  height: clamp(19.375rem, calc(2.452rem + 21.15vw), 26.25rem);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url(../img/bg3.jpg) no-repeat top right / cover;
  border-radius: var(--border-radius20);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutcontantCon1 .center_box .list_box .item .top_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--num_50) var(--num_30);
}
.ins_aboutcontantCon1 .center_box .list_box .item .top_box .icon {
  width: clamp(5rem, calc(-1.923rem + 8.65vw), 7.813rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon1 .center_box .list_box .item .top_box .word {
  font-size: var(--font24);
  font-weight: 600;
  margin-top: var(--num_130);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box {
  width: 100%;
  height: 100%;
  padding: var(--num_80);
  -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;
  overflow: hidden;
  gap: 5%;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word {
  width: auto;
  height: auto;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .t1,
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .t2,
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .idx_more {
  transform: translateX(-100px);
  opacity: 0;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .t1 {
  line-height: 1;
  font-weight: 600;
  font-size: var(--font42);
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .t2 {
  margin-top: var(--num_20);
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .t2 * {
  line-height: 1.65;
  color: #646a73;
  font-size: var(--font20);
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word .idx_more {
  margin-top: var(--num_40);
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .icon {
  opacity: 0;
  width: 33.3%;
  height: auto;
  transform: translateX(100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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-shrink: 0;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .icon .img {
  position: absolute;
  width: 47.52%;
  height: auto;
}
.ins_aboutcontantCon1 .center_box .list_box .item .bot_box .icon .img_bg {
  width: auto;
  height: auto;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active {
  width: 66%;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active .top_box .icon {
  transform: translateX(100px);
  opacity: 0;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active .top_box .word {
  transform: translateX(100px);
  opacity: 0;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active .bot_box {
  display: flex !important;
  opacity: 1;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active .bot_box .t1,
.ins_aboutcontantCon1 .center_box .list_box .item.active .bot_box .t2,
.ins_aboutcontantCon1 .center_box .list_box .item.active .bot_box .idx_more {
  transform: translateX(0px);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.ins_aboutcontantCon1 .center_box .list_box .item.active .bot_box .icon {
  transform: translateX(0px);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
@media (max-width:990px) {
  .ins_aboutcontantCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_aboutcontantCon1 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 15px;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item {
    width: 100% !important;
    height: auto;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item .top_box {
    display: none !important;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box {
    display: flex !important;
    opacity: 1;
    flex-direction: column;
    padding: 20px !important;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box .t1,
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box .t2,
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box .idx_more {
    transform: translateX(0px) !important;
    opacity: 1 !important;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box .icon {
    transform: translateX(0px) !important;
    opacity: 1 !important;
  }
  .ins_aboutcontantCon1 .center_box .list_box .item .bot_box .word {
    width: 100%;
    height: auto;
  }
}
.ins_aboutcontantCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_65);
  padding-bottom: var(--num_130);
  overflow: hidden;
}
.ins_aboutcontantCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutcontantCon2 .center_box .ins_title {
  text-align: center;
}
.ins_aboutcontantCon2 .center_box .item_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--num_70);
  gap: var(--num_30);
}
.ins_aboutcontantCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFFCC;
  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;
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon2 .center_box .item_box .item .icon {
  width: 43.72%;
  height: auto;
}
.ins_aboutcontantCon2 .center_box .item_box .item .icon .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_aboutcontantCon2 .center_box .item_box .item .icon .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon2 .center_box .item_box .item .word {
  width: 58.28%;
  padding: var(--num_40) var(--num_60);
  padding-right: var(--num_65);
}
.ins_aboutcontantCon2 .center_box .item_box .item .word .t1 {
  font-size: var(--font32);
  font-weight: 600;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon2 .center_box .item_box .item .word .t1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: #3468F6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutcontantCon2 .center_box .item_box .item .word .t2 {
  font-size: var(--font16);
  color: #646a73;
  margin-top: var(--num_25);
}
.ins_aboutcontantCon2 .center_box .item_box .item:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.ins_aboutcontantCon2 .center_box .item_box .item:hover .icon .pb .ab img {
  transform: scale(1.05);
}
.ins_aboutcontantCon2 .center_box .item_box .item:hover .word .t1 {
  color: #3468F6;
}
@media (max-width:990px) {
  .ins_aboutcontantCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  关于我们 */
.main_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/z26.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.main_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-image: url(../images/z27.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  max-width: 1920px;
  margin: auto;
}
@media (max-width:990px) {
  .main_aboutCon2 {
    background-size: cover;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_100);
  padding-bottom: var(--num_75);
  overflow: hidden;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .ins_title {
  text-align: center;
}
.ins_aboutCon1 .center_box .images {
  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;
  margin-top: var(--num_80);
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutCon1 .center_box .images > img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .images .icon {
  --width: clamp(3.75rem, calc(-1.019rem + 5.96vw), 5.688rem);
  width: var(--width);
  height: var(--width);
  background: #ffffffe6;
  position: absolute;
  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;
  border-radius: 50%;
  cursor: pointer;
}
.ins_aboutCon1 .center_box .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  margin-top: var(--num_100);
}
.ins_aboutCon1 .center_box .word_box .word_d {
  width: 35.41666667%;
  height: auto;
}
.ins_aboutCon1 .center_box .word_box .word_s {
  width: 63.05555556%;
  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: 10px;
  line-height: 1.6;
}
.ins_aboutCon1 .center_box .word_box .word_s * {
  line-height: 1.6;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box .word_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_aboutCon1 .center_box .word_box .word_d,
  .ins_aboutCon1 .center_box .word_box .word_s {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_75);
  padding-bottom: var(--num_80);
  overflow: hidden;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: var(--num_70) var(--num_55);
  background: url(../images/back/x13.png) no-repeat center center / cover;
  gap: var(--num_150);
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid #FFFFFF;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back/x12.png) no-repeat top left / cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word * {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: var(--num_30);
  color: #646a73;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .t2 * {
  line-height: 1.65;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .icon {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover::after {
  opacity: 1;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover .word * {
  color: #FFFFFF;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover .icon img {
  filter: brightness(0) invert(1);
}
.ins_aboutCo3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_80);
  padding-bottom: var(--num_170);
  overflow: hidden;
}
.ins_aboutCo3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCo3 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCo3 .center_box .content .swiper_item {
  width: 40.27777778%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li {
  width: 100%;
  height: auto;
  pointer-events: inherit !important;
  cursor: pointer;
  text-align: center;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper_sl .centerInfo {
  transform: translateY(-200%);
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-next,
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-prev {
  opacity: 1 !important;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-prev .centerInfo {
  transform: translateY(calc(-100% + 10px));
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-next .centerInfo {
  transform: translateY(calc(100% - 10px));
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li .centerInfo {
  font-size: clamp(7.5rem, calc(-5.115rem + 15.77vw), 12.625rem);
  line-height: 1;
  font-weight: 600;
  transform: translateY(200%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: inherit;
  position: relative;
  z-index: 1;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li .centerInfo .icon {
  opacity: 0.2;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li .centerInfo .img {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  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;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li .centerInfo .img .one {
  width: auto;
  height: 100%;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li .centerInfo .img .tow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-active .centerInfo {
  transform: translateY(0) !important;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-active .centerInfo .icon {
  opacity: 1;
  color: #3468F6;
}
.ins_aboutCo3 .center_box .content .swiper_item ul li.swiper-slide-active .centerInfo .img .tow {
  opacity: 1;
}
.ins_aboutCo3 .center_box .content .swiper_info {
  width: 48.61111111%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_title {
  font-size: var(--font42);
  font-weight: 600;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box {
  width: 100%;
  overflow: hidden;
  margin-top: var(--num_45);
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .title {
  font-size: var(--font42);
  font-weight: 600;
  padding-bottom: 20px;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .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: var(--num_25);
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_30);
  cursor: pointer;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item .icon {
  min-width: 120px;
  flex-shrink: 0;
  font-size: var(--font20);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item .word {
  font-size: var(--font20);
  color: #646a73;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item.active .icon,
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item.active .word {
  color: #3468F6;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img {
  width: 100%;
  height: auto;
  margin-top: var(--num_75);
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images {
  width: 100%;
  height: auto;
  max-width: 40.85714286%;
  text-align: center;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
  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_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .img .pb {
  padding-bottom: 56.4%;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .img .icon {
  --width: 48px;
  width: var(--width);
  height: var(--width);
  background: #ffffffe6;
  position: absolute;
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: 50%;
  cursor: pointer;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .img .icon img {
  width: 10px;
}
.ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images .word {
  font-size: var(--font16);
  margin-top: var(--num_20);
  font-weight: 600;
}
@media (max-width:990px) {
  .ins_aboutCo3 {
    padding-bottom: 50px;
  }
  .ins_aboutCo3 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_aboutCo3 .center_box .content .swiper_item {
    display: none;
  }
  .ins_aboutCo3 .center_box .content .swiper_info {
    width: 100%;
  }
  .ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .swiper_img .swiper-wrapper .swiper-slide .images {
    max-width: 100%;
  }
  .ins_aboutCo3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .item_box .item .icon {
    min-width: 90px;
  }
}
.ins_aboutCo4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_110);
  overflow: hidden;
}
.ins_aboutCo4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCo4 .center_box .seash_box {
  width: auto;
  height: auto;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 13.19444444%;
  padding: 5px;
  border-radius: 100px;
  transform: translateY(-50%);
  background-image: -moz-linear-gradient(0deg, #03f7ff 0%, #2255de 100%);
  background-image: -webkit-linear-gradient(0deg, #03f7ff 0%, #2255de 100%);
  background-image: -ms-linear-gradient(0deg, #03f7ff 0%, #2255de 100%);
  box-shadow: 0px 10px 30px 0px rgba(43, 64, 112, 0.1);
}
.ins_aboutCo4 .center_box .seash_box .box_in {
  background: #FFFFFF;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: clamp(2.5rem, calc(-0.577rem + 3.85vw), 3.75rem);
  padding: 0 20px;
  gap: var(--num_40);
}
.ins_aboutCo4 .center_box .seash_box .box_in .input {
  width: clamp(7.813rem, calc(5.505rem + 2.88vw), 8.75rem);
}
.ins_aboutCo4 .center_box .seash_box .box_in .input input {
  width: 100%;
  min-height: 40px;
  font-size: var(--font24);
  font-weight: 600;
  border: 0;
}
.ins_aboutCo4 .center_box .seash_box .bnt_box {
  font-size: var(--font24);
  color: #FFFFFF;
  font-weight: 600;
  padding-left: var(--num_20);
  padding-right: var(--num_25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
}
.ins_aboutCo4 .center_box .images_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.ins_aboutCo4 .center_box .images_box .images {
  width: 51.38888889%;
  transform: translateX(-6.75675676%);
  position: absolute;
  top: 0;
  height: auto;
  z-index: 1;
  left: 0;
}
.ins_aboutCo4 .center_box .images_box .images .img_ab {
  width: 100%;
  height: auto;
}
.ins_aboutCo4 .center_box .images_box .images .img_ab img {
  width: 100%;
  height: auto;
}
.ins_aboutCo4 .center_box .images_box .images .list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
}
.ins_aboutCo4 .center_box .images_box .images .list .one {
  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_aboutCo4 .center_box .images_box .images .list .one .icon {
  position: absolute;
  width: max-content;
  height: auto;
  background: #FFFFFF80;
  backdrop-filter: blur(10px);
  min-height: clamp(2.5rem, calc(0.654rem + 2.31vw), 3.25rem);
  padding: 6px var(--num_30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  font-size: var(--font18);
  color: #2257df;
}
.ins_aboutCo4 .center_box .images_box .images .seash_box {
  display: none;
}
.ins_aboutCo4 .center_box .images_box .word_box {
  width: 46.83333333%;
  padding-top: var(--num_70);
}
.ins_aboutCo4 .center_box .images_box .word_box .t1 {
  padding-left: var(--num_30);
  line-height: 1;
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--num_25) 0;
  margin-top: var(--num_30);
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item {
  padding: var(--num_30);
  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;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  cursor: pointer;
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back/x16.jpg) no-repeat top left / cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  border: 1px solid #FFFFFF;
  border-radius: var(--border-radius20);
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item .t3 {
  margin-top: 15px;
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
  font-size: var(--font18);
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item .list .one i {
  width: 5px;
  height: 5px;
  background: #3468F6;
  border-radius: 50%;
  display: block;
  transform: translateY(0.5em);
}
.ins_aboutCo4 .center_box .images_box .word_box .item_box .item:nth-child(2):after {
  opacity: 1;
}
.ins_aboutCo4 .center_box .images_box .word_box .swiper_box {
  display: none;
}
.ins_aboutCo4 .center_box .text_box {
  width: 100%;
  height: auto;
  background: #ffffffa1;
  backdrop-filter: blur(30px);
  padding: var(--num_90) var(--num_90) var(--num_50) var(--num_130);
  position: relative;
  z-index: 4;
  margin-top: 110px;
  border-radius: var(--border-radius20);
  border-top: 1px solid #FFFFFF;
}
.ins_aboutCo4 .center_box .text_box .seash_box {
  display: flex;
}
.ins_aboutCo4 .center_box .text_box .icon_bg {
  position: absolute;
  left: var(--num_65);
  top: 65px;
  width: 8.19444444%;
}
.ins_aboutCo4 .center_box .text_box .text_id {
  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: var(--num_50);
}
.ins_aboutCo4 .center_box .text_box .text_id * {
  line-height: 1.6;
  color: #000000;
}
.ins_aboutCo4 .center_box .text_box .text_id .title {
  font-weight: 700;
  flex-shrink: 0;
}
.ins_aboutCo4 .center_box .text_box .text_id .subtitle {
  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: var(--num_35);
}
@media (max-width:1270px) {
  .ins_aboutCo4 .center_box .text_box {
    margin-top: 80px;
  }
}
@media (max-width:990px) {
  .ins_aboutCo4 .center_box .images_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_aboutCo4 .center_box .images_box .images {
    position: relative;
    z-index: 1;
    width: 100%;
    transform: translateX(0%);
  }
  .ins_aboutCo4 .center_box .images_box .images .list .one:nth-child(2) {
    right: 17% !important;
  }
  .ins_aboutCo4 .center_box .images_box .images .list .one .icon {
    min-height: 30px;
    padding: 6px 12px;
  }
  .ins_aboutCo4 .center_box .images_box .images .seash_box {
    display: flex;
    bottom: 0;
    top: unset;
    transform: translateX(-50%);
    left: 50%;
    width: max-content;
  }
  .ins_aboutCo4 .center_box .images_box .images .seash_box .box_in .input {
    width: 80px;
  }
  .ins_aboutCo4 .center_box .images_box .word_box {
    width: 100%;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .item_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: auto;
    display: none !important;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .item_box .item {
    width: max-content;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box {
    display: block !important;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo {
    width: 100%;
    height: 100%;
    padding: var(--num_30);
    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;
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius20);
    overflow: hidden;
    cursor: pointer;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff38;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
    border: 1px solid #FFFFFF;
    border-radius: var(--border-radius20);
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo .t3 {
    margin-top: 15px;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo .list {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo .list .one {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    font-size: var(--font18);
  }
  .ins_aboutCo4 .center_box .images_box .word_box .swiper_box .centerInfo .list .one i {
    width: 5px;
    height: 5px;
    background: #3468F6;
    border-radius: 50%;
    display: block;
    transform: translateY(0.5em);
  }
  .ins_aboutCo4 .center_box .text_box {
    padding: 20px !important;
    margin-top: 40px;
  }
  .ins_aboutCo4 .center_box .text_box .seash_box {
    display: none !important;
  }
  .ins_aboutCo4 .center_box .text_box .text_id {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ins_aboutCo4 .center_box .text_box .text_id .subtitle {
    max-height: 350px;
    overflow: auto;
  }
  .ins_aboutCo4 .center_box .text_box .icon_bg {
    top: 10px;
    left: 10px;
    display: none;
  }
}
.ins_aboutCo5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_90);
  padding-bottom: var(--num_85);
  overflow: visible;
}
.ins_aboutCo5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCo5 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_aboutCo5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_75);
  overflow: hidden;
}
.ins_aboutCo5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  display: block;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .images {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .images .pb {
  padding-bottom: 56.5%;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  padding: var(--num_20);
  text-align: center;
  padding-top: var(--num_35);
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .word .title {
  font-size: var(--font24);
  color: #000000;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCo5 .center_box .swiper_box ul li .item .word .subtitle {
  font-size: var(--font16);
  color: #646a73;
  margin-top: var(--num_20);
}
.ins_aboutCo5 .center_box .swiper_box ul li .item:hover .images .pb .ab img {
  transform: scale(1.05);
}
.ins_aboutCo5 .center_box .swiper_box ul li .item:hover .word .title {
  color: #3468F6;
}
.ins_aboutCo5 .center_box .swiper_strip {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
}
.ins_aboutCo5 .center_box .swiper_strip span {
  background: none;
}
.ins_aboutCo5 .center_box .swiper_strip span::before {
  background: #0000001a;
}
@media (max-width:990px) {
  .ins_aboutCo5 .center_box .swiper_strip span {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
  }
  .ins_aboutCo5 .center_box .swiper_strip span::after {
    opacity: 0;
  }
  .ins_aboutCo5 .center_box .swiper_strip span::before {
    opacity: 0;
  }
}
/* -------------------------------------------------------------------  */
/* -------------------------------------------------------------------  公共标题 */
.main_productHkCon10 {
  width: 100%;
  height: auto;
  background-image: url(../images/back/bg10.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.ins_productZxCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_130);
  padding-bottom: var(--num_130);
  background-image: url(../images/back/bg7.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% cover;
  overflow: hidden;
}
.ins_productZxCon1 .bg_img {
  position: absolute;
  top: var(--num_150);
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productZxCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productZxCon1 .center_box .ins_title {
  text-align: center;
}
.ins_productZxCon1 .center_box .ins_title * {
  color: #FFFFFF;
}
.ins_productZxCon1 .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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: var(--num_85);
}
.ins_productZxCon1 .center_box .content .word_box {
  width: 34.7%;
  height: auto;
  background: #FFFFFFCC;
  border-radius: var(--border-radius20);
  overflow: hidden;
  padding: var(--num_65);
}
.ins_productZxCon1 .center_box .content .word_box .word {
  font-size: var(--font18);
  line-height: 1.78;
}
.ins_productZxCon1 .center_box .content .word_box .idx_more {
  margin-top: var(--num_25);
}
.ins_productZxCon1 .center_box .content .images {
  width: 59.02777778%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productZxCon1 .center_box .content .images .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_productZxCon1 .center_box .content .images .item_box .item {
  width: 5px;
  height: 5px;
  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_productZxCon1 .center_box .content .images .item_box .item .img {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}
.ins_productZxCon1 .center_box .content .images .item_box .item .img::after {
  content: '';
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 2px dashed #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
}
.ins_productZxCon1 .center_box .content .images .item_box .item .img:hover::after {
  transform: rotate(360deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(1) .img {
  width: 88px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(2) .img {
  width: 232px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(2) .img::after {
  opacity: 0 !important;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(3) .img {
  width: 134px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(4) .img {
  width: 89px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(5) .img {
  width: 89px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(6) .img {
  width: 133px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(7) .img {
  width: 88px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(8) .img {
  width: 133px;
}
.ins_productZxCon1 .center_box .content .images .item_box .item:nth-child(9) .img {
  width: 88px;
}
@media (max-width:990px) {
  .ins_productZxCon1 {
    padding: 50px 0;
  }
  .ins_productZxCon1 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .ins_productZxCon1 .center_box .content .word_box,
  .ins_productZxCon1 .center_box .content .images {
    width: 100%;
    height: auto;
  }
  .ins_productZxCon1 .center_box .content .word_box {
    padding: 20px;
  }
}
/* -------------------------------------------------------------------  */
.ins_banner_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_banner_box .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_banner_box .center_box .word_box {
  width: 36.805%;
}
.ins_banner_box .center_box .word_box .t2 {
  margin-top: var(--num_15);
  color: #646A73;
}
.ins_banner_box .center_box .word_box .idx_bntbox {
  margin-top: var(--num_40);
}
.ins_banner_box .center_box .word_box .idx_bntbox a:last-child {
  background: none;
  color: #3468F6;
}
.ins_banner_box .center_box .images {
  width: 59.72%;
}
.ins_banner_box .center_box .images .pb {
  padding-bottom: 74.424%;
}
.ins_banner_box .center_box .images .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_banner_box .background_image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.ins_banner_box .background_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_banner_box .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }
  .ins_banner_box .center_box .word_box,
  .ins_banner_box .center_box .images {
    width: 100%;
    height: auto;
  }
  .ins_banner_box .center_box .word_box {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .ins_banner_box .center_box .word_box .idx_bntbox {
    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;
  }
}
.main_abouthzhbCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-image: url(../images/z6.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.ins_abouthzhbCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_abouthzhbCon1 .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_abouthzhbCon1 .center_box .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.ins_abouthzhbCon1 .center_box .word_box .idx_bntbox {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: var(--num_40);
}
.ins_abouthzhbCon1 .center_box .word_box .idx_bntbox a:last-child {
  background: none;
  color: #3468F6;
  padding-left: var(--num_40);
  padding-right: var(--num_40);
}
.ins_abouthzhbCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_75);
  padding-bottom: var(--num_60);
  overflow: hidden;
}
.ins_abouthzhbCon2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_abouthzhbCon2 .center_box .ins_title {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_abouthzhbCon2 .center_box .input_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_60);
  width: 57.291%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  min-height: clamp(2.5rem, calc(0.038rem + 3.08vw), 3.5rem);
  padding: 10px var(--num_30);
  gap: var(--num_15);
  border-radius: 100px;
  border: 1px solid #2153D1;
}
.ins_abouthzhbCon2 .center_box .input_box .icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
.ins_abouthzhbCon2 .center_box .input_box .input {
  width: 100%;
  height: auto;
  font-size: var(--font16);
}
.ins_abouthzhbCon2 .center_box .input_box .input input {
  width: 100%;
  height: auto;
  border: 0;
  background: none;
}
.ins_abouthzhbCon2 .center_box .input_box .close {
  width: auto;
  height: auto;
  flex-shrink: 0;
  cursor: pointer;
}
.ins_abouthzhbCon2 .center_box .input_box .close i {
  font-size: var(--font20);
}
.ins_abouthzhbCon2 .center_box .input_box .close:hover {
  color: #3468F6;
}
.ins_abouthzhbCon2 .center_box .tip_box {
  width: 57.291%;
  height: auto;
  margin-top: var(--num_25);
  text-align: center;
  font-size: var(--font16);
  color: #F54A45;
}
@media (max-width:990px) {
  .ins_abouthzhbCon2 .center_box .input_box,
  .ins_abouthzhbCon2 .center_box .tip_box {
    width: 100%;
    height: auto;
  }
  .ins_abouthzhbCon2 .center_box .input_box .icon {
    width: 18px;
  }
}
.ins_abouthzhbCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_75);
  padding-bottom: var(--num_60);
  overflow: hidden;
}
.ins_abouthzhbCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_abouthzhbCon3 .center_box .ins_title {
  text-align: center;
}
.ins_abouthzhbCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--num_60);
  gap: var(--num_40);
}
.ins_abouthzhbCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: var(--num_60);
  padding-top: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_abouthzhbCon3 .center_box .item_box .item .images {
  width: 89.405%;
}
.ins_abouthzhbCon3 .center_box .item_box .item .images .pb {
  padding-bottom: 69.8%;
}
.ins_abouthzhbCon3 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_40);
}
.ins_abouthzhbCon3 .center_box .item_box .item .word_box .t2 {
  margin-top: var(--num_30);
  color: #646A73;
  line-height: 1.7;
}
@media (max-width:990px) {
  .ins_abouthzhbCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_abouthzhbCon3 .center_box .item_box .item {
    padding: 0;
  }
  .ins_abouthzhbCon3 .center_box .item_box .item .images {
    width: 100%;
  }
  .ins_abouthzhbCon3 .center_box .item_box .item .images .pb {
    padding-bottom: 40%;
  }
  .ins_abouthzhbCon3 .center_box .item_box .item .word_box {
    width: 100%;
    margin-top: 0;
  }
  .ins_abouthzhbCon3 .center_box .item_box .item .word_box .t1 {
    font-size: 16px;
  }
  .ins_abouthzhbCon3 .center_box .item_box .item .word_box .t2 {
    font-size: 12px;
  }
}
.ins_abouthzhbCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_60);
  padding-bottom: var(--num_90);
  overflow: hidden;
}
.ins_abouthzhbCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_abouthzhbCon4 .center_box .ins_title {
  text-align: center;
}
.ins_abouthzhbCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--num_60);
  gap: var(--num_30);
}
.ins_abouthzhbCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: var(--num_40);
  background: #FFFFFF80;
  border-radius: var(--border-radius20);
  box-shadow: 0px 9px 66px 0px rgba(0, 0, 0, 0.05);
}
.ins_abouthzhbCon4 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: var(--num_30);
}
.ins_abouthzhbCon4 .center_box .item_box .item .word_box .t2 {
  margin-top: var(--num_25);
  color: #646A73;
  line-height: 1.7;
}
@media (max-width:990px) {
  .ins_abouthzhbCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_abouthzhbCon4 .center_box .item_box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
  }
  .ins_abouthzhbCon4 .center_box .item_box .item .icon {
    flex-shrink: 0;
    width: 35px;
  }
  .ins_abouthzhbCon4 .center_box .item_box .item .word_box {
    margin-top: 0;
  }
  .ins_abouthzhbCon4 .center_box .item_box .item .word_box .t1 {
    font-size: 16px;
  }
  .ins_abouthzhbCon4 .center_box .item_box .item .word_box .t2 {
    font-size: 12px;
  }
}
.main_producthyCon1 {
  width: 100%;
  height: auto;
  background-image: url(../images/back/bg11.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.ins_producthyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--num_110);
  padding-bottom: var(--num_120);
  overflow: hidden;
}
.ins_producthyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_producthyCon1 .center_box .ins_title {
  text-align: center;
}
.ins_producthyCon1 .center_box .ins_title .t2 {
  line-height: calc(52 / 18);
}
.ins_producthyCon1 .center_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: var(--num_180);
  margin-top: var(--num_85);
}
.ins_producthyCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_producthyCon1 .center_box .item_box .item .background_image {
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  height: auto;
  top: 0;
  opacity: 0;
}
.ins_producthyCon1 .center_box .item_box .item .images {
  width: 47.083%;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.ins_producthyCon1 .center_box .item_box .item .images .pb {
  padding-bottom: 67.85%;
}
.ins_producthyCon1 .center_box .item_box .item .images .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_producthyCon1 .center_box .item_box .item .word_box {
  width: 45.97%;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info {
  width: 100%;
  height: auto;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .more_box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .z1 {
  padding-right: var(--num_20);
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .t2 {
  line-height: 1.3;
  margin-top: var(--num_25);
  padding-right: var(--num_20);
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .list {
  width: 100%;
  height: auto;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 452px;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #646A73;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .list .one::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box a {
  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;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box a .pb {
  padding-bottom: 44.74%;
}
.ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box a .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_producthyCon1 .center_box .item_box .item .word_box .word_info .word {
    margin-top: 15px;
    gap: 8px;
  }
  .ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box {
    padding-right: 0;
    gap: 5px;
    margin-top: 20px;
  }
  .ins_producthyCon1 .center_box .item_box .item .word_box .word_info .lo_box a .pb {
    padding-bottom: 40%;
  }
}
.ins_producthyCon1 .center_box .item_box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_producthyCon1 .center_box .item_box .item {
    flex-direction: column !important;
    gap: 20px;
  }
  .ins_producthyCon1 .center_box .item_box .item .images,
  .ins_producthyCon1 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
}
.help_box {
  width: 100%;
  height: auto;
  height: 100vh;
  overflow: hidden;
}
.help_box * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.help_box *::-webkit-scrollbar {
  display: none;
}
.help_box iframe {
  width: 100%;
  height: 100vh;
}
