@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 产品：小黄 QQ: 1452595308 */
/* 项目：小余：18816793621 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.imgVideo {
  width: 100%;
  height: auto;
}
.imgVideo img,
.imgVideo video {
  width: 100%;
  height: auto;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #ff3398;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font86: 0.86rem;
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
  --border20: 0.3rem;
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
.font86 {
  font-size: var(--font86);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.CoFF {
  color: var(--color_fff);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-ExtraLight.otf");
  font-weight: 200;
}
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-Bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "GlowSansSC";
  src: url("../fonts/GlowSansSC-Normal-ExtraBold.otf");
  font-weight: 700;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1540,
.container,
.wrap {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1540,
  .container,
  .wrap {
    max-width: 80.2083%;
  }
}
@media (max-width:990px) {
  .w1540,
  .container,
  .wrap {
    max-width: 100%;
    padding: 0 0.2rem;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.2rem;
  font-size: var(--font16);
  color: #333333;
  font-family: "GlowSansSC";
}
main.active {
  --header-height: 0.8rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img,
.banner_img video {
  width: 100%;
  height: auto;
}
.banner_img img.wap,
.banner_img video.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  width: fit-content;
  background: linear-gradient(90deg, #FF2C80 21.63%, #FFAECA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.12rem;
}
.idxPageShow span {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 100px;
  opacity: 1;
  background: #FFFFFF33;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  left: 0;
  right: 0;
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.53rem;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
/* --------------------------------------------------------------- 吸顶 */
.grid_x2 {
  grid-column: span 2;
}
.grid_x3 {
  grid-column: span 3;
}
.grid_x4 {
  grid-column: span 4;
}
.grid_x5 {
  grid-column: span 5;
}
.grid_x6 {
  grid-column: span 6;
}
.grid_x7 {
  grid-column: span 7;
}
.grid_x8 {
  grid-column: span 8;
}
.grid_y2 {
  grid-row: span 2;
}
@media (max-width:990px) {
  .grid_x2,
  .grid_x3,
  .grid_x4,
  .grid_x5,
  .grid_x6,
  .grid_x7,
  .grid_x8 {
    grid-column: unset;
  }
  .grid_y2 {
    grid-row: unset;
  }
}
.grid1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: #c2c2c2 #000;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
  padding: 0;
  padding-left: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  line-height: 1;
  margin-top: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.14rem;
  height: 0.14rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
  left: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 0;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
.img_tX {
  overflow: hidden;
}
.img_tX img {
  transform: translateX(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tX.active img {
  transform: translateX(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_tY {
  overflow: hidden;
}
.img_tY img {
  transform: translateY(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tY.active img {
  transform: translateY(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF {
  position: relative;
  z-index: 1;
}
.img_FFF::after {
  content: '';
  position: absolute;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF::before {
  content: '';
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF.active::after {
  width: 0;
  opacity: 0.3;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF.active::before {
  width: 0;
  opacity: 0.2;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
/* --------------------------------------------------------------- wow */
.wowUp,
.wowRight,
.wowLeft {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/* --------------------------------------------------------------- 新增公共组件 */
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #27282b;
  line-height: 1.25;
  padding-bottom: 0.94rem;
  border-bottom: 1px solid #0000001A;
}
.newContent p {
  min-height: 0.5em;
  font-weight: 300;
}
.newContent img {
  border-radius: 0.4rem;
  overflow: hidden;
  height: unset !important;
}
.newContent a {
  display: contents;
  color: var(--active_color);
}
.newContent h2 {
  font-size: var(--font32);
  color: #27282b;
  line-height: 1.07;
  font-weight: 500;
}
.newContent .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 0.32rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.newContent .list .one {
  padding: 0.12rem 0.24rem;
  background: #09428E1A;
  color: var(--active_color);
  border-radius: 100px;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.newContent .list .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.08rem;
  color: #FFFFFFCC;
  border-radius: 100px;
  font-size: var(--font24);
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 500;
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t1 {
  width: 100%;
  height: auto;
  line-height: 1.2;
  font-weight: 500;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t2 {
  margin-top: 0.4rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t2 span {
  font-weight: 500;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t3 .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.5em;
  line-height: 1.4583;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t3 .one .ic {
  font-weight: 500;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .t3 .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word1 .idx_more {
  margin-top: 0.6rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .bofang {
  position: absolute;
  mix-blend-mode: plus-lighter;
}
.idx_homeCon1 .swiper_box ul li .banner_img {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .banner_img img,
.idx_homeCon1 .swiper_box ul li .banner_img video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .banner_img {
    height: 600px;
  }
  .idx_homeCon1 .swiper_box ul li .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.idx_homeCon1 .idx_swi {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.66rem;
  left: 0;
  z-index: 5;
}
.idx_homeCon1 .idx_swi .idxPageShow {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.idx_homeCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.6rem 0.44rem;
}
.idx_homeCon2 .center_box .item_box .item .word_box .icon {
  width: 0.9rem;
  height: 0.9rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .item_box .item .word_box .icon img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 500;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  color: #27282b;
  opacity: 0;
  transform: translateY(0.5rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word .t2 span {
  color: var(--active_color);
}
.idx_homeCon2 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
}
.idx_homeCon2 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .center_box .item_box .item:hover .icon {
  height: 0;
}
.idx_homeCon2 .center_box .item_box .item:hover .word {
  margin-top: 0;
}
.idx_homeCon2 .center_box .item_box .item:hover .word .t2 {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .idx_homeCon2 .center_box .item_box .item .word_box .icon {
    height: 0.9rem;
  }
  .idx_homeCon2 .center_box .item_box .item .word_box .word {
    margin-top: 0;
  }
  .idx_homeCon2 .center_box .item_box .item .word_box .word .t2 {
    opacity: 1;
    transform: translateY(0);
  }
}
.idx_homeCon2 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.idx_homeCon2 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.15rem 0;
}
.idx_homeCon3 .center_box .item_box .item {
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  background: #FFFFFF;
  border-radius: var(--border20);
  overflow: hidden;
  padding: 0.44rem;
}
.idx_homeCon3 .center_box .item_box .item .bgRed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.idx_homeCon3 .center_box .item_box .item .bgRed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 .center_box .item_box .item.w100 {
  width: 100%;
}
.idx_homeCon3 .center_box .item_box .item.w70 {
  width: 70.8496732%;
}
.idx_homeCon3 .center_box .item_box .item.w28 {
  width: 28.23529412%;
  padding: 0.4rem 0.3rem;
}
.idx_homeCon3 .center_box .item_box .item.w21 {
  width: 21.83006536%;
  padding: 0.4rem 0.3rem;
}
.idx_homeCon3 .center_box .item_box .item.w48 {
  width: 48.03921569%;
}
.idx_homeCon3 .center_box .item_box .item .word_box1 {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .item_box .item .word_box1 .t1t {
  font-weight: 500;
}
.idx_homeCon3 .center_box .item_box .item .word_box1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.26rem;
  font-weight: 300;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .item_box .item .word_box1 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_homeCon3 .center_box .item_box .item .word_box2 {
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon3 .center_box .item_box .item .word_box2 .t1t {
  font-weight: 500;
}
.idx_homeCon3 .center_box .item_box .item .word_box2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.26rem;
  font-weight: 300;
}
.idx_homeCon3 .center_box .item_box .item .word_box2 .word1 {
  width: 100%;
  height: auto;
  color: #000;
}
.idx_homeCon3 .center_box .item_box .item .word_box2 .word1 span {
  color: var(--active_color);
}
.idx_homeCon3 .center_box .item_box .item .word_box3 {
  width: 100%;
  height: 100%;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon3 .center_box .item_box .item .word_box3 .t1t {
  font-weight: 500;
}
.idx_homeCon3 .center_box .item_box .item .word_box3 .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.26rem;
  font-weight: 300;
}
.idx_homeCon3 .center_box .item_box .item .word_box3 .word1 {
  width: 100%;
  height: auto;
  color: #000;
}
.idx_homeCon3 .center_box .item_box .item .word_box3 .word1 span {
  color: var(--active_color);
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon3 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
}
.idx_homeCon3 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.idx_homeCon3 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.15rem;
}
.ins_aboutCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .item_box .item .word1 {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
  border-radius: 0.35rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .item_box .item .word1 .t1 {
  font-weight: 500;
}
.ins_aboutCon1 .center_box .item_box .item .word1 .t2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  color: #27282b;
}
.ins_aboutCon1 .center_box .item_box .item .word1 .t2 span {
  color: var(--active_color);
}
.ins_aboutCon1 .center_box .item_box .item .word1 .t3 {
  width: 100%;
  height: auto;
  color: #27282b;
}
.ins_aboutCon1 .center_box .item_box .item .word1 .t3 span {
  color: var(--active_color);
}
.ins_aboutCon1 .center_box .item_box .item .img_all {
  width: 100%;
  height: 100%;
}
.ins_aboutCon1 .center_box .item_box .item .img_all img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 .center_box .item_box .item .list1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_aboutCon1 .center_box .item_box .item .list1 .one {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  background: #FFFFFF;
  border-radius: 0.35rem;
  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;
  gap: 0.1rem;
}
.ins_aboutCon1 .center_box .item_box .item .list1 .one .icon {
  width: 1rem;
  height: 1rem;
}
.ins_aboutCon1 .center_box .item_box .item .list1 .one .t1 {
  font-weight: 500;
}
.ins_aboutCon1 .center_box .item_box .item .list1 .one .t2 {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .item_box .item .word2 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.35rem;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_aboutCon1 .center_box .item_box .item .word2 .t1 {
  color: #FFFFFF;
}
.ins_aboutCon1 .center_box .item_box .item .word2 .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .center_box .item_box .item .word2 .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_aboutCon1 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.ins_aboutCon2 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: fit-content;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 1.56rem;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo .content .center_box .title {
  font-weight: 600;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo .content .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;
  background: #FFFFFF33;
  backdrop-filter: blur(10px);
  padding: 0.6rem 0.4rem;
  border-radius: 0.35rem;
  gap: 0.1rem;
  margin-top: 2.2rem;
}
.ins_aboutCon2 .swiper_box ul li .centerInfo .content .center_box .item_box .item {
  width: fit-content;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon2 .swiper_box ul li .centerInfo .content .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.2rem;
    gap: 0.4rem;
  }
  .ins_aboutCon2 .swiper_box ul li .centerInfo .content .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
}
@media (max-width:990px) {
  .ins_aboutCon2 .swiper_box ul li .centerInfo .content {
    padding-bottom: 0.4rem;
  }
}
.ins_aboutCon2 .swiper_box ul li .banner_img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .swiper_box ul li .banner_img img,
.ins_aboutCon2 .swiper_box ul li .banner_img video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_aboutCon2 .swiper_box ul li .banner_img {
    height: 700px;
  }
  .ins_aboutCon2 .swiper_box ul li .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon2 .idx_swi {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.66rem;
  left: 0;
  z-index: 5;
}
.ins_aboutCon2 .idx_swi .idxPageShow {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media (max-width:990px) {
  .ins_aboutCon2 .idx_swi {
    bottom: 0.1rem;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.3rem;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .idx_title {
  line-height: 1.2;
}
.ins_aboutCon3 .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: 0.2rem;
  margin-top: 0.55rem;
}
.ins_aboutCon3 .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;
  gap: 0.2rem;
}
.ins_aboutCon3 .center_box .item_box .item .w60 {
  width: 62%;
}
.ins_aboutCon3 .center_box .item_box .item .w40 {
  width: 38%;
}
.ins_aboutCon3 .center_box .item_box .item .w58 {
  width: 53%;
}
.ins_aboutCon3 .center_box .item_box .item .w42 {
  width: 47%;
}
.ins_aboutCon3 .center_box .item_box .item .w68 {
  width: 65%;
}
.ins_aboutCon3 .center_box .item_box .item .w32 {
  width: 35%;
}
.ins_aboutCon3 .center_box .item_box .item .word1 {
  position: relative;
  z-index: 1;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_aboutCon3 .center_box .item_box .item .word1 .t1 {
  letter-spacing: -0.04rem;
  color: var(--active_color);
  font-weight: 300;
  line-height: 1.4;
}
.ins_aboutCon3 .center_box .item_box .item .word1 .t1 span {
  width: fit-content;
  background: linear-gradient(90deg, #FF2C80 21.63%, #FFAECA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_aboutCon3 .center_box .item_box .item .word1 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 0;
}
.ins_aboutCon3 .center_box .item_box .item .word1 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .item_box .item .img_all {
  border-radius: 0.38rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .item_box .item .img_all img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .item_box .item .word2 {
  position: relative;
  z-index: 1;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.48rem;
  color: #FFFFFF;
  font-weight: 300;
  letter-spacing: -1px;
}
.ins_aboutCon3 .center_box .item_box .item .word2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_aboutCon3 .center_box .item_box .item .word2 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 0;
}
.ins_aboutCon3 .center_box .item_box .item .word2 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .item_box .item .word5 {
  position: relative;
  z-index: 1;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.48rem;
  color: #FFFFFF;
  font-weight: 300;
  letter-spacing: -1px;
}
.ins_aboutCon3 .center_box .item_box .item .word5 .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem 0.5rem;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .item_box .item .word5 .list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_aboutCon3 .center_box .item_box .item .word5 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 0;
}
.ins_aboutCon3 .center_box .item_box .item .word5 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .item_box .item .word3 {
  background: #FFFFFF;
  padding: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.48rem;
  font-weight: 300;
  letter-spacing: -1px;
  border-radius: 0.38rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .item_box .item .word3 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.2rem;
}
.ins_aboutCon3 .center_box .item_box .item .word3 .list .one {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .item_box .item .word3 .list .one .t1 {
  font-weight: 500;
}
.ins_aboutCon3 .center_box .item_box .item .word3 .list .one .t2 {
  width: fit-content;
  background: linear-gradient(90deg, #FF2C80 21.63%, #FFAECA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ins_aboutCon3 .center_box .item_box .item .word4 {
  background: #FFFFFF;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
  border-radius: 0.35rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .item_box .item .word4 .t1 {
  font-weight: 500;
  letter-spacing: -3px;
}
.ins_aboutCon3 .center_box .item_box .item .word4 .t2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  color: #27282b;
}
.ins_aboutCon3 .center_box .item_box .item .word4 .t2 span {
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .item_box .item .word4 .t3 {
  width: 100%;
  height: auto;
  color: #27282b;
}
.ins_aboutCon3 .center_box .item_box .item .word4 .t3 span {
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .item_box .item .img_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.38rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .item_box .item .img_box img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon3 .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;
  }
  .ins_aboutCon3 .center_box .item_box .item .w60 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .item_box .item .w40 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .item_box .item .w68 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .item_box .item .w32 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .item_box .item .w58 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .item_box .item .w42 {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon3 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon3 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.7rem;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  padding: 0.45rem;
  border-radius: 0.38rem;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .content .left_box {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon4 .center_box .content .left_box .name {
  color: var(--active_color);
}
.ins_aboutCon4 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_aboutCon4 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--active_color);
}
.ins_aboutCon4 .center_box .content .left_box .list .one .t1 {
  font-weight: 300;
  line-height: 1.3;
}
.ins_aboutCon4 .center_box .content .left_box .list .one .t2 {
  margin-top: 0.12rem;
}
.ins_aboutCon4 .center_box .content .left_box .list .one:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_aboutCon4 .center_box .content .right_box {
  width: 45%;
}
.ins_aboutCon4 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content .bg_img2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.ins_aboutCon4 .center_box .content .bg_img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon4 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon4 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.7rem;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_aboutCon5 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word {
  position: absolute;
  left: 0;
  width: 50%;
  background: #FFFFFF;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.8rem 0.4rem;
  transform: translateX(-100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word .more {
  width: fit-content;
  margin-top: 0.2rem;
  color: #666666;
  text-decoration: underline;
  cursor: pointer;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 {
  position: absolute;
  left: 0;
  width: 50%;
  background: #FFFFFF;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.8rem 0.4rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
  visibility: hidden;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .btnIcon {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 5;
  bottom: 0.4rem;
  right: 0.4rem;
  cursor: pointer;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .icon {
  width: 1rem;
  height: 1rem;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .list .one {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .list .one .t1 {
  width: fit-content;
  background: linear-gradient(90deg, #FF2C80 21.63%, #FFAECA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 .list .one .t2 {
  margin-top: 0.05rem;
}
@media (max-width:990px) {
  .ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 87%;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo.active .word {
  opacity: 0;
  visibility: hidden;
}
.ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo.active .word2 {
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  .ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo {
    -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;
    height: 100%;
  }
  .ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .word {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateX(0) !important;
  }
  .ins_aboutCon5 .center_box .content .swiper_box ul li .centerInfo .img {
    margin-top: 0.4rem;
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon5 .center_box .content .swiper_box ul li.swiper-slide-active .centerInfo .word {
  transform: translateX(0);
}
.ins_aboutCon5 .center_box .content .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.24rem;
}
.ins_aboutCon5 .center_box .content .idxPageShow span {
  background: #ff91c4bf;
}
.ins_aboutCon5 .center_box .content .idxPageShow span::after {
  background: var(--active_color);
}
.ins_aboutCon5 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon5 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ECEFF4;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  transform: translateY(-100%);
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: 500;
  line-height: 1.05;
}
@media (max-width:990px) {
  .ins_bannerCon1 .content .center_box .t1 p {
    display: contents;
  }
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.24rem;
}
.ins_aboutCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 1.3rem;
}
.ins_aboutCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .center_box .idx_title .t1 {
  line-height: 1.2;
}
.ins_aboutCon6 .center_box .idx_title .t2 {
  color: var(--active_color);
  font-weight: 300;
  line-height: 1.2;
}
.ins_aboutCon6 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_aboutCon6 .center_box .content_info .left_box {
  width: 20%;
  height: 100%;
  position: sticky;
  top: 1.5rem;
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box {
  width: 100%;
  height: calc(100vh - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #ffbed8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box .item {
  color: #ff3398;
  font-size: var(--font32);
  padding-left: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0%;
  background: linear-gradient(0deg, #ffbed8 10%, #ff3384 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box .item.active {
  font-weight: 500;
  color: var(--active_color);
}
.ins_aboutCon6 .center_box .content_info .left_box .item_box .item.active::after {
  height: 100%;
  top: 0;
}
@media (max-width:990px) {
  .ins_aboutCon6 .center_box .content_info .left_box {
    display: none;
  }
}
.ins_aboutCon6 .center_box .content_info .right_box {
  width: 74%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}
.ins_aboutCon6 .center_box .content_info .content {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .center_box .content_info .content .t1 {
  color: var(--active_color);
  font-weight: 300;
}
.ins_aboutCon6 .center_box .content_info .content .t2 {
  margin-top: 0.2rem;
  font-weight: 300;
}
.ins_aboutCon6 .center_box .content_info .content .img {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  border-radius: 0.37rem;
  overflow: hidden;
}
.ins_aboutCon6 .center_box .content_info .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  color: #27282b;
  font-weight: 300;
}
.ins_aboutCon6 .center_box .content_info .content .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font24);
  letter-spacing: -2px;
}
.ins_aboutCon6 .center_box .content_info .content .list .one .word1 {
  width: var(--width);
  flex-shrink: 0;
}
.ins_aboutCon6 .center_box .content_info .content .list .one .word2 {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon6 .center_box .content_info .content .list .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon6 .center_box .content_info .content .list .one .word1 {
    width: 100%;
    height: auto;
    color: var(--active_color);
  }
  .ins_aboutCon6 .center_box .content_info .content .list .one .word2 {
    width: 100%;
    height: auto;
  }
}
@media (max-width:990px) {
  .ins_aboutCon6 .center_box .content_info .content .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.24rem;
  }
}
.ins_aboutCon6 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon6 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh12 {
  line-height: 1.2;
}
.ins_aboutCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.7rem;
}
.ins_aboutCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  border-radius: 0.38rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_aboutCon7 .center_box .content .left_box {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.45rem;
}
.ins_aboutCon7 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.22rem;
}
.ins_aboutCon7 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--active_color);
}
.ins_aboutCon7 .center_box .content .left_box .list .one .t1 {
  font-weight: 300;
  line-height: 1.1;
}
.ins_aboutCon7 .center_box .content .left_box .list .one .t2 {
  margin-top: 0.12rem;
  line-height: 1.2;
}
.ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  line-height: 1.2;
}
.ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 .le {
  width: 22%;
  flex-shrink: 0;
}
.ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 .ft {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 .le {
    width: 100%;
    height: auto;
    color: var(--active_color);
  }
  .ins_aboutCon7 .center_box .content .left_box .list .one .t2 .text1 .ft {
    width: 100%;
    height: auto;
  }
}
@media (max-width:990px) {
  .ins_aboutCon7 .center_box .content .left_box .list .one .t2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.24rem;
  }
}
.ins_aboutCon7 .center_box .content .left_box .list .one:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_aboutCon7 .center_box .content .left_box .tip_box {
  width: 100%;
  height: auto;
  color: #999999;
  font-size: var(--font16);
}
.ins_aboutCon7 .center_box .content .right_box {
  width: 48%;
  overflow: hidden;
}
.ins_aboutCon7 .center_box .content .right_box .img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon7 .center_box .content .right_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon7 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon7 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.ins_aboutCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon8 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_aboutCon8 .center_box .swiper_box ul li {
  width: fit-content;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .word {
  width: calc(100% - 0.7rem);
  height: auto;
  position: absolute;
  bottom: 0.25rem;
  left: 0.35rem;
  background: #ffffff46;
  border-radius: 0.35rem;
  overflow: hidden;
  padding: 0.4rem;
  color: #FFFFFF;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.2);
  line-height: 1.2;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .word .btn {
  width: fit-content;
  color: #FFFFFF;
  text-decoration: underline;
  margin-top: 0.8rem;
  font-size: var(--font18);
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.38rem;
  overflow: hidden;
}
.ins_aboutCon8 .center_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
.swiper_icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 30px;
  min-height: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--active_color);
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.swiper_icon i {
  color: var(--active_color);
  font-size: var(--font14);
}
.swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_icon:hover {
  background: var(--active_color);
  border-color: #FFFFFF;
}
.swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.swiper_icon:hover i {
  color: #FFFFFF;
}
.ins_aboutCon30 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.8rem;
  padding-bottom: 1.22rem;
  background-image: url(../images/z19.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.ins_aboutCon30 .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  --dashoffset: 2000;
}
.ins_aboutCon30 .img_box .svgBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon30 .img_box .svgBox .one {
  width: 100%;
  height: auto;
}
.ins_aboutCon30 .img_box .svgBox .one svg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: var(--dashoffset);
}
.ins_aboutCon30 .img_box .svgBox .one1 {
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon30 .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.ins_aboutCon30 .img_box .item_box .item {
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  background: var(--color_fff);
  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;
  -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_aboutCon30 .img_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  background: #FFFFFF66;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(1.29999995px);
  border-radius: 100%;
  z-index: -1;
}
.ins_aboutCon30 .img_box .item_box .item span {
  position: absolute;
  bottom: calc(100% + 0.32rem);
  width: max-content;
  font-size: var(--font32);
  font-weight: 700;
  color: var(--color_fff);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon30 .img_box .item_box .item.active {
  background: var(--active_color);
}
.ins_aboutCon30 .img_box .item_box .item.active::after {
  animation: scale1 1s linear;
}
.ins_aboutCon30 .img_box.active {
  --dashoffset: 0;
}
.ins_aboutCon30 .img_box.active .one svg path {
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.ins_aboutCon30 .img_box.active .one1 svg path {
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.ins_aboutCon30 .img_box.active .one2 svg path {
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.ins_aboutCon30 .center_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_aboutCon30 .center_box .swiper_info {
  width: 50%;
  height: auto;
  color: var(--color_fff);
  gap: 0.62rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo .t1 {
  font-weight: 700;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo .t2 {
  margin-top: 0.32rem;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo .t2 p {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo .t2 p::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.5em;
  left: 0;
  border-radius: 50%;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_box .swiper-slide-active .centerInfo {
  opacity: 1;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_icon {
  flex-shrink: 0;
}
.ins_aboutCon30 .center_box .swiper_info .swiper_icon:hover {
  border-color: var(--active_color);
}
@media (max-width:990px) {
  .ins_aboutCon30 .img_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    display: none !important;
  }
  .ins_aboutCon30 .img_box .svgBox {
    width: 90%;
  }
  .ins_aboutCon30 .img_box .item_box {
    width: 90%;
    left: unset;
  }
  .ins_aboutCon30 .img_box .item_box .item {
    transform: translateY(-0.08rem);
  }
  .ins_aboutCon30 .img_box .item_box .item span {
    font-size: var(--font12);
  }
  .ins_aboutCon30 .img_box .item_box .item.active span {
    font-size: var(--font32);
  }
  .ins_aboutCon30 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon30 .center_box .swiper_info {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon30 .center_box .swiper_info .swiper_box {
    width: 100%;
  }
  .ins_aboutCon30 .center_box .swiper_info .swiper_box .centerInfo {
    width: 100%;
    height: auto;
    padding: 0 0.4rem;
  }
  .ins_aboutCon30 .center_box .swiper_info .btn {
    display: none;
  }
  .ins_aboutCon30 .center_box .idxPageHide {
    margin-top: 0.5rem;
  }
  .ins_aboutCon30 .center_box .idxPageHide span {
    background: #FFFF;
  }
  .ins_aboutCon30 .center_box .swiper_info .swiper_icon {
    display: none;
  }
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .sele_item {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.ins_joinCon1 .center_box .sele_item .item {
  width: fit-content;
  padding: 0.1rem 1.05rem;
  border-radius: 100px;
  font-size: var(--font24);
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}
.ins_joinCon1 .center_box .sele_item .item.active {
  background: linear-gradient(0deg, #e4acbd 10%, #f5e0e7 100%);
  border: #FFFFFF00;
}
@media (max-width:990px) {
  .ins_joinCon1 .center_box .sele_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_joinCon1 .center_box .sele_item .item {
    padding: 0.1rem 0.2rem;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.ins_joinCon1 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_joinCon1 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_joinCon1 .center_box .content_info .content.active {
  display: block;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  border-top: 0.04rem #fdecf1 solid;
}
.ins_joinCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: var(--font24);
  color: #FFFFFF;
  border-bottom: 0.04rem #fdecf1 solid;
}
.ins_joinCon1 .center_box .item_box .item .left {
  width: 43.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon1 .center_box .item_box .item .left .word {
  max-width: 45%;
}
.ins_joinCon1 .center_box .item_box .item .right {
  width: 33.76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon1 .center_box .item_box .item .right .word {
  max-width: 45%;
}
.ins_joinCon1 .center_box .item_box .item .right .word .one {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_joinCon1 .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;
    gap: 0.2rem;
  }
  .ins_joinCon1 .center_box .item_box .item .left {
    width: 100%;
    height: auto;
  }
  .ins_joinCon1 .center_box .item_box .item .right {
    width: 100%;
    height: auto;
  }
}
.ins_joinCon1 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_joinCon1 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.47rem;
  padding-bottom: 1.5rem;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .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: 0.65rem;
}
.ins_joinCon2 .center_box .item_box .w1487 {
  width: 15%;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box .item_box .w1487 {
    width: 100%;
    height: auto;
  }
}
.ins_joinCon2 .center_box .item_box .w2961 {
  width: 32%;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box .item_box .w2961 {
    width: 100%;
    height: auto;
  }
}
.ins_joinCon2 .center_box .item_box .item {
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.38rem;
  overflow: hidden;
  padding-bottom: 0.35rem;
}
.ins_joinCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.35rem;
  padding-bottom: 0;
}
.ins_joinCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
  text-align: center;
  padding: 0 0.1rem;
}
.ins_joinCon2 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  color: var(--active_color);
}
.ins_joinCon2 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .item_box .item .word2 {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.3rem;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
}
.ins_joinCon2 .center_box .item_box .item .word2 .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font24);
  color: #27282b;
  font-weight: 300;
}
.ins_joinCon2 .center_box .item_box .item .word2 .one span {
  width: fit-content;
}
.ins_joinCon2 .center_box .item_box .item .word2 .one span:first-child {
  flex-shrink: 0;
}
.ins_joinCon2 .center_box .item_box .item .itemBtn {
  width: fit-content;
  padding: 0.1rem 1.05rem;
  border-radius: 100px;
  font-size: var(--font24);
  color: #FFFFFF;
  cursor: pointer;
  background: linear-gradient(0deg, #e4acbd 10%, #f5e0e7 100%);
  border: #FFFFFF00;
  position: relative;
  z-index: 5;
  margin-top: 0.5rem;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_joinCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .item_box .item.w2961 {
    grid-column: span 2;
  }
}
.ins_joinCon2 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.ins_joinCon2 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1.7rem;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  gap: 0.2rem;
}
.ins_newCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  padding: 0.5rem 0.4rem;
  color: #FFFFFF;
}
.ins_newCon1 .center_box .item_box .item .word .t1 {
  font-size: var(--font36);
  font-weight: 500;
}
.ins_newCon1 .center_box .item_box .item .word .btn {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: var(--font18);
  margin-top: 0.2rem;
}
.ins_newCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .item_box .item .img {
    max-height: 6rem;
  }
  .ins_newCon1 .center_box .item_box .item .img img {
    object-fit: cover;
  }
}
.ins_newCon1 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.ins_newCon1 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1.7rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  gap: 0.2rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_newCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 63%;
}
.ins_newCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.3rem;
  -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 .t1 {
  font-size: var(--font36);
  font-weight: 500;
}
.ins_newCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.25rem;
  font-weight: 300;
}
.ins_newCon2 .center_box .item_box .item .word .btn {
  text-decoration: underline;
  font-size: var(--font18);
  margin-top: 0.25rem;
}
.ins_newCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.04);
}
.ins_newCon2 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.ins_newCon2 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_contentCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ins_contentCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contentCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  gap: 0.2rem;
}
.ins_contentCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_contentCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_contentCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_contentCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.4rem;
  gap: 0.4rem;
}
.ins_contentCon1 .center_box .item_box .item .word_box .word {
  width: fit-content;
  height: auto;
  font-weight: 500;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon {
  width: 100%;
  height: auto;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .t1 {
  color: var(--active_color);
  font-weight: 300;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .t2 {
  margin-top: 0.4rem;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .list {
  margin-top: 0.2rem;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font24);
  color: #27282b;
  font-weight: 300;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .list .one span {
  width: fit-content;
}
.ins_contentCon1 .center_box .item_box .item .word_box .icon .list .one span:first-child {
  flex-shrink: 0;
}
@media (max-width:990px) {
  .ins_contentCon1 .center_box .item_box .item .word_box .icon .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }
  .ins_contentCon1 .center_box .item_box .item .word_box .icon .list .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.24rem;
  }
  .ins_contentCon1 .center_box .item_box .item .word_box .icon .list .one span:first-child {
    color: var(--active_color);
  }
}
.ins_contentCon1 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_contentCon1 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_contentCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.ins_contentCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contentCon2 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 0.38rem;
  overflow: hidden;
}
.ins_contentCon2 .center_box .content1 .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem;
}
.ins_contentCon2 .center_box .content1 .word_box .word {
  font-weight: 500;
}
.ins_contentCon2 .center_box .content1 .word_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_contentCon2 .center_box .content1 .word_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contentCon2 .center_box .content1 .word_box .item_box .item .number {
  font-size: var(--font52);
  color: var(--active_color);
  font-weight: 300;
}
.ins_contentCon2 .center_box .content1 .word_box .item_box .item .icon {
  font-size: var(--font24);
  margin-top: 0.1rem;
}
@media (max-width:990px) {
  .ins_contentCon2 .center_box .content1 .word_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_contentCon2 .center_box .content1 .input {
  width: fit-content;
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  border-radius: 100px;
  border: 2px solid var(--active_color);
  display: -webkit-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_contentCon2 .center_box .content1 .input .btn {
  width: fit-content;
  padding: 0 0.2rem;
  height: 0.48rem;
  min-height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: 0;
  background: none;
  border-right: 2px solid var(--active_color);
  cursor: pointer;
}
.ins_contentCon2 .center_box .content1 .input .btn img {
  width: 0.34rem;
}
.ins_contentCon2 .center_box .content1 .input input {
  width: 3.8rem;
  height: 0.48rem;
  min-height: 34px;
  border: 0;
  background: none;
  text-align: center;
  color: var(--active_color);
  --color: var(--active_color);
  font-weight: 500;
}
.ins_contentCon2 .center_box .content1 .input input::-webkit-input-placeholder,
.ins_contentCon2 .center_box .content1 .input input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contentCon2 .center_box .content1 .input input:-moz-placeholder,
.ins_contentCon2 .center_box .content1 .input input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contentCon2 .center_box .content1 .input input::-moz-placeholder,
.ins_contentCon2 .center_box .content1 .input input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contentCon2 .center_box .content1 .input input:-ms-input-placeholder,
.ins_contentCon2 .center_box .content1 .input input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contentCon2 .center_box .content1 .img {
  width: 100%;
  height: auto;
}
.ins_contentCon2 .center_box .content1 .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_contentCon2 .center_box .content1 {
    width: 100%;
    height: auto;
  }
  .ins_contentCon2 .center_box .content1 .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_contentCon2 .center_box .content1 .input {
    width: fit-content;
    height: auto;
    position: relative;
    z-index: 1;
    bottom: unset;
    left: unset;
  }
  .ins_contentCon2 .center_box .content1 .img {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
}
.ins_contentCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  background: #FFFFFF;
  border-radius: 0.38rem;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_contentCon2 .center_box .content2 .word {
  font-weight: 500;
}
.ins_contentCon2 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.ins_contentCon2 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contentCon2 .center_box .content2 .item_box .item .pb {
  padding-bottom: 23%;
}
.ins_contentCon2 .center_box .content2 .item_box .item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_contentCon2 .center_box .content2 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_contentCon2 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_contentCon2 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.share_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_box .one .icon {
  width: 0.4rem;
  height: 0.4rem;
  background: #ff339833;
  border-radius: 100px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share_box .one .icon img {
  filter: brightness(0) invert(1);
}
.share_box .one .imgs {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  bottom: calc(100% + 0.1rem);
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.05rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 1px #8a8a8a1a;
}
.share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.share_box .one:hover .icon {
  background: var(--active_color);
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .content_info {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .content_info .title {
  font-weight: 500;
  line-height: 1.07;
}
.ins_newCon3 .center_box .content_info .cont0 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.6rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .content_info .cont0 .subtitle {
  width: 100%;
  height: auto;
  color: #27282b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  font-size: var(--font18);
}
.ins_newCon3 .center_box .content_info .cont0 .subtitle img {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_newCon3 .center_box .content_info .newContent {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_newCon3 .center_box .content_info .btn_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;
  margin-top: 0.4rem;
  gap: 0.8rem;
}
.ins_newCon3 .center_box .content_info .btn_info .left_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newCon3 .center_box .content_info .btn_info .left_box .one {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--font24);
  color: #27282b;
  width: fit-content;
}
.ins_newCon3 .center_box .content_info .btn_info .left_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_newCon3 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_newCon3 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
