@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img {
  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;
}
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 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 旋转 */
/* 透明度*/
@keyframes opacity {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* 从左到右出现*/
@keyframes bar {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* 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: #a61f22;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font90 {
  font-size: 0.9rem;
}
/* 间距 */
.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);
}
.tec {
  text-align: center;
}
.tel {
  text-align: left;
}
.ter {
  text-align: right;
}
.white {
  color: var(--color_fff);
}
.black0 {
  color: var(--color_000);
}
.black3 {
  color: var(--color_333);
}
.black6 {
  color: var(--color_666);
}
.black9 {
  color: var(--color_999);
}
/* 加粗 */
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.white {
  color: #ffffff;
}
.red {
  color: var(--active_color);
}
.lh28 {
  line-height: calc(28/18);
}
/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  background-color: var(--color-active);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #BCBCBC;
}
::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 4px;
}
.scroller {
  overflow: auto;
  padding-right: 0.11rem;
}
/* 上下按钮切换 */
.public-prev-next {
  display: -webkit-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;
  width: 100%;
}
.public-prev-next .btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  text-align: center;
}
.public-prev-next .btn .pre {
  position: relative;
}
.public-prev-next .btn .pre:after {
  position: absolute;
  content: '\e65e';
  font-family: "iconfont";
  width: auto;
  height: auto;
}
.public-prev-next .btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}
.public-prev-next .btn:hover {
  border: none;
}
.public-prev-next .btn:hover img {
  filter: brightness(0) invert(1);
}
.public-prev-next .btn:hover:before {
  box-shadow: inset 0 0 0 10em var(--active_color);
}
/* 网格布局 */
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
/* 入场动画 */
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.slideInRight {
  animation: slideInRight 1s forwards;
}
.s-animate,
.s-animate-up {
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}
.swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  border: 2px solid #C0C0C0;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--active_color);
  border: var(--active_color);
}
/* 标准语法 */
::placeholder {
  color: #D2D2D2;
}
/* WebKit 浏览器（如 Chrome 和 Safari） */
::-webkit-input-placeholder {
  color: #D2D2D2;
}
/* Mozilla Firefox */
::-moz-placeholder {
  color: #D2D2D2;
}
/* Microsoft Edge (旧版) 和 Internet Explorer 10+ */
:-ms-input-placeholder {
  color: #D2D2D2;
}
/* Microsoft Edge (新版) */
::-ms-input-placeholder {
  color: #D2D2D2;
}
/* -------------------------------------------------------------------  字体 */
/*@font-face {*/
/*  font-family: "HONORSansCN";*/
/*  src: url("../fonts/HONORSansCN-Thin.ttf");*/
/*  font-weight: 100;*/
/*}*/
/*@font-face {*/
/*  font-family: "HONORSansCN";*/
/*  src: url("../fonts/HONORSansCN-Regular.ttf");*/
/*  font-weight: normal;*/
/*}*/
/*@font-face {*/
/*  font-family: "HONORSansCN";*/
/*  src: url("../fonts/HONORSansCN-Medium.ttf");*/
/*  font-weight: 500;*/
/*}*/
/*@font-face {*/
/*  font-family: "HONORSansCN";*/
/*  src: url("../fonts/HONORSansCN-DemiBold.ttf");*/
/*  font-weight: 600;*/
/*}*/
/*@font-face {*/
/*  font-family: "HONORSansCN";*/
/*  src: url("../fonts/HONORSansCN-Bold.ttf");*/
/*  font-weight: 700;*/
/*}*/
/* --------------------------------------------------------------- 全站内容区 */
.container {
  width: 100%;
  max-width: 98%;
  margin: 0 auto;
}
.w1720 {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1720 {
    max-width: 89.583%;
  }
}
@media (max-width:990px) {
  .w1720 {
    max-width: 100%;
    padding: 0 20px;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1rem;
  font-family: "HONORSansCN";
  color: #000000;
}
main.active {
  --header-height: 0.7rem;
}
@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;
  }
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.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: var(--num_15);
}
.idxPageShow span {
  width: 8px;
  height: 8px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.images_w100 {
  width: 100%;
  height: auto;
}
.images_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 首页banner svg */
@keyframes svgine {
  0% {
    stroke-dasharray: 0 102;
  }
  100% {
    stroke-dasharray: 102 102;
  }
}
.svgine {
  -webkit-animation-name: svgine;
  animation-name: svgine;
}
.idxPager {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  --time: 5s;
}
.idxPager .svgBox {
  width: 28px;
  height: 28px;
  transform: rotate(-90deg);
  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;
  cursor: pointer;
}
.idxPager .svgBox::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0.3;
}
.idxPager .svgBox::before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid #FFF;
  opacity: 0;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.idxPager .svgBox circle {
  stroke-dasharray: 0 102;
  position: relative;
  z-index: 2;
}
.idxPager .svgBox.active {
  opacity: 1;
}
.idxPager .svgBox.active::after {
  opacity: 1;
  background: var(--active_color);
}
.idxPager .svgBox.active::before {
  opacity: 0.3;
}
.idxPager .svgBox.active circle {
  stroke-dasharray: 102 102;
  animation: svgine var(--time) linear;
}
@media (max-width:990px) {
  .idxPager {
    gap: 0.1rem;
  }
  .idxPager .svgBox {
    width: 0.16rem;
    height: 0.16rem;
  }
  .idxPager .svgBox::before {
    display: none;
  }
  .idxPager .svgBox circle {
    display: none !important;
  }
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 700;
}
@keyframes grow3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
    opacity: 0;
  }
  60% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.idx_more {
  width: fit-content;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  height: 0.6rem;
  min-height: 36px;
  padding-left: 0.24rem;
  padding-right: 0.13rem;
  gap: 0.5rem;
  border: 1px solid #dbdbdb;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #333333;
  font-size: var(--font16);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 0px;
  z-index: -1;
  height: 0px;
  background: var(--active_color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  border-radius: 50%;
}
.idx_more .more i.ic {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 25px;
  min-height: 25px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: var(--active_color);
  font-style: unset;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.idx_more .more i.ic::after {
  content: '\e65e';
  font-family: "iconfont";
  width: auto;
  height: auto;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more i.bg {
  position: absolute;
  width: 0;
  height: 0;
  right: 16%;
  display: -webkit-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;
  z-index: -1;
}
.idx_more .more i.bg::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: var(--active_color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  border-radius: 50%;
  overflow: hidden;
}
.idx_more .more span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.idx_more .more.bgon {
  padding: 0 !important;
  height: auto;
  border: 0;
  gap: 0.18rem;
}
.idx_more .more.bgon i {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid #e6e6e6;
  background: none;
}
.idx_more .more.bgon i::after {
  color: var(--active_color);
}
.idx_more .more .more:hover i::after {
  animation: grow3 1s linear;
}
.idx_more .more:hover {
  border-color: var(--active_color);
}
.idx_more .more:hover i {
  background: #ffffff2d;
}
.idx_more .more:hover span {
  color: #FFFFFF;
}
.idx_more .more:hover i.bg::after {
  width: 500px;
  height: 500px;
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox {
  width: 100%;
  height: auto;
  color: var(--color_fff);
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .t1 {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 700;
  line-height: 1.23;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  display: -webkit-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;
  line-height: 1;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .t3 span {
  display: block;
  position: relative;
  z-index: 1;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .t3 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #a61f22 30%, #a61f211c);
  z-index: -1;
}
.idx_banner .swiper_box ul li .centerInfo .wordBox .tY100 {
  transform: translateY(100px);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}
.idx_banner .swiper_box ul li .images_w100 .wap {
  min-height: 50vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .wordBox .t1 {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .wordBox .t2 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .wordBox .t3 {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .wordBox .tY100 {
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.idx_banner .swiper_box ul li.swiper-slide-active .images_w100 {
  animation: grow2 1.5s linear;
}
.idx_banner .idxNumber {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 0.92rem;
  left: 5.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.idx_banner .idxNumber .add {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.idx_banner .idxNumber .add .af {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_banner .idxNumber .add .af::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .idxNumber .add .af::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .idxNumber .add .be {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFF;
  transform: rotate(-90deg);
  font-size: var(--font18);
  display: none;
}
@keyframes lines {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 1.1rem;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
}
.idx_product .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.idx_product .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  overflow: hidden;
}
.idx_product .swiper_box ul {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.idx_product .swiper_box ul li {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_product .swiper_box ul {
    display: flex;
    gap: 0;
  }
  .idx_product .swiper_box ul li .item .images .pb {
    padding-bottom: 100%;
  }
}
.idx_product .item {
  width: 100%;
  height: 100%;
  padding-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}
.idx_product .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.idx_product .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.idx_product .item .images {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_product .item .images .pb {
  padding-bottom: 148%;
}
.idx_product .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  line-height: 1;
  font-weight: 500;
}
.idx_product .item .word .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000000;
}
.idx_product .item .word .t1 i {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: #f7c0c2;
  border-radius: 50%;
}
.idx_product .item .word .t1 i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.idx_product .item .word .t1 i::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #e62129;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .item .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.15rem;
  gap: 0.06rem;
}
.idx_product .item .list .one {
  width: fit-content;
  height: 0.3rem;
  min-height: 28px;
  padding: 0 0.15rem;
  background: #faf2f2;
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .item .list .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_product .item:hover::before {
  width: 100%;
  left: 0;
}
.idx_product .item:hover .images img {
  transform: scale(1.02);
}
.idx_app {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.2rem;
  padding-top: 0.8rem;
  overflow: hidden;
}
.idx_app .idx_title {
  transform: translateY(0.4rem);
}
.idx_app .maskBox {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
}
.idx_app .maskBox .content {
  width: 100%;
  height: 100vh;
  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.3rem;
  padding-top: calc(var(--header-height) + 0.2rem);
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 0.2rem;
}
.idx_app .maskBox .content .item_box {
  width: 31%;
  border-radius: 0.2rem;
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_app .maskBox .content .item_box .item {
  padding: 0 0.45rem;
  width: 100%;
  height: auto;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
  background: #f5f5f5;
}
.idx_app .maskBox .content .item_box .item .top {
  padding: 0.35rem 0;
  padding-bottom: 0.45rem;
  font-weight: 500;
  color: #666666;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_app .maskBox .content .item_box .item .top i {
  width: 0.36rem;
  height: 0.36rem;
  border: 1px solid #989898;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color_999);
  font-weight: 200;
  font-size: var(--font14);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .maskBox .content .item_box .item .top i::before {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .maskBox .content .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-bottom: 0.5rem;
}
.idx_app .maskBox .content .item_box .item .bot .word {
  font-size: var(--font16);
  line-height: 1.65;
  color: #666666;
  height: calc(2em * 1.65);
  overflow: auto;
}
.idx_app .maskBox .content .item_box .item .bot .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.idx_app .maskBox .content .item_box .item:nth-child(2n) {
  background: #ebebeb;
}
.idx_app .maskBox .content .item_box .item:last-child .top {
  padding-bottom: 0.3rem;
}
.idx_app .maskBox .content .item_box .item:first-child .top {
  padding-top: 0.5rem;
}
.idx_app .maskBox .content .item_box .item.active .top {
  padding-bottom: 0.3rem;
  color: #000;
}
.idx_app .maskBox .content .item_box .item.active .top i {
  background: #000;
  border-color: #000;
  color: #FFF;
}
.idx_app .maskBox .content .item_box .item.active .top .icon--jia:before {
  content: "\e614";
}
.idx_app .maskBox .content .item_box .item + .item {
  margin-top: -0.15rem;
}
.idx_app .maskBox .content .images {
  width: 68.617%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #000;
  position: relative;
  z-index: 1;
}
.idx_app .maskBox .content .images .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.idx_app .maskBox .content .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_app .maskBox .content .images .img.active {
  z-index: 10;
  transform: translateY(0%) !important;
  opacity: 1;
}
.idx_app .maskBox .content .images .img .list_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  display: none;
}
.idx_app .maskBox .content .images .img .list_box .item {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
}
.idx_app .maskBox .content .images .img .list_box .item i {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  background: #e621274f;
  border-radius: 50%;
}
.idx_app .maskBox .content .images .img .list_box .item i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.idx_app .maskBox .content .images .img .list_box .item i::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #e62129;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .maskBox .content .images .img .list_box .item span {
  position: absolute;
  width: max-content;
  height: 0.32rem;
  min-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  left: 0.2rem;
  padding: 0 0.18rem;
  font-size: var(--font16);
  background: #FFFFFF;
  line-height: 1;
  padding-top: 0.01rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .maskBox .content .images .img .list_box .item.left span {
  left: unset;
  right: 0.2rem;
}
.idx_app .maskBox .content .images .img .list_box .item:hover span {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_app .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  display: none;
}
.idx_app .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_app .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_app .swiper_box ul li .centerInfo .itemBox {
  width: 100%;
  height: auto;
  padding: 0.45rem;
}
.idx_app .swiper_box ul li .centerInfo .itemBox .top {
  font-weight: 500;
  color: #666666;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_app .swiper_box ul li .centerInfo .itemBox .bot {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.idx_app .swiper_box ul li .centerInfo .itemBox .bot .word {
  font-size: var(--font16);
  line-height: 1.65;
  color: #666666;
}
.idx_app .swiper_box ul li .centerInfo .itemBox .bot .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.idx_app .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_app .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item i {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  background: #e621274f;
  border-radius: 50%;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item i::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #e62129;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item span {
  position: absolute;
  width: max-content;
  height: 0.32rem;
  min-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  left: 0.2rem;
  padding: 0 0.18rem;
  font-size: var(--font12);
  background: #FFFFFF;
  line-height: 1;
  padding-top: 0.01rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item.left span {
  left: unset;
  right: 0.2rem;
}
.idx_app .swiper_box ul li .centerInfo .img .list_box .item:hover span {
  background: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .idx_app .maskBox {
    display: none !important;
  }
  .idx_app .swiper_box {
    display: block !important;
  }
}
@media (max-width:480px) {
    .idx_app .idx_title{
      transform: translateY(0);  
    }
}

.idx_constBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.48rem;
  padding-bottom: 1.2rem;
}
.idx_constBox .idx_title {
  text-align: center;
}
.idx_constBox .swiper_box {
  width: 84.22%;
  height: auto;
  margin: 0 auto;
  margin-top: 0.35rem;
}
.idx_constBox .swiper_box ul li {
  width: 100%;
}
.idx_constBox .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.2rem;
  background: #fafafa;
  border-radius: 0.2rem;
  padding-left: 0.5rem;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_constBox .swiper_box ul li .centerInfo .imgBox {
  width: 43%;
  height: auto;
}
.idx_constBox .swiper_box ul li .centerInfo .imgBox img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_constBox .swiper_box ul li .centerInfo .word {
  width: 50%;
}
.idx_constBox .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
}
.idx_constBox .swiper_box ul li .centerInfo .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  line-height: 1.5;
  color: #666666;
}
.idx_constBox .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}

.idx_constBox .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.1rem;
}
.idx_constBox .idxPageShow span {
  background: none;
  border: 2px solid #c0c0c0;
  opacity: 1;
}
.idx_constBox .idxPageShow .swiper-pagination-bullet-active {
  border-color: var(--active_color);
  background: var(--active_color);
}


@media (max-width:480px) {
    .idx_constBox .swiper_box ul li .centerInfo .word .t2{
        height: 3rem;
        overflow: auto;
    }
    .idx_constBox .swiper_box{
        overflow: hidden;
        width: 100%;
    }
    .idx_constBox .swiper_box ul li .centerInfo{
        display: inline-block;width: 100%;
    }
    .idx_constBox .swiper_box ul li .centerInfo .word{
        width: 100%;
    }
    .idx_constBox .swiper_box ul li .centerInfo .imgBox{
        width: 100%;
        margin-top: .3rem;
    }
    .idx_app .swiper_box ul li .centerInfo .itemBox{
        min-height: 4.5rem;
    }
}


.swiPagBox{
    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: .3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: clamp(22.5px, 2.34375vw, 45px);
}
.swiPagBox .swiper-pagination{
     white-space: nowrap;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: unset !important;
  gap: unset !important;
}

.swiPagBox .swiper-pagination span{
      margin: 0 5px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
}



.idx_app2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.2rem;
  padding-top: 0.5rem;
  overflow: hidden;
}
.idx_app2 .maskBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.idx_app2 .maskBox .item_box {
  width: 31%;
  border-radius: 0.2rem;
  overflow: hidden;
  height: max-content;
}
.idx_app2 .maskBox .item_box .item {
  padding: 0 0.5rem;
  width: 100%;
  height: auto;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
  background: #f5f5f5;
}
.idx_app2 .maskBox .item_box .item .top {
  padding: 0.3rem 0;
  padding-bottom: 0.45rem;
  font-weight: 700;
  color: #666666;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_app2 .maskBox .item_box .item .top i {
  width: 0.36rem;
  height: 0.36rem;
  border: 1px solid #989898;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color_999);
  font-weight: 200;
  font-size: var(--font14);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_app2 .maskBox .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-bottom: 0.5rem;
}
.idx_app2 .maskBox .item_box .item .bot .word {
  font-size: var(--font16);
  line-height: 1.65;
  color: #666666;
}
.idx_app2 .maskBox .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.idx_app2 .maskBox .item_box .item:nth-child(2n) {
  background: #ebebeb;
}
.idx_app2 .maskBox .item_box .item:last-child .top {
  padding-bottom: 0.3rem;
}
.idx_app2 .maskBox .item_box .item:first-child .top {
  padding-top: 0.5rem;
}
.idx_app2 .maskBox .item_box .item.active .top {
  padding-bottom: 0.3rem;
  color: #000;
}
.idx_app2 .maskBox .item_box .item.active .top i {
  background: #000;
  border-color: #000;
  color: #FFF;
}
.idx_app2 .maskBox .item_box .item + .item {
  margin-top: -0.15rem;
}
.idx_app2 .maskBox .swiper_box {
  width: 68.617%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_app2 .maskBox .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_app2 .maskBox .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_app2 .maskBox .swiper_box ul li .centerInfo .pb {
  padding-bottom: 65%;
}
.idx_app2 .maskBox .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafbfc;
}
.idx_about .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url(../images/bg3.jpg.png);
  background-position: bottom left;
  background-size: cover;
}
.idx_about .maskBox .idx_title {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}
.idx_about .maskBox .wordBox {
  width: 41%;
  height: auto;
}
.idx_about .maskBox .wordBox .word {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_about .maskBox .wordBox .word .t1 {
  font-weight: 600;
}
.idx_about .maskBox .wordBox .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  color: #666666;
  line-height: 1.555;
  text-align: justify;
}
.idx_about .maskBox .wordBox .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
}
.idx_about .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  padding-top: 2.6rem;
  padding-bottom: 1.2rem;
  pointer-events: none;
}
.idx_about .content .center_box {
  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;
}
.idx_about .content .item_box {
  width: 41%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}
.idx_about .content .swiper_box {
  height: auto;
  width: 41%;
}
.idx_about .content .swiper_box ul {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}
.idx_about .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_about .content .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.idx_about .content .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #e0e1e1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_about .content .item .word {
  line-height: 1;
  font-weight: 500;
}
.idx_about .content .item .word .number {
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.idx_about .content .item .word .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.idx_about .content .item .icon {
  width: 0.8rem;
}
@media (max-width:990px) {
  .idx_about {
    background-image: url(../images/bg3.jpg.png);
    background-attachment: fixed;
    background-position: bottom left;
    background-size: cover;
  }
  .idx_about .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background-image: unset;
  }
  .idx_about .maskBox .wordBox {
    width: 100%;
    height: auto;
  }
  .idx_about .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0.6rem;
  }
  .idx_about .content .center_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_about .content .swiper_box {
    width: 100%;
    height: auto;
  }
  .idx_about .content .swiper_box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }
  .idx_about .content .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .idx_about .content .swiper_box ul li .item {
    background: #ffffff8e;
    padding: 0.4rem;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
  }
  .idx_about .content .swiper_box ul li .item::after {
    opacity: 0;
  }
}

@media (max-width:480px){
    .idx_about .maskBox{
        background: none;
    }
}

.idx_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  overflow: hidden;
  background: #f5f5f5;
}
.idx_new .idx_title .t1 {
  text-align: center;
}
.idx_new .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_new .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  position: relative;
  z-index: 2;
}
.idx_new .swiper_box ul li {
  width: 50%;
  height: auto;
}
.idx_new .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 0.3rem;
  background: #ffffff77;
  backdrop-filter: blur(5px);
  border-radius: 0.2rem;
  overflow: hidden;
  cursor: pointer;
}
.idx_new .swiper_box ul li .centerInfo .images {
  width: 50.6%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_new .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 94%;
}
.idx_new .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .swiper_box ul li .centerInfo .wordBox {
  width: calc(49.4% - 0.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_new .swiper_box ul li .centerInfo .wordBox .time {
  width: 100%;
  height: auto;
  text-align: end;
  color: var(--active_color);
}
.idx_new .swiper_box ul li .centerInfo .wordBox .word {
  width: 100%;
  height: 100%;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.idx_new .swiper_box ul li .centerInfo .wordBox .t1Box {
  width: 100%;
  height: auto;
}
.idx_new .swiper_box ul li .centerInfo .wordBox .t1Box .icon {
  width: fit-content;
  padding: 0.06rem 0.14rem;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  font-size: var(--font16);
  line-height: 1;
  color: #999999;
  padding-top: 0.08rem;
}
.idx_new .swiper_box ul li .centerInfo .wordBox .t1Box .t1 {
  margin-top: 0.15rem;
  color: #000;
}
.idx_new .swiper_box ul li .centerInfo .wordBox .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_new .swiper_box ul li .centerInfo:hover .images img {
  transform: scale(1.02);
}
.idx_new .swiper_box ul li .centerInfo:hover .idx_more .more i::after {
  animation: grow3 1s linear;
}
.idx_new .swiper_scor {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
}
.idx_new .swiper_scor ul {
  transition-timing-function: linear !important;
}
.idx_new .swiper_scor ul li {
  width: auto;
  height: auto;
}
.idx_new .swiper_scor ul li .centerInfo {
  width: auto;
  height: auto;
  font-size: 2.6rem;
  font-weight: 100;
  word-break: normal;
  white-space: nowrap;
  color: #dfdfdf;
}
.idx_new .idx_pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.34rem;
  margin-top: 0.6rem;
}
.idx_new .idx_pagerBox .idx_prbar {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #dcdcdc;
}
.idx_new .idx_pagerBox .idx_prbar span {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  display: block;
}
.idx_new .idx_pagerBox .idx_prbar .swiper-pagination-progressbar-fill {
  background: var(--active_color);
}
.idx_new .idx_pagerBox .idx_more {
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width:990px) {
  .idx_new .swiper_box ul li .centerInfo .wordBox .word {
    margin-top: 0.3rem;
  }
  .idx_new .swiper_box ul li .centerInfo .wordBox .time {
    text-align: left;
  }
}
/* --------------------------------------------------------------- 行业应用 */
.public-banner {
  position: relative;
  height: 6.7rem;
  padding-top: var(--header-height);
}
.public-banner .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.public-banner .innerbox .image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.public-banner .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-banner .innerbox .image .m-banner {
  display: none;
}
.public-banner .innerbox .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 2;
}
.public-banner .innerbox .info .desc {
  width: 100%;
  line-height: calc(28/18);
  margin-top: 0.3rem;
  white-space: pre-line;
}
@media (max-width:480px) {
  .public-banner .innerbox .image .p-banner {
    display: none;
  }
  .public-banner .innerbox .image .m-banner {
    display: block;
  }
}
.industry-detail-banner {
  position: relative;
  height: calc(6.7rem + var(--header-height));
  padding-top: var(--header-height);
}
.industry-detail-banner .image {
  top: var(--header-height);
}
.industry-detail-banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-detail-banner .innerbox .info .desc {
  margin-top: 0.2rem;
}
.industry-section1 {
  position: relative;
  padding: 1rem 0;
  background: #F7F7F7;
}
.industry-section1 .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
}
.industry-section1 .innerbox .left {
  width: 18%;
  max-width: 300px;
}
.industry-section1 .innerbox .left ul {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 0.2rem 0;
}
.industry-section1 .innerbox .left ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font18);
  height: 0.6rem;
  min-height: 38px;
  text-align: center;
  cursor: pointer;
}
.industry-section1 .innerbox .left ul li:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color_fff);
  background: var(--active_color);
}
.industry-section1 .innerbox .left ul .active {
  color: var(--color_fff);
  background: var(--active_color);
}
.industry-section1 .innerbox .right {
  width: 82%;
}
.industry-section1 .innerbox .right .filter-title {
  display: -webkit-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;
  padding: 0 0.2rem;
  height: 0.8rem;
  min-height: 40px;
  background-color: var(--color_fff);
  border-radius: 0.2rem;
}
.industry-section1 .innerbox .right .filter-title .f-title {
  display: -webkit-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.33rem;
}
.industry-section1 .innerbox .right .filter-title .f-search {
  width: 23%;
  position: relative;
  min-width: 200px;
}
.industry-section1 .innerbox .right .filter-title .f-search input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  padding-bottom: 0.14rem;
  width: 100%;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  font-size: var(--font16);
}
.industry-section1 .innerbox .right .filter-title .f-search input:focus {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: solid 1px var(--active_color);
}
.industry-section1 .innerbox .right .filter-title .f-search .icon {
  position: absolute;
  right: 0;
  width: 0.22rem;
}
.industry-section1 .innerbox .right .filter-content {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.2rem;
  row-gap: 0.6rem;
}
.industry-section1 .innerbox .right .filter-content .item {
  cursor: pointer;
  overflow: hidden;
}
.industry-section1 .innerbox .right .filter-content .item .item-top {
  position: relative;
  overflow: hidden;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .image {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  border-radius: 0.2rem;
  height: 2.6rem;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .image img {
  border-radius: 0.3rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .info {
  display: -webkit-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;
  gap: 0.1rem;
  position: absolute;
      width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
  z-index: 2;
  background-size: cover;
  border-radius: 0.2rem;
  font-size: var(--font16);
  transition: all 0.5s ease-in-out;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .info .btn {
 
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font16);
  height: 0.42rem;
  padding: 0 0.28rem;
  border-radius: 21px;
  border: 1px solid #CCCCCC;
  min-width: 125px;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .info .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color_666);
}
.industry-section1 .innerbox .right .filter-content .item .item-top .info .btn:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
  border: none;
}
.industry-section1 .innerbox .right .filter-content .item .item-top .info .btn:hover a {
  color: var(--color_fff);
}
.industry-section1 .innerbox .right .filter-content .item .item-name {
  font-weight: 500;
  font-size: var(--font22);
  margin-top: 0.3rem;
}
.industry-section1 .innerbox .right .filter-content .item:hover .item-top .info {
  z-index: 4;
  height:100%;
  background: url("../images/industry-bg.png") no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}
.industry-section1 .innerbox .right .filter-content .item:hover .item-top .info .btn {
  transition: all 0.5s ease-in-out;
}
.industry-section1 .innerbox .right .filter-content .item:hover .item-name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
.industry-section1 #demo-laypage-normal-2 {
  padding-top: 1rem;
}
@media (max-width:768px) {
  .industry-section1 .innerbox {
    display: inline;
  }
  .industry-section1 .innerbox .left {
    width: 100%;
    max-width: inherit;
  }
  .industry-section1 .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width:480px) {
  .industry-section1 .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
  .industry-section1 .innerbox .right .f-search {
    display: none;
  }
  .industry-section1 .innerbox .right .filter-title .f-title {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .industry-section1 .innerbox .right .filter-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-server-section {
  padding: 1rem 0;
  padding-top: 2rem;
}
.product-server-section #pageview_product{
    padding-left: 18%;
    margin-top: 1rem;
}


.product-server-section .alltyle {
  width: 18%;
  max-width: 300px;
  height:fit-content;
  position: sticky;
  top: 1rem;
}
.product-server-section .alltyle .title {
  display: -webkit-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: var(--color_fff);
  height: 0.8rem;
  background-color: var(--active_color);
  border-radius: 0.2rem 0.2rem 0 0;
}
.product-server-section .alltyle .itemlist {
  background-color: var(--color_fff);
  padding-bottom: 1.58rem;
  border-radius: 0 0 0.2rem 0.2rem;
}
.product-server-section .alltyle .itemlist .item {
  padding: 0.15rem 0.2rem;
  cursor: pointer;
}
.product-server-section .alltyle .itemlist .item:first-child {
  padding-top: 0.3rem;
}
.product-server-section .alltyle .itemlist .item .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: var(--color_333);
}
.product-server-section .alltyle .itemlist .item .name .more {
  filter: brightness(0) invert(0.6);
  transform: rotate(180deg);
}
.product-server-section .alltyle .itemlist .item ul {
  margin-top: 0.2rem;
  display: none;
}
.product-server-section .alltyle .itemlist .item ul li {
  position: relative;
  font-size: var(--font16);
  line-height: calc(34/16);
  color: var(--color_666);
  padding-left: 0.19rem;
}
.product-server-section .alltyle .itemlist .item ul .active {
  color: var(--active_color);
}
.product-server-section .alltyle .itemlist .item ul .active:before {
    position: absolute;
    content: '';
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--active_color);
    border-radius: 50%;
    top: 0.15rem;
}

.product-server-section .alltyle .itemlist .item ul li .one{
    padding-left: 0.2rem;    font-size: var(--font14);
}

.product-server-section .alltyle .itemlist .on .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
.product-server-section .alltyle .itemlist .on .name .more {
  filter: inherit;
  transform: inherit;
}
@media (max-width:768px) {
  .product-server-section .alltyle {
    width: 100%;
    max-width: inherit;
    position: relative;
    top: 0;
  }
}
@media (max-width:480px) {
  .product-server-section {
    padding-top: 1.3rem;
  }
  .product-server-section .alltyle .itemlist {
    padding-bottom: 0.5rem;
  }
}
.industry-section2 {
  background-color: var(--color_fff);
  padding: 1rem 0;
  overflow: hidden;
}
.industry-section2 .innerbox {
  width: 72.9%;
  margin: auto;
  text-align: center;
}
.industry-section2 .innerbox .itemlist {
  position: relative;
  margin-top: 0.4rem;
}
.industry-section2 .innerbox .itemlist .swiper-slide .item {
  opacity: 0.4;
}
.industry-section2 .innerbox .itemlist .swiper-slide-active .item {
  opacity: 1;
}
.industry-section2 .innerbox .itemlist .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;
  background: #FAFAFA;
  border-radius: 20px;
  padding: 0.2rem;
}
.industry-section2 .innerbox .itemlist .item .info {
  width: 57.5%;
  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-direction: column;
  padding: 0.3rem;
}
.industry-section2 .innerbox .itemlist .item .info .title {
  color: var(--color_333);
}
.industry-section2 .innerbox .itemlist .item .info .desc {
  margin-top: 0.3rem;
  color: var(--color_666);
  text-align: left;
  line-height: calc(26/16);
}
.industry-section2 .innerbox .itemlist .item .image {
  width: 42.5%;
  border-radius: 20px;
  height: 4.6rem;
}
.industry-section2 .innerbox .itemlist .item .image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-section2 .innerbox .itemlist .swiper-pagination {
  position: relative;
  margin-top: 0.3rem;
}
@media (max-width:480px) {
  .industry-section2 {
    padding: 0.5rem 0;
  }
  .industry-section2 .innerbox {
    width: 100%;
    padding: 0.2rem;
  }
  .industry-section2 .innerbox .itemlist {
    overflow: hidden;
  }
  .industry-section2 .innerbox .itemlist .item {
    display: inline-block;
  }
  .industry-section2 .innerbox .itemlist .item .info {
    width: 100%;
  }
  .industry-section2 .innerbox .itemlist .item .image {
    width: 100%;
  }
}
.footer-input {
  background: url("../images/footer-bg.png") no-repeat;
  padding: 1.03rem 0;
  text-align: center;
  overflow: hidden;
  background-size: cover;
}
.footer-input .search {
  position: relative;
  width: 28%;
  min-width: 300px;
  margin: auto;
  margin-top: 0.3rem;
}
.footer-input .search input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 0.6rem;
  border-radius: 30px;
  border: 1px solid #C8C8C8;
  padding: 0 0.3rem;
  background-color: inherit;
}
.footer-input .search input:focus {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px var(--active_color);
}
.footer-input .search .icon {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.21rem;
  height: 0.21rem;
}
.footer-input .search .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-application1 {
  padding: 1rem 0;
  background: #F7F7F7;
}
.industry-application1 .innerbox {
  
}
.industry-application1 .innerbox .title {
  margin-top: 1rem;
  line-height: 1;
}
.industry-application1 .innerbox .desc {
  line-height: calc(28/18);
  color: var(--color_666);
  white-space: pre-line;
}
.industry-application1 .innerbox .image {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  margin-top: 0.45rem;
  border-radius: 0.2rem;
}
.industry-application1 .innerbox .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  min-height: 200px;
}
.industry-application1 .innerbox .image:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry-application1 .innerbox .image:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width:480px) {
  .industry-application1 {
    padding: 0.5rem 0;
  }
  .industry-application1 .innerbox .desc {
    white-space: inherit;
    margin-top: 0.2rem;
  }
}
.industry-application2 {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  background-color: var(--color_fff);
}
.industry-application2 .itemlist {
  margin-top: 0.36rem;
  gap: 0.4rem;
  overflow: hidden;
}
.industry-application2 .itemlist .item {
  position: relative;
  height: 4.1rem;
  cursor: pointer;
  border-radius: 20px;
}
.industry-application2 .itemlist .item:before {
  position: absolute;
  content: '';
  background: url("../images/application-detail-bg.png") no-repeat;
  border-radius: 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease-in-out;
}
.industry-application2 .itemlist .item .before .image {
  border-radius: 20px;
  height: 3.4rem;
}
.industry-application2 .itemlist .item .before .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.industry-application2 .itemlist .item .before .name {
  margin-top: 0.22rem;
}
.industry-application2 .itemlist .item .behind {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.3s ease-in-out;
}
.industry-application2 .itemlist .item .behind .ftitle {
  margin-top: 0.6rem;
}
.industry-application2 .itemlist .item .behind .desc {
  color: var(--color_666);
  padding: 0 0.4rem;
  margin-top: 0.2rem;
}
.industry-application2 .itemlist .item .behind .idx_more {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.industry-application2 .itemlist .item .behind .idx_more .more {
  gap: 0.4rem;
}
.industry-application2 .itemlist .item:hover:before {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.industry-application2 .itemlist .item:hover .behind {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.industry-application2 .itemlist .swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
}
.industry-application2 .idx_more {
  margin: auto;
  margin-top: 0.6rem;
}
@media (max-width:1280px) {
  .industry-application2 .itemlist .item .behind .idx_more .more {
    gap: 0.3rem;
  }
}
@media (max-width:480px) {
  .industry-application2 {
    padding-top: 0.5rem;
     padding-bottom: 0.5rem;
  }
}
.industry-application3 {
  position: relative;
  padding: 1rem 0;
  text-align: center;
}
.industry-application3 .itemlist {
  margin-top: 0.36rem;
  overflow: hidden;
}
.industry-application3 .itemlist .item {
  cursor: pointer;
}
.industry-application3 .itemlist .item .image {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  height: 3.5rem;
  overflow: hidden;
}
.industry-application3 .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.industry-application3 .itemlist .item .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.22rem;
}
.industry-application3 .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.industry-application3 .itemlist .item:hover .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
 .industry-application3 .swiper-pagination {
    position: relative;
    margin-top: 0.5rem;
  }
@media (max-width:480px) {
  .industry-application3 {
    padding-top: 0.5rem;
  }
 
}
/* --------------------------------------------------------------- 集团动态 */
.dynamics-banner {
  position: relative;
  height: calc(6rem + var(--header-height));
  padding-top: var(--header-height);
}
.dynamics-banner .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.dynamics-banner .innerbox .image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.dynamics-banner .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dynamics-banner .innerbox .image .m-banner {
  display: none;
}
.dynamics-banner .innerbox .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 2;
}
.dynamics-banner .innerbox .info .title {
  color: #010101;
}
.dynamics-banner .innerbox .info .about-title {
  color: #ffffff;
}
@media (max-width:480px) {
  .dynamics-banner .innerbox .image .p-banner {
    display: none;
  }
  .dynamics-banner .innerbox .image .m-banner {
    display: block;
  }
}
.dynamics-section1 {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1.6rem;
  background: #F7F7F7;
  overflow: hidden;
}
.dynamics-section1 .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.dynamics-section1 .innerbox .title {
  text-align: center;
  line-height: 1;
}
.dynamics-section1 .innerbox .swiper_scor {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
}
.dynamics-section1 .innerbox .swiper_scor ul {
  transition-timing-function: linear !important;
}
.dynamics-section1 .innerbox .swiper_scor ul li {
  width: auto;
  height: auto;
}
.dynamics-section1 .innerbox .swiper_scor ul li .centerInfo {
  width: auto;
  height: auto;
  font-size: 2.6rem;
  font-weight: 100;
  word-break: normal;
  white-space: nowrap;
  color: #dfdfdf;
}
.dynamics-section1 .innerbox .swiper_box {
  position: relative;
  margin-top: 0.4rem;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.dynamics-section1 .innerbox .swiper_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  padding: 0.26rem 0.28rem;
  background: #ffffff77;
  backdrop-filter: blur(5px);
  height: 5.6rem;
}
.dynamics-section1 .innerbox .swiper_box .item .image {
  width: 49%;
  border-radius: 20px;
  height: 5rem;
  overflow: hidden;
  z-index: 2;
}
.dynamics-section1 .innerbox .swiper_box .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dynamics-section1 .innerbox .swiper_box .item .image:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(1.05);
}
.dynamics-section1 .innerbox .swiper_box .item .info {
  padding: 0 0.6rem;
  width: 51%;
  text-align: left;
  padding-bottom: 0.36rem;
}
.dynamics-section1 .innerbox .swiper_box .item .info .t0 {
  color: var(--color_666);
  z-index: 2;
}
.dynamics-section1 .innerbox .swiper_box .item .info .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color_000);
  margin-top: 0.5rem;
  z-index: 2;
}
.dynamics-section1 .innerbox .swiper_box .item .info .t2 {
  color: var(--color_666);
  margin-top: 0.3rem;
  z-index: 2;
}
.dynamics-section1 .innerbox .swiper_box .item .info .idx_more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.dynamics-section1 .innerbox .swiper_box .item .info .idx_more .more.bgon {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 10;
}
.dynamics-section1 .innerbox .swiper_box .item .info .idx_more .more.bgon:hover span {
  color: var(--active_color);
}
.dynamics-section1 .innerbox .swiper_box .item .info:hover .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
.dynamics-section1 .idxNumber {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 0.92rem;
  left: 49%;
  margin-left: 0.6rem;
  display: -webkit-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;
}
.dynamics-section1 .svgBox::after {
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width:480px) {
  .dynamics-section1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .dynamics-section1 .innerbox .swiper_box .item {
    display: inline-block;
    width: 100%;
    height: inherit;
  }
  .dynamics-section1 .innerbox .swiper_box .item .image {
    width: 100%;
  }
  .dynamics-section1 .innerbox .swiper_box .item .info {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0 0.2rem;
    padding-bottom: 1rem;
  }
  .dynamics-section1 .innerbox .swiper_box .item .info .t1 {
    margin-top: 0.1rem;
  }
  .dynamics-section1 .innerbox .swiper_box .item .info .idx_more {
    z-index: -1;
  }
  .dynamics-section1 .innerbox .swiper_box .item .info .idx_more .more.bgon {
    bottom: 0.3rem;
  }
  .dynamics-section1 .idxNumber {
    bottom: 0.5rem;
    left: 0;
  }
}
.dynamics-section2 {
  padding: 1.2rem 0;
}
.dynamics-section2 .filterbox {
  display: -webkit-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;
  font-size: var(--font16);
}
.dynamics-section2 .filterbox .year {
  width: 24%;
  margin-right: 0.2rem;
}
.dynamics-section2 .filterbox .year .layui-form-item {
  margin-bottom: 0;
}
.dynamics-section2 .filterbox .year .layui-input-block {
  margin-left: 0;
}
.dynamics-section2 .filterbox .year .layui-input-block input {
  height: 0.6rem;
  background: #FAFAFA;
  border-radius: 0.2rem;
  border: 1px solid #E7E7E7;
  color: var(--color_333);
}
.dynamics-section2 .filterbox .search {
  position: relative;
  width: 75%;
}
.dynamics-section2 .filterbox .search input {
  width: 100%;
  padding-left: 0.3rem;
  height: 0.6rem;
  background: #FAFAFA;
  border-radius: 0.2rem;
  border: 1px solid #E7E7E7;
}
.dynamics-section2 .filterbox .search .icon {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.21rem;
  height: 0.21rem;
}
.dynamics-section2 .innerbox {
  gap: 0.2rem;
  margin-top: 0.4rem;
}
.dynamics-section2 .innerbox .item {
  position: relative;
  overflow: hidden;
  height: 4.6rem;
  background: #F9F9F9;
  border-radius: 0.2rem;
}
.dynamics-section2 .innerbox .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: url("../images/new-bg.jpg") no-repeat;
  z-index: 0;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.dynamics-section2 .innerbox .item a {
  padding: 0.1rem;
  width: 100%;
  height: 100%;
}
.dynamics-section2 .innerbox .item a .image {
  position: absolute;
  transition: all 0.3s ease;
  width: calc(100% - 0.2rem);
  height: 2.38rem;
  background: #AEAEAE;
  border-radius: 0.2rem;
  overflow: hidden;
}
.dynamics-section2 .innerbox .item a .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.dynamics-section2 .innerbox .item a .info {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  padding-top: calc(2.38rem + 0.27rem);
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.dynamics-section2 .innerbox .item a .info .desc {
  line-height: calc(30/16);
  margin-top: 0.24rem;
  display: none;
}
.dynamics-section2 .innerbox .item a .time {
  display: -webkit-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;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.42rem;
}
.dynamics-section2 .innerbox .item a .time span {
  margin-left: 0.3rem;
}
.dynamics-section2 .innerbox .item a .time .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-right: 0.3rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.dynamics-section2 .innerbox .item a .time .detail img {
  width: 0.12rem;
  height: 0.1rem;
}
.dynamics-section2 .innerbox .item:hover:after {
  bottom: 0;
  height: 100%;
  transition: all 0.3s ease;
}
.dynamics-section2 .innerbox .item:hover .image {
  transition: all 0.3s ease;
  transform: translateY(-5rem);
}
.dynamics-section2 .innerbox .item:hover .info {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 0.5rem;
  z-index: 2;
}
.dynamics-section2 .innerbox .item:hover .info .title {
  color: var(--color_000);
}
.dynamics-section2 .innerbox .item:hover .info .time {
  color: var(--color-active);
}
.dynamics-section2 .innerbox .item:hover .info .desc {
  display: block;
  color: var(--color_666);
}
.dynamics-section2 .innerbox .item:hover .time {
  color: var(--active_color);
  z-index: 2;
}
.dynamics-section2 .innerbox .item:hover .time .detail {
  background-color: var(--active_color);
}
.dynamics-section2 .innerbox .item:hover .time .detail img {
  filter: brightness(0) invert(1);
}
@media (max-width:480px) {
  .dynamics-section2 {
    padding: 0.8rem 0;
  }
  .dynamics-section2 .innerbox {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.3rem;
  }
  .dynamics-section2 .innerbox .item {
    padding: 0.2rem;
  }
  .dynamics-section2 .innerbox .item a {
    padding: 0;
  }
  .dynamics-section2 .innerbox .item a .image {
    width: calc(100% - 0.4rem);
  }
  .dynamics-section2 .filterbox {
    display: inline-block;
    width: 100%;
  }
  .dynamics-section2 .filterbox .year {
    width: 100%;
    margin-right: 0;
  }
  .dynamics-section2 .filterbox .search {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.news-detail-wrap {
  background: var(--color_fff);
  padding-top: var(--header-height);
  padding-bottom: 1rem;
  color: var(--color_666);
}
.news-detail-wrap .innerbox {
  padding: 1rem 0.7rem;
  width: 66.66666667%;
  margin: auto;
  overflow: hidden;
}
.news-detail-wrap .innerbox .title {
  line-height: calc(42/32);
  text-align: center;
  color: var(--color_000);
}
.news-detail-wrap .innerbox .sendbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.93rem;
  border-bottom: solid 1px #e5e5e5;
  padding: 0.4rem 0;
}
.news-detail-wrap .innerbox .sendbox::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: -0.5px;
  background: url(../images/line.png) no-repeat;
  background-position: center;
  z-index: 2;
  animation: 2s bar infinite linear;
}
.news-detail-wrap .innerbox .sendbox .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.1rem;
  text-align: center;
  font-size: var(--font18);
  color: var(--color_666);
}
.news-detail-wrap .innerbox .desc {
  margin-top: 0.8rem;
  line-height: calc(32/18);
}
.news-detail-wrap .innerbox .desc p {
  margin-top: 0.2rem;
}
.news-detail-wrap .innerbox .image {
  margin-top: 0.5rem;
  text-align: center;
}
.news-detail-wrap .innerbox .image .img {
  text-align: center;
  margin: auto;
}
.news-detail-wrap .innerbox .return-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.news-detail-wrap .innerbox .return-wrap .left p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.2rem;
  color: var(--color_333);
  font-size: var(--font16);
}
.news-detail-wrap .innerbox .return-wrap .left p:hover a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  color: var(--active_color);
  font-size: var(--font16);
}
.news-detail-wrap .innerbox .return-wrap .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;
}
.news-detail-wrap .innerbox .return-wrap .right .public-idx-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--active_color);
  width: 1.8rem;
  height: 0.6rem;
  border-radius: 30px;
}
.news-detail-wrap .innerbox .return-wrap .right .public-idx-more a {
  color: var(--color_fff);
}
.news-detail-wrap .innerbox .return-wrap .right .public-idx-more img {
  filter: brightness(0) invert(1);
  margin-right: 0.3rem;
}
@media (max-width:1560px) {
  .news-detail-wrap .innerbox {
    width: 100%;
    padding: 1rem 8.97435897%;
  }
}
@media (max-width:990px) {
  .news-detail-wrap .innerbox {
    padding: 0.5rem 20px;
  }
  .news-detail-wrap .innerbox .return-wrap {
    display: inline-block;
    width: 100%;
  }
  .news-detail-wrap .innerbox .return-wrap .right {
    margin-top: 0.5rem;
  }
}
.product-detail-section1 {
  margin-top: var(--header-height);
  padding-top: 0.6rem;
  background: #F7F7F7;
}
.product-detail-section1 .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.product-detail-section1 .innerbox .image {
  position: relative;
  width: 63%;
  height: 6.7rem;
  overflow: hidden;
  cursor: pointer;
}
.product-detail-section1 .innerbox .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-section1 .innerbox .image .swiper-pagination {
  bottom: 0.34rem;
}
.product-detail-section1 .innerbox .image .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color_fff);
}
.product-detail-section1 .innerbox .info {
  padding-left: 0.6rem;
  width: 37%;
}
.product-detail-section1 .innerbox .info .t0 {
  color: var(--color_000);
  margin-top: 0.59rem;
  line-height: 1;
  padding-bottom: 0.37rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.product-detail-section1 .innerbox .info .t1 {
  line-height: calc(26 / 16);
    color: var(--color_666);
    margin-top: 0.3rem;
    height: 1.8rem;
    overflow: auto;
    padding-right: .2rem;
  
}
.product-detail-section1 .innerbox .info .t1 p{
    width: 100%;
}
.product-detail-section1 .innerbox .info .t1 .mt1 {
  margin-top: 0.1rem;
}
.product-detail-section1 .innerbox .info .t2 {
  margin-top: 0.6rem;
}
.product-detail-section1 .innerbox .info .t2 .title {
  color: var(--color_333);
}
.product-detail-section1 .innerbox .info .t2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.15rem;
  gap: 0.06rem;
}
.product-detail-section1 .innerbox .info .t2 .list .one {
  width: fit-content;
  height: 0.3rem;
  min-height: 28px;
  padding: 0 0.15rem;
  background: #faf2f2;
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-detail-section1 .innerbox .info .t3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.8rem;
}
.product-detail-section1 .innerbox .info .t3 .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.13rem;
  height: 0.6rem;
  padding: 0 0.36rem;
  border-radius: 30px;
  cursor: pointer;
}
.product-detail-section1 .innerbox .info .t3 .btn .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.product-detail-section1 .innerbox .info .t3 .btn .title {
  font-size: var(--font16);
}
.product-detail-section1 .innerbox .info .t3 .btn a {
  color: var(--color_fff);
}
.product-detail-section1 .innerbox .info .t3 .btn:hover .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-detail-section1 .innerbox .info .t3 .tel {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color_000);
}
.product-detail-section1 .innerbox .info .t3 .tel:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color_222);
}
.product-detail-section1 .innerbox .info .t3 .tel:hover .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-detail-section1 .innerbox .info .t3 .mes {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--active_color);
}
.product-detail-section1 .innerbox .info .t3 .mes:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #881618;
}
.product-detail-section1 .innerbox .info .t3 .mes:hover .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .product-detail-section1 .innerbox .info .t0 {
    margin-top: 0;
  }
  .product-detail-section1 .innerbox .info .t2 {
    margin-top: 0.3rem;
  }
  .product-detail-section1 .innerbox .info .t3 {
    margin-top: 0.3rem;
  }
}
@media (max-width:768px) {
  .product-detail-section1 .innerbox {
    display: inline-block;
    width: 100%;
  }
  .product-detail-section1 .innerbox .image {
    width: 100%;
  }
  .product-detail-section1 .innerbox .info {
    width: 100%;
    margin: 0.8rem 0;
    padding-left: 0;
  }
}
@media (max-width:768px) {
  .product-detail-section1 .innerbox .info {
    margin: 0.5rem 0;
  }
}
.product-detail-section2 {
  position: relative;
}
.product-detail-section2 .innerbox {
  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;
  margin-top: 0.9rem;
}
.product-detail-section2 .innerbox .info {
  width: 59%;
  color: var(--color_666);
  line-height: calc(26/16);
}
.product-detail-section2 .innerbox .info .t1 {
  margin-top: 0.1rem;
}
.product-detail-section2 .innerbox2 {
  margin-top: 1rem;
}
.product-detail-section2 .innerbox2 .info {
  overflow: hidden;
  margin-top: 0.4rem;
}
.product-detail-section2 .innerbox2 .info .image {
  height: 3.5rem;
  overflow: hidden;
  border-radius: 20px;
}
.product-detail-section2 .innerbox2 .info .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-section2 .innerbox2 .info .image:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(1.05);
}
.product-detail-section2 .innerbox2 .info .swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
}
@media (max-width:480px) {
  .product-detail-section2 .innerbox {
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
  }
  .product-detail-section2 .innerbox .info {
    width: 100%;
    margin-top: 0.2rem;
  }
  .product-detail-section2 .innerbox2 {
    margin-top: 0.5rem;
  }
}
.product-detail-section3 {
  padding-top: 0.9rem;
}
.product-detail-section3 .innerbox .itemlist {
  gap: 0.8rem;
  margin-top: 0.3rem;
}
.product-detail-section3 .innerbox .itemlist .image {
  display: -webkit-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: #F9F9F9;
  border-radius: 20px;
  padding: 0.58rem 0.68rem;
  height: 9rem;
}
@media (max-width:480px) {
  .product-detail-section3 {
    padding-top: 0.5rem;
  }
  .product-detail-section3 .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .product-detail-section3 .innerbox .itemlist .image {
    height: inherit;
  }
}
.product-detail-section4 {
  position: relative;
  overflow: auto;
  overflow: hidden;
  padding: 1rem 0;
}
.product-detail-section4 .innerbox .itemlist table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.product-detail-section4 .innerbox .itemlist thead {
  background: #878787;
}
.product-detail-section4 .innerbox .itemlist thead th {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.product-detail-section4 .innerbox .itemlist th,
.product-detail-section4 .innerbox .itemlist td {
  border: 1px solid #EAEAEA;
  padding: 0.16rem 0.08rem;
  text-align: center;
}
.product-detail-section4 .innerbox .itemlist .br-l {
  border-radius: 20px 0 0 0 ;
  border: none;
}
.product-detail-section4 .innerbox .itemlist .br-r {
  border-radius: 0 20px  0 0 ;
  border: none;
}
.product-detail-section4 .innerbox .itemlist .br-l-b {
  border-radius: 0px 0px 0 20px;
}
.product-detail-section4 .innerbox .itemlist .br-r-b {
  border-radius: 0px 0px 20px 0;
}
.product-detail-section4 .innerbox .itemlist .header {
  color: white;
  text-align: left;
  padding-left: 20px;
}
.product-detail-section4 .innerbox .itemlist .subheader {
  color: white;
  text-align: left;
  padding-left: 20px;
}
@media (max-width:480px) {
  .product-detail-section4 {
    padding: 0.5rem 0;
  }
}
.about-section1 {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
}
.about-section1 .innerbox {
  overflow: hidden;
}
.about-section1 .innerbox .title {
  position: relative;
  padding-bottom: 0.34rem;
  border-bottom: solid 1px #e5e5e5;
}
.about-section1 .innerbox .title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: 0;
  background: url(../images/line.png) no-repeat;
  background-position: center;
  z-index: 2;
  animation: 4s bar infinite linear;
}
.about-section1 .innerbox .info {
  /*width: 53%;*/
  /*margin-left: 47%;*/
  margin-top: 0.6rem;
}
.about-section1 .innerbox .info .t0,
.about-section1 .innerbox .info .t1 {
  color: var(--color_666);
  line-height: calc(28/18);
}
.about-section1 .innerbox .info .t1 {
  margin-top: 0.2rem;
}
.about-section1 .innerbox .info .t2 {
  margin-top: 0.2rem;
  line-height: calc(28/20);
  white-space: pre-line;
}
.about-section1 .innerbox .about-company {
  position: relative;
  margin-top: 0.67rem;
  width: 100%;
  height: 5.2rem;
}
.about-section1 .innerbox .about-company .videobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 29.4%;
  height: 5.06rem;
}
.about-section1 .innerbox .about-company .videobox .vodeobtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: -1rem;
  border-radius: 50%;
  z-index: 1;
}
.about-section1 .innerbox .about-company .videobox .vodeobtn:before {
  position: absolute;
  content: '';
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px dashed #D0D0D0;
  z-index: 1;
  animation: run 20s linear infinite;
}
.about-section1 .innerbox .about-company .videobox .vodeobtn .circle {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.12rem;
  cursor: pointer;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: linear-gradient(-45deg, #A61F22 0%, #D45659 100%);
  box-shadow: 7px 7px 20px 0px rgba(58, 16, 17, 0.2);
  z-index: 10;
}
.about-section1 .innerbox .about-company .videobox .vodeobtn .circle .icon {
  cursor: pointer;
  width: 0.29rem;
  height: 0.29rem;
  z-index: 5;
}
.about-section1 .innerbox .about-company .videobox .vodeobtn .circle .t1 {
  color: var(--color_fff);
}
.about-section1 .innerbox .about-company .videobox .vodeobtn .circle:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #A61F22;
}
.about-section1 .innerbox .about-company .image {
  height: 100%;
    border-radius: .2rem;
}
.about-section1 .innerbox .about-company .image img{
        width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .2rem;
}
@media (max-width:1366px) {
  .about-section1 .innerbox .info {
    width: 57%;
    margin-left: 43%;
  }
}
@media (max-width:768px) {
  .about-section1 .innerbox .info {
    width: 100%;
    margin-left: 0;
  }
  .about-section1 .innerbox .about-company {
    margin-top: 1.5rem;
  }
  .about-section1 .innerbox .about-company .videobox .vodeobtn .circle .t1 {
    font-size: 12px;
  }
}
@media (max-width:480px) {
  .about-section1 .innerbox .about-company {
    height: inherit;
  }
  .about-section1 .innerbox .about-company .image {
    height: 4rem;
    z-index: -1;
  }
  .about-section1 .innerbox .about-company .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.2rem;
  }
}
.about-section2 {
  padding-top: 1rem;
  background: url("../images/development-bg.png") no-repeat;
  background-size: cover;
}
.about-section2 .title {
  line-height: 1;
}
.about-section2 .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  margin-top: 0.35rem;
}
.about-section2 .itemlist .left {
  width: 27%;
  max-width: 460px;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}
.about-section2 .itemlist .left ul li {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 0;
  color: var(--color_666);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.about-section2 .itemlist .left ul li:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  bottom: 0;
  background: url(../images/dv-active.png) no-repeat;
  background-size: cover;
}
.about-section2 .itemlist .left ul li .t0,
.about-section2 .itemlist .left ul li .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-section2 .itemlist .left ul li:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-size: cover;
  border-bottom: solid 3px var(--active_color);
}
.about-section2 .itemlist .left ul li:hover:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}
.about-section2 .itemlist .left ul .active {
  background: url("../images/dv-active.png") no-repeat;
  background-size: cover;
  border-bottom: solid 3px var(--active_color);
}
.about-section2 .itemlist .left ul .active .t0,
.about-section2 .itemlist .left ul .active .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
.about-section2 .itemlist .right {
  width: 73%;
  padding: 0 0.89rem 0 0.8rem;
  height: 9.79rem;
  overflow: auto;
}
.about-section2 .itemlist .right .swiper_box {
  overflow: hidden;
}
.about-section2 .itemlist .right .swiper_box .swiper-slide ul {
  display: none;
}
.about-section2 .itemlist .right .swiper_box .swiper-slide-active ul {
  display: inline-block;
}
.about-section2 .itemlist .right .swiper_box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0;
}
.about-section2 .itemlist .right .swiper_box ul li:first-child {
  margin-top: 0.38rem;
}
.about-section2 .itemlist .right .swiper_box ul li i {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: #f7c0c2;
  border-radius: 50%;
  margin-top: 0.12rem;
}
.about-section2 .itemlist .right .swiper_box ul li i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.about-section2 .itemlist .right .swiper_box ul li i::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #e62129;
  border-radius: 50%;
  z-index: 2;
  animation: opacity 1s infinite;
}
.about-section2 .itemlist .right .swiper_box ul li .info {
  margin-left: 0.3rem;
}
.about-section2 .itemlist .right .swiper_box ul li .info .t2 {
  line-height: 1;
}
.about-section2 .itemlist .right .swiper_box ul li .info .t3 {
  margin-top: 0.2rem;
  line-height: calc(28 / 18);
}
.about-section2 .itemlist .right .swiper_box ul li .info .blockpoint {
  margin-top: 0.1rem;
}
.about-section2 .itemlist .right .swiper_box ul li .info .blockpoint p {
  color: var(--color_666);
  position: relative;
  padding-left: 0.08rem;
  line-height: calc(28/18);
  font-size: var(--font18);
}
.about-section2 .itemlist .right .swiper_box ul li .info .blockpoint p::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #A61F22;
  border-radius: 50%;
  display: none;
}
.about-section2 .itemlist .right .swiper_box ul li .info .image {
  margin-top: 0.3rem;
  width: 3.46rem;
  height: 2.14rem;
  border-radius: 20px;
}
.about-section2 .itemlist .right .swiper_box ul li .info .image img {
  border-radius: 20px;
}
@media (max-width:480px) {
  .about-section2 .itemlist {
    display: inline-block;
    width: 100%;
  }
  .about-section2 .itemlist .left {
    width: 100%;
    border-right: none;
  }
  .about-section2 .itemlist .left ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section2 .itemlist .left ul li {
    padding: 0.3rem 0;
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .about-section2 .itemlist .left ul li:nth-child(2n) {
    border-right: none;
  }
  .about-section2 .itemlist .right {
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
  }
}
@keyframes moveLeftToRight {
  0% {
    left: 0;
  }
  /*50% {*/
  /*  left: calc(15% - 50px);*/
    /* 移动到容器的最右边，减去自身宽度以确保完全可见 */
  /*}*/
  100% {
    left: 1.5rem;
  }
}
.about-section3 {
  padding-top: 1rem;
  background: #ffffff;
  height: 8.6rem;
}
.about-section3 .innerbox {
  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;
}
.about-section3 .innerbox .left {
  width: 22%;
}
.about-section3 .innerbox .left .item_box {
  margin-top: 0.5rem;
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.2rem;
}
.about-section3 .innerbox .left .item_box .item {
  position: relative;
  background: #F9F9F9;
  padding: 0 0.3rem;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.about-section3 .innerbox .left .item_box .item::before {
  position: absolute;
  content: '';
  width: calc(100% - 0.6rem);
  height: 1px;
  left: 0.3rem;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.about-section3 .innerbox .left .item_box .item:last-child:before {
  display: none;
}
.about-section3 .innerbox .left .item_box .item .top {
  padding: 0.25rem 0;
  font-weight: 500;
  color: #666666;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-section3 .innerbox .left .item_box .item .top .more {
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.about-section3 .innerbox .left .item_box .item .top .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.about-section3 .innerbox .left .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
}
.about-section3 .innerbox .left .item_box .item .bot .word {
  font-size: var(--font18);
  line-height: 1.65;
  color: #666666;
  height: calc(2em * 1.65);
  overflow: auto;
}
.about-section3 .innerbox .left .item_box .item .bot .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.about-section3 .innerbox .left .item_box .item:last-child .top {
  padding-bottom: 0.3rem;
}
.about-section3 .innerbox .left .item_box .item:first-child .top {
  padding-top: 0.5rem;
}
.about-section3 .innerbox .left .item_box .item.active .top {
  padding-bottom: 0.1rem;
  color: #000;
}
.about-section3 .innerbox .left .item_box .item.active .top .more {
  background: var(--active_color);
  border-color: var(--active_color);
}
.about-section3 .innerbox .left .item_box .item.active .top .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  transform: rotate(0deg);
}
.about-section3 .innerbox .left .item_box .item.active .top span {
  color: var(--active_color);
}
.about-section3 .innerbox .right {
  position: relative;
  width: 68.37%;
  overflow: hidden;
}
.about-section3 .innerbox .right .mapbox{
    position: relative;
}

.about-section3 .innerbox .right .mapbox .image {
  width: 100%;
}
.about-section3 .innerbox .right .mapbox .list_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}
.about-section3 .innerbox .right .mapbox .list_box .item {
  position: absolute;
}
.about-section3 .innerbox .right .mapbox .list_box .item i {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  background: #e621274f;
  border-radius: 50%;
}
.about-section3 .innerbox .right .mapbox .list_box .item i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.about-section3 .innerbox .right .mapbox .list_box .item i::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #e62129;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: opacity 1s infinite;
}
.about-section3 .innerbox .right .mapbox .list_box .item .area {
  position: absolute;
  width: max-content;
  display: inline-block;
}
.about-section3 .innerbox .right .mapbox .list_box .item .area1 {
  top: 0.3rem;
}
.about-section3 .innerbox .right .mapbox .list_box .item .area2 {
  top: 0.3rem;
  transform: translateX(-36%);
}
.about-section3 .innerbox .right .mapbox .list_box .item .area3 {
     transform: translateX(-92%);
    top: 0.25rem;
}
.about-section3 .innerbox .right .mapbox .list_box .item .area4 {
  transform: translateX(64%);
  top: 0.02rem;
}
.about-section3 .innerbox .right .mapbox .list_box .headoffice {
  position: relative;
}
.about-section3 .innerbox .right .mapbox .list_box .headoffice:before {
  position: absolute;
  content: '';
  width: 1.5rem;
  height: 1px;
  background: #D6D6D6;
  left: 0.24rem;
  top: 0.12rem;
}
.about-section3 .innerbox .right .mapbox .list_box .headoffice:after {
  position: absolute;
  content: '';
  width: 0.74rem;
  height: 2px;
  top: 0.11rem;
  left: 0.24rem;
  background: url("../images/point-line.png");
  animation-name: moveLeftToRight;
  animation-duration: 2s;
  /* 动画持续时间 */
  animation-iteration-count: infinite;
  /* 循环播放 */
  animation-timing-function: linear;
  /* 匀速运动 */
}
.about-section3 .innerbox .right .mapbox .list_box .headoffice .img {
  width: 1.74rem;
  height: 1.3rem;
  position: absolute;
  left: 1.5rem;
  top: -0.4rem;
}
@media (max-width:480px) {
  .about-section3 {
    height: inherit;
  }
  .about-section3 .innerbox {
    display: inline-block;
    width: 100%;
  }
  .about-section3 .innerbox .left {
    width: 100%;
  }
  .about-section3 .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
    scale: 0.8;
  }
}
.about-section4 {
  position: relative;
  padding-top: 1rem;
  background: #F9F9F9;
  height: 5.92rem;
}
.about-section4 .innerbox .swiper_box {
  position: relative;
  margin-top: 1.2rem;
}
.about-section4 .innerbox .swiper_box .bgimg {
  position: absolute;
  bottom: -1rem;
}
.about-section4 .innerbox .swiper_box .safewidth {
  width: 80%;
  margin: auto;
}
.about-section4 .innerbox .swiper_box .safewidth .itemlist {
  overflow: hidden;
}
.about-section4 .innerbox .swiper_box .safewidth .itemlist .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section4 .innerbox .swiper_box .safewidth .itemlist .public-prev-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.about-section4 .innerbox .swiper_box .safewidth .itemlist .swiper-pagination {
  display: none;
  position: relative;
  margin-top: 0.5rem;
}
@media (max-width:480px) {
  .about-section4 {
    padding-top: 0.5rem;
  }
  .about-section4 .innerbox .swiper_box .safewidth .itemlist .public-prev-next {
    display: none;
  }
  .about-section4 .innerbox .swiper_box .safewidth .itemlist .swiper-pagination {
    display: inline-block;
  }
  .about-section4 .innerbox .swiper_box .safewidth .itemlist .img {
    text-align: center;
  }
}
.about-section5 {
  position: relative;
  padding: 1rem 0;
  background: var(--color_fff);
}
.about-section5 .innerbox .title {
  line-height: 1;
}
.about-section5 .innerbox .desc {
  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;
  margin-top: 0.25rem;
}
.about-section5 .innerbox .desc .info {
  width: 49%;
  max-width: 840px;
  line-height: calc(28/18);
}
.about-section5 .innerbox .desc .itemlist .item {
  padding: 0 0.65rem;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
  color: var(--active_color);
}
.about-section5 .innerbox .desc .itemlist .item:first-child {
  padding-left: 0;
}
.about-section5 .innerbox .desc .itemlist .item:last-child {
  border-right: 0;
  padding-right: 0;
}
.about-section5 .innerbox .desc .itemlist .item .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about-section5 .innerbox .swiper_box {
  position: relative;
  margin-top: 1rem;
}
.about-section5 .innerbox .swiper_box .bgimg {
  position: absolute;
  bottom: -1rem;
}
.about-section5 .innerbox .swiper_box .safewidth {
  width: 80%;
  margin: auto;
}
.about-section5 .innerbox .swiper_box .safewidth .itemlist {
  overflow: hidden;
}
.about-section5 .innerbox .swiper_box .safewidth .itemlist .img {
  min-height: 1.7rem;
  height: 1.7rem;
}
.about-section5 .innerbox .swiper_box .safewidth .itemlist .public-prev-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.about-section5 .innerbox .swiper_box .safewidth .itemlist .swiper-pagination {
  display: none;
  position: relative;
  margin-top: 0.5rem;
}
@media (max-width:480px) {
  .about-section5 {
    padding-top: 0.5rem;
  }
  .about-section5 .innerbox .desc {
    display: inline-block;
    width: 100%;
  }
  .about-section5 .innerbox .desc .info {
    width: 100%;
  }
  .about-section5 .innerbox .desc .itemlist {
    margin-top: 0.2rem;
  }
  .about-section5 .innerbox .desc .itemlist .swiper-pagination {
    display: none;
    position: relative;
    margin-top: 0.5rem;
  }
  .about-section5 .innerbox .swiper_box .safewidth .itemlist .img {
    text-align: center;
  }
  .about-section5 .innerbox .swiper_box .safewidth .itemlist .public-prev-next {
    display: none;
  }
  .about-section5 .innerbox .swiper_box .safewidth .itemlist .swiper-pagination {
    display: inline-block;
  }
}
.contact-section1 {
  padding-top: 1rem;
}
.contact-section1 .title {
  white-space: pre-line;
  line-height: calc(50/40);
}
.contact-section1 .itemlist {
  position: relative;
  margin-top: 0.6rem;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  height: 4.06rem;
}
.contact-section1 .itemlist .item {
  position: relative;
  padding-top: 0.6rem;
  padding-left: 1.3rem;
  padding-bottom: 0.8rem;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}
.contact-section1 .itemlist .item .t0 {
  position: relative;
}
.contact-section1 .itemlist .item .t0:before {
  position: absolute;
  content: '';
  left: -0.23rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  border: 2px solid #A61F22;
}
.contact-section1 .itemlist .item .t1 {
  margin-top: 0.2rem;
}
.contact-section1 .itemlist .item .t2 {
  margin-top: 0.1rem;
}
.contact-section1 .itemlist .item .t3 {
  margin-top: 0.3rem;
}
.contact-section1 .itemlist .item .idx_more {
  position: absolute;
  bottom: 0.8rem;
}
@media (max-width:990px) {
  .contact-section1 .itemlist .item {
    padding-left: 1rem;
  }
}
@media (max-width:768px) {
  .contact-section1 .itemlist {
    grid-template-columns: repeat(2, 1fr);
    height: inherit;
  }
  .contact-section1 .itemlist .item {
    padding-left: 0.6rem;
  }
  .contact-section1 .itemlist .item:last-child {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .contact-section1 .itemlist .item .idx_more {
    position: relative;
    bottom: inherit;
    margin-top: 0.3rem;
  }
}
@media (max-width:480px) {
  .contact-section1 .title {
    white-space: inherit;
  }
  .contact-section1 .itemlist {
    grid-template-columns: repeat(1, 1fr);
    border-top: none;
  }
  .contact-section1 .itemlist .item {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0.6rem;
  }
}
#map {
  height: 4.5rem;
}
#hi-video-pop2 {
  display: none;
  height: 0;
  width: 0;
}



.navbar-communication {
  color: var(--white-color);
}
.navbar-communication .kefu-box {
  position: fixed;
  bottom: 20%;
  right: 22px;
  z-index: 10;
}
.navbar-communication .kefu-box .itemlist {
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.navbar-communication .kefu-box .item {
  background-color: var(--white-color);
  position: relative;
  cursor: pointer;
}
.navbar-communication .kefu-box .item:before {
  position: absolute;
  content: '';
  width: 80%;
  left: 10%;
  height: 1px ;
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar-communication .kefu-box .item:first-child:before {
  display: none;
}
.navbar-communication .kefu-box .item .item-box {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -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: var(--color_fff);
  color: #ffffff;
  z-index: 2;
  overflow: hidden;
  width: 0.66rem;
  height: 0.68rem;
  min-width: 66px;
  min-height: 60px;
  border-radius: 5px;
}
.navbar-communication .kefu-box .item .item-box .title {
  font-size: 12px;
  margin-top: 0.09rem;
}
.navbar-communication .kefu-box .item .item-box img {
  display: -webkit-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;
 filter: brightness(0) invert(0.5);
 transition: all 0.3s ease;
}
.navbar-communication .kefu-box .item:hover .item-box img{
    filter: inherit;
    transition: all 0.3s ease;
}
.navbar-communication .kefu-box .item .item-box:hover .hoverbox {
  right: 1rem;
}
.navbar-communication .kefu-box .item .item-box .hoverbox {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  height: 100%;
  z-index: -1;
}
.navbar-communication .kefu-box .item .item-box .hoverbox a {
  margin: 0 0.3rem;
}
.navbar-communication .kefu-box .item .info {
  margin-right: 60px;
  width: auto;
  height: 100%;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar-communication .kefu-box .item .info a {
  min-width: 100px;
  height: 100%;
  display: inline-block;
  align-content: center;
}
.navbar-communication .kefu-box .item .info a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.2rem;
  height: 46px;
  background: var(--active_color);
  border-radius: 5px;
  color: var(--white-color);
}
.navbar-communication .kefu-box .item .info img {
  width: 1rem;
  height: 1rem;
  border: solid 2px var(--active_color);
  border-radius: 5px;
}
.navbar-communication .kefu-box .item .public-scrollTop {
  position: sticky;
}
.navbar-communication .kefu-box .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.navbar-communication .kefu-box .item:hover .item-box .img {
  opacity: 0;
}
.navbar-communication .kefu-box .item:hover .info,
.navbar-communication .kefu-box .item:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.navbar-communication .scrollTop {
  display: -webkit-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;
  width: 100%;
  height: 0.66rem;
  min-height: 60px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 0.2rem;
  cursor: pointer;
}
.navbar-communication .scrollTop img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.5);
}
.navbar-communication .scrollTop:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: inherit;
}
@media (max-width:1200px) {
  .navbar-communication {
    display: none;
  }
}


/*建华供应链板块*/
.f16w * {
  font-size: var(--font18);
  line-height: 1.5;
}

.f24 {
  font-size: var(--font26);
  font-weight: 700;
  line-height: 1.5;
}
.f36_down {
  font-size: var(--font36);
  line-height: 1;
  padding-bottom: .3rem;
  position: relative;
  z-index: 1;
}
.f36_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #b02a30;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_businessnyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: .9rem;
  background: #FFF;
  overflow: hidden;
}
.ins_businessnyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_businessnyCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  border-top: 1px solid #e5e5e5;
  margin-top: .3rem;
  overflow: hidden;
}
.ins_businessnyCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: .4rem;
  padding: .3rem 0;
  position: relative;
  z-index: 1;
}
.ins_businessnyCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_businessnyCon1 .center_box .item_box .item .icon {
  width: 160px;
  flex-shrink: 0;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_businessnyCon1 .center_box .item_box .item .icon .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_businessnyCon1 .center_box .item_box .item .icon .pb .ab img {
  width: .48rem;
  height: .48rem;
}
.ins_businessnyCon1 .center_box .item_box .item .line {
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  flex-shrink: 0;
}
.ins_businessnyCon1 .center_box .item_box .item .word .f16w {
  margin-top: 20px;
}
.ins_businessnyCon1 .center_box .item_box .item .word .f16w * {
  color: #666666;
}
.ins_businessnyCon1 .center_box .item_box .item:last-child::after {
  width: calc(100% + 25px);
}
@media (max-width:990px) {
  .ins_businessnyCon1 .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_businessnyCon1 .center_box .item_box .item {
    overflow: hidden;
    gap: 20px;
  }
  .ins_businessnyCon1 .center_box .item_box .item .icon {
    width: 70px;
    flex-shrink: 0;
  }
  .ins_businessnyCon1 .center_box .item_box .item .line {
    display: none;
  }
}

