@charset "utf-8";
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow1 {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow3 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes grow4 {
  0% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #FF6813;
  --color_fff: #ffffff;
  --color_text: #1A1A1A;
  --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);
  --font62: clamp(30px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font62 {
  font-size: var(--font62);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "Rubik_Regular";
  src: url("../fonts/Rubik-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Rubik_Medium";
  src: url("../fonts/Rubik-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "HarmonyOS";
  src: url("../fonts/HarmonyOS_SansSC_Regular.ttf");
  font-weight: 500;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
.w1888 {
  width: 100%;
  max-width: 1888px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1888 {
    max-width: 98.33333333%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.92rem;
  font-size: var(--font16);
  font-family: "Rubik_Regular";
  color: #333333;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.15rem;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.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;
}
/* 头部-导航栏 */
/* 内容置顶样式-配合gasp_plug中的toUp_Box()使用 */
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
.wowUp_z {
  overflow: hidden;
}
.wowUp_z .wowSon {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
}
.wowUp_z.fadeInUp .wowSon {
  opacity: 1;
  transform: translateY(0px);
}
/* --------------------------------------------------------------- 轮播图依次出现 */
.wowUpSB {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/**
*
* <div class="it_info">
*     <div class="item_box">
*         <div class="item active">干货文章</div>
*         <div class="item">学习园地</div>
*         <div class="item">企微使用指南</div>
*         <div class="item">资讯动态</div>
*         <div class="item">行业资讯</div>
*         <div class="item">解决方案</div>
*     </div>
* </div>
* .it_info { max-height: 36px; overflow: hidden; }
* .item_box { overflow: auto; padding-bottom: 10px; justify-content: start !important;
*     .item { white-space: nowrap; font-size: 16px !important; }
* }
*
*/
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal span {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 轮播图一排出现 */
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal2 {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 代替class */
/* --------------------------------------------------------------- 视频播放图标 */
.vIcon {
  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;
}
.vIcon::after {
  content: '\e61d';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  font-size: var(--font50);
  color: #FFFFFF;
  cursor: pointer;
}
/* --------------------------------------------------------------- 点击同意条款 
<div class="checkbox_c"><div class="icon"><i></i></div><input type="checkbox"><span>我理解并同意按照隐私保护条款使用和传递我的个人信息。</span></div>
*/
.checkbox_c {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  cursor: pointer;
}
.checkbox_c span {
  color: #717171;
}
.checkbox_c .icon {
  width: 0.15rem;
  height: 0.15rem;
  border: 1px solid #979797;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: normal;
}
.checkbox_c .icon i {
  width: 0.08rem;
  height: 0.08rem;
  background: #000;
  opacity: 0;
  display: block;
}
.checkbox_c input {
  display: none;
}
.checkbox_c.active .icon i {
  opacity: 1;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
/* --------------------------------------------------------------- 新增公共组件 */
/* 轮播图分页器-进度条 */
.idxPageProgressbar {
  width: 100%;
  height: 1px !important;
  position: relative;
}
.idxPageProgressbar.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
}
.idxPageProgressbar.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 3px;
  background: var(--active_color);
  border-radius: 0.03rem;
  position: absolute;
  top: -0.01rem;
}
/* 分页 */
#laypage .layui-laypage {
  gap: 0;
}
#laypage .layui-laypage > a,
#laypage .layui-laypage > span {
  background-color: transparent;
}
#laypage .layui-laypage .layui-laypage-prev,
#laypage .layui-laypage .layui-laypage-next {
  width: fit-content;
  height: 0.56rem;
  padding: 0 0.4rem;
  gap: 0.21rem;
  background: transparent;
  border: 1px solid #999;
  border-radius: 0.6rem;
}
#laypage .layui-laypage .layui-laypage-prev span,
#laypage .layui-laypage .layui-laypage-next span {
  color: #000;
  font-size: var(--font16);
  font-weight: 400;
  line-height: calc(24 / 16);
  background-color: transparent;
}
#laypage .layui-laypage .layui-laypage-prev i,
#laypage .layui-laypage .layui-laypage-next i {
  font-size: 13px;
}
#laypage .layui-laypage .layui-laypage-prev:hover,
#laypage .layui-laypage .layui-laypage-next:hover {
  border-color: var(--active_color);
  background-color: var(--active_color);
}
#laypage .layui-laypage .layui-laypage-prev:hover span,
#laypage .layui-laypage .layui-laypage-next:hover span,
#laypage .layui-laypage .layui-laypage-prev:hover i,
#laypage .layui-laypage .layui-laypage-next:hover i {
  color: #fff;
}
#laypage .layui-laypage .layui-laypage-prev {
  flex-direction: row-reverse;
  margin-right: 0.64rem;
}
#laypage .layui-laypage .layui-laypage-next {
  margin-left: 0.64rem;
}
#laypage .layui-laypage .layui-disabled span,
#laypage .layui-laypage .layui-disabled:hover span,
#laypage .layui-laypage .layui-disabled i,
#laypage .layui-laypage .layui-disabled:hover i {
  color: #d2d2d2 !important;
}
@media (max-width:990px) {
  #laypage .layui-laypage .layui-laypage-prev,
  #laypage .layui-laypage .layui-laypage-next {
    padding: 0 0.2rem;
  }
  #laypage .layui-laypage .layui-laypage-prev i,
  #laypage .layui-laypage .layui-laypage-next i {
    font-size: 10px;
  }
  #laypage .layui-laypage .layui-laypage-prev {
    margin-right: 0.2rem;
  }
  #laypage .layui-laypage .layui-laypage-next {
    margin-left: 0.2rem;
  }
}
.idx_more {
  width: fit-content;
  height: auto;
  padding: 0.12rem 0.12rem 0.12rem 0.4rem;
  margin-top: 0.72rem;
  border-radius: 0.44rem;
  background-color: var(--active_color);
  backdrop-filter: blur(0.1535rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.idx_more span {
  color: #FFF;
  font-size: var(--font18);
  font-weight: 330;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .icon {
  width: 0.34rem;
  height: 0.34rem;
  min-width: 24px;
  min-height: 24px;
  display: -webkit-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-color: #fff;
  border-radius: 0.5rem;
}
.idx_more .icon img {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more:hover {
  background-color: #fff;
}
.idx_more:hover span {
  color: var(--active_color);
}
.idx_more:hover .icon {
  background-color: var(--active_color);
}
.idx_more:hover .icon img {
  transform: rotate(45deg);
  filter: brightness(0) invert(1);
}
.idx_more2 {
  width: 0.54rem;
  height: 0.54rem;
  min-width: 18px;
  min-height: 18px;
  display: -webkit-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-color: var(--active_color);
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .icon {
  width: 0.1375rem;
  height: 0.1223rem;
  min-width: 10px;
  min-height: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_more2 .icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.idx_more3 {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more3 a {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.12rem;
}
.idx_more3 span {
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 330;
}
.idx_more3 .icon {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 18px;
  min-height: 18px;
  display: -webkit-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-color: var(--active_color);
  border-radius: 0.5rem;
}
.idx_more3 .icon img {
  width: 7.687px;
  height: 6.833px;
  filter: brightness(0) invert(1);
}
.idx_title1 {
  color: var(--color_text);
  font-family: 'Rubik_Medium';
  font-size: var(--font62);
  font-weight: 500;
  text-align: center;
  position: relative;
  /*  white-space: nowrap; */
  color: transparent;
  background-color: var(--color_text);
  background-clip: text, text;
  margin-top: 0.24rem;
}
.idx_title1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(40deg, transparent 0%, rgba(255, 242, 217, 0) 48%, rgba(255, 242, 217, 0.3) 50%, rgba(255, 242, 217, 0.1) 52%, rgba(255, 242, 217, 0) 55%, transparent 100%), linear-gradient(40deg, transparent 0%, rgba(233, 194, 173, 0) 40%, hsl(21, 100%, 59%) 50%, rgba(228, 122, 63, 0.85) 57.69%, rgba(228, 122, 63, 0) 60%, transparent 100%);
  background-clip: text, text;
  background-size: 300% 100%, 300% 100%;
  background-repeat: no-repeat;
}
.idx_title1.active::after {
  animation: shine 5s linear;
}
@keyframes shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
.idx_title2 {
  width: fit-content;
  height: auto;
  min-height: 0.35rem;
  padding: 0.08rem 0.32rem;
  border-radius: 0.44rem;
  background: rgba(255, 104, 19, 0.1);
  backdrop-filter: blur(0.1535rem);
  color: #FF6813;
  font-size: var(--font16);
  font-weight: 400;
  margin: 0 auto;
}
.idx_title2.bgfff {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.idx_title3 {
  color: #FFF;
  font-family: 'Rubik_Medium';
  font-size: var(--font62);
  font-weight: 500;
  margin-top: 0.24rem;
}
.idx_title4 {
  color: #999;
  font-size: var(--font18);
  font-weight: 400;
  line-height: 1;
}
.idx_title4 a {
  display: inline-block;
  color: var(--active_color);
  text-decoration: underline;
}
.idx_title5 {
  color: var(--color_text);
  font-size: var(--font32);
  font-weight: 400;
}
.idx_title16 {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
}
.idx_title24 {
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 400;
}
/* 动画效果 */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}
.idx_banner {
  width: 100%;
  height: fit-content;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--header-height);
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100 img,
.idx_banner .swiper_box ul li .centerInfo .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: url('../images/bg1.png') no-repeat 100% 100%;
}
.idx_banner .swiper_box .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0 0.64rem;
}
.idx_banner .swiper_box .content .t1 {
  /* width: 41.36%; */
  width: auto;
  height: auto;
  color: #FFF;
  font-size: var(--font62);
  font-weight: 400;
}
.idx_banner .swiper_box .content .word {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_banner .swiper_box .content .word .left_box {
  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: 2.43rem;
}
.idx_banner .swiper_box .content .word .left_box .idx_more {
  margin-top: 0;
}
.idx_banner .swiper_box .content .word .left_box .t2 {
  /* width: auto; min-width: 25.5681%; max-width: 55%; */
  width: 26%;
  height: auto;
  max-height: 3.5rem;
  overflow-y: auto;
  color: #FFF;
  font-size: var(--font18);
  font-weight: 400;
}
.idx_banner .swiper_box .idxPageProgressbar {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.idx_banner .swiper_box .idxPageProgressbar.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.4);
}
.idx_banner .swiper_box .idxPageProgressbar.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 3px;
  background: #fff;
  border-radius: 0.03rem;
  position: absolute;
  top: -0.01rem;
}
.idx_banner .swiper_box .swiper_nav {
  display: -webkit-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.24rem;
  margin-right: 0.08rem;
  position: absolute;
  bottom: 1.24rem;
  right: 0.64rem;
  z-index: 2;
}
.idx_banner .swiper_box .swiper_nav .prev,
.idx_banner .swiper_box .swiper_nav .next {
  width: 0.52rem;
  height: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.61rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}
.idx_banner .swiper_box .swiper_nav .prev i,
.idx_banner .swiper_box .swiper_nav .next i {
  color: #fff;
  font-size: 10px;
}
.idx_banner .swiper_box .swiper_nav .prev:hover,
.idx_banner .swiper_box .swiper_nav .next:hover {
  border-color: var(--active_color);
  background-color: var(--active_color);
}
.idx_banner .swiper_box .btns {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
}
.idx_banner .swiper_box .btns .idx_more3 span {
  color: #fff;
}
.idx_banner .swiper_box .btns .idx_more3:hover .icon {
  background-color: #fff;
}
.idx_banner .swiper_box .btns .idx_more3:hover .icon img {
  filter: none;
  transform: rotate(45deg);
}
.idx_banner .swiper_box .btns i {
  width: 1px;
  height: 0.21rem;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width:990px) {
  .idx_banner .swiper_box .content .t1 {
    width: 100%;
  }
  .idx_banner .swiper_box .content .word {
    flex-direction: column;
    gap: 0.32rem;
  }
  .idx_banner .swiper_box .content .word .left_box {
    flex-direction: column;
    gap: 0.32rem;
  }
  .idx_banner .swiper_box .content .word .left_box .t2 {
    width: 100% !important;
    max-width: none;
  }
  .idx_banner .swiper_nav {
    display: none !important;
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.4rem 0 0.71rem 0;
}
.idx_homeCon2 .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_homeCon2 .swiper_box ul li {
  width: 100%;
  height: auto;
  min-height: 5.53rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.32rem;
  background: #EBEEF0;
}
.idx_homeCon2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  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-direction: column;
  padding: 0.52rem;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .top_box {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .top_box .image {
  width: 3.53rem;
  height: 2.24rem;
  border-radius: 0.2rem;
  /* overflow: hidden; */
  position: absolute;
  top: 0.52rem;
  right: 0.52rem;
  z-index: -1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .top_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .bottom_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.24rem;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .bottom_box .idx_title4 {
  width: 4.66rem;
}
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .idx_title5,
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .idx_title4 {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .idx_more2 {
  background-color: #fff;
}
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .idx_more2 img {
  filter: none;
  transform: rotate(45deg);
}
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .image {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.idx_homeCon2 .swiper_box ul li:hover .centerInfo .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.idx_homeCon2 .swiper_box .idxPageProgressbar {
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .idx_homeCon2 .swiper_box ul li .centerInfo .bottom_box .idx_title4 {
    flex: 1;
    width: auto;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.71rem;
  padding-bottom: 0.12rem;
}
.idx_homeCon3 .center_box .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
}
.idx_homeCon3 .center_box .img_w100 img,
.idx_homeCon3 .center_box .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.idx_homeCon3 .center_box .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.idx_homeCon3 .center_box .content {
  width: 32%;
  height: auto;
  position: absolute;
  top: 2.06rem;
  left: 0;
  z-index: 1;
  overflow: hidden;
  margin: 0 0.64rem;
}
.idx_homeCon3 .center_box .content .idx_title2 {
  margin: 0;
}
.idx_homeCon3 .center_box .content .t2 {
  color: #FFF;
  font-family: 'Rubik_Medium';
  font-size: var(--font62);
  font-weight: 500;
  line-height: normal;
  margin-top: 0.24rem;
}
.idx_homeCon3 .center_box .content .t3 {
  color: #FFF;
  font-size: var(--font24);
  font-weight: 400;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content {
    width: 93.22%;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.12rem;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  background: url('../images/bg4.png') no-repeat, #E5ECF2;
  background-position: 100% bottom;
  background-size: contain;
  padding: 1.4rem 0.64rem 5.92rem 0.64rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.4rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .left_box {
  width: 36.13%;
  height: auto;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .left_box .idx_title2 {
  margin: 0;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .left_box .idx_title3 {
  color: var(--color_text);
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .left_box .idx_title4 {
  margin-top: 0.4rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box {
  width: 60.22%;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /* gap: 0.18rem; */
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .icon {
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--active_color);
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .icon i {
  font-size: 6px;
  color: #fff;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .icon::before {
  content: "";
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  position: absolute;
  z-index: -1;
  background-color: #ffffff;
  border-radius: 50%;
  animation: grow1 2s infinite 0s;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .word .t1 {
  color: #656565;
  font-family: 'HarmonyOS';
  font-weight: 400;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .word .t1.cfff {
  color: #fff;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .word.left_word {
  position: absolute;
  right: 0.18rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box .img_box .item_box .item .word.right_word {
  position: absolute;
  left: 0.22rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content2 {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.54rem 2rem;
  margin-top: 0.7533rem;
  /* .flex; .a_center; .j_justify; flex-wrap: wrap; gap: 0.54rem 3.32rem; */
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content2 .item {
  width: fit-content;
  height: auto;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content2 .item .idx_title3 {
  color: var(--active_color);
  margin-top: 0;
}
.idx_homeCon4 .center_box .idx_homeCon4_con1 .content2 .item .idx_title3 span {
  color: var(--color_text);
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1.4rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .left_box {
  width: 39.82%;
  height: auto;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .left_box .idx_title2 {
  margin: 0;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .left_box .idx_title3 {
  color: var(--color_text);
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .left_box .idx_more {
  margin-top: 0.48rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .right_box {
  width: fit-content;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.1853rem;
  margin-top: 0.59rem;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .right_box .item {
  width: 2.2rem;
  height: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.2rem;
  background-color: #fff;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .right_box .item .pb {
  padding-bottom: 42.72%;
}
.idx_homeCon4 .center_box .idx_homeCon4_con2 .content .right_box .item .idx_title4 {
  margin-top: 0.16rem;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box {
    padding-bottom: 2.92rem;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 {
    flex-direction: column;
    gap: 0.52rem;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .left_box,
  .idx_homeCon4 .center_box .idx_homeCon4_con1 .content1 .right_box {
    width: 100%;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con1 .content2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.32rem;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con2 .content {
    flex-direction: column;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con2 .content .left_box {
    width: 100%;
  }
  .idx_homeCon4 .center_box .idx_homeCon4_con2 .content .right_box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 0.24rem 0.16rem;
    /* justify-items: center; */
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.4rem 0;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_homeCon5 .center_box .content .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon5 .center_box .content .top_box .left_box {
  width: 36.59%;
  height: auto;
  border-radius: 0.32rem;
  background: url('../images/bg7.png') no-repeat 100% 100%, linear-gradient(219.26deg, #f5f8fa, #f4d3c0 100%);
  background-size: cover;
  padding: 0.52rem 0.51rem 0.53rem 0.51rem;
}
.idx_homeCon5 .center_box .content .top_box .left_box .word {
  width: 100%;
  height: auto;
  margin-top: 3.19rem;
}
.idx_homeCon5 .center_box .content .top_box .left_box .word .idx_title5 {
  margin-top: 0.27rem;
}
.idx_homeCon5 .center_box .content .top_box .left_box .word .idx_more {
  margin-top: 0.64rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box {
  width: 62.1%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.32rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box {
  width: 100%;
  height: 100%;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.52rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(25, 10, 2, 0) -4.6%, #190A02 100%);
  opacity: 0.8;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .idx_title4 {
  color: #fff;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word {
  margin-top: 3.19rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .idx_title5 {
  width: calc(56.26% + 0.52rem);
  height: auto;
  color: #FFF;
  margin-top: 0.27rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.64rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .idx_more {
  margin-top: 0;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav {
  display: -webkit-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.24rem;
  margin-right: 0.1785rem;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .prev,
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .next {
  width: 0.58032rem;
  height: 0.58032rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.45rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .prev i,
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .next i {
  color: #fff;
  font-size: 10px;
}
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .prev:hover,
.idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .btns .swiper_nav .next:hover {
  border-color: var(--active_color);
  background-color: var(--active_color);
}
.idx_homeCon5 .center_box .content .bottom_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
  margin-top: 0.52rem;
}
.idx_homeCon5 .center_box .content .bottom_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.52rem;
}
.idx_homeCon5 .center_box .content .bottom_box .item .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.idx_homeCon5 .center_box .content .bottom_box .item .t1 i {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.idx_homeCon5 .center_box .content .bottom_box .item .t2 {
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 400;
  margin-top: 0.24rem;
}
.idx_homeCon5 .center_box .content .bottom_box .item .idx_more3 {
  margin-top: 1.2rem;
}
.idx_homeCon5 .center_box .content .bottom_box .item:hover {
  background: url('../images/bg6.png') no-repeat;
  background-size: cover;
}
.idx_homeCon5 .center_box .content .bottom_box .item:hover .idx_title4,
.idx_homeCon5 .center_box .content .bottom_box .item:hover .t2 {
  color: #fff;
}
.idx_homeCon5 .center_box .content .bottom_box .item:hover .idx_more3 span {
  color: #fff;
}
.idx_homeCon5 .center_box .content .bottom_box .item:hover .idx_more3 .icon {
  background-color: #fff;
}
.idx_homeCon5 .center_box .content .bottom_box .item:hover .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .content .top_box {
    flex-direction: column;
    gap: 0.52rem;
  }
  .idx_homeCon5 .center_box .content .top_box .left_box,
  .idx_homeCon5 .center_box .content .top_box .right_box {
    width: 100%;
  }
  .idx_homeCon5 .center_box .content .top_box .right_box .swiper_box ul li .con .word .idx_title5 {
    width: 100%;
  }
  .idx_homeCon5 .center_box .content .bottom_box {
    grid-template-columns: 1fr;
  }
}
/* 产品 */
.ins_products1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 1.4rem;
}
.ins_products1 .center_box {
  width: 100%;
  height: auto;
}
.ins_products1 .center_box .idx_title1 {
  margin-top: 1.4rem;
}
.ins_products1 .center_box .products_search_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
  margin-top: 0.8rem;
}
.ins_products1 .center_box .products_search_box .f_xial {
  width: 100%;
  position: relative;
}
.ins_products1 .center_box .products_search_box .f_xial .f_title {
  width: 100%;
  height: 0.76rem;
  padding: 0 0.32rem;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #EBEEF0;
  border-radius: 0.2rem;
  font-size: var(--font24);
  color: var(--color_666);
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 {
  position: absolute;
  top: calc(100% + 0.08rem);
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  z-index: 222;
  background-color: #fff;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 10px;
  padding-bottom: 20px;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list {
  padding: 0 14px 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #666;
  margin-bottom: 16px;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list span {
  flex: 1;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list:nth-child(1) {
  margin-top: 20px;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #666;
  margin-right: 10px;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list.on:before {
  border-color: var(--active_color);
  background: var(--active_color) url(../images/i35.png) no-repeat center;
  background-size: 80%;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1 .f_list:hover span {
  color: var(--active_color);
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--active_color);
}
.ins_products1 .center_box .products_search_box .f_xial .f_jut1::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #EBEEF0;
}
.ins_products1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_products1 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.32rem 0.31rem;
}
.ins_products1 .center_box .content .con .item {
  width: 100%;
  height: auto;
  min-height: 4.36rem;
  position: relative;
  z-index: 1;
  border-radius: 32px;
  background-color: #EBEEF0;
  padding: 0.52rem 0.5rem 0.52rem 0.52rem;
}
.ins_products1 .center_box .content .con .item .idx_title4 {
  margin-top: 0.24rem;
}
.ins_products1 .center_box .content .con .item .t3 {
  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;
  flex-wrap: wrap;
  gap: 0.12rem;
  margin-top: 0.4rem;
}
.ins_products1 .center_box .content .con .item .t3 .idx_title2 {
  margin: 0;
  padding: 0.12rem 0.24rem;
  font-size: var(--font14);
}
.ins_products1 .center_box .content .con .item .btns_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.73rem;
}
.ins_products1 .center_box .content .con .item .btns_box .btns {
  width: max-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
}
.ins_products1 .center_box .content .con .item .btns_box .btns .idx_more3 .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_products1 .center_box .content .con .item .btns_box .btns .idx_more3 .icon img {
  width: 7.687px;
  height: 6.833px;
}
.ins_products1 .center_box .content .con .item .btns_box .btns i {
  display: inline-block;
  width: 1px;
  height: 0.21rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.ins_products1 .center_box .content .con .item:hover {
  background: url('../images/bg6.png') no-repeat;
  background-size: cover;
}
.ins_products1 .center_box .content .con .item:hover .idx_title5 {
  color: #FFF;
}
.ins_products1 .center_box .content .con .item:hover .idx_title4 {
  color: rgba(255, 255, 255, 0.8);
}
.ins_products1 .center_box .content .con .item:hover .btns .idx_more3 span {
  color: #fff;
}
.ins_products1 .center_box .content .con .item:hover .btns .idx_more3 .icon {
  background-color: #fff;
}
.ins_products1 .center_box .content .con .item:hover .btns .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_products1 .center_box .content .con .item:hover .btns i {
  background-color: rgba(255, 255, 255, 0.1);
}
.ins_products1 .center_box .content #laypage {
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_products1 .center_box .products_search_box {
    grid-template-columns: 1fr;
  }
  .ins_products1 .center_box .content .con {
    grid-template-columns: 1fr;
  }
}
.ins_products_detail1.idx_banner .swiper_box .content .word .left_box .t2 {
  width: 38.8%;
}
.ins_products_detail2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_products_detail2 .center_box {
  width: 100%;
  height: auto;
}
.ins_products_detail2 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_products_detail2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_products_detail2 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.ins_products_detail2 .center_box .content .con .item {
  width: 100%;
  height: auto;
  min-height: 4.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.52rem;
}
.ins_products_detail2 .center_box .content .con .item .top_box {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_products_detail2 .center_box .content .con .item .top_box .icon {
  width: 0.56rem;
  height: 0.56rem;
  min-width: 38px;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--active_color);
  border-radius: 0.5rem;
}
.ins_products_detail2 .center_box .content .con .item .top_box .icon img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 16px;
  min-height: 16px;
}
.ins_products_detail2 .center_box .content .con .item .idx_title4 {
  width: fit-content;
  height: auto;
  position: absolute;
  left: 0.52rem;
  right: 0.52rem;
  bottom: 0.52rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_products_detail2 .center_box .content .con .item {
    grid-column: 1 / -1;
  }
}
.ins_products_detail3 {
  padding-bottom: 0.24rem !important;
}
.ins_banner1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--header-height);
}
.ins_banner1 .center_box {
  width: 100%;
  height: auto;
}
.ins_banner1 .center_box .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
}
.ins_banner1 .center_box .img_w100 img,
.ins_banner1 .center_box .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_banner1 .center_box .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.ins_banner1 .center_box .content {
  width: 93.22%;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
}
.ins_banner1 .center_box .content .t1 {
  color: #FFF;
  font-size: var(--font64);
  font-weight: 400;
}
.ins_banner1 .center_box .content .idx_title4 {
  color: #fff;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .ins_banner1 .center_box .content .idx_title4 {
    width: 100% !important;
  }
}
.ins_banner2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--header-height);
}
.ins_banner2 .center_box {
  width: 100%;
  height: auto;
}
.ins_banner2 .center_box .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
}
.ins_banner2 .center_box .img_w100 img,
.ins_banner2 .center_box .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_banner2 .center_box .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.ins_banner2 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_banner2 .center_box .content .breadcrumb_con {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0.48rem;
  left: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.12rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font16);
  font-weight: 400;
}
.ins_banner2 .center_box .content .breadcrumb_con span:last-child {
  color: #fff;
}
.ins_banner2 .center_box .content .breadcrumb_con i {
  font-size: 10px;
}
.ins_banner2 .center_box .content .con {
  width: 36.12%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ins_banner2 .center_box .content .con .idx_title4 {
  color: #fff;
  margin-top: 0.24rem;
}
.ins_banner2 .center_box .content .con .idx_more {
  margin: 0.52rem auto 0 auto;
}
@media (max-width:990px) {
  .ins_banner2 .center_box .content .con {
    width: 93.22% !important;
  }
}
.ins_news1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_news1 .center_box {
  width: 100%;
  height: auto;
}
.ins_news1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_news1 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.ins_news1 .center_box .content .con .item {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  border-radius: 0.32rem;
  background: #EBEEF0;
}
.ins_news1 .center_box .content .con .item .pb {
  padding-bottom: 60.54%;
  border-radius: 0.28rem;
}
.ins_news1 .center_box .content .con .item .word {
  padding: 0.32rem 0.24rem;
}
.ins_news1 .center_box .content .con .item .word .t2 {
  height: calc(2em * 1.1);
  line-height: 1.1;
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_news1 .center_box .content .con .item .word .t3 {
  height: calc(3em * 1.1);
  line-height: 1.1;
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_news1 .center_box .content .con .item .word .idx_more3 {
  margin-top: 0.72rem;
}
.ins_news1 .center_box .content .con .item:hover {
  background: url('../images/bg9.png') no-repeat;
  background-size: cover;
}
.ins_news1 .center_box .content .con .item:hover .idx_title4,
.ins_news1 .center_box .content .con .item:hover .idx_title5 {
  color: #fff;
}
.ins_news1 .center_box .content .con .item:hover .idx_more3 span {
  color: #fff;
}
.ins_news1 .center_box .content .con .item:hover .idx_more3 .icon {
  background-color: #fff;
}
.ins_news1 .center_box .content .con .item:hover .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_news1 .center_box .content #laypage {
  margin-top: 0.94rem;
}
@media (max-width:990px) {
  .ins_news1 .center_box .content .con {
    grid-template-columns: 1fr;
  }
}
.ins_breadcrumb1 {
  width: 100%;
  height: auto;
  padding-top: calc(var(--header-height) + 0.4rem);
}
.ins_breadcrumb1 .center_box {
  width: 100%;
  height: auto;
}
.ins_breadcrumb1 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
}
.ins_breadcrumb1 .center_box .content span:last-child {
  color: #666;
}
.ins_breadcrumb1 .center_box .content i {
  font-size: 10px;
}
@media (max-width:990px) {
  .ins_breadcrumb1 {
    display: none;
  }
}
.ins_news_detail1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.81rem;
  padding-bottom: 1.4rem;
}
.ins_news_detail1 .center_box {
  width: 100%;
  height: auto;
}
.ins_news_detail1 .center_box .content {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_news_detail1 .center_box .content .left_box {
  width: 70.56%;
  height: auto;
}
.ins_news_detail1 .center_box .content .left_box .idx_title3 {
  width: 90.98%;
  color: var(--color_text);
  margin-top: 0;
}
.ins_news_detail1 .center_box .content .left_box .con1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.52rem;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_left {
  display: -webkit-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.26rem;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_left .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_left .item .icon {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_left .item .icon img {
  width: 100%;
  height: 100%;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_right .icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 24px;
  min-height: 24px;
  filter: grayscale(1) opacity(0.2);
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_right .icon img {
  width: 100%;
  height: 100%;
}
.ins_news_detail1 .center_box .content .left_box .con1 .con_right .icon:hover {
  filter: opacity(1);
}
.ins_news_detail1 .center_box .content .left_box .con2 {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.52rem;
  padding-bottom: 0.4rem;
  margin-top: 0.32rem;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(27 / 18);
}
.ins_news_detail1 .center_box .content .left_box .con2 h1 {
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 400;
  line-height: calc(36 / 24);
}
.ins_news_detail1 .center_box .content .left_box .con2 p {
  min-height: 1em;
  width: 100%;
  height: auto;
}
.ins_news_detail1 .center_box .content .left_box .con2 img {
  border-radius: 0.32rem;
}
.ins_news_detail1 .center_box .content .left_box .con2 a {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_news_detail1 .center_box .content .left_box .con3 {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.52rem;
  margin-top: 0.4rem;
}
.ins_news_detail1 .center_box .content .left_box .con3 .idx_title16 {
  color: #666;
  line-height: calc(24 / 16);
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns .btn {
  width: auto;
  min-width: 1.66rem;
  height: 0.58rem;
  border: 1px solid #999;
  border-radius: 0.46rem;
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns .btn a {
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.18rem;
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns .btn i {
  font-size: 10px;
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns .btn:hover {
  border-color: var(--active_color);
  background-color: var(--active_color);
}
.ins_news_detail1 .center_box .content .left_box .con3 .btns .btn:hover a {
  color: #fff;
}
.ins_news_detail1 .center_box .content .right_box {
  width: 24.77%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.4rem 0.31rem 0.32rem 0.32rem;
}
.ins_news_detail1 .center_box .content .right_box .idx_title5 {
  font-family: 'Rubik_Medium';
  font-weight: 500;
  line-height: calc(38.4 / 32);
}
.ins_news_detail1 .center_box .content .right_box .con1 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_news_detail1 .center_box .content .right_box .con1 .item {
  width: 100%;
  height: auto;
}
.ins_news_detail1 .center_box .content .right_box .con1 .item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}
.ins_news_detail1 .center_box .content .right_box .con1 .item .pb {
  padding-bottom: 60.48%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_news_detail1 .center_box .content .right_box .con1 .item .t1 {
  color: #1A1A1A;
  font-size: var(--font24);
  font-weight: 400;
  letter-spacing: -0.0072rem;
  margin-top: 0.24rem;
}
.ins_news_detail1 .center_box .content .right_box .con2 {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #fff;
  padding: 0.4rem 0.32rem 0.35rem 0.32rem;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .idx_title4 {
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns {
  width: max-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  margin-top: 0.32rem;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns .idx_more3 a {
  gap: 0.08rem;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns .idx_more3 span {
  font-size: var(--font18);
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns .idx_more3 .icon {
  width: 0.18047rem;
  height: 0.18047rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns .idx_more3 .icon img {
  width: 5.78px;
  height: 5.138px;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item .btns i {
  display: inline-block;
  width: 1px;
  height: 0.12rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover {
  background: url('../images/bg14.png') no-repeat;
  background-size: cover;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .idx_title24 {
  color: #FFF;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .idx_title4 {
  color: rgba(255, 255, 255, 0.8);
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .btns .idx_more3 span {
  color: #fff;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .btns .idx_more3 .icon {
  background-color: #fff;
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .btns .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_news_detail1 .center_box .content .right_box .con2 .item:hover .btns i {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width:990px) {
  .ins_news_detail1 {
    padding-top: calc(var(--header-height) + 0.81rem);
  }
  .ins_news_detail1 .center_box .content .left_box {
    width: 100%;
  }
  .ins_news_detail1 .center_box .content .left_box .con1 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.32rem;
    flex-direction: column;
  }
  .ins_news_detail1 .center_box .content .left_box .con3 .word {
    gap: 0.32rem;
    flex-direction: column;
  }
  .ins_news_detail1 .center_box .content .right_box {
    display: none;
  }
}
.ins_blog1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--header-height);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_blog1 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_blog1 .center_box > .idx_title4 {
  text-align: center;
  margin-top: 0.4rem;
}
.ins_blog1 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 0.16rem;
  margin-top: 0.64rem;
}
.ins_blog1 .center_box .content .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_blog1 .center_box .content .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_blog1 .center_box .content .left_box {
  width: 61.19%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_blog1 .center_box .content .left_box .image {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_blog1 .center_box .content .left_box .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_blog1 .center_box .content .right_box {
  /* width: 32.44%; */
  flex: 1;
  height: auto;
  padding-right: 0.28rem;
}
.ins_blog1 .center_box .content .right_box .t1 {
  color: var(--active_color);
  margin-top: 0;
}
.ins_blog1 .center_box .content .right_box .t2 {
  margin-top: 0.16rem;
}
.ins_blog1 .center_box .content .right_box .t3 {
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-right: 0.23rem;
}
.ins_blog1 .center_box .content .right_box .t2,
.ins_blog1 .center_box .content .right_box .t3 {
  color: #fff;
}
.ins_blog1 .center_box .content .right_box .idx_more {
  margin-top: 2.49rem;
}
@media (max-width:990px) {
  .ins_blog1 {
    border-top: none;
  }
  .ins_blog1 .center_box .content {
    flex-direction: column;
  }
  .ins_blog1 .center_box .content .left_box {
    width: 100%;
  }
  .ins_blog1 .center_box .content .right_box {
    padding: 0 0.24rem 0.16rem 0.24rem;
  }
  .ins_blog1 .center_box .content .right_box .idx_more {
    margin-top: 0.54rem;
  }
}
.ins_blog2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
}
.ins_blog2 .center_box .tabs_box {
  width: 100%;
  height: auto;
  border-radius: 1.12rem;
  background-color: #EBEEF0;
  padding: 0.04rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.16rem;
}
.ins_blog2 .center_box .tabs_box .item {
  width: auto;
  min-width: 2.79rem;
  height: 0.84rem;
  border-radius: 0.87rem;
}
.ins_blog2 .center_box .tabs_box .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #666;
  padding: 0.16rem;
}
.ins_blog2 .center_box .tabs_box .item.active,
.ins_blog2 .center_box .tabs_box .item:hover {
  background-color: var(--active_color);
}
.ins_blog2 .center_box .tabs_box .item.active a,
.ins_blog2 .center_box .tabs_box .item:hover a {
  color: #fff;
}
.ins_blog2 .center_box .content {
  margin-top: 0.44rem;
}
.ins_blog2 .center_box .content .con {
  grid-gap: 0.32rem 0.3rem;
}
.ins_blog2 .center_box .content .con .item .word .idx_more3 {
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .ins_blog2 .center_box .tabs_box {
    background-color: transparent;
    border-radius: initial;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_blog2 .center_box .tabs_box .item {
    background-color: #EBEEF0;
  }
}
.ins_blog_detail1 {
  padding-bottom: 0.7rem;
}
.ins_blog_detail2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.24rem;
}
.ins_blog_detail2 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  background: #1A1A1A;
  padding: 1.4rem 0;
}
.ins_blog_detail2 .center_box .idx_title3 {
  margin-top: 0;
  text-align: center;
}
.ins_blog_detail2 .center_box .content {
  width: 93.22%;
  height: auto;
  margin: 0.8rem auto 0 auto;
  overflow: hidden;
}
.ins_blog_detail2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  border-radius: 0.32rem;
  background-color: #333;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .pb {
  padding-bottom: 60.54%;
  border-radius: 0.28rem;
  position: relative;
  overflow: hidden;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word {
  padding: 0.32rem 0.22rem 0.24rem 0.24rem;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word .t1 {
  color: #fff;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word .idx_title5 {
  color: #fff;
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word .t3 {
  margin-top: 0.24rem;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word .idx_more3 {
  margin-top: 0.52rem;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li .word .idx_more3 span {
  color: #fff;
  font-weight: 400;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li:hover .idx_title5 {
  color: var(--active_color);
}
.ins_blog_detail2 .center_box .content .swiper_box ul li:hover .idx_more3 span {
  color: #fff;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li:hover .idx_more3 .icon {
  background-color: #fff;
}
.ins_blog_detail2 .center_box .content .swiper_box ul li:hover .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_blog_detail2 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 0.8rem;
}
.ins_blog_detail2 .center_box .content .swiper_box .idxPageProgressbar.swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width:990px) {
  .ins_blog_detail2 .center_box .content {
    padding: 0 0.32rem;
  }
  .ins_blog_detail2 .center_box .content .idxPageProgressbar {
    width: 100% !important;
  }
}
/* 关于我们 */
.ins_about1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_about1 .idx_title1 {
  margin: 0 auto;
}
.ins_about1 .idx_title4 {
  width: 64.14%;
  margin: 0.4rem auto 0 auto;
  text-align: center;
}
.ins_about1 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.4rem;
  margin-top: 0.8rem;
}
.ins_about1 .content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.ins_about1 .content .image {
  width: 100%;
  height: auto;
}
.ins_about1 .content .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_about1 .content .playIcon {
  width: 0.81931rem;
  height: 0.81931rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ins_about1 .content .playIcon img {
  width: 100%;
  height: 100%;
}
@media (max-width:990px) {
  .ins_about1 .idx_title4 {
    width: 100%;
  }
}
.ins_about2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.75rem;
}
.ins_about2 .center_box {
  width: 100%;
  height: auto;
}
.ins_about2 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_about2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_about2 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.ins_about2 .center_box .content .item_box .item {
  width: 20.68%;
  height: 6.66rem;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_about2 .center_box .content .item_box .item .img {
  width: 100%;
  height: 100%;
}
.ins_about2 .center_box .content .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_about2 .center_box .content .item_box .item .img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 17.87%, #000 115.92%);
  opacity: 0.8;
}
.ins_about2 .center_box .content .item_box .item .idx_title4 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.52rem;
  color: #FFFFFF;
}
.ins_about2 .center_box .content .item_box .item .idx_title5 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0.52rem;
  color: #FFFFFF;
}
.ins_about2 .center_box .content .item_box .item.active {
  width: 55%;
}
@media (max-width:990px) {
  .ins_about2 .center_box .content .item_box {
    flex-direction: column;
  }
  .ins_about2 .center_box .content .item_box .item {
    width: 100% !important;
    height: 3rem;
  }
}
.ins_about3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.75rem;
  padding-bottom: 0.7rem;
}
.ins_about3 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  overflow: hidden;
}
.ins_about3 .center_box .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_about3 .center_box .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_about3 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  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: 1.2rem 0;
}
.ins_about3 .center_box .content .left_box {
  width: 39.77%;
  height: auto;
  /*  position: absolute; top: 0; left: 1.05rem; */
  margin-left: 1.05rem;
}
.ins_about3 .center_box .content .left_box .idx_title3 {
  margin-top: 0;
}
.ins_about3 .center_box .content .left_box .idx_title4 {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}
.ins_about3 .center_box .content .left_box .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: minmax(1.82rem, 3.39rem) 1fr;
  grid-gap: 0;
  margin-top: 1.8rem;
}
.ins_about3 .center_box .content .left_box .con .item {
  /* width: 100%; */
  height: fit-content;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.54rem 0.52rem;
}
.ins_about3 .center_box .content .left_box .con .item .idx_title3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_about3 .center_box .content .left_box .con .item .idx_title3 .t1 {
  color: var(--active_color);
  font-size: var(--font40);
}
.ins_about3 .center_box .content .left_box .con .item .idx_title4 {
  color: #fff;
  margin-top: 0;
}
.ins_about3 .center_box .content .left_box .con .item::after {
  content: "";
  width: 1px;
  height: calc(100% - 0.25rem);
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.ins_about3 .center_box .content .left_box .con .item::before {
  content: "";
  width: calc(100% - 0.25rem);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.ins_about3 .center_box .content .left_box .con .item:nth-child(1) {
  padding-top: 0;
}
.ins_about3 .center_box .content .left_box .con .item:nth-child(2) {
  padding-top: 0;
}
.ins_about3 .center_box .content .left_box .con .item:nth-last-child(2) {
  padding-bottom: 0;
}
.ins_about3 .center_box .content .left_box .con .item:nth-last-child(2)::after {
  bottom: 0;
  top: initial;
}
.ins_about3 .center_box .content .left_box .con .item:nth-last-child(2)::before {
  display: none;
}
.ins_about3 .center_box .content .left_box .con .item:last-child {
  padding-bottom: 0;
  padding-right: 0;
}
.ins_about3 .center_box .content .left_box .con .item:last-child::before {
  display: none;
}
.ins_about3 .center_box .content .left_box .con .item:not(:nth-child(1)):not(:nth-last-child(2)):nth-child(odd)::after {
  top: 50%;
  transform: translateY(-50%);
}
.ins_about3 .center_box .content .left_box .con .item:nth-child(2n)::after {
  display: none;
  padding-right: 0;
}
.ins_about3 .center_box .content .left_box .con .item:nth-child(odd) {
  padding-left: 0;
}
.ins_about3 .center_box .content .left_box .con .item:nth-child(2)::before {
  /* right: 0; left: initial; */
  left: 0.25rem;
}
.ins_about3 .center_box .content .right_box {
  width: 45.86%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width:990px) {
  .ins_about3 .center_box .content {
    flex-direction: column;
  }
  .ins_about3 .center_box .content .left_box {
    width: 93.22%;
    margin: 0 auto;
  }
  .ins_about3 .center_box .content .left_box .con {
    grid-template-columns: 1fr;
    margin-top: 0.54rem;
  }
  .ins_about3 .center_box .content .left_box .con .item {
    padding: 0.54rem 0 !important;
  }
  .ins_about3 .center_box .content .left_box .con .item::after,
  .ins_about3 .center_box .content .left_box .con .item::before {
    content: none;
  }
  .ins_about3 .center_box .content .left_box .con .item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ins_about3 .center_box .content .left_box .con .item:first-child {
    padding-top: 0;
  }
  .ins_about3 .center_box .content .left_box .con .item:last-child {
    padding-bottom: 0;
  }
  .ins_about3 .center_box .content .right_box {
    display: none;
  }
}
.ins_about4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_about4 .center_box {
  width: 100%;
  height: auto;
}
.ins_about4 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_about4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_about4 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_about4 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  padding: 0.49rem 0.51rem 0.52rem 0.5rem;
  border-radius: 0.2rem;
  background-color: #EBEEF0;
}
.ins_about4 .center_box .content .swiper_box ul li .pb {
  padding-bottom: 139.71%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_about4 .center_box .content .swiper_box ul li .t1 {
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 400;
  text-align: center;
  margin-top: 0.32rem;
}
.ins_about4 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 0.73rem;
}
.ins_application1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_application1 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_application1 .center_box > .idx_title4 {
  width: 51.64%;
  margin: 0.4rem auto 0 auto;
  text-align: center;
}
@media (max-width:990px) {
  .ins_application1 .center_box > .idx_title4 {
    width: 100%;
  }
}
.ins_application2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_application2 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  background: #1A1A1A;
  padding: 1.4rem 0;
  overflow: hidden;
}
.ins_application2 .center_box .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_application2 .center_box .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_application2 .center_box .idx_title3 {
  margin-top: 0;
  text-align: center;
}
.ins_application2 .center_box .content {
  width: 100%;
  height: auto;
  padding-left: 0.63rem;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_application2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_application2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  border-radius: 0.32rem;
  background-color: #333;
}
.ins_application2 .center_box .content .swiper_box ul li .pb {
  padding-bottom: 71.59%;
  border-radius: 0.28rem;
  position: relative;
  overflow: hidden;
}
.ins_application2 .center_box .content .swiper_box ul li .pb::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 104, 19, 0) 50.13%, #FF6813 128.28%);
}
.ins_application2 .center_box .content .swiper_box ul li .word {
  padding: 0.32rem 0.24rem 0.24rem 0.24rem;
}
.ins_application2 .center_box .content .swiper_box ul li .word .idx_title5 {
  height: calc(2em * 1.1);
  line-height: 1.1;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_application2 .center_box .content .swiper_box ul li .word .idx_title4 {
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_application2 .center_box .content .swiper_box ul li .word .idx_more3 {
  margin-top: 0.72rem;
}
.ins_application2 .center_box .content .swiper_box ul li .word .idx_more3 span {
  color: #fff;
  font-weight: 400;
}
.ins_application2 .center_box .content .swiper_box ul li:hover .idx_title5 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_application2 .center_box .content .swiper_box ul li:hover .idx_more3 span {
  color: #fff;
}
.ins_application2 .center_box .content .swiper_box ul li:hover .idx_more3 .icon {
  background-color: #fff;
}
.ins_application2 .center_box .content .swiper_box ul li:hover .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_application2 .center_box .content .swiper_box .idxPageProgressbar {
  width: calc(100% - 0.63rem);
  margin-top: 0.52rem;
}
.ins_application2 .center_box .content .swiper_box .idxPageProgressbar.swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width:990px) {
  .ins_application2 .center_box .content {
    padding: 0 0.32rem;
  }
  .ins_application2 .center_box .content .idxPageProgressbar {
    width: 100% !important;
  }
}
.ins_application3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_application3 .center_box {
  width: 100%;
  height: auto;
}
.ins_application3 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_application3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_application3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
}
.ins_application3 .center_box .content .swiper_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
}
.ins_application3 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_application3 .center_box .content .swiper_box ul li .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  min-height: 4.36rem;
  border-radius: 32px;
  background-color: #EBEEF0;
  padding: 0.52rem;
}
.ins_application3 .center_box .content .swiper_box ul li .item .idx_title4 {
  margin-top: 0.24rem;
}
.ins_application3 .center_box .content .swiper_box ul li .item .t3 {
  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;
  flex-wrap: wrap;
  gap: 0.12rem;
  margin-top: 0.4rem;
}
.ins_application3 .center_box .content .swiper_box ul li .item .t3 .idx_title2 {
  margin: 0;
  padding: 0.12rem 0.24rem;
  font-size: var(--font14);
}
.ins_application3 .center_box .content .swiper_box ul li .item .btns_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.73rem;
}
.ins_application3 .center_box .content .swiper_box ul li .item .btns_box .btns {
  width: fit-content;
  height: auto;
  /* position: absolute; bottom: 0.52rem; right: 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;
  gap: 0.24rem;
}
.ins_application3 .center_box .content .swiper_box ul li .item .btns_box .btns .idx_more3 .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_application3 .center_box .content .swiper_box ul li .item .btns_box .btns .idx_more3 .icon img {
  width: 7.687px;
  height: 6.833px;
}
.ins_application3 .center_box .content .swiper_box ul li .item .btns_box .btns i {
  display: inline-block;
  width: 1px;
  height: 0.21rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover {
  background: url('../images/bg6.png') no-repeat;
  background-size: cover;
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .idx_title5 {
  color: #FFF;
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .idx_title4 {
  color: rgba(255, 255, 255, 0.8);
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .btns .idx_more3 span {
  color: #fff;
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .btns .idx_more3 .icon {
  background-color: #fff;
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .btns .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
.ins_application3 .center_box .content .swiper_box ul li .item:hover .btns i {
  background-color: rgba(255, 255, 255, 0.1);
}
.ins_application3 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 0.52rem;
}
.ins_application4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.24rem;
}
.ins_application4 .center_box {
  width: 100%;
  height: auto;
  background: url('../images/bg12.png') no-repeat;
  background-size: cover;
  border-radius: 0.4rem;
  padding: 1.4rem 0;
}
.ins_application4 .center_box .content {
  width: 93.22%;
  height: auto;
  margin: 0 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_application4 .center_box .content .left_box {
  width: 36.82%;
  height: auto;
}
.ins_application4 .center_box .content .left_box .idx_title3 {
  margin-top: 0;
}
.ins_application4 .center_box .content .left_box .idx_title4 {
  margin-top: 0.4rem;
}
.ins_application4 .center_box .content .right_box {
  width: 56.875%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_application4 .center_box .content .right_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #fff;
  padding: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_application4 .center_box .content .right_box .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_application4 .center_box .content .right_box .item .top_box .icon {
  width: 0.42rem;
  height: 0.42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid var(--active_color);
  border-radius: 0.5rem;
}
.ins_application4 .center_box .content .right_box .item .top_box .icon i {
  font-size: 10px;
  font-weight: bold;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.ins_application4 .center_box .content .right_box .item .bottom_box {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  padding-top: 0.44rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  animation: slideDown 0.3s ease-out;
}
.ins_application4 .center_box .content .right_box .item .bottom_box .t1 {
  color: #999;
  font-size: var(--font24);
  font-weight: 400;
}
.ins_application4 .center_box .content .right_box .item .bottom_box.active {
  display: block;
}
.ins_application4 .center_box .content .right_box .item:hover {
  transform: translateY(-2px);
}
.ins_application4 .center_box .content .right_box .item.active .icon i {
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_application4 .center_box .content {
    flex-direction: column;
    gap: 0.54rem;
  }
  .ins_application4 .center_box .content .left_box,
  .ins_application4 .center_box .content .right_box {
    width: 100%;
  }
}
.ins_application1 .content,
.ins_join2 .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_application1 .content .con,
.ins_join2 .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.ins_application1 .content .con .item,
.ins_join2 .content .con .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.52rem 0.48rem 0.52rem 0.52rem;
}
.ins_application1 .content .con .item .top_box,
.ins_join2 .content .con .item .top_box {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_application1 .content .con .item .top_box .icon,
.ins_join2 .content .con .item .top_box .icon {
  width: 0.56rem;
  height: 0.56rem;
  min-width: 38px;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--active_color);
  border-radius: 0.5rem;
}
.ins_application1 .content .con .item .top_box .icon img,
.ins_join2 .content .con .item .top_box .icon img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 16px;
  min-height: 16px;
}
.ins_application1 .content .con .item .idx_title5,
.ins_join2 .content .con .item .idx_title5 {
  margin-top: 0.68rem;
}
.ins_application1 .content .con .item .idx_title4,
.ins_join2 .content .con .item .idx_title4 {
  margin-top: 0.24rem;
}
@media (max-width:990px) {
  .ins_application1 > .idx_title4,
  .ins_join2 > .idx_title4 {
    width: 100%;
  }
  .ins_application1 .content .con,
  .ins_join2 .content .con {
    grid-template-columns: 1fr;
  }
}
/* 加入我们 */
.ins_join2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.9rem;
}
.ins_join2 .center_box {
  width: 100%;
  height: auto;
}
.ins_join2 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_join3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ins_join3 .center_box {
  width: 100%;
  height: auto;
}
.ins_join3 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_join3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_join3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_join3 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_join3 .center_box .content .swiper_box ul li .item {
  width: 100%;
  height: auto;
}
.ins_join3 .center_box .content .swiper_box ul li .item .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_join3 .center_box .content .swiper_box ul li .item .img_w100::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 17.87%, #000 115.92%);
  opacity: 0.8;
}
.ins_join3 .center_box .content .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.52rem;
  left: 0;
  z-index: 2;
  padding: 0 0.52rem;
}
.ins_join3 .center_box .content .swiper_box ul li .item .word .idx_title5 {
  color: #fff;
}
.ins_join3 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 0.8rem;
}
.ins_join4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
}
.ins_join4 .center_box {
  width: 100%;
  height: auto;
}
.ins_join4 .center_box .idx_title1 {
  margin-top: 0;
}
.ins_join4 .center_box .idx_title4 {
  text-align: center;
  margin-top: 0.4rem;
}
.ins_join4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.86rem;
}
.ins_join4 .center_box .content .con {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_join4 .center_box .content .con .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.46rem 0.54rem 0.52rem 0.5rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_join4 .center_box .content .con .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_join4 .center_box .content .con .item .top_box .left_box {
  width: 100%;
  height: auto;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.24rem;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word .info {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word .info .icon {
  width: 0.28rem;
  height: 0.28rem;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word .info .icon img {
  width: 100%;
  height: 100%;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word .info .idx_title24 {
  color: #999;
}
.ins_join4 .center_box .content .con .item .top_box .left_box .word i {
  width: 1px;
  height: 0.16rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.ins_join4 .center_box .content .con .item .top_box .right_box .icon {
  width: 0.42rem;
  height: 0.42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid var(--active_color);
  border-radius: 0.5rem;
}
.ins_join4 .center_box .content .con .item .top_box .right_box .icon i {
  font-size: 10px;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.ins_join4 .center_box .content .con .item .bottom_box {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.4rem;
  display: none;
  animation: slideDown 0.3s ease-out;
}
.ins_join4 .center_box .content .con .item .bottom_box .info {
  width: 78.26%;
  height: auto;
  padding-top: 0.4rem;
}
.ins_join4 .center_box .content .con .item .bottom_box .info .t1 {
  color: #666;
}
.ins_join4 .center_box .content .con .item .bottom_box .info .t2 {
  color: #999;
  margin-top: 0.16rem;
}
.ins_join4 .center_box .content .con .item:hover {
  transform: translateY(-2px);
}
.ins_join4 .center_box .content .con .item.active .top_box .right_box .icon i {
  transform: rotate(0deg);
}
.ins_join4 .center_box .content .con .item.active .bottom_box {
  display: block;
}
.ins_join4 .center_box .content #laypage {
  margin-top: 0.94rem;
}
@media (max-width:990px) {
  .ins_join4 .center_box .content .con .item .top_box .left_box .word {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .ins_join4 .center_box .content .con .item .top_box .left_box .word i {
    display: none;
  }
}
/* 联系我们 */
.ins_contact1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_contact1 .center_box .content .idx_title4 {
  margin-top: 0.24rem;
}
.ins_contact2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_contact2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contact2 .center_box .content {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_contact2 .center_box .content .left_box {
  width: 24.72%;
  height: auto;
}
.ins_contact2 .center_box .content .left_box .idx_title1 {
  text-align: left;
}
.ins_contact2 .center_box .content .left_box .con {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.77rem;
}
.ins_contact2 .center_box .content .left_box .con .item {
  width: 100%;
  height: auto;
}
.ins_contact2 .center_box .content .left_box .con .item .flex {
  gap: 0.08rem;
}
.ins_contact2 .center_box .content .left_box .con .item .flex .icon {
  width: 0.28rem;
  height: 0.28rem;
  min-width: 18px;
  min-height: 18px;
}
.ins_contact2 .center_box .content .left_box .con .item .flex .icon img {
  width: 100%;
  height: 100%;
}
.ins_contact2 .center_box .content .left_box .con .item .flex .idx_title24 {
  color: #999;
}
.ins_contact2 .center_box .content .left_box .con .item > .idx_title24 a {
  color: var(--color_text);
  margin-top: 0.13rem;
}
.ins_contact2 .center_box .content .left_box .con .item:first-child > .idx_title24 a:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_contact2 .center_box .content .right_box {
  width: 66.7%;
  height: auto;
  border-radius: 0.32rem;
  background-color: #EBEEF0;
  padding: 0.52rem;
}
.ins_contact2 .center_box .content .right_box .layui-form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.4rem 0.34rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item {
  margin-bottom: 0;
}
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-form-label {
  width: fit-content;
  float: none;
  text-align: left;
  padding: 0;
  color: var(--color_text);
  font-size: var(--font24);
  font-weight: 400;
}
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-form-label span {
  color: var(--active_color);
}
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-input-block {
  margin-left: 0;
  margin-top: 0.16rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-input-block .layui-input,
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-input-block .layui-select,
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-input-block .layui-textarea {
  height: auto;
  min-height: 0.76rem;
  border-radius: 0.12rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 0.32rem;
  color: #999;
  font-size: var(--font24);
  font-weight: 400;
}
.ins_contact2 .center_box .content .right_box .layui-form .item .layui-input-block .layui-form-select dl {
  top: 0.8rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.phone_item .layui-input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.phone_item .layui-input-block .layui-unselect,
.ins_contact2 .center_box .content .right_box .layui-form .item.phone_item .layui-input-block .layui-select-title {
  width: fit-content;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.phone_item .layui-input-block .layui-select-title .layui-edge {
  display: none;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.phone_item .layui-input-block .layui-form-select .layui-input {
  width: 0.71rem;
  padding: 0;
  text-align: center;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.textarea_item {
  grid-column: 1 / -1;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.textarea_item .layui-input-block .layui-textarea {
  min-height: 2.18rem;
  padding: 0.24rem 0.32rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item {
  margin-top: -0.24rem;
  position: relative;
  z-index: 2;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item .layui-form-checkbox[lay-skin=primary] {
  margin-top: 0;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item .layui-form-checkbox[lay-skin=primary] div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  color: #999;
  font-size: var(--font14);
  white-space: initial;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item .layui-form-checkbox[lay-skin=primary] div a {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item .layui-form-checkbox[lay-skin=primary] i {
  border-radius: 0.04rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.btn_item {
  width: 100%;
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: -0.45rem;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.btn_item .submitBtn.layui-btn {
  height: auto;
  line-height: initial;
  padding: 0;
  background-color: transparent;
}
.ins_contact2 .center_box .content .right_box .layui-form .item.btn_item .submitBtn.layui-btn .idx_more {
  margin-top: 0;
}
@media (max-width:990px) {
  .ins_contact2 .center_box .content {
    flex-direction: column;
    gap: 0.54rem;
  }
  .ins_contact2 .center_box .content .left_box,
  .ins_contact2 .center_box .content .right_box {
    width: 100%;
  }
  .ins_contact2 .center_box .content .right_box .layui-form .item {
    grid-column: 1 / -1;
  }
  .ins_contact2 .center_box .content .right_box .layui-form .item.checkbox_item,
  .ins_contact2 .center_box .content .right_box .layui-form .item.btn_item {
    margin-top: 0;
  }
}
/* 车辆涂料 */
.ins_vehicleCoatings1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.24rem;
  padding-bottom: 0.12rem;
}
.ins_vehicleCoatings1 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  background-color: #EBEEF0;
  padding: 1.4rem 0;
}
.ins_vehicleCoatings1 .center_box .content {
  width: 93.22%;
  height: auto;
  margin: 0 auto;
}
.ins_vehicleCoatings1 .center_box .content .idx_title3 {
  color: var(--color_text);
  margin-top: 0;
}
.ins_vehicleCoatings1 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 3.9rem repeat(2, 1fr) 4.09rem;
  grid-gap: 0;
  margin-top: 0.8rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item {
  width: 100%;
  height: auto;
  padding: 0.24rem 0 0.2rem 0;
  margin: 0 auto;
}
.ins_vehicleCoatings1 .center_box .content .con .item:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.ins_vehicleCoatings1 .center_box .content .con .item:not(:first-child, :last-child) {
  padding-left: 0.88rem;
  padding-right: 0.7rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item:first-child {
  padding-right: 0.68rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item:last-child {
  padding-left: 0.87rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item .t1.idx_title3 {
  color: var(--active_color);
  margin-top: 0;
}
.ins_vehicleCoatings1 .center_box .content .con .item .t2.idx_title4 {
  margin-top: 0.12rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item .t3.idx_title4 {
  min-height: 1.47rem;
  height: auto;
  color: #666;
  margin-top: 0.36rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item .idx_more3 {
  margin-top: 0.52rem;
}
.ins_vehicleCoatings1 .center_box .content .con .item:hover .idx_more3 .icon {
  background-color: #fff;
}
.ins_vehicleCoatings1 .center_box .content .con .item:hover .idx_more3 .icon img {
  filter: none;
  transform: rotate(45deg);
}
@media (max-width:990px) {
  .ins_vehicleCoatings1 .center_box .content .con {
    grid-template-columns: 1fr;
  }
  .ins_vehicleCoatings1 .center_box .content .con .item {
    border-left: none !important;
  }
  .ins_vehicleCoatings1 .center_box .content .con .item:not(:first-child, :last-child) {
    padding: 0.54rem 0;
  }
  .ins_vehicleCoatings1 .center_box .content .con .item:first-child {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0.54rem;
  }
  .ins_vehicleCoatings1 .center_box .content .con .item:last-child {
    padding-bottom: 0;
    padding-left: 0;
    padding-top: 0.54rem;
  }
  .ins_vehicleCoatings1 .center_box .content .con .item:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.ins_vehicleCoatings2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.12rem;
  padding-bottom: 0.7rem;
}
.ins_vehicleCoatings2 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  background: #1A1A1A;
  padding: 1.4rem 0;
  overflow: hidden;
}
.ins_vehicleCoatings2 .center_box .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_vehicleCoatings2 .center_box .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_vehicleCoatings2 .center_box .idx_title3 {
  margin-top: 0;
  text-align: center;
}
.ins_vehicleCoatings2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  padding-left: 0.63rem;
  overflow: hidden;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  border-radius: 0.32rem;
  background-color: #333;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li .pb {
  padding-bottom: 71.59%;
  border-radius: 0.28rem;
  position: relative;
  overflow: hidden;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li .word {
  padding: 0.32rem 0.31rem 0.24rem 0.24rem;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li .word .idx_title5 {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li .word .idx_title4 {
  margin-top: 0.24rem;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box ul li:hover .idx_title5 {
  color: var(--active_color);
}
.ins_vehicleCoatings2 .center_box .content .swiper_box .idxPageProgressbar {
  width: 93.22%;
  margin-top: 0.52rem;
}
.ins_vehicleCoatings2 .center_box .content .swiper_box .idxPageProgressbar.swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width:990px) {
  .ins_vehicleCoatings2 .center_box .content {
    width: 93.22%;
    padding-left: 0;
    margin: 0.8rem auto 0 auto;
  }
}
.ins_vehicleCoatings3 {
  padding-bottom: 1.4rem;
}
.ins_vehicleCoatings3 .center_box .idx_title1 {
  width: 51.7%;
  margin: 0 auto;
}
@media (max-width:990px) {
  .ins_vehicleCoatings3 .center_box .idx_title1 {
    width: 100%;
  }
}
/* 可持续性 */
.ins_sustainability1 .center_box .content .con {
  width: 46.13%;
}
.ins_sustainability2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_sustainability2 .center_box .idx_title1 {
  width: 59.11%;
  text-align: center;
  margin: 0 auto;
}
.ins_sustainability2 .center_box > .idx_title4 {
  width: 56.88%;
  text-align: center;
  margin: 0.4rem auto 0 auto;
}
.ins_sustainability2 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.8rem;
  border-radius: 0.4rem;
  background: #1A1A1A;
  padding: 1.4rem 0.63rem;
}
.ins_sustainability2 .center_box .content .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_sustainability2 .center_box .content .con1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.88rem;
  margin-bottom: 1.4rem;
}
.ins_sustainability2 .center_box .content .con1 .left_box {
  width: 54.55%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_sustainability2 .center_box .content .con1 .left_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_sustainability2 .center_box .content .con1 .right_box {
  /* width: 34.26%; */
  flex: 1;
  height: auto;
}
.ins_sustainability2 .center_box .content .con1 .right_box .idx_title2 {
  margin: 0;
}
.ins_sustainability2 .center_box .content .con1 .right_box .idx_title3 {
  margin-top: 0.32rem;
}
.ins_sustainability2 .center_box .content .con1 .right_box .idx_title4 {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.52rem;
}
.ins_sustainability2 .center_box .content .con1:last-child {
  margin-top: 1.4rem;
  margin-bottom: 0;
}
.ins_sustainability2 .center_box .content .con2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.95rem;
  padding-bottom: 1.94rem;
  margin-top: 1.4rem;
}
.ins_sustainability2 .center_box .content .con2 .img_w100 {
  width: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.4rem;
}
.ins_sustainability2 .center_box .content .con2 .img_w100::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.ins_sustainability2 .center_box .content .con2 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_sustainability2 .center_box .content .con2 .left_box {
  width: 40.46%;
  height: auto;
  position: relative;
  left: 0.8rem;
  z-index: 2;
}
.ins_sustainability2 .center_box .content .con2 .left_box .idx_title2 {
  margin: 0;
}
.ins_sustainability2 .center_box .content .con2 .left_box .idx_title3 {
  margin-top: 0.32rem;
}
.ins_sustainability2 .center_box .content .con2 .left_box .idx_title4 {
  width: 91%;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .ins_sustainability2 .center_box .idx_title1,
  .ins_sustainability2 .center_box > .idx_title4 {
    width: 100%;
  }
  .ins_sustainability2 .center_box .content .con1 {
    flex-direction: column;
  }
  .ins_sustainability2 .center_box .content .con1 .left_box {
    width: 100%;
  }
  .ins_sustainability2 .center_box .content .con2 {
    padding: 0;
  }
  .ins_sustainability2 .center_box .content .con2 .img_w100 {
    position: relative;
  }
  .ins_sustainability2 .center_box .content .con2 .left_box {
    width: 100%;
    left: 0;
    margin-top: 0.88rem;
  }
}
.ins_sustainability3 {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_sustainability3 .center_box > .idx_title4 {
  width: 51.65%;
  text-align: center;
  margin: 0.4rem auto 0 auto;
}
@media (max-width:990px) {
  .ins_sustainability3 .center_box > .idx_title4 {
    width: 100%;
  }
}
.ins_sustainability4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_sustainability4 .center_box {
  width: 100%;
  height: auto;
}
.ins_sustainability4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_sustainability4 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_sustainability4 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  background-color: #EBEEF0;
  padding: 0.52rem;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item {
  width: 100%;
  height: auto;
  position: relative;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.75rem;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item .word {
  flex: 1;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item .word .t1.idx_title4 {
  margin-top: 0.24rem;
  margin-bottom: 0.46rem;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item .word .t2.idx_title4 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item .image {
  width: 2.25rem;
  height: auto;
}
.ins_sustainability4 .center_box .content .swiper_box ul li .item .image img {
  width: 100%;
  height: auto;
}
.ins_sustainability4 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 0.52rem;
}
@media (max-width:990px) {
  .ins_sustainability4 .center_box .content .swiper_box ul li .item {
    flex-direction: column;
  }
  .ins_sustainability4 .center_box .content .swiper_box ul li .item .image {
    width: 50%;
  }
  .ins_sustainability4 .center_box .content .swiper_box ul li .item .word .t2.idx_title4 {
    position: relative;
  }
}
/* 技术中心 */
.ins_technology1 .center_box .content .idx_title4 {
  width: 33.4%;
}
.ins_technology2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_technology2 .center_box {
  width: 100%;
  height: auto;
}
.ins_technology2 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_technology2 .center_box .content .left_box {
  width: 36.76%;
  height: auto;
}
.ins_technology2 .center_box .content .left_box .idx_title3 {
  color: #191919;
  margin-top: 0;
}
.ins_technology2 .center_box .content .left_box .idx_title4 {
  color: rgba(25, 25, 25, 0.6);
  margin-top: 0.4rem;
}
.ins_technology2 .center_box .content .left_box .idx_title4 p {
  min-height: 0.5em;
  width: 100%;
  height: auto;
}
.ins_technology2 .center_box .content .right_box {
  width: 58.52%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_technology2 .center_box .content .right_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_technology2 .center_box .content {
    flex-direction: column;
    gap: 0.54rem;
  }
  .ins_technology2 .center_box .content .left_box,
  .ins_technology2 .center_box .content .right_box {
    width: 100%;
  }
  .ins_technology2 .center_box .content .left_box .idx_title3 {
    text-align: center;
  }
}
.ins_technology3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_technology3 .center_box {
  width: 100%;
  height: auto;
  background-color: var(--color_text);
  border-radius: 0.4rem;
  overflow: hidden;
  padding: 1.4rem 0.63rem;
}
.ins_technology3 .center_box .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_technology3 .center_box .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_technology3 .center_box .title_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.54rem;
}
.ins_technology3 .center_box .title_box .right_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.54rem 1.28rem;
  margin-top: 0.37rem;
}
.ins_technology3 .center_box .title_box .right_box .idx_title3 {
  color: var(--active_color);
  margin-top: 0;
}
.ins_technology3 .center_box .title_box .right_box .idx_title4 {
  color: rgba(255, 255, 255, 0.6);
}
.ins_technology3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_technology3 .center_box .content .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.ins_technology3 .center_box .content .con .item {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  border-radius: 0.32rem;
  background: #333;
}
.ins_technology3 .center_box .content .con .item .pb {
  padding-bottom: 60.54%;
  border-radius: 0.28rem;
}
.ins_technology3 .center_box .content .con .item .word {
  padding: 0.32rem 0.24rem;
}
.ins_technology3 .center_box .content .con .item .word .idx_title5 {
  color: #fff;
}
.ins_technology3 .center_box .content .con .item .word .idx_title4 {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.24rem;
}
@media (max-width:990px) {
  .ins_technology3 .center_box .title_box {
    flex-direction: column;
  }
  .ins_technology3 .center_box .title_box .right_box {
    margin-top: 0;
  }
  .ins_technology3 .center_box .content .con {
    grid-template-columns: 1fr;
  }
}
.ins_technology4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
  /* padding-bottom: calc(1.4rem + 1.49rem); */
}
.ins_technology4 .center_box {
  width: 100%;
  height: auto;
}
.ins_technology4 .center_box .idx_title1 {
  width: 42.95%;
  margin: 0 auto;
}
.ins_technology4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.54rem;
}
.ins_technology4 .center_box .content .con {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_technology4 .center_box .content .con .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.99rem;
  position: relative;
  border-radius: 0.32rem;
  padding: 0.52rem 0.63rem 0.72rem 0.63rem;
}
.ins_technology4 .center_box .content .con .item .left_box {
  flex: 1;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: column;
}
.ins_technology4 .center_box .content .con .item .left_box .t1 {
  font-size: var(--font48);
  font-weight: 700;
}
.ins_technology4 .center_box .content .con .item .left_box .word {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.52rem;
}
.ins_technology4 .center_box .content .con .item .left_box .word .icon {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--active_color);
}
.ins_technology4 .center_box .content .con .item .left_box .word .icon img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 16px;
  min-height: 16px;
}
.ins_technology4 .center_box .content .con .item .left_box .word .idx_title5 {
  min-height: 0.76rem;
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_technology4 .center_box .content .con .item .left_box .word .idx_title4 {
  min-height: 1.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 0.16rem;
}
.ins_technology4 .center_box .content .con .item .left_box .word .idx_title4 > div {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.ins_technology4 .center_box .content .con .item .right_box {
  width: 33.15%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_technology4 .center_box .content .con .item .right_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+1) .item,
.ins_technology4 .center_box .content .con:nth-child(4n+1) .item {
  color: #191919;
  background-color: #EBEEF0;
  z-index: 1;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+2) .item,
.ins_technology4 .center_box .content .con:nth-child(4n+2) .item {
  color: #191919;
  background-color: #D4D6D9;
  z-index: 2;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+3) .item,
.ins_technology4 .center_box .content .con:nth-child(4n+3) .item {
  color: #fff;
  background-color: #575959;
  z-index: 3;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+3) .item .idx_title5,
.ins_technology4 .center_box .content .con:nth-child(4n+3) .item .idx_title5,
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+3) .item .idx_title4,
.ins_technology4 .center_box .content .con:nth-child(4n+3) .item .idx_title4 {
  color: #fff;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+4) .item,
.ins_technology4 .center_box .content .con:nth-child(4n+4) .item {
  color: #fff;
  background-color: #262626;
  z-index: 4;
}
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+4) .item .idx_title5,
.ins_technology4 .center_box .content .con:nth-child(4n+4) .item .idx_title5,
.ins_technology4 .center_box .content .pin-spacer:nth-child(4n+4) .item .idx_title4,
.ins_technology4 .center_box .content .con:nth-child(4n+4) .item .idx_title4 {
  color: #fff;
}
@media (max-width:990px) {
  .ins_technology4 .center_box .idx_title1 {
    width: 100%;
  }
  .ins_technology4 .center_box .content .con .item {
    flex-direction: column;
  }
  .ins_technology4 .center_box .content .con .item .left_box {
    gap: 0.8rem;
  }
  .ins_technology4 .center_box .content .con .item .left_box .word {
    grid-template-columns: 1fr;
  }
  .ins_technology4 .center_box .content .con .item .right_box {
    width: 100%;
  }
}
