@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: "HarmonyOS_Sans_SC","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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow3 {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes grow33 {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* 旋转 */
/* 地图放大 */
@keyframes grow2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes grow3 {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes line1 {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* 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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
:root {
  /* COLOR */
  --active_color: #c4131a;
  --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);
  --font90: clamp(32px, 0.9rem, 90px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font130: 1.3rem;
  --font160: 1.6rem;
  --font220: 2.2rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font16);
}
/* 间距 */
.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);
}
.white {
  color: var(--color_fff);
}
.activec {
  color: #C4131A;
}
.black0 {
  color: var(--color_000);
}
.black2 {
  color: var(--color_222);
}
.black3 {
  color: var(--color_333);
}
.black6 {
  color: var(--color_444);
}
.black6 {
  color: var(--color_666);
}
.black9 {
  color: var(--color_999);
}
/* 文字字重 */
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.pb120 {
  padding-bottom: 1.2rem;
}
/* 网格布局 */
.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);
}
.center{
    text-align: center;
}
/* 设置整个滚动条的宽度 */
::-webkit-scrollbar {
  width: 4px;
  /* 可以根据需要调整 */
  height: 4px;
}
/* 滚动条的滑块部分 */
::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 5px;
}
/* -------------------------------------------------------------------  layui */
.layui-laypage-next em,
.layui-laypage-prev em {
  display: -webkit-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-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Thin.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Black.ttf");
  font-weight: 700;
}
/* --------------------------------------------------------------- 全站内容区 */
.container {
  width: 100%;
  max-width: 98%;
  margin: 0 auto;
}
.w1640 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1640 {
    max-width: 85.416%;
  }
}
@media (max-width:990px) {
  .w1640 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1620 {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
}
@media (max-width: 1900px) {
  .w1620 {
    max-width: 85.26315789%;
  }
}
@media (max-width:990px) {
  .w1620 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1480 {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width:1760px) {
  .w1480 {
    max-width: 91.66666667%;
  }
}
@media (max-width:990px) {
  .w1480 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1280 {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
}
@media (max-width:1560px) {
  .w1280 {
    max-width: 82%;
  }
}
@media (max-width:990px) {
  .w1280 {
    max-width: 100%;
    padding: 0 20px;
  }
}
/*
插件：投递简历弹窗
版本：
官网：
*/
#hi-resume-pop {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34.53%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 663px;
  min-width: 380px;
  border-radius: 16px;
}
#hi-resume-pop form .hi-title-box {
  position: relative;
  padding: 0 0.4rem;
}
#hi-resume-pop form .hi-title-box .hi-title {
  color: var(--color_222);
  padding-top: 0.5rem;
  text-align: center;
  font-size: var(--font36);
}
#hi-resume-pop form .hi-title-box .hi-close {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  width: 0.38rem;
  height: 0.38rem;
  background: rgba(153, 153, 153, 0.2);
  border-radius: 50%;
  opacity: 1;
  top: 0.18rem;
  right: 0.18rem;
}
#hi-resume-pop form .hi-title-box .hi-close:before,
#hi-resume-pop form .hi-title-box .hi-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -0.13rem;
  width: 0.25rem;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#hi-resume-pop form .hi-title-box .hi-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-resume-pop form .hi-title-box .hi-close:hover::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--active_color);
}
#hi-resume-pop form .hi-title-box .hi-close:hover::after {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--active_color);
}
#hi-resume-pop form .hi-box {
  padding: 0.4rem;
  line-height: 0.6rem;
}
#hi-resume-pop form .hi-box .row {
  position: relative;
  z-index: 1;
}
#hi-resume-pop form .hi-box .row .verifyicon {
  position: absolute;
  right: 0.27rem;
  top: -0.07rem;
  width: 1.12rem;
}
#hi-resume-pop form .hi-box .private-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.2rem;
}
#hi-resume-pop form .hi-box .private-btn .icon {
  position: relative;
  z-index: 1;
  width: 0.18rem;
  height: 0.18rem;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  border: solid 1px #333;
}
#hi-resume-pop form .hi-box .private-btn .icon img {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hi-resume-pop form .hi-box .private-btn .privatebox{
    display: flex;
}
#hi-resume-pop form .hi-box .private-btn .active {
  border: none;
}
#hi-resume-pop form .hi-box .private-btn .active img {
  display: block;
}
#hi-resume-pop form .hi-box input {
  width: 100%;
  border-radius: 25px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-bottom: 0.2rem;
  height: 0.5rem;
  padding: 0 0.15rem;
}
#hi-resume-pop form .hi-box button {
  background: var(--active_color);
  border-radius: 25px;
  margin-top: 0.2rem;
  height: 0.5rem;
  width: 100%;
  height: 0.6rem;
  color: #fff;
  cursor: pointer;
  border: 0;
}
#hi-resume-pop form .hi-box .hi-file-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box {
  position: relative;
  display: inline-block;
  margin-right: 0.15rem;
  padding: 0.05rem 0.15rem;
  line-height: 0.3rem;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box .hi-text {
  color: #fff;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-text2 {
  line-height: 0.4rem;
}
#hi-resume-pop form .hi-box .hi-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
#hi-resume-pop form .hi-box .hi-code-box input {
  margin-bottom: 0;
  width: calc(100% - 1.4rem) !important;
}
#hi-resume-pop form .hi-box .hi-code-box img {
  max-width: 1.3rem;
  max-height: 0.6rem;
  cursor: pointer;
}
@media (max-width:480px) {
    #hi-resume-pop form{
        min-width: 95%;
    }
}



.navbar-communication {
  color: var(--white-color);
}
.navbar-communication .kefu-box {
  position: fixed;
  bottom: 10%;
  right: 22px;
  z-index: 10;
}
.navbar-communication .kefu-box .item {
  position: relative;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  cursor: pointer;
}
.navbar-communication .kefu-box .item .item-box {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
  color: var(--color_fff);
  flex-direction: column;
  gap: 0.06rem;
  overflow: hidden;
  width: 0.6rem;
  height: 0.7rem;
  background: var(--active_color);
  font-size: var(--font14);
}
.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;
  width: 0.22rem;
  min-width: 18px;
}
.navbar-communication .kefu-box .item .item-box .st {
  width: 11px;
  height: 7px;
  min-width: auto;
}
.navbar-communication .kefu-box .item .tel {
  display: -webkit-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);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  height: 100%;
  padding: 0 0.3rem;
  background: var(--active_color);
  transition: all 0.5s ease-in-out;
  right: 0rem;
  opacity: 0;
  visibility: hidden;
  white-space:nowrap;
}
.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(--black-666);
}
.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 .qrcode {
  width: auto;
  height: 100%;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: -0.15rem;
  z-index: 1;
  transition: all 0.45s ease-in-out;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border: dashed 1px #eeeeee;
}
.navbar-communication .kefu-box .item .qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar-communication .kefu-box .item .public-scrollTop {
  position: sticky;
}
.navbar-communication .kefu-box .item:hover .tel {
  transition: all 0.5s ease-in-out;
  right: 0.7rem;
  opacity: 1;
  visibility: visible;
}
.navbar-communication .kefu-box .item:hover .qrcode {
  right: .8rem;
  opacity: 1;
  visibility: inherit;
}
@media (max-width:1200px) {
  .navbar-communication {
    display: none;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.8rem;
  font-family: "HarmonyOS_Sans_SC";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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: -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: 10px;
  display: none;
  gap: 5px;
  margin-top: 30px;
}
@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: .1rem;
    margin-top: 20px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}



.my-button-disabled{
  opacity:0.2;
}
/* --------------------------------------------------------------- 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: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
.wh100 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wh100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_more {
  width: auto;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  height: 0.48rem;
  min-height: 38px;
  padding: 0.1rem 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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 100px;
  gap: 0.1rem;
  font-size: var(--font16);
}
.idx_more .more i {
  font-size: 12px;
}
.idx_more .more.bgFff {
  border-color: #FFFF;
  color: #FFFFFF;
}
.idx_title {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_title .t1 {
  font-size: var(--font48);
  font-weight: 600;
}
@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);
  }
}
.idSwiper {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
}
.idSwiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.idSwiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  z-index: 2;
  animation: lines 0.8s linear;
}
.idSwiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  opacity: 1 !important;
}
.idSwiper .idSwiCon {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#idxSwiper {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide {
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: hidden;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide .idxOffset {
  --set-top: 100px;
  --set-left: -60px;
  --set-right: 60px;
  --opacity: 0;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide.active .idxOffset {
  --set-top: 0;
  --set-left: 0;
  --set-right: 0;
  --opacity: 1;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide.active .wowUpOn {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide.active .wowUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide.active .wowLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#idxSwiper > div.swiper-wrapper > div.swiper-slide.index-auto {
  overflow: visible;
}
@media (max-width:990px) {
  #idxSwiper {
    height: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
  }
  #idxSwiper > div.swiper-wrapper {
    height: auto;
    display: block;
  }
  #idxSwiper > div.swiper-wrapper > div.swiper-slide {
    max-height: none;
  }
  #idxSwiper > div.swiper-wrapper > div.swiper-slide .idxOffset {
    --set-top: 0;
    --set-left: 0;
    --set-right: 0;
    --opacity: 1;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.wowInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.s-animate,
.s-animate-up {
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}
#fullpage {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
#fullpage .section {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  overflow: hidden;
}
#fullpage .section.on.active {
  opacity: 1;
  z-index: 2;
}
#fullpage .section.on.active .wowUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#fullpage .section.on.active .wowLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width:990px) {
  #fullpage .section {
    position: relative;
    z-index: 1;
    height: auto;
    top: unset;
    left: unset;
    opacity: 1;
  }
}
#fp-nav.fp-right {
  width: 8px;
  right: 11px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#fp-nav.fp-right ul li {
  width: 100%;
  height: auto;
  margin: 20px 0;
  /*.flex; .a_end; .j_center;*/
}
#fp-nav.fp-right ul li a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--active_color);
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#fp-nav.fp-right ul li a.active {
  background: var(--active_color);
}
#fp-nav.fp-right ul li a span {
  display: none;
}
#fp-nav.fp-right ul li .fp-tooltip {
  width: auto;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--active_color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
#fp-nav.fp-right ul li a.active ~ .fp-tooltip {
  right: 30px;
  visibility: initial;
  opacity: 1;
}
#fp-nav.fp-right.active {
  filter: brightness(0) invert(1);
}
.index-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;
  position: relative;
  display: inline-block;
  padding: 0.1rem 0.2rem;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--active_color);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border-radius: 24px;
  border: 1px solid var(--active_color);
  box-shadow: inset 0 0 0 0 var(--active_color);
  margin-top: 0.6rem;
}
.index-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
  gap: 0.1rem;
  color: var(--active_color);
}
.index-more:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 var(--active_color);
}
.index-more:hover a {
  color: white;
}
.index-more:hover img {
  filter: brightness(0) invert(1);
}
.index-more:active {
  transform: scale(0.9);
}
.index-white {
  border: 1px solid var(--color_fff);
  color: var(--color_fff);
}
.index-white a {
  color: var(--color_fff);
}
.index-white img {
  filter: brightness(0) invert(1);
}
.index-white:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 var(--color_fff);
}
.index-white:hover a {
  color: var(--color_333);
}
.index-black {
  background-color: var(--color_222);
  color: var(--color_fff);
  border: solid 1px var(--color_222);
}
.index-black a {
  color: var(--color_fff);
}
.index-black img {
  filter: brightness(0) invert(1);
}
.index-black:hover {
  color: #C4131A;
  box-shadow: inset 0 -100px 0 0 var(--active_color);
  border: solid 1px var(--active_color);
  color: var(--color_fff);
}
.index-black:hover img {
  filter: brightness(0) invert(1);
}
.index-black:hover a {
  color: var(--color_fff);
}
.index-black:hover a img {
  filter: brightness(0) invert(1);
}
.index-black-bor {
  border: 1px solid var(--color_222);
}
.index-black-bor a {
  color: var(--color_222);
}
.index-black-bor:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 var(--color_222);
}
.index-black-bor:hover a {
  color: var(--color_fff);
}
.index-black-bor:hover a img {
  filter: brightness(0) invert(1);
}
.index-red {
  background-color: var(--active_color);
  color: var(--color_fff);
}
.index-red a {
  color: var(--color_fff);
}
.index-red img {
  filter: brightness(0) invert(1);
}
.index-red:hover {
  color: #C4131A;
  box-shadow: inset 0 -100px 0 0 var(--color_fff);
}
.index-red:hover img {
  filter: inherit;
}
.index-red:hover a {
  color: #C4131A;
}
.index-red:hover a img {
  filter: brightness(0) invert(1);
}
.index-red-bor {
  border: solid 1px var(--active_color);
  color: var(--active_color);
}
.index-red-bor a {
  color: var(--active_color);
}
.index-red-bor:hover {
  color: #C4131A;
  box-shadow: inset 0 -100px 0 0 var(--active_color);
}
.index-red-bor:hover a {
  color: var(--color_fff);
}
.index-red-bor:hover img {
  filter: brightness(0) invert(1);
}
.page-navigation {
  display: -webkit-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;
  width: calc(100% - 1.28rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 0.64rem;
}
.page-navigation 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;
  width: 0.55rem;
  height: 0.55rem;
  background: #FFFFFF;
  box-shadow: 0px 5px 57px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  cursor: pointer;
}
.page-navigation span:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--active_color);
}
.page-navigation span:hover img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.page-navigation .prev {
  left: 0.64rem;
}
.page-navigation .next {
  right: 0.64rem;
}
@media (max-width: 767px) {
  .page-navigation {
    display: none;
  }
}
.idx_banner {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner video{
    width: 100%; height: auto;
}
.idx_banner .m_video{
    display: none;
}
.idx_banner .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.idx_banner .item_box .item {
  width: 2rem;
  height: 30px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_banner .item_box .item .tagname {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  width: max-content;
  right: 0.6rem;
  height: 0.36rem;
  min-height: 28px;
  background: var(--active_color);
  color: #fff;
  padding: 0 0.16rem;
  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;
  font-size: var(--font14);
  display: none;
}
.idx_banner .item_box .item i {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--active_color);
  cursor: pointer;
  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;
  position: absolute;
  z-index: 2;
}
.idx_banner .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 100px;
  background: #FFFFFF;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_banner .item_box .item i::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0.2;
  animation: grow33 linear infinite var(--time);
}
.idx_banner .item_box .hover_active .wowLeft {
  display: flex;
}
.idx_banner .img_w100 img {
  min-height: 68vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_banner {
    width: 100%;
    height: auto;
  }
}
@media (max-width:480px) {
    .idx_banner .p_video{
        display: none;
    }
    .idx_banner .m_video{
        display: block;
    }
    .idx_banner .item_box .item{
        display: none;
    }
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_product .selectBox {
  position: absolute;
  top: calc(var(--header-height) + 0.3rem);
  z-index: 5;
  color: #FFFFFF;
  left: 0.8rem;
  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.12rem;
}
.idx_product .selectBox .item {
  font-size: var(--font18);
  color: #666666;
  font-weight: 600;
  padding-left: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.idx_product .selectBox .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.07rem;
  height: 0.07rem;
  background: #999999;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_product .selectBox .item.active {
  color: var(--active_color);
}
.idx_product .selectBox .item.active::after {
  background: var(--active_color);
}
.idx_product .swiper_box {
  width: 100%;
  height: auto;
}
.idx_product .swiper_box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  width: 100%;
  height: auto;
}
.idx_product .swiper_box ul li.swiper-slide-active {
  z-index: 2 !important;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1 !important;
}
.idx_product .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: translateY(0);
}
.idx_product .swiper_box ul li.swiper-slide-next {
  opacity: 1 !important;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 3;
}
.idx_product .swiper_box ul li.swiper-slide-next .centerInfo {
  transform: translateY(100%);
  opacity: 1 !important;
}
.idx_product .centerInfo {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_product .centerInfo .wordBox {
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.idx_product .centerInfo .wordBox .t1 {
  font-weight: 600;
  line-height: 1;
}
.idx_product .centerInfo .wordBox .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.idx_product .centerInfo .wordBox .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: var(--font18);
  gap: 0.25rem;
}
.idx_product .centerInfo .wordBox .item_box .item {
  padding-left: 0.25rem;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  line-height: 1;
  cursor: pointer;
  font-weight: 500;
}
.idx_product .centerInfo .wordBox .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #ffffff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.5;
}
.idx_product .centerInfo .wordBox .item_box .item:first-child {
  padding-left: 0;
}
.idx_product .centerInfo .wordBox .item_box .item:first-child::before {
  display: none;
}
.idx_product .centerInfo .wordBox .item_box .item.active {
  color: var(--active_color);
  font-weight: 800;
}
.idx_product .img_w100 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_product .img_w100 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.idx_product .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_product .swiper_info .swiperBtn {
  background: #ffffff33;
  width: 0.52rem;
  height: 0.52rem;
  position: absolute;
  transform: translateX(100%);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  z-index: 5;
}
.idx_product .swiper_info .swiperBtn.prev {
  left: 0;
  transform: translateX(-100%);
}
.idx_product .swiper_info .swiperBtn i {
  color: #FFF;
  font-size: var(--font24);
}
.idx_product .swiper_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_product .swiper_img .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
.idx_product .swiper_img .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: auto;
}
.idx_product .swiper_img .swiper-wrapper .swiper-slide .img .pb {
  padding-bottom: 29%;
}
@media (max-width:990px) {
  .idx_product {
    width: 100%;
    height: auto;
  }
  .idx_product .selectBox {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    left: 0;
    gap: 0.4rem;
  }
  .idx_product .selectBox .item {
    padding: 0;
    font-size: var(--font20);
    color: #FFF;
    padding: 8px 20px;
  }
  .idx_product .selectBox .item::after {
    display: none;
  }
  .idx_product .selectBox .item.active {
    background: #FFFFFF;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx_product .swiper_box {
    width: 100%;
    height: auto;
  }
  .idx_product .centerInfo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 1rem 0;
    padding-top: 3rem;
  }
  .idx_product .centerInfo .wordBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
  }
  .idx_product .centerInfo .wordBox .t1 {
    line-height: 1.5;
    padding: 0 8%;
  }
  .idx_product .centerInfo .wordBox .t2 {
    line-height: 1.5;
    padding: 0 8%;
  }
  .idx_product .centerInfo .wordBox .item_box {
    overflow: auto;
    padding-bottom: 0.3rem;
  }
  .idx_product .centerInfo .wordBox .item_box .item {
    white-space: nowrap;
  }
  .idx_product .centerInfo .img_w100 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .idx_product .centerInfo .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .idx_product .swiper_info .swiperBtn {
    transform: translateX(0);
    display: none;
  }
  .idx_product .swiper_info .swiperBtn.prev {
    transform: translateX(0);
  }
  .idx_product .swiper_box ul li.swiper-slide-next .centerInfo {
    transform: translateY(0);
  }
  .idx_product .swiper_img .swiper-wrapper .swiper-slide .img .pb {
    padding-bottom: 42%;
  }
}
@keyframes grow4 {
  0% {
    transform: scale(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}
@keyframes grow5 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}
.idx_service {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: left center;
}
.idx_service .box_info {
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: var(--header-height);
}
.idx_service .box_info .left_box {
  width: 33%;
}
.idx_service .box_info .left_box .t1 {
  font-weight: 600;
}
.idx_service .box_info .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  font-weight: 600;
  display: -webkit-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.7rem;
  font-size: var(--font16);
}
.idx_service .box_info .left_box .list .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem;
}
.idx_service .box_info .left_box .list .one .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.05rem;
  line-height: 1.5;
  color: var(--active_color);
}
.idx_service .box_info .left_box .list .one .word span {
  font-size: var(--font60);
  line-height: 1;
}
.idx_service .box_info .left_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
   font-size: var(--font18);
}
.idx_service .box_info .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
}
.idx_service .box_info .right_box {
  width: 50%;
}
.idx_service .box_info .right_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_service .box_info .right_box .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_service .box_info .right_box .img_box .item_box .item {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 10;
  display: -webkit-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_service .box_info .right_box .img_box .item_box .item::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: var(--wh);
  height: var(--wh);
  background: #FFF;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow5 linear infinite var(--time);
}
.idx_service .box_info .right_box .img_box .item_box .item::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: var(--wh);
  height: var(--wh);
  background: #FFF;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow4 linear infinite calc(var(--time) + 1s);
}
.idx_service .box_info .right_box .img_box .item_box .item i {
  width: calc(var(--wh) + 0.1rem);
  height: calc(var(--wh) + 0.1rem);
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_service .box_info .right_box .img_box .item_box .item i::after {
  content: '';
  position: absolute;
  width: var(--wh);
  height: var(--wh);
  background: var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width:990px) {
  .idx_service {
    height: auto;
  }
  .idx_service .box_info {
    height: auto;
  }
}
.idx_about {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/bg3.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.idx_about .img_w100 {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  left: 0;
  display: none;
}
.idx_about .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about .box_info {
  width: 100%;
  height: auto;
  padding-top: calc(var(--header-height) + 0.5rem);
}
.idx_about .box_info .left_box {
  width: 33%;
  height: auto;
  color: #FFF;
}
.idx_about .box_info .left_box .t1 {
  font-weight: 600;
  line-height: 1.25;
}
.idx_about .box_info .left_box .t2 {
  margin-top: 0.3rem;
   font-size: var(--font18);
}
.idx_about .box_info .left_box .idx_more {
  margin-top: 0.5rem;
}
.idx_about .box_info .right_box {
  width: auto;
}
.idx_about .box_info .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}
.idx_about .box_info .right_box .item_box .item {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem;
}
.idx_about .box_info .right_box .item_box .item .icon {
  width: 100%;
  height: auto;
  font-size: var(--font60);
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.05rem;
}
.idx_about .box_info .right_box .item_box .item .icon .minF {
  line-height: 1.4;
}
@media (max-width:990px) {
  .idx_about {
    height: auto;
    padding-bottom: 1.2rem;
  }
}
@media (max-width:480px) {
    
  .idx_about {
    padding-bottom: 6rem;
    background-image: url(../images/aboutbg_mobile.jpg);
    background-position: bottom right;
  }
  .idx_about .box_info{
      padding-top: 1rem;
  }
}

.idx_new {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: calc(var(--header-height)) 0;
  background: #FFFFFF;
}
.idx_new .contentBox {
  width: 100%;
  height: auto;
}
.idx_new .contentBox .topBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_new .contentBox .topBox .icon {
  width: fit-content;
  height: auto;
}
.idx_new .contentBox .topBox .icon .more {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  line-height: 1;
  color: #cccccc;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_new .contentBox .topBox .icon .more img {
  filter: brightness(0) invert(0);
  opacity: 0.2;
  transform: translateY(15%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_new .contentBox .topBox .icon .more:hover {
  color: var(--active_color);
}
.idx_new .contentBox .topBox .icon .more:hover img {
  filter: unset;
  opacity: 1;
}
.idx_new .contentBox .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.17rem;
  margin-top: 0.5rem;
}
.idx_new .contentBox .item_box .item {
  width: 100%;
  height: 6.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
   -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_new .contentBox .item_box .item img{
     -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_new .contentBox .item_box .item:hover img{
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.idx_new .contentBox .item_box .item .one {
  height: var(--wid);
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.idx_new .contentBox .item_box .item .word {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.33rem;
  color: var(--color);
}
.idx_new .contentBox .item_box .item .word .t1 {
    display: none;
}
.idx_new .contentBox .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  margin-top: 0.2rem;color: #FFFFFF;
}
.idx_new .contentBox .item_box .item .word .t2.font15 { display: none; }
.idx_new .contentBox .item_box .item.grid2 {
  grid-column: span 2;
}
.idx_new .contentBox .item_box .item.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.17rem;
}
@media (max-width:990px) {
  .idx_new {
    width: 100%;
    height: auto;
  }
  .idx_new .contentBox .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_new .contentBox .item_box.grid2 {
    grid-column: unset;
  }
}
/* --------------------------------------------------------------- 关于我们 */
.maintitle .t1 {
  margin-top: 0.3rem;
  font-weight: normal;
  font-size: var(--font18);
}
.swiper-operate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.17rem;
}
.swiper-operate .btn {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  background-color: var(--color_fff);
  border-radius: 50%;
  cursor: pointer;
}
.swiper-operate .btn:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--active_color);
}
.swiper-operate .btn:hover .icon {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.about-banner-section {
  position: relative;
  height: 8.8rem;
  overflow: hidden;
}
.about-banner-section .videobanner {
  width: 100%;
  height: 100%;
}
.about-banner-section .videobanner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-banner-section .videobtn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0.47rem;
  height: 0.47rem;
  margin-left: -0.24rem;
  margin-top: 0.24rem;
  cursor: pointer;
  display: none;
}
.about-banner-section .tabbottom {
  position: absolute;
  width: 100%;
  bottom: 0.07rem;
}
.about-banner-section .tabbottom .itemlist {
  display: -webkit-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: 1.45rem;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.about-banner-section .tabbottom .itemlist .item {
  position: relative;
  color: var(--color_fff);
  padding: 0.2rem 0;
  font-size: var(--font16);
}
.about-banner-section .tabbottom .itemlist .item::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  content: '';
  width: 100%;
  top: 0;
  height: 0.03rem;
}
.about-banner-section .tabbottom .itemlist .item:hover::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--color_fff);
}
.about-banner-section .tabbottom .itemlist .active::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--color_fff);
}
@media (max-width:480px) {
  .about-banner-section .tabbottom .itemlist {
    gap: 0.5rem;
  }
}
.about-num-section {
  padding-top: 1.6rem;
  height: 12.9rem;
  min-height: 980px;
  background: url("../images/num-banner.jpg") no-repeat;
  background-position: bottom;
  
}
.about-num-section .m_img{
    display: none;
}
.about-num-section .innerbox .rowline {
  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-num-section .innerbox .rowline .main-title {
  position: relative;
}
.about-num-section .innerbox .rowline .main-title:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0.89rem;
  width: 33px;
  height: 7px;
  background: #C4131A;
}
.about-num-section .innerbox .rowline .info {
 
}
.about-num-section .innerbox .rowline .itemlist {
  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;
  width: 100%;
  margin-bottom: 0.67rem;
  gap: .5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.about-num-section .innerbox .rowline .itemlist .item {

}
.about-num-section .innerbox .desc {
  margin-top: 0.23rem;
  font-size: var(--font18);
}

.about-num-section .innerbox .desc p {
  margin-top: 0.1rem;
}
.about-development-section {
  background: url("../images/development-bg.jpg") no-repeat;
  background-size: cover;
}
.about-development-section .innerbox {
  margin-top: 1.3rem;
  margin-bottom: 1.5rem;
}
.about-development-section .innerbox .swiperbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.92rem;
  height: 5.49rem;
}
.about-development-section .innerbox .swiperbox .left {
  width: 54.5%;
  padding-right: 0.85rem;
}
.about-development-section .innerbox .swiperbox .left .wordbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  gap: 1.29rem;
  overflow: hidden;
}
.about-development-section .innerbox .swiperbox .left .wordbox .year {
  font-weight: 600;
  color: #C4131A;
  font-size: var(--font220);
  opacity: 0.1;
  width: 41%;
  overflow: hidden;
}
.about-development-section .innerbox .swiperbox .left .wordbox .year span {
  writing-mode: vertical-rl;
  line-height: 1;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword {
  position: relative;
  width: 100%;
  height: auto;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 100%;
  top: 0;
  left: -0.58rem;
  background: url("../images/scrollbar.png") no-repeat;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item {
  color: var(--color_999);
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y1 {
  font-weight: 600;
  font-size: var(--font24);
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y2 {
  font-size: var(--font18);
  margin-top: 0.15rem;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y3 {
  font-size: var(--font16);
  margin-top: 0.25rem;
  line-height: calc(36/16);
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y3 p {
  position: relative;
  padding-left: 14px;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y3 p::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0.12rem;
  width: 5px;
  height: 5px;
  background: #666666;
  border-radius: 50%;
  opacity: 0.5;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .swiper-slide {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .active .item:before {
  position: absolute;
  content: '';
  width: 12px;
  height: 100%;
  top: 0;
  left: -0.58rem;
  height: 93px;
  background: #C4131A;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .active .y1 {
  color: #C4131A;
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .active .y2 {
  color: var(--color_222);
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .active .y3 {
  color: var(--color_222);
}
.about-development-section .innerbox .swiperbox .left .wordbox .swiperword .active .y3 p:before{
    background: var(--color_222);
}

.about-development-section .innerbox .swiperbox .right {
  width: 45.5%;
  overflow: hidden;
  border-radius: 0.1rem;
}
.about-development-section .innerbox .swiperbox .right .img {
  border-radius: 0.3rem;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}
.about-development-section .innerbox .swiperbox .right .img img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
}
.about-development-section .innerbox .swiperbox .right .img:hover img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.about-development-section .innerbox .idxPageHide{
    display: flex;
    margin-top: 1rem;
    gap: .1rem;
}


.about-coreawards-section {
  background: url("../images/honor-banner.jpg") no-repeat;
  background-size: cover;
}
.about-coreawards-section .innerbox {
  padding-top: 1.35rem;
  padding-bottom: 1.48rem;
}
.about-coreawards-section .innerbox .topbox {
  display: -webkit-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-coreawards-section .innerbox .topbox .icon {
  width: 0.07rem;
  height: 0.11rem;
}
.about-coreawards-section .innerbox .swiperbox {
  margin-top: 1.2rem;
  overflow: hidden;
}
.about-coreawards-section .innerbox .swiperbox .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;
  height: 3.4rem;
}
.about-coreawards-section .innerbox .swiperbox .img img {
  max-height: 80%;
  max-width: 80%;
}
.about-coreawards-section .innerbox .swiperbox .title {
  text-align: center;
  margin-top: 0.3rem;
  display: none;
}
.about-coreawards-section .innerbox .swiperbox .idxPageHide {
  display: flex;
  text-align: center;
  margin-top: 0.6rem;
}
.about-coreawards-section .innerbox .swiperbox .swiper-slide {
  width: 18.5vw;
  transition: all 0.5s;
}
.about-coreawards-section .innerbox .swiperbox .swiper-slide-active {
  opacity: 1;
}
.about-coreawards-section .innerbox .swiperbox .swiper-slide-active .title {
  display: block;
}

@media (max-width:768px) {
    .about-num-section .innerbox .rowline{
        display: block;
    }
    .about-num-section .innerbox .rowline .main-title:after{
        bottom: -.7rem;
    }
    .about-num-section .innerbox .rowline .info{
        margin-top: 1.5rem;
    }
    .about-num-section{
        min-height: 1100px;
    }
    .about-development-section .innerbox .swiperbox{
        display: block;
        height: inherit;
    }
    .about-development-section .innerbox .swiperbox .left{
        height: 5.49rem;
        width: 100%;
        padding-right: 0;
    }
    .about-development-section .innerbox .swiperbox .right{
        margin-top: .7rem;
    }
    .about-development-section .innerbox .swiperbox .left .wordbox .year{
        width: 24%;
    }
    
}
@media (max-width:480px) {
    .about-num-section{
        min-height: inherit;
        padding-top: 1rem;
        background: none;
        height: inherit;
    }
    .about-num-section .innerbox .rowline .itemlist{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: .15rem;
    }
    .about-num-section .innerbox .rowline .itemlist .item{
        min-width: inherit;
    }
    .about-development-section .innerbox{
        margin-top: 1rem;
    }
     .about-development-section .innerbox .swiperbox .left .wordbox .year{
        width: 32%;
        font-size: 72px;
    }
    .about-development-section .innerbox .swiperbox .left .wordbox .swiperword .item .y3 p{
        line-height: 1.8;
    }
    .about-development-section .innerbox .swiperbox .right{
        width: 100%;
    }
    .about-development-section .innerbox .swiperbox .right .swiper-slide{
        width: 100% !important;
    }
    .about-num-section .m_img{
        display: block;
        
    }
    .about-num-section .m_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.35rem;
  padding-bottom: 1.48rem;
  background: url("../images/honor-banner.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .topbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


.ins_aboutCon1 .center_box .topbox .icon {
  width: 0.07rem;
  height: 0.11rem;
}
.ins_aboutCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.5rem;
}

.ins_aboutCon1 .center_box .swiper_box .idxPageHide {
    margin-top: 1rem;
    display: flex;
}
.ins_aboutCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 100%;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo .img .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_aboutCon1 .center_box .swiper_box ul li .centerInfo .img .ab img {
  max-height: 80%;
  max-width: 80%;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_aboutCon1 .center_box .swiper_box ul li.swiper-slide-active .centerInfo .word {
  opacity: 1;
}


/* --------------------------------------------------------------- 产品 */
.product_brand {
  /*padding-top: var(--header-height);*/
  position: fixed;
  width: 100%;
  z-index: 10;
}
.product_brand .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%;
  background-color: var(--color_fff);
  border-top: solid 1px #F1F1F1;
}
.product_brand .innerbox .nav_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;
}
.product_brand .innerbox .nav_item .seris-title {
  position: relative;
  font-size: var(--font18);
  padding: 0.27rem 1.04rem;
  white-space: nowrap;
  background: #EAEAEA;
  color: var(--color_222);
  cursor: pointer;
}
.product_brand .innerbox .nav_item .seris-title:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 14px;
  margin-top: 2px;
  background-color: #EAEAEA;
  right: -4px;
  transform: rotate(45deg);
}
.product_brand .innerbox .nav_item .seris-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;
  gap: 0.45rem;
  width: 66.2%;
  padding: 0 0.76rem;
}
.product_brand .innerbox .nav_item .seris-info a {
  position: relative;
  font-size: var(--font16);
  color: var(--color_222);
  white-space: nowrap;
}
.product_brand .innerbox .nav_item .seris-info a::after {
  position: absolute;
  content: '';
  height: 0.03rem;
  width: 100%;
  bottom: -0.27rem;
  left: 0;
}
.product_brand .innerbox .nav_item .seris-info .on {
  color: var(--active_color);
}
.product_brand .innerbox .nav_item .seris-info .on:after {
  background-color: var(--active_color);
}
.product_brand .innerbox .active .seris-title {
  background-color: var(--active_color);
  color: var(--color_fff);
}
.product_brand .innerbox .active .seris-title:before {
  background-color: var(--active_color);
}
@media (max-width:1280px) {
  .product_brand .innerbox .nav_item .seris-title {
    padding: 0.27rem 0.6rem;
  }
}
@media (max-width:990px) {
  .product_brand .innerbox {
    display: inline-block;
    width: 100%;
  }
  .product_brand .innerbox .nav_item {
    margin: 0.2rem;
  }
  .product_brand .innerbox .nav_item .seris-title {
    min-width: 200px;
  }
}
@media (max-width:480px) {
    .product_brand{
        display: none;
    }
  .product_brand .innerbox {
    padding: 0.3rem;
  }
  .product_brand .innerbox .nav_item {
    display: inline-block;
    width: 100%;
    margin: 0;
    margin-bottom: 0.3rem;
  }
  .product_brand .innerbox .nav_item .seris-title {
    min-width: auto;
    width: 100%;
    text-align: center;
    padding: 0.18rem;
  }
  .product_brand .innerbox .nav_item .seris-info {
    padding: 0.3rem 0;
  }
  .ins_aboutCon1 .center_box .topbox .swiper-operate{display:none}
}
.product-section1 {
  padding-top: 1.7rem;
  margin-top: var(--header-height);
  background: url("../images/pbg1.jpg") no-repeat;
  background-size: cover;
}
.product-section1 .innerbox .pro-top {
  text-align: center;
}
.product-section1 .innerbox .pro-top .t1 {
  margin: auto;
  margin-top: 0.2rem;
  max-width: 60%;
   font-size: var(--font18);
}
.product-section1 .innerbox .image {
  text-align: center;
  max-width: 9.14rem;
  margin: auto;
}
.product-section1 .innerbox .itemlist {
  margin-top: 0.55rem;
  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: 1.18rem;
}
.product-section1 .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
}
.product-section1 .innerbox .itemlist .item .icon {
  width: 0.58rem;
  height: 0.58rem;
  min-width: 0.58rem;
}
.product-section1 .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-section1 .innerbox .itemlist .item .info .title {
  font-weight: 600;
  color: #C4131A;
}
.product-section1 .innerbox .itemlist .item .info .desc {
  margin-top: 0.1rem;
  font-size: var(--font16);
  
}
@media (max-width:768px) {
  .product-section1 .innerbox .itemlist {
    gap: 0.5rem;
  }
}
@media (max-width:480px) {
  .product-section1 .innerbox .itemlist {
    display: inline-block;
    width: 100%;
    margin-top: 0;
  }
  .product-section1 .innerbox .itemlist .item {
    margin: 0.5rem 0;
  }
}
.product-section2 {
  background: url("../images/pbg2.jpg") no-repeat;
  background-size: cover;
}
.product-section3 {
  background: url("../images/pbg3.jpg") no-repeat;
  background-size: cover;
}
.product-section4 {
  background: url("../images/pbg4.jpg") no-repeat;
  background-size: cover;
}
.product-section4 .serisul {
  position: absolute;
  top: 0.27rem;
  left: 0.8rem;
  margin-top: 1.27rem;
  z-index: 10;
}
.product-section4 .serisul ul li {
  position: relative;
  padding-left: 0.18rem;
  margin: 0.1rem 0;
  cursor: pointer;
  font-size: var(--font18);
}
.product-section4 .serisul ul li:before {
  position: absolute;
  content: '';
  top: 0.12rem;
  left: -0.13rem;
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  opacity: 0.5;
}
.product-section4 .serisul ul .active {
  color: #C4131A;
}
.product-section4 .serisul ul .active:before {
  background-color: var(--active_color);
}
.product-section4 .swiperbox {
  width: 100%;
  height: auto;
}
.product-section4 .swiperbox ul,
.product-section4 .swiperbox li {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .product-section4 .serisul {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .product-section4 .serisul ul {
    display: -webkit-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.5rem;
  }
  .product-section4 .swiperbox .innerbox{
    padding-top: 2rem;
  }
}
.product-section5 {
  background: url("../images/pbg5.jpg") no-repeat;
  background-size: cover;
}
.product-section6 {
  background: url("../images/pbg6.jpg") no-repeat;
  background-size: cover;
}
.product-section-normal {
  position: relative;
  /*padding-top: 1.27rem;*/
  padding-top: 1.7rem;
 
}
.product-section-normal .innerbox .pro-top {
  text-align: center;
}
.product-section-normal .innerbox .pro-top .t1 {
  width: 80%;
  max-width: 58%;
  margin: auto;
  margin-top: 0.2rem;
  font-size: var(--font18);
}
.product-section-normal .innerbox .swipercontent {
  position: relative;
}
.product-section-normal .innerbox .swipercontent .swipertitle .w1480 {
  position: relative;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 1.22rem;
  margin-top: .5rem;
  border-bottom: solid 1px #e5e5e5;
  overflow: hidden;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .tabbox {
  width: 60%;
  margin: auto;
  overflow: hidden;
  
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .tabbox ul{
    padding-bottom: 0.3rem;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .tabbox .t_name {text-align:center}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .item {
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .item::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 5px;
  bottom: -0.3rem;
  left: 0;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .active {
  color: #C4131A;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .active::after {
  background: #C4131A;
}
.product-section-normal .innerbox .swipercontent .swipertitle .t-list .active .item::after{
    background: #C4131A;
}


.product-section-normal .innerbox .swipercontent .swipertitle .head-navigation {
  display: -webkit-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;
  width: 100%;
  top: 0.1rem;
  cursor: pointer;
}
.product-section-normal .innerbox .swipercontent .swipertitle .head-navigation .prev,
.product-section-normal .innerbox .swipercontent .swipertitle .head-navigation .next {
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.product-section-normal .innerbox .swipercontent .swiperbox {
  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: 1rem;
  margin-top: 1rem;
  padding-left: 11.45%;
  padding-right: 8.54%;
  cursor: pointer;
  opacity: 0;
  align-items: center;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info {
  width: 33.8%;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info .desc {
  margin-top: 0.1rem;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.58rem;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info .itemlist .item .icon {
  width: 0.58rem;
  height: 0.58rem;
  min-width: 0.58rem;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-section-normal .innerbox .swipercontent .swiperbox .info .itemlist .item .t2 {
  margin-top: 0.1rem;
}
.product-section-normal .innerbox .swipercontent .swiperbox .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;
  width: 66.2%;
}
.product-section-normal .innerbox .swipercontent .swiper-slide-active .swiperbox {
  opacity: 1;
}
@media (max-width:990px) {
  .product-section-normal .innerbox .swipercontent .swiperbox {
    margin-left: inherit;
    margin-right: inherit;
  }
}
@media (max-width:768px) {
  .product-section-normal .innerbox .swipercontent .swiperbox {
    display: inline-block;
    width: 90%;
    margin: auto;
    margin-top: 0.8rem;
  }
  .product-section-normal .innerbox .swipercontent .swiperbox .info {
    width: 100%;
  }
  .product-section-normal .innerbox .swipercontent .swiperbox .info .itemlist {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
  .product-section-normal .innerbox .swipercontent .swipertitle .t-list {
    gap: 0.6rem;
  }
  .product-section-normal .innerbox .swipercontent .swiper-slide-active .swiperbox {
    display: inline-block;
    width: 100%;
  }
}
@media (max-width:480px) {
    .product-section-normal{
        padding: 1rem 0;
    }
  .product-section-normal .innerbox .swipercontent .swipertitle .head-navigation {
    display: none;
  }
  .product-section-normal .innerbox .swipercontent .swipertitle .t-list {
    overflow: auto;
  }
  .product-section-normal .innerbox .swipercontent .swipertitle .t-list .item {
    white-space: nowrap;
  }
  .product-section-normal .innerbox .pro-top .t1{
      width: 90%;
      max-width: 90%;
  }
  .product-section-normal .innerbox .swipercontent .swiperbox .image{
      width: 100%;
  }
}
/* --------------------------------------------------------------- 产品详情 */
.product-detail-wrap {
  position: relative;
  background: #f7f7f7;
  margin-top: var(--header-height);
  padding-bottom: 1.15rem;
}
.product-detail-wrap .return-btn {
  position: absolute;
  right: 0.62rem;
}
.product-detail-wrap .prosidebar-wrap {
  position: relative;
  z-index: 10;
}
.product-detail-wrap .prosidebar-wrap .menubox {
  display: -webkit-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_fff);
  cursor: pointer;
  position: fixed;
  top: 50%;
  left: 0;
  background-color: var(--active_color);
  transform: translateY(-50%);
  gap: 0.14rem;
  flex-direction: column;
  padding: 0.38rem 0.23rem;
  width: 0.6rem;
}
.product-detail-wrap .prosidebar-wrap .menubox .img{
    width: .18rem;
}
.product-detail-wrap .prosidebar-wrap .menubox span {
  writing-mode: vertical-lr;
  letter-spacing: 3px;
}
.product-detail-wrap .prosidebar-wrap .menulist {
  transition: all 1s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  height: inherit;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color_fff);
  width: 3rem;
  min-width: 230px;
}
.product-detail-wrap .prosidebar-wrap .menulist .item {
  color: var(--color_444);
  color: var(--color_666);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .h-title {
  font-weight: 600;
  font-size: var(--font18);
  cursor: pointer;
  background: #F0F0F0;
  padding: 0.28rem 0.38rem;
  line-height: 1;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul {
  font-size: var(--font16);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli {
  cursor: pointer;
  width: 100%;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .t0 {
  display: -webkit-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(--font22);
  width: 100%;
  padding: 0.2rem 0.38rem;
  line-height: 1;
  border-bottom: solid 1px #efefef;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul {
  display: none;
  padding: 0.26rem 0.38rem;
  line-height: calc(45/14);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli {
  font-size: var(--font14);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .t1 {
  color: var(--color_333);
  display: -webkit-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(--font18);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .t1 img {
  filter: brightness(0) invert(0.7);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .threeul {
  color: var(--color_444);
  color: var(--color_666);
  padding-left: 0.4rem;
  display: none;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .threeul .thrli {
  position: relative;
  line-height: 2.2;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .threeul .thrli a {
  color: var(--color_999);
  font-size: var(--font12);
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .oli .twoul .tli .threeul .thrli::before {
  position: absolute;
  content: '';
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color_bbb);
  border-radius: 50%;
}
.product-detail-wrap .prosidebar-wrap .menulist .item .oneul .on {
  display: inline-block;
}
.product-detail-wrap .prosidebar-wrap .menulist .active .h-title {
  color: var(--color_fff);
  background-color: var(--active_color);
}
.product-detail-wrap .prosidebar-wrap .active {
  transition: all 1s ease;
  height: inherit;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.product-detail-wrap .pdbox {
  padding-top: 1.14rem;
  width: 80%;
  max-width: 980px;
  margin: auto;
}
.product-detail-wrap .pdbox .pro-top {
  text-align: center;
}
.product-detail-wrap .pdbox .pro-top .t1 {
  margin-top: 0.2rem;
  font-size: var(--font18);
}
.product-detail-wrap .pdbox .itemlist {
  margin-top: 0.55rem;
  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.8rem;
}
.product-detail-wrap .pdbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
}
.product-detail-wrap .pdbox .itemlist .item .icon {
  width: 0.58rem;
  height: 0.58rem;
}
.product-detail-wrap .pdbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-wrap .pdbox .itemlist .item .info .title {
  font-weight: 600;
}
.product-detail-wrap .pdbox .itemlist .item .info .desc {
  margin-top: 0.1rem;
  color: #C4131A;
}
.product-detail-wrap .pdbox .image {
  text-align: center;
  /*max-width: 9.14rem;*/
  margin: auto;
  margin-top: 0.8rem;
}
.product-detail-wrap .tablelist {
  margin-top: 1rem;
}
.product-detail-wrap .tablelist .innerbox .t0 {
  text-align: center;
}
.product-detail-wrap .tablelist .innerbox .itemlist {
  margin-top: 0.8rem;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .left {
  width: 81%;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .right {
  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;
  flex-direction: column;
  width: 19%;
  border-top: solid 1px #e0e0e0;
  border-bottom: solid 1px #e0e0e0;
  border-left: solid 1px #e0e0e0;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .right .last-t0 {
  width: 100%;
  text-align: center;
  padding: 0.155rem 0;
  line-height: 1;
  border-bottom: solid 1px #e0e0e0;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .right .img {
  padding: 0rem 0.5rem;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .rowline {
  color: var(--color_444);
  color: var(--color_666);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: solid 1px #e0e0e0;
  padding: 0.155rem 0;
  line-height: 1;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .rowline span {
  padding-left: 0.3rem;
}
.product-detail-wrap .tablelist .innerbox .itemlist .t_body .title {
  color: var(--color_222);
  font-weight: 500;
  border-top: solid 1px #e0e0e0;
}
@media (max-width:480px) {
  .product-detail-wrap .tablelist .innerbox .itemlist {
    overflow: auto;
  }
  .product-detail-wrap .tablelist .innerbox .itemlist .t_body .left {
    min-width: 900px;
    padding-left: 10%;
  }
  .product-detail-wrap .tablelist .innerbox .itemlist .t_body .right {
    min-width: 200px;
  }
}
.product-detail-wrap .tablelistbg2 .rowline2 {
  background-color: #e0e0e0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  color: var(--color_444);
  color: var(--color_666);
  display: flex;
  line-height: 1;
}
.product-detail-wrap .tablelistbg2 .rowline2 span {
  flex: 1;
  text-align: center;
  padding: 0.155rem 0;
  border-right: solid 1px rgba(255, 255, 255, 0.5);
}
.product-detail-wrap .tablelistbg2 .title {
  background-color: var(--active_color);
}
.product-detail-wrap .tablelistbg2 .title span {
  color: var(--color_fff);
  border-right: solid 1px rgba(255, 255, 255, 0.5);
}
@media (max-width:480px) {
  .product-detail-wrap .tablelistbg2 .innerbox .itemlist .t_body .left {
    padding-left: 0;
    min-width: 100%;
  }
}
.product-detail-wrap .swiperlist {
    width: 100%;
  margin-top: 0.3rem;
  overflow: auto;
}
.product-detail-wrap .swiperlist .swiper-slide .info {
  display: none;
}
.product-detail-wrap .swiperlist .swiper-slide-active .info {
  display: inline-table;
  width: 100%;
}
.product-detail-wrap .swiperlist .filter-result .rowline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.product-detail-wrap .swiperlist .filter-result .rowline .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;
  font-size: var(--font16);
  width: 20%;
  padding-left: 0.3rem;
}
.product-detail-wrap .swiperlist .filter-result .rowline .item a {
  font-size: var(--font16);
}
.product-detail-wrap .swiperlist .filter-result .rowline .item:first-child {
  width: 40%;
}
.product-detail-wrap .swiperlist .filter-result .rowline .item:last-child {
  max-width: 120px;
}
.product-detail-wrap .swiperlist .filter-result .rbody {
  width: 100%;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul {
  width: 100%;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li {
  width: 100%;
  border-bottom: solid 1px #EEEEEE;
  cursor: pointer;
  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;
  height: 0.6rem;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li:first-child {
  border-top: solid 2px #111111;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .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;
  width: 20%;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .item:first-child {
  width: 40%;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .item:last-child {
  max-width: 120px;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .item .pdf-icon {
  margin-right: 0.18rem;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .downicon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li .downicon .icon img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(0.7);
}
.product-detail-wrap .swiperlist .filter-result .rbody ul li:hover .downicon .icon img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: inherit;
}
.product-detail-wrap .swiperlist table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: auto;
}
.product-detail-wrap .swiperlist table thead {
  width: 100%;
}
.product-detail-wrap .swiperlist table thead th,
.product-detail-wrap .swiperlist table thead td {
  
  flex: 1;
}
.product-detail-wrap .swiperlist table thead th:first-child {
  border-radius: 15px 0px 0px 0px;
}
.product-detail-wrap .swiperlist table thead th:last-child {
  border-radius: 0px 15px 0px 0px;
}
.product-detail-wrap .swiperlist table tr {
  width: 100%;
  border-left: solid 1px #e0e0e0;
}
.product-detail-wrap .swiperlist table th,
.product-detail-wrap .swiperlist table td {
  
  padding: 8px;
  text-align: center;
  flex: 1;
  border-top: solid 1px #e0e0e0;
  border-right: solid 1px #e0e0e0;
}

.product-detail-wrap .swiperlist table tr:last-child{
    border-bottom: solid 1px #e0e0e0;
    border-left: solid 1px #e0e0e0;
}
.product-detail-wrap .swiperlist table th {

  font-weight: bold;
}


.product-detail-wrap .product-solution-wrap {
  position: relative;
  padding-top: 1.3rem;
  padding-bottom: 0.94rem;
}
.product-detail-wrap .product-solution-wrap .innerbox {
  width: 84%;
  margin: auto;
}
.product-detail-wrap .product-solution-wrap .innerbox .title {
  text-align: center;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist {
  margin-top: 0.8rem;
  overflow: hidden;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item {
  text-align: center;
  padding: .8rem .6rem;
  background-color: #f0f0f0;
  cursor: pointer;
    -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 5.3rem;
  min-height: 400px;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .image {
  height: 1.95rem;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .t0 {
  margin-top: 0.3rem;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .t1 {
  margin-top: 0.1rem;
  
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .t1 p{
    line-height: 1.6;
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item .index-more {
  position: relative;
 
  width: fit-content;
  white-space: nowrap;
  margin-top: 0.34rem;
  opacity: 0;
  
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item:hover {
     background-color: rgb(255 255 255 / 50%);
  
      -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  
}
.product-detail-wrap .product-solution-wrap .innerbox .itemlist .item:hover .index-more {
  opacity: 1;
}
@media (max-width:480px) {
  .product-detail-wrap .return-btn {
    right: inherit;
    left: 20px;
  }
  .product-detail-wrap .pdbox {
    padding-top: 1.5rem;
  }
}
/* --------------------------------------------------------------- 投资者关系 */
.investor-relations-section {
  position: relative;
}
.investor-relations-section .image {
  height: 5.4rem;
}
.investor-relations-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-relations-section .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;
  color: var(--color_fff);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.investor-section2 {
  padding: 1.2rem 0;
}
.investor-section2 .innerbox {
  gap: 0.3rem;
}
.investor-section2 .innerbox .item {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.2rem;
}
.investor-section2 .innerbox .item .bgimg {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #676767;
  border-radius: 0.2rem;
}
.investor-section2 .innerbox .item .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.investor-section2 .innerbox .item .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;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.investor-section2 .innerbox .item .info .icon {
  width: 0.47rem;
  height: 0.47rem;
}
.investor-section2 .innerbox .item .info .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.investor-section2 .innerbox .item .info .title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
  margin-top: 0.27rem;
}
.investor-section2 .innerbox .item:hover .bgimg {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
@media (max-width:480px) {
  .investor-section2 {
    padding: 0.6rem 0;
  }
  .investor-section2 .innerbox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.investor-section3 {
  padding: 1.2rem 0;
  background: url("../images/invest-contact.jpg") no-repeat;
  background-size: cover;
}
.investor-section3 .innerbox {
  width: 31%;
  margin: auto;
}
.investor-section3 .innerbox .title {
  text-align: center;
}
.investor-section3 .innerbox .itemlist {
  margin-top: 0.6rem;
}
.investor-section3 .innerbox .itemlist .line {
  margin-bottom: 0.11rem;
}
.investor-section3 .innerbox .itemlist .line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.2rem;
  background: #FFFFFF;
  width: 100%;
  padding: 0.2rem 0;
  text-align: center;
}
.investor-section3 .innerbox .itemlist .line a img {
  width: 0.23rem;
  height: 0.23rem;
  min-width: 15px;
  min-height: 15px;
}
@media (max-width:768px) {
  .investor-section3 .innerbox {
    width: 50%;
    min-width: 350px;
  }
}
/* --------------------------------------------------------------- 联系我们 */
.contact-section {
  position: relative;
}
.contact-section .image {
  height: 5.4rem;
}
.contact-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-section .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;
  color: var(--color_fff);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.contact-section .info .desc {
  margin-top: 0.3rem;
  font-size: var(--font18);
}
.contact-section2 {
  padding-top: 1.2rem;
  background: url("../images/message-bg.jpg") no-repeat;
  background-size: cover;
}
.contact-section2 .innerbox .itemlist {
  margin-top: 0.5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFFFFF, rgba(255, 255, 255, 0));
  overflow: hidden;
}
.contact-section2 .innerbox .itemlist .item {
  text-align: center;
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.contact-section2 .innerbox .itemlist .item .info {
  position: relative;
  min-height: 4.17rem;
  border-right: 1px dashed rgba(0, 0, 0, 0.2);
  
}
.contact-section2 .innerbox .itemlist .item .info .icon {
  margin: auto;
  margin-top: 0.2rem;
  width: 0.84rem;
  height: 0.84rem;
}
.contact-section2 .innerbox .itemlist .item .info .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-section2 .innerbox .itemlist .item .info .t1 {
  margin-top: 0.55rem;
}
.contact-section2 .innerbox .itemlist .item .info .t2 {
  margin-top: 0.1rem;
}
.contact-section2 .innerbox .itemlist .item .info .desc {
  margin-top: 0.2rem;
      padding: 0 .8rem;
}
.contact-section2 .innerbox .itemlist .item .info .index-more {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.contact-section2 .innerbox .itemlist .item:last-child .info {
  border-right: none;
}
.contact-section2 .innerbox .itemlist .item:hover {
  background-color: var(--active_color);
  transition: all 0.5s ease-in-out;
}
.contact-section2 .innerbox .itemlist .item:hover .icon {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.contact-section2 .innerbox .itemlist .item:hover .t1,
.contact-section2 .innerbox .itemlist .item:hover .t2,
.contact-section2 .innerbox .itemlist .item:hover .desc,
.contact-section2 .innerbox .itemlist .item:hover p {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
}
.contact-section2 .innerbox .itemlist .item:hover .index-white {
  color: var(--color_fff);
  background-color: inherit;
}
.contact-section2 .innerbox .itemlist .item:hover .index-white:hover {
  background-color: inherit;
  box-shadow: inherit;
}
@media (max-width:990px) {
  .contact-section2 .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-section2 .innerbox .itemlist .item .info {
    border-right: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    height: inherit;
    padding-bottom: 0.6rem;
  }
  .contact-section2 .innerbox .itemlist .item .info .index-more {
    position: relative;
    left: auto;
    transform: inherit;
  }
  .contact-section2 .innerbox .itemlist .item:last-child .info {
    border-bottom: none;
  }
}
@media (max-width:480px) {
  .contact-section2 .innerbox .itemlist .item {
    padding-bottom: 0;
  }
}
.contact-section3 {
  padding-top: 1.1rem;
  padding-bottom: 1.27rem;
  background-color: #fff;
  background-size: cover;
}
.contact-section3 .innerbox .itemlist {
  margin-top: 0.52rem;
  column-gap: 0.35rem;
  row-gap: 0.23rem;
}
.contact-section3 .innerbox .itemlist .item {
  min-height: 3.6rem;
  background: #F6F6F6;
  border-radius: 0.2rem;
  padding: 0.6rem;
  cursor: pointer;
}
.contact-section3 .innerbox .itemlist .item .t0 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  padding-bottom: 0.3rem;
  line-height: 1;
  border-bottom: solid 1px rgba(0, 0, 0, 0.06);
}
.contact-section3 .innerbox .itemlist .item .t0::before {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--active_color);
  bottom: 0;
  transition: all 0.5s ease-in-out;
}
.contact-section3 .innerbox .itemlist .item .desc {
  color: var(--color_333);
  margin-top: 0.4rem;
  font-size: var(--font18);
}
.contact-section3 .innerbox .itemlist .item .desc .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.26rem;
  margin-bottom: 0.2rem;
}
.contact-section3 .innerbox .itemlist .item .desc .media img {
  width: 0.18rem;
  height: 0.18rem;
  object-fit: contain;
}
.contact-section3 .innerbox .itemlist .item:hover .t0 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--active_color);
}
.contact-section3 .innerbox .itemlist .item:hover .t0::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
@media (max-width:480px) {
  .contact-section3 .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-section4 {
  height: 4.5rem;
  background: url("../images/contact-bg.jpg") no-repeat;
  background-size: cover;
}
.contact-section4 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.contact-section4 .innerbox .desc {
  margin-top: 0.3rem;
  text-align: center;
}
.contact-section4 .innerbox .index-more {
  margin-top: 0.4rem;
}
.contact-section4 .innerbox .index-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.contact-section4 .innerbox .index-more a img {
  width: 0.14rem;
  height: 0.14rem;
  object-fit: contain;
}
@media (max-width:480px) {
  .contact-section4 {
    height: inherit;
    padding: 1rem 0;
  }
  .contact-section4 .innerbox .desc {
    padding: 0 0.5rem;
  }
  .contact-section4 .innerbox .desc p {
    display: contents;
  }
}
/* --------------------------------------------------------------- 可持续发展 */
.develop-section {
  position: relative;
  padding-top: var(--header-height);
  height: 8.8rem;
  background: url("../images/develop-banner.jpg") no-repeat;
  background-size: cover;
}
.develop-section .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;
  color: var(--color_fff);
  position: absolute;
  height: calc(100% - var(--header-height));
  width: 100%;
  flex-direction: column;
}
.develop-section .info .desc {
  max-width: 47%;
  
  margin-top: 0.35rem;
  
  text-align: center;
  font-size: var(--font20);
  
}
.develop-section2 {
  padding-top: 1.3rem;
  padding-bottom: 1.26rem;
}
.develop-section2 .innerbox .title {
  text-align: center;
}
.develop-section2 .innerbox .itemlist {
  margin-top: 0.7rem;
  overflow: hidden;
}
.develop-section2 .innerbox .itemlist .item {
  text-align: center;
  cursor: pointer;
}
.develop-section2 .innerbox .itemlist .item .image {
  height: 2.94rem;
  border-radius: 0.15rem 0.15rem 0 0;
  overflow: hidden;
}
.develop-section2 .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.15rem 0.15rem 0 0;
}
.develop-section2 .innerbox .itemlist .item .info {
  position: relative;
  padding: 0.55rem 0.38rem;
  height: 4.63rem;
  min-height: 300px;
  border-radius: 0 0 0.15rem 0.15rem;
  overflow: hidden;
  background: #F0F0F0;
}
.develop-section2 .innerbox .itemlist .item .info:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.07rem;
  background: #D2D2D2;
  border-radius: 0 0 0.15rem 0.15rem;
  transition: 1.2s cubic-bezier(0.26, 1, 0.48, 1);
}
.develop-section2 .innerbox .itemlist .item .info .t0 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.develop-section2 .innerbox .itemlist .item .info .t0:before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  content: '';
  width: 0.22rem;
  height: 0.04rem;
  background: #C51B21;
  left: calc(50% - 0.11rem);
  top: 0.68rem;
}
.develop-section2 .innerbox .itemlist .item .info .desc {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  line-height: 1.7;
  padding-right: 0.2rem;
  margin-top: 0.67rem;
  
  height: 2.7rem;
  overflow: auto;
  text-align: justify;
  font-size: var(--font16);

}
.develop-section2 .innerbox .itemlist .item:hover .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}

.develop-section2 .innerbox .itemlist .item:hover .info:after {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  background: #C51B21;
  transition: 0.5s cubic-bezier(0.26, 1, 0.48, 1);
}
.develop-section2 .innerbox .itemlist .item:hover .info .t0 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
}
.develop-section2 .innerbox .itemlist .item:hover .info .t0:before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--color_fff);
}
.develop-section2 .innerbox .itemlist .item:hover .info .desc {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
}
.develop-section3 {
  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;
  flex-direction: column;
  position: relative;
  padding-top: var(--header-height);
  height: 8.8rem;
  background: url("../images/development-bg2.jpg") no-repeat;
  background-size: cover;
}
.develop-section3 .innerbox {
  max-width: 5.02rem;
}
.develop-section3 .innerbox .title {
  position: relative;
}
.develop-section3 .innerbox .title:after {
  left: 0;
  bottom: -0.47rem;
  position: absolute;
  content: '';
  width: 0.22rem;
  height: 0.05rem;
  background: #C4131A;
}
.develop-section3 .innerbox .desc {
  margin-top: 1rem;
  line-height: calc(30/16);
}
@media (max-width:480px) {
  .develop-section3 {
    height: inherit;
    min-height: 450px;
    background-position-x: center !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}

.develop-section4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  height: 8.8rem;
  background: url("../images/book.png") no-repeat;
  background-size: cover;
}
.develop-section4 .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.develop-section4 .innerbox .left {
  width: 65%;
}
.develop-section4 .innerbox .left .title {
  position: relative;
  max-width: 640px;
}
.develop-section4 .innerbox .left .title:after {
  left: 0;
  bottom: -0.47rem;
  position: absolute;
  content: '';
  width: 0.22rem;
  height: 0.05rem;
  background: #C4131A;
}
.develop-section4 .innerbox .left .desc {
  margin-top: 1rem;
  line-height: calc(30/16);
  max-width: 640px;
}
.develop-section4 .innerbox .right {
  width: 35%;
  height: 7.25rem;
}
@media (max-width:480px) {
  .develop-section4 {
    height: inherit;
    min-height: 450px;
  }
  .develop-section4 .innerbox {
    display: inline-block;
    width: 100%;
  }
  .develop-section4 .innerbox .left {
    width: 100%;
  }
  .develop-section4 .innerbox .right {
    height: inherit;
    margin-top: 1rem;
    width: 50%;
  }
}


/* --------------------------------------------------------------- 新闻中心 */
.newswrap {
  margin-top: var(--header-height);
  padding: 1.2rem 0 1.09rem 0;
  position: relative;
  overflow: hidden;
  background: url("../images/news-bg1.png") no-repeat;
  background-color: #f6f6f6;
}
.newswrap .newstitle {
  text-align: center;
}
.newswrap .newbanner {
  overflow: hidden;
}
.newswrap .newbanner .swiperlist {
  margin-top: 0.5rem;
}
.newswrap .newbanner .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  background: #FFFFFF;
  align-items: center;
}
.newswrap .newbanner .innerbox .n-left {
  width: 55%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.newswrap .newbanner .innerbox .n-left img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.newswrap .newbanner .innerbox .n-left:hover img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.newswrap .newbanner .innerbox .n-right {
  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;
  flex-direction: column;
  width: 45%;
  padding: .5rem 0.83rem;
}
.newswrap .newbanner .innerbox .n-right .time {
  line-height: 1;
}
.newswrap .newbanner .innerbox .n-right .title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0.4rem;
}
.newswrap .newbanner .innerbox .n-right .info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: calc(30/16);
  margin-top: 0.3rem;
}
.newswrap .newbanner .innerbox .n-right .index-more {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  width: fit-content;
  background-color: var(--active_color);
  margin-top: 0.79rem;
}
.newswrap .newbanner .innerbox .n-right .index-more img {
  filter: brightness(0) invert(1);
}
.newswrap .newbanner .innerbox .n-right .index-more:hover {
  background-color: inherit;
  color: var(--color_fff);
}
.newswrap .newbanner .swiper-pagination {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
}
.newswrap .newbanner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #999999;
  opacity: 1;
  background: rgba(255, 255, 255, 0);
  margin: 0 0.1rem;
}
.newswrap .newbanner .swiper-pagination-bullet-active {
  border: 2px solid var(--color-active);
  background: var(--color-active);
}
.newswrap .swiper-pagination{
    display: none;
}

@media (max-width:990px) {
  .newswrap .newbanner .innerbox .n-left {
    height: inherit;
  }
  .newswrap .newbanner .innerbox .n-right .public-idx-more {
    position: relative;
    bottom: inherit;
    margin-top: 0.54rem;
  }
}
@media (max-width:768px) {
  .newswrap {
    padding: 0.8rem 0;
  }
  .newswrap .newbanner .innerbox {
    display: inline-block;
    width: 100%;
  }
  .newswrap .newbanner .innerbox .n-left {
    width: 100%;
  }
  .newswrap .newbanner .innerbox .n-right {
    width: 100%;
    padding: 0.5rem;
  }
  .newswrap .newbanner .innerbox .n-right .public-idx-more {
    position: relative;
    margin-top: 0.7rem;
    bottom: inherit;
  }
}
@media (max-width:480px) {
  .newswrap {
    padding: 0.6rem 0;
  }
  .newswrap .newstitle .pagination-operate {
    display: none;
  }
}
.news-navbrand {
  padding: 0.23rem 0;
}
.news-navbrand .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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news-navbrand .innerbox .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.news-navbrand .innerbox .left .item {
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
  color: var(--color_222);
  font-size: var(--font18);
  line-height: 1;
  padding: 0.15rem 0.45rem;
  border-radius: 0.24rem;
}
.news-navbrand .innerbox .left .item:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
  background-color: var(--active_color);
}
.news-navbrand .innerbox .left .active {
  color: var(--color_fff);
  background-color: var(--active_color);
}
.news-navbrand .innerbox .right {
  width: 21%;
  position: relative;
}
.news-navbrand .innerbox .right input {
  width: 100%;
  background: #F7F7F7;
  height: 0.47rem;
  min-height: 40px;
  padding: 0 0.26rem;
  border-radius: 24px;
  border: 1px solid #E9E9E9;
  font-size: 12px;
}
.news-navbrand .innerbox .right .searchicon {
  position: absolute;
  right: 0.26rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width:768px) {
  .news-navbrand .innerbox .right {
    width: inherit;
  }
}
@media (max-width:480px) {
  .news-navbrand .innerbox {
    display: inline-block;
    width: 100%;
  }
  .news-navbrand .innerbox .left .item {
    padding: 0.12rem 0.25rem;
  }
  .news-navbrand .innerbox .right {
    margin-top: 0.5rem;
  }
}
.newlist-wrap {
  position: relative;
  padding-top: 0.63rem;
  padding-bottom: 1.29rem;
  background-color: #f6f6f6;
}
.newlist-wrap .newtitle {
  margin-bottom: 0.4rem;
}
.newlist-wrap .innerbox {
  row-gap: 0.39rem;
  column-gap: 0.3rem;
}
.newlist-wrap .innerbox .item {
  background-color: var(--color_fff);
}
.newlist-wrap .innerbox .item .image {
  height: 2.88rem;
  background: #AEAEAE;
  overflow: hidden;
}
.newlist-wrap .innerbox .item .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  
}
.newlist-wrap .innerbox .item .info {
  z-index: 2;
  position: relative;
  padding: 0.36rem;
}
.newlist-wrap .innerbox .item .info a {
  width: 100%;
}
.newlist-wrap .innerbox .item .info .time {
  line-height: 1;
}
.newlist-wrap .innerbox .item .info .title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 0.1rem;
}
.newlist-wrap .innerbox .item .info .more {
  margin-top: 0.2rem;
  text-align: right;
}
.newlist-wrap .innerbox .item:hover .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.newlist-wrap #demo-laypage-normal-2 {
  margin-top: 1.17rem;
}
@media (max-width:480px) {
  .newlist-wrap .innerbox {
    grid-template-columns: repeat(1, 1fr);
  }
  .newlist-wrap .innerbox .item {
    width: 100%;
  }
  .newlist-wrap .innerbox .item a {
    width: 100%;
  }
}
.news-detail-wrap {
  background: #f7f7f7;
  margin-top: var(--header-height);
  padding-bottom: 1.15rem;
}
.news-detail-wrap .nav-home {
  display: -webkit-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;
  padding: 0.21rem 0;
}
.news-detail-wrap .nav-home .item img {
  margin: 0 0.05rem;
}
.news-detail-wrap .innerbox {
  background-color: var(--white-color);
  padding-top: 0.65rem;
}
.news-detail-wrap .innerbox .title {
  text-align: center;
}
.news-detail-wrap .innerbox .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;
  padding: 0.3rem 0;
  text-align: center;
  border-bottom: solid 1px #E7EBEF;
}
.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 .images {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.82rem;
  margin-top: 0.5rem;
  text-align: center;
}
.news-detail-wrap .innerbox .images img {
  width: 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 #E7EBEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.news-detail-wrap .innerbox .return-wrap .left p {
  margin-top: 0.2rem;
}
.news-detail-wrap .innerbox .return-wrap .left p:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #C4131A;
}
.news-detail-wrap .innerbox .return-wrap .left p:hover a {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #C4131A;
}
.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;
  gap: 0.26rem;
}
.news-detail-wrap .innerbox .return-wrap .active {
  color: #C4131A;
}
.news-detail-wrap .innerbox .return-wrap .active a {
  color: #C4131A;
}
@media (max-width:990px) {
  .news-detail-wrap .innerbox .return-wrap {
    display: inline-block;
    width: 100%;
  }
  .news-detail-wrap .innerbox .return-wrap .right {
    margin-top: 0.5rem;
  }
}
.server-section1 {
  position: relative;
  padding-top: 1.3rem;
  padding-bottom: 1.27rem;
  background: url("../images/servebg.png") no-repeat;
  background-size: cover;
  background-color: #f7f7f7;
}
.server-section1 .innerbox {
  width: 66.67%;
  margin: auto;
}
.server-section1 .innerbox .image {
  text-align: center;
  position: absolute;
  width: 4.23rem;
  left: calc(50% - 2.11rem);
  top: 2rem;
  animation: run linear infinite 50s;
}
.server-section1 .innerbox .info {
  text-align: center;
}
.server-section1 .innerbox .info .t1 {
  margin: auto;
  margin-top: 0.3rem;
  max-width: 68%;
  font-size: var(--font20);
}
.server-section1 .innerbox .info .btn {
  color: var(--color_fff);
  margin: auto;
  margin-top: 0.78rem;
  line-height: 1;
  padding: 0.18rem 0.44rem;
  border-radius: 28px;
  width: fit-content;
  background-color: var(--active_color);
}
.server-section1 .innerbox .info .itemlist {
  margin-top: 0.4rem;
}
.server-section1 .innerbox .info .itemlist .topcard {
  position: relative;
  gap: 0.55rem;
}
.server-section1 .innerbox .info .itemlist .topcard:before {
  position: absolute;
  content: '';
  width: 84%;
  top: 0.07rem;
  left: 8%;
  border-top: dashed 1px #E6E6E6;
}
.server-section1 .innerbox .info .itemlist .topcard .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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}
.server-section1 .innerbox .info .itemlist .topcard .item .point {
  width: 13px;
  height: 13px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 4px solid #C4131A;
}
.server-section1 .innerbox .info .itemlist .topcard .item .title {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  line-height: 1;
  border: 1px solid #E6E6E6;
  width: 100%;
  padding: 0.18rem 0.2rem;
  background-color: var(--color_fff);
  
}
.server-section1 .innerbox .info .itemlist .topcard .item .title:before {
  position: absolute;
  content: '';
  height: 63%;
  top: -65%;
  left: 50%;
  border-left: dashed 1px #E6E6E6;
}
.server-section1 .innerbox .info .itemlist .botcard {
  margin-top: 0.7rem;
  column-gap: 0.3rem;
  row-gap: 0.59rem;
}
.server-section1 .innerbox .info .itemlist .botcard .item {
  position: relative;
  min-height: 1.71rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
  
}
.server-section1 .innerbox .info .itemlist .botcard .item .title {
  color: var(--color_fff);
  position: absolute;
  z-index: 100;
  white-space: nowrap;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  border-radius: 0.2rem;
  width: fit-content;
  line-height: 1;
  padding: 0.1rem 0.24rem;
  background-color: var(--active_color);
  z-index: 11;
}
.server-section1 .innerbox .info .itemlist .botcard .item .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--color_444);
  color: var(--color_666);
  z-index: 10;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: var(--font18);
  padding: 0.7rem;
  overflow: hidden;
  border-radius: 0.1rem;
  flex-direction: column;
}
.server-section1 .innerbox .info .itemlist .botcard .item .desc:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #C4131A;
  border-radius: 0.1rem;
  opacity: 0.5;
}
@media (max-width:1560px) {
  .server-section1 .innerbox {
    width: 82%;
  }
}
@media (max-width:768px) {
  .server-section1 .innerbox .info .itemlist .topcard {
    grid-template-columns: repeat(3, 1fr);
  }
  .server-section1 .innerbox .info .itemlist .botcard {
    margin-top: 1.3rem;
  }
}
@media (max-width:480px) {
  .server-section1 .innerbox .info .itemlist .topcard {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
  .server-section1 .innerbox .info .itemlist .botcard {
    margin-top: 1.3rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .server-section1 .innerbox .info .t1{
      max-width: 100%;
  }
  .server-section1 .innerbox .info .itemlist .topcard .item .title:before{
         height: 59%;
        top: -57%;
        left: 49.5%;
  }
}
.server-section2 {
  padding-top: 1.2rem;
  padding-bottom: 0.99rem;
  background: url("../images/servebg2.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.server-section2 .innerbox {
  width: 59%;
  margin: auto;
  text-align: center;
}
.server-section2 .innerbox .t1 {
  margin: auto;
  margin-top: 0.3rem;
  width: 80%;
  max-width: 900px;
  font-size: var(--font20);
}
.server-section2 .innerbox .image {
  margin-top: 0.7rem;
  height: 6.9rem;
}
.server-section3 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.83rem;
  height: 8.65rem;
  background: url("../images/serve-bg3.jpg") no-repeat;
  background-size: cover !important;
}
.server-section3 .innerbox {
  text-align: center;
}
.server-section3 .innerbox .t1 {
  margin: auto;
  margin-top: 0.3rem;
  max-width: 900px;
  width: 80%;
}
.server-section3 .innerbox .circlebox {
  display: -webkit-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: auto;
  margin-top: 0.7rem;
  background: url("../images/servercircle.png") no-repeat;
  width: 5.75rem;
  height: 3.18rem;
  background-size: contain;
  position: relative;
  text-align: center;
}
.server-section3 .innerbox .circlebox .circle {
  display: -webkit-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.26rem;
  cursor: pointer;
}
.server-section3 .innerbox .circlebox .circle .icon {
  width: 0.54rem;
  height: 0.54rem;
}
.server-section3 .innerbox .circlebox .circle .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.server-section3 .innerbox .circlebox .circle-1 {
  margin-left: -47%;
}
.server-section3 .innerbox .circlebox .c-title {
  position: absolute;
  writing-mode: tb-rl;
  color: #fff;
}
.server-section3 .innerbox .circlebox .circle-2 {
  position: absolute;
  margin-left: 45%;
}
.server-section4 {
  display: -webkit-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;
  background: url("../images/servebg4.png") no-repeat;
  background-size: cover;
  background-color: #f7f7f7;
  height: 5.43rem;
  text-align: center;
  background-attachment: fixed;
  background-size: cover !important;
}
.server-section4 .t1 {
  margin-top: 0.3rem;
  font-size: var(--font20);
  padding: 0 20px;
}
.server-section4 .index-more {
  margin-top: 0.66rem;
}
.culture-section1 {
  padding-top: 1.28rem;
  line-height: 1;
}
.culture-section1 .innerbox .t0 {
  text-align: center;
}
.culture-section1 .innerbox .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 6.8rem;
  overflow: hidden;
  margin-top: 0.74rem;
  background: url("../images/culture-bg.jpg") no-repeat;
  background-size: cover;
  border-radius: 0.25rem;
}
.culture-section1 .innerbox .itemlist .item {
  flex: 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;
  flex-direction: column;
  padding: 0 0.3rem;
  text-align: center;
  border-right: solid 1px rgba(255, 255, 255, 0.1);
}
.culture-section1 .innerbox .itemlist .item .icon {
  width: 0.58rem;
  height: 0.58rem;
}
.culture-section1 .innerbox .itemlist .item .title {
  margin-top: 0.39rem;
}
.culture-section1 .innerbox .itemlist .item .desc {
  margin-top: 0.27rem;
}
.culture-section1 .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(196, 19, 26, 0.1);
}
.culture-section1 .innerbox .itemlist .item:hover .title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #C4131A;
}
@media (max-width:480px) {
  .culture-section1 .innerbox .itemlist {
    display: inline-block;
    width: 100%;
    height: inherit;
    padding: 0.5rem 0;
  }
  .culture-section1 .innerbox .itemlist .item {
    padding: 0.5rem 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
  .culture-section1 .innerbox .itemlist .item:last-child {
    border-bottom: none;
  }
  .server-section2 .innerbox{
      width: 100%;
        padding: 20px;
        
  }
  .server-section2 .innerbox .t1{
       width: 100%;
  }
}
.culture-section2 {
  padding-top: 1.8rem;
  padding-bottom: 1.35rem;
  background: url("../images/culture-bg2.png") no-repeat;
  background-size: cover;
  background-color: #f7f7f7;
}
.culture-section2 .innerbox .itemlist {
  height: 6.8rem;
  margin-top: 0.74rem;
}
.culture-section2 .innerbox .itemlist .item {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
  cursor: pointer;
  padding: 0 0.3rem;
  text-align: center;
  border-right: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
}
.culture-section2 .innerbox .itemlist .item .icon {
  width: 0.58rem;
  height: 0.58rem;
}
.culture-section2 .innerbox .itemlist .item .title {
  margin-top: 0.39rem;
}
.culture-section2 .innerbox .itemlist .item .desc {
  margin-top: 0.27rem;
  min-height: 52px;
}
.culture-section2 .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: -12px -9px 21px 0px rgba(14, 12, 12, 0.03);
}
.culture-section2 .innerbox .grid3 .item:nth-child(1),
.culture-section2 .innerbox .grid3 .item:nth-child(4) {
  border-left: solid 1px #e3e3e3;
}
.culture-section2 .innerbox .grid3 .item:nth-child(4),
.culture-section2 .innerbox .grid3 .item:nth-child(5),
.culture-section2 .innerbox .grid3 .item:nth-child(6) {
  border-bottom: none;
}

.culture-section2 .innerbox .grid4{
    height: 5.8rem;
}
.culture-section2 .innerbox .grid4 .item .title{
    margin-top: 0.2rem;
}
.culture-section2 .innerbox .grid4 .item .desc{
    margin-top: 0.1rem;
}
.culture-section2 .innerbox .grid4 .item:nth-child(5),
.culture-section2 .innerbox .grid4 .item:nth-child(6),
.culture-section2 .innerbox .grid4 .item:nth-child(7),
.culture-section2 .innerbox .grid4 .item:nth-child(8) {
  border-bottom: none;
}


.culture-section2 .innerbox .grid4 .item:nth-child(1),
.culture-section2 .innerbox .grid4 .item:nth-child(5) {
  border-left: solid 1px #e3e3e3;
}

@media (max-width:768px) {
    .culture-section2 .innerbox .grid4{
        grid-template-columns: repeat(3, 1fr);
    }
    .culture-section2 .innerbox .grid4 .item:nth-child(4){
        border-right: none;
        border-bottom: none;
        border-left: solid 1px #e3e3e3;
    }
    
}
@media (max-width:480px) {
  .culture-section2 {
    padding-top: 0;
  }
  .culture-section2 .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
    height: inherit;
  }
  .culture-section2 .innerbox .itemlist .item {
    border-right: none;
    padding: 0.5rem 0;
  }
  .culture-section2 .innerbox .itemlist .item:nth-child(1),
  .culture-section2 .innerbox .itemlist .item:nth-child(4) {
    border-left: none;
  }
  .culture-section2 .innerbox .itemlist .item:nth-child(4),
  .culture-section2 .innerbox .itemlist .item:nth-child(5),
  .culture-section2 .innerbox .itemlist .item:nth-child(6) {
    border-bottom: solid 1px #e3e3e3;
  }
  .culture-section2 .innerbox .grid4 .item:nth-child(5){
        border-left: none;
        
    }
}
.global-banner-section {
  display: -webkit-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;
  height: 5.4rem;
  overflow: hidden;
  padding-top: var(--header-height);
}
.global-banner-section .videobanner {
  width: 100%;
  height: 100%;
}
.global-banner-section .videobanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-banner-section .title {
  position: absolute;
  z-index: 2;
  top: 50%;
  cursor: pointer;
}
.global-banner-section .tabbottom {
  position: absolute;
  width: 100%;
  bottom: 0.07rem;
}
.global-banner-section .tabbottom .itemlist {
  display: -webkit-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: 1.45rem;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.global-banner-section .tabbottom .itemlist .item {
  position: relative;
  color: var(--color_fff);
  padding: 0.2rem 0;
  font-size: var(--font16);
}
.global-banner-section .tabbottom .itemlist .item::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  content: '';
  width: 100%;
  top: 0;
  height: 0.03rem;
}
.global-banner-section .tabbottom .itemlist .item:hover::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--color_fff);
}
.global-banner-section .tabbottom .itemlist .active::before {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--color_fff);
}
@media (max-width:480px) {
  .global-banner-section .tabbottom .itemlist {
    gap: 0.5rem;
  }
}
.global-section1 {
  position: relative;
  padding-top: 1.3rem;
  background-color: #f7f7f7;
}
.global-section1 .innerbox {
  width: 66.67%;
  margin: auto;
}
.global-section1 .innerbox .info {
  text-align: center;
}
.global-section1 .innerbox .info .t1 {
  margin: auto;
  margin-top: 0.3rem;
  max-width: 68%;
  font-size: var(--font18);
}
.global-section1 .mapbox {
  position: relative;
  margin-top: 0.85rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.global-section1 .mapbox .mapInfo {
  width: 80.42%;
  position: relative;
  z-index: 1;
}
.global-section1 .mapbox .map_bg {
  width: 100%;
  height: auto;
}
.global-section1 .mapbox .map_bg img {
  width: 100%;
  height: auto;
}
.global-section1 .mapbox .svgBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.global-section1 .mapbox .svgBox path {
  animation: line1 30s linear infinite;
}
.global-section1 .mapbox .itemlist {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.global-section1 .mapbox .itemlist .item {
  position: absolute;
  width: fit-content;
 
  line-height: 1;
  padding: 0.06rem 0.13rem;
  font-size: var(--font16);
  background-color: var(--color_fff);
  border-radius: 0.14rem;
}
.global-section1 .mapbox .itemlist .on{
    background-color: #c4131a;
    color: #fff;
}
.global-section1 .mapbox .itemlist .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  top: -30%;
  left: -39%;
}
.global-section1 .mapbox .itemlist .item .icon:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #C4131A;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: grow2 5s linear infinite;
}
.global-section1 .mapbox .itemlist .item .icon:after {
  position: absolute;
  content: '';
  width: 40%;
  height: 40%;
  background: #F7F7F7;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: grow3 3s linear infinite;
}
.global-section1 .mapbox .itemlist .item .name {
  font-weight: 500;
  font-size: var(--font14);
}
.global-section1 .mapbox .itemlist .c1 .icon:before,
.global-section1 .mapbox .itemlist .c1 .icon:after {
  display: none;
}

.global-section1 .mapbox .itemlist .bgred{
    background-color: var(--active_color);
}
.global-section1 .mapbox .itemlist .bgred .name{
    color: #fff;
}
@media (max-width:768px) {
  .global-section1 .innerbox .info .t1 {
    max-width: max-content;
  }
  .global-section1 .mapbox .itemlist .item{
      padding: 0;
  }
 
  .global-section1 .mapbox .itemlist .item .name{
      display: none;
  }
}
.global-section2 {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
  z-index: 2;
}
.global-section2 .innerbox {
  margin-top: -18%;
  overflow: hidden;
}
.global-section2 .innerbox .word {
  width: 100%;
  height: auto;
  background-color: var(--color_fff);
}
.global-section2 .innerbox .word .t0 {
  text-align: center;
  padding: 0.23rem 0;
}
.global-section2 .innerbox .word .itemlist {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.global-section2 .innerbox .word .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-top: solid 1px #E4E4E4;
  border-right: solid 1px #E4E4E4;
  height: 1.25rem;
  padding: 0.2rem;
}
.global-section2 .innerbox .word .itemlist .item:nth-child(7n) {
  border-right: none;
}
.global-section2 .innerbox .idxPageHide {
  display: flex;
}
@media (max-width:990px) {
  .global-section2 .innerbox {
    margin-top: -15%;
  }
}
@media (max-width:480px) {
    .global-section1 .innerbox{
        width: 100%;
        padding: 0 20px;
    }
  .global-section2 .innerbox {
    margin-top: -10%;
  }
  .global-section2 .innerbox .word .itemlist {
    grid-template-columns: repeat(5, 1fr);
  }
  .global-section2 .innerbox .word .itemlist .item {
    padding: 0.1rem;
    border: none;
    border-bottom: solid 1px #E4E4E4;
    border-right: solid 1px #E4E4E4;
  }
  .global-section2 .innerbox .word .itemlist .item:nth-child(1),
  .global-section2 .innerbox .word .itemlist .item:nth-child(2),
  .global-section2 .innerbox .word .itemlist .item:nth-child(3),
  .global-section2 .innerbox .word .itemlist .item:nth-child(4),
  .global-section2 .innerbox .word .itemlist .item:nth-child(5) {
    border-top: solid 1px #E4E4E4;
  }
  .global-section2 .innerbox .word .itemlist .item:nth-child(7n) {
    border-right: solid 1px #E4E4E4;
  }
}
.global-section3 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 0.9rem;
  background-color: #f7f7f7;
}
.global-section3 .innerbox {
  overflow: hidden;
}
.global-section3 .innerbox .info {
  text-align: center;
}
.global-section3 .innerbox .info .t0 {
  text-align: center;
  padding: 0.23rem 0;
}
.global-section3 .innerbox .info .t1{
    font-size: var(--font18);
}

.global-section3 .innerbox .itemlist {
  margin-top: 0.5rem;
}
.global-section3 .innerbox .itemlist .rowline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.global-section3 .innerbox .itemlist .rowline .item {
  width: 100%;
  height: 100%;
  position: relative;
  height: 4.79rem;
}
.global-section3 .innerbox .itemlist .rowline .item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.global-section3 .innerbox .itemlist .rowline .item .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-section3 .innerbox .itemlist .rowline .item .image:hover img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.global-section3 .innerbox .itemlist .rowline .item .t1 {
  color: var(--color_fff);
  position: absolute;
  width: 100%;
  bottom: 0.32rem;
  text-align: center;
  font-size: var(--font20);
}
.global-section3 .innerbox .itemlist .r1 .left {
  width: 59%;
}
.global-section3 .innerbox .itemlist .r1 .right {
  width: 41%;
}
.global-section3 .innerbox .itemlist .r2 .left {
  width: 49.5%;
}
.global-section3 .innerbox .itemlist .r2 .right {
  width: 50.5%;
}
@media (max-width:480px) {
  .global-section3 .innerbox .itemlist .rowline {
    display: inline-block;
    width: 100%;
  }
  .global-section3 .innerbox .itemlist .rowline .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .global-section3 .innerbox .itemlist .rowline .right {
    width: 100%;
  }
}
.global-section4 {
  padding-top: 1.35rem;
  padding-bottom: 1.49rem;
  background: url("../images/server-bg.png") no-repeat;
  background-size: cover;
  text-align: center;
}
.global-section4 .itemlist {
  margin-top: 1rem;
}
.global-section4 .itemlist .item .title {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font24);
  position: relative;
}
.global-section4 .itemlist .item .title::after {
  position: absolute;
  content: '';
  width: 0.18rem;
  height: 0.04rem;
  background: #C4131A;
  bottom: -0.22rem;
  left: calc(50% - 0.09rem);
}
.global-section4 .itemlist .item .desc {
  color: var(--color_222);
  font-size: var(--font16);
  margin-top: 0.49rem;
}
@media (max-width:768px) {
  .global-section4 .itemlist {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}
@media (max-width:480px) {
  .global-section4 {
    padding: 0.8rem 0;
  }
  .global-section4 .itemlist {
    margin-top: 0.5rem;
  }
}
.w1500 {
  width: 100%;
  height: auto;
  max-width: 78.125%;
  margin: 0 auto;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F3F3F3;
}
.ins_productCon1 .item_box {
  width: fit-content;
  height: auto;
  position: absolute;
  left: 0.67rem;
  top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.2rem;
}
.ins_productCon1 .item_box .item {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  cursor: pointer;
}
.ins_productCon1 .item_box .item.active {
  color: var(--active_color);
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .ins_title {
  width: 100%;
  height: auto;
  text-align: center;
  max-width: 56.5%;
  margin: 0 auto;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .ins_title .t2 {
  margin-top: 0.15rem;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn {
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .btn {
  flex-shrink: 0;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .list_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 1.2rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .list_box .one {
  font-size: var(--font24);
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .list_box .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0.05rem;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .list_box .one.active {
  color: var(--active_color);
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiperBtn .list_box .one.active::after {
  opacity: 1;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiper_word {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiper_word .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiper_word .word_box .left_box {
  width: 23.5%;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiper_word .word_box .left_box .t2 {
  margin-top: 0.2rem;
  color: #333333;
}
.ins_productCon1 .center_box .swiper_box ul li .centerInfo .swiper_word .word_box .right_box {
  width: 59%;
}
.join-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.join-section .image {
  height: 8.8rem;
  padding-top: var(--header-height);
}
.join-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-section .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;
  position: absolute;
  width: 100%;
  bottom: 0.37rem;
}
.join-section .info .itemlist {
  gap: 0.2rem;
}
.join-section .info .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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 0.1rem;
  padding: 0.35rem 0.36rem;
  background: url("../images/join-f.png") no-repeat;
  background-size: cover;
}
.join-section .info .itemlist .item .left .t0 {
  color: var(--color_222);
  font-weight: 600;
  font-size: var(--font28);
}
.join-section .info .itemlist .item .left .t1 {
  color: var(--color_444);
  color: var(--color_666);
  font-size: var(--font18);
  margin-top: 0.1rem;
}
.join-section .info .itemlist .item .index-more {
  margin-top: inherit;
}
@media (max-width:480px) {
  .join-section .info .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.join-section2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 1.2rem;
  background-color: #f3f3f3;
}
.join-section2 .innerbox {
  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;
  flex-direction: column;
  padding: 0 1.17rem;
  background: url("../images/join-banner2.jpg") no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  height: 5.8rem;
}
.join-section2 .innerbox .icon {
  width: 0.65rem;
  height: 0.65rem;
}
.join-section2 .innerbox .t0 {
  font-weight: 600;
  font-size: var(--font48);
  margin-top: 0.45rem;
}
.join-section2 .innerbox .t1 {
  font-weight: 600;
  color: #C4131A;
  font-size: var(--font24);
  margin-top: 0.25rem;
}
.join-section2 .innerbox .desc {
  color: var(--color_222);
 
  font-size: var(--font20);
    margin-top: 0.48rem;
    line-height: calc(40 / 18);
}
@media (max-width:480px) {
  .join-section2 .innerbox {
    padding: 0 0.5rem;
  }
}
.join-section2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 1.16rem;
  background-color: #f3f3f3;
}
.join-section3 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1.16rem 0;
  background-color: #f3f3f3;
}
.join-section3 .innerbox {
  text-align: center;
}
.join-section3 .innerbox .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.join-section3 .innerbox .t1 {
  color: var(--color_222);
  font-size: var(--font20);
  margin-top: 0.22rem;
}
.join-section3 .innerbox .img {
  margin-top: 0.54rem;
}
.join-section4 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1rem 0;
  background: url("../images/join-banner4.jpg") no-repeat;
  background-size: cover;
  margin-top: 1rem;
}
.join-section4 .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;
}
.join-section4 .innerbox .left .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.join-section4 .innerbox .left .t1 {
  font-weight: 600;
  color: #C4131A;
  font-size: var(--font24);
  margin-top: 0.22rem;
}
.join-section4 .innerbox .left .desc {
  color: var(--color_222);
  font-weight: 500;
  position: relative;
  margin-top: 1.12rem;
  line-height: calc(40/18);
  font-size: var(--font20);
}
.join-section4 .innerbox .left .desc::before {
  position: absolute;
  content: '';
  top: -0.6rem;
  left: 0;
  width: 31px;
  height: 6px;
  background: #C4131A;
}
.join-section4 .innerbox .right {
  text-align: center;
}
.join-section4 .innerbox .right .img {
  margin-top: 0.54rem;
  width: 90%;
}
.join-section4 .innerbox .item {
  flex: 1;
}
@media (max-width:480px) {
  .join-section4 .innerbox {
    display: inline-block;
    width: 100%;
  }
}
.join-section5 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 1.36rem;
  background: url("../images/join-bg5.png") no-repeat;
  background-color: #f3f3f3;
}
.join-section5 .innerbox {
  text-align: center;
}
.join-section5 .innerbox .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}

.join-section5 .innerbox .t1 {
  color: var(--color_222);
  font-size: var(--font20);
  margin-top: 0.22rem;
}
.join-section5 .innerbox .itemlist {
  gap: 1.05rem;
  margin-top: 0.7rem;
}
.join-section5 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex-direction: column;
 
  background: #E6E6E6;
  height: 1.9rem;
  border-radius: 0.1rem;
  text-align: center;
}
.join-section5 .innerbox .itemlist .item .icon {
  width: 0.59rem;
  height: 0.59rem;
}
.join-section5 .innerbox .itemlist .item .title {
  color: var(--color_222);
  font-size: var(--font22);
  margin-top: 0.2rem;
}
.join-section5 .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 30px 10px rgba(196, 19, 26, 0.05);
  transform: translateY(-0.18rem);
}

@media (max-width:768px) {
    .join-section5 .innerbox .itemlist{
        gap: .5rem;
    }
}
@media (max-width:480px) {
  .join-section5 .innerbox .itemlist {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
}
.join-section6 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1rem 0;
  background: url("../images/join-banner6.png") no-repeat;
  background-color: #f3f3f3;
}
.join-section6 .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;
}
.join-section6 .innerbox .itemlist {
  width: 100%;
  height: auto;
}
.join-section6 .innerbox .itemlist .item {
  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;
  width: 100%;
  height: auto;
  margin-bottom: 1.58rem;
}
.join-section6 .innerbox .itemlist .item .info {
  max-width: 6.34rem;
}
.join-section6 .innerbox .itemlist .item .info .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font130);
  background: linear-gradient(180deg, #e5e5e5, rgba(229, 229, 229, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.join-section6 .innerbox .itemlist .item .info .t1 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
  margin-top: 0.22rem;
  line-height: calc(58/48);
  margin-top: -0.7rem;
}
.join-section6 .innerbox .itemlist .item .info .desc {
  color: var(--color_222);
  font-weight: 500;
  position: relative;
  margin-top: 1.12rem;
  max-width: 611px;
  font-size: var(--font20);
}
.join-section6 .innerbox .itemlist .item .info .desc::before {
  position: absolute;
  content: '';
  top: -0.6rem;
  left: 0;
  width: 31px;
  height: 6px;
  background: #C4131A;
}
.join-section6 .innerbox .itemlist .item .image {
  position: relative;
  width: 50%;
  overflow: hidden;
  border-radius: 0.2rem;
}
.join-section6 .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.join-section6 .innerbox .itemlist .item .image:hover img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  scale: 1.05;
}
.join-section6 .innerbox .itemlist .item .image .idxPageHide {
  display: block;
  text-align: center;
}

@media (max-width:768px) {
    .join-section6 .innerbox .itemlist .item{
        flex-direction: column;
        margin-bottom: .5rem;
    }
    .join-section6 .innerbox .itemlist .item .info{
        max-width: inherit;
    }
    .join-section6 .innerbox .itemlist .item .image{
        width: 100%;
        margin-top: .5rem;
        order: 2;
    }
    .join-section6 .innerbox .itemlist .item .image .swiper-slide{
        width: 100%;
    }
    
}

@media (max-width:480px) {
  .join-section6 .innerbox ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .join-section6 .innerbox ul li .info {
    width: 100%;
  }
  .join-section6 .innerbox ul li .image {
    width: 100%;
    margin-top: 0.5rem;
  }
  .join-section6 .innerbox ul .even .info {
    order: 1;
  }
  .join-section6 .innerbox ul .even .image {
    order: 2;
  }
}
.innovate-section {
  display: -webkit-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;
  width: 100%;
  height: 5.4rem;
  padding-top: var(--header-height);
  overflow: hidden;
  background: url("../images/innovate-banner.jpg") no-repeat;
  background-size: cover;
}
.innovate-section .info {
  color: var(--color_fff);
  text-align: center;
}
.innovate-section .info .t0 {
  font-weight: 600;
  font-size: var(--font46);
}
.innovate-section .info .itemlist {
  gap: 0.32rem;
  margin-top: 0.3rem;
}
.innovate-section .info .itemlist .item {
  color: var(--color_fff);
  text-align: center;
  line-height: 1;
  padding: 0.12rem 0.25rem;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: solid 1px rgba(255, 255, 255, 0.4);
  font-size: var(--font18);
  cursor: context-menu;
}
.innovate-section2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: url("../images/innovate-bg7.png") no-repeat;
  background-size: cover;
}
.innovate-section2 .innerbox {
  text-align: center;
}
.innovate-section2 .innerbox .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.innovate-section2 .innerbox .t1 {
  color: var(--color_444);
  color: var(--color_666);
  font-size: var(--font18);
  margin-top: 0.22rem;
}
.innovate-section2 .innerbox .itemlist {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.59rem;
}
.innovate-section2 .innerbox .itemlist .item {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  flex: 1;
  background: #FFFFFF;
  box-shadow: 2px 3px 87px 0px rgba(240, 241, 253, 0.91);
  border-radius: 20px;
  padding: 1rem 0.2rem 0.6rem 0.2rem;
  text-align: center;
  height: 5rem;
  min-height: 400px;
  cursor: pointer;
  transition: width 0.3s ease-in-out;
  min-width: 120px;
}
.innovate-section2 .innerbox .itemlist .item .image {
  border-radius: 0.1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.innovate-section2 .innerbox .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.1rem;
}
.innovate-section2 .innerbox .itemlist .item .info .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.65rem;
  height: 0.65rem;
  margin: auto;
}
.innovate-section2 .innerbox .itemlist .item .info .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.innovate-section2 .innerbox .itemlist .item .info .name {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font24);
  margin-top: 0.4rem;
  text-align: center;
}
.innovate-section2 .innerbox .itemlist .item .info .descall {
  font-size: var(--font18);
  display: none;
  margin-top: 0.3rem;
}
.innovate-section2 .innerbox .itemlist .item .info .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;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  bottom: 0.6rem;
  border-radius: 50%;
  border: 1px solid #c2c2c2;
  left: 50%;
  transform: translateX(-50%);
}
.innovate-section2 .innerbox .itemlist .item .info .more:before {
  position: absolute;
  content: '';
  width: 12px;
  height: 2px;
  background-color: #c2c2c2;
  transition: all 0.5s ease-in-out;
}
.innovate-section2 .innerbox .itemlist .item .info .more:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  background-color: #c2c2c2;
  transition: all 0.5s ease-in-out;
}
.innovate-section2 .innerbox .itemlist .active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex: 3;
}
.innovate-section2 .innerbox .itemlist .active .image {
  opacity: 1;
  border-radius: 0.1rem;
}
.innovate-section2 .innerbox .itemlist .active .info {
  position: relative;
  height: 100%;
  z-index: 2;
}
.innovate-section2 .innerbox .itemlist .active .info .icon {
  filter: brightness(0) invert(1);
}
.innovate-section2 .innerbox .itemlist .active .info .name {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
  margin-top: 0.46rem;
}
.innovate-section2 .innerbox .itemlist .active .info .descall {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--color_fff);
  display: inline-block;
}
.innovate-section2 .innerbox .itemlist .active .info .more {
  bottom: 0;
}
.innovate-section2 .innerbox .itemlist .active .info .more:after {
  display: none;
}
@media (max-width:480px) {
  .innovate-section2 .innerbox .itemlist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .innovate-section2 .innerbox .itemlist .item {
    width: 100%;
    min-height: inherit;
  }
  .innovate-section2 .innerbox .itemlist .active {
    padding: 0.3rem;
  }
  .innovate-section2 .innerbox .itemlist .active .info .name {
    margin-top: 0.2rem;
  }
}
.innovate-section3 {
  width: 100%;
  height: 8.24rem;
  padding: 1.2rem 0;
  background: url("../images/innovate-bg3.jpg") no-repeat;
  background-size: cover;
}
.innovate-section3 .innerbox {
  text-align: center;
}
.innovate-section3 .innerbox .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.innovate-section3 .innerbox .t1 {
  color: var(--color_222);
  font-size: var(--font1888);
  margin-top: 0.3rem;
}
.innovate-section4 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 1.2rem;
  background: url("../images/innovate-bg4.jpg") no-repeat;
  background-size: cover;
  overflow: hidden;
}
.innovate-section4 .innerbox {
  text-align: center;
  width: 63%;
  margin: auto;
}
.innovate-section4 .innerbox .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.innovate-section4 .innerbox .t1 {
  color: var(--color_444);
  color: var(--color_666);
  font-size: var(--font188);
  margin-top: 0.3rem;
}
.innovate-section4 .info {
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
  height: 7.12rem;
}
.innovate-section4 .info .image {
  width: 100%;
  height: 100%;
}
.innovate-section4 .info .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.innovate-section4 .info .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 0.285rem 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border-top: solid 1px rgba(0, 0, 0, 0.46);
}
.innovate-section4 .info .itemlist .item {
  flex: 1;
  text-align: center;
}
.innovate-section4 .info .itemlist .item .num {
  font-weight: 600;
  color: #C4131A;
  font-size: var(--font42);
  line-height: 1;
}
.innovate-section4 .info .itemlist .item .title {
  color: var(--color_444);
  color: var(--color_666);
  font-size: var(--font16);
  margin-top: 0.15rem;
}
@media (max-width:480px) {
  .innovate-section4 {
    padding-top: 0.8rem;
  }
  .innovate-section4 .innerbox {
    width: 100%;
  }
  .innovate-section4 .info .itemlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
}
.innovate-section5 {
  width: 100%;
  height: 9.7rem;
  padding-top: 1.2rem;
  background: url("../images/innovate-bg5.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.innovate-section5 .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.innovate-section5 .innerbox .left {
  position: sticky;
  top: 2rem;
  height: 100%;
  width: 25%;
}
.innovate-section5 .innerbox .left .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.innovate-section5 .innerbox .left .t1 {
  color: var(--color_444);
  color: var(--color_666);
  font-size: var(--font18);
  margin-top: 0.3rem;
}
.innovate-section5 .innerbox .right {
  width: 75%;
  padding-left: 2rem;
}
.innovate-section5 .innerbox .right .itemlist {
  width: 100%;
  gap: 0.7rem;
}
.innovate-section5 .innerbox .right .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 3.36rem;
  background: #F1F1F1;
  background: url("../images/orderbg.png") no-repeat;
  background-size: cover;
}
.innovate-section5 .innerbox .right .itemlist .item .year {
  color: #C4131A;
  font-size: var(--font18);
}
.innovate-section5 .innerbox .right .itemlist .item .title {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font24);
  margin-top: 0.2rem;
  text-align: center;
}
.innovate-section5 .innerbox .right .itemlist .item .t0 {
  color: var(--color_999);
  position: absolute;
  width: 100%;
  bottom: 0.26rem;
  text-align: center;
}
.innovate-section5 .innerbox .right .itemlist .item:nth-child(2n) {
  transform: translateY(1.6rem);
}
@media (max-width:480px) {
  .innovate-section5 {
    padding-top: 0.8rem;
  }
  .innovate-section5 .innerbox {
    display: inline-block;
  }
  .innovate-section5 .innerbox .left {
    width: 100%;
    position: relative;
    top: inherit;
  }
  .innovate-section5 .innerbox .right {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.innovate-section6 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.42rem;
  background: #ECECEC;
}
.innovate-section6 .innerbox {
  text-align: center;
}
.innovate-section6 .innerbox .top {
  display: -webkit-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;
  z-index: 1;
}
.innovate-section6 .innerbox .top .t0 {
  font-weight: 600;
  color: var(--color_222);
  font-size: var(--font48);
}
.innovate-section6 .innerbox .top .page-navigation {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: auto;
  gap: 0.3rem;
  transform: inherit;
  right: 0;
  top: inherit;
}
.innovate-section6 .innerbox .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: var(--color_fff);
  height: 6.19rem;
  min-height: 480px;
  margin-top: 0.55rem;
  overflow: hidden;
  background: url("../images/innovate-img3.jpg") no-repeat;
  background-size: cover;
}
.innovate-section6 .innerbox .itemlist .item {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-right: solid 1px rgba(255, 255, 255, 0.16);
  padding: 0 0.52rem;
}
.innovate-section6 .innerbox .itemlist .item .num {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  font-size: var(--font90);
  line-height: 38px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  opacity: 0.1;
  padding-top: 0.95rem;
}
.innovate-section6 .innerbox .itemlist .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: auto;
  margin-top: 1.29rem;
  width: 0.56rem;
  height: 0.56rem;
}
.innovate-section6 .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.innovate-section6 .innerbox .itemlist .item .t0 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  font-size: var(--font26);
  margin-top: 0.27rem;
}
.innovate-section6 .innerbox .itemlist .item .t1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: var(--font16);
  margin-top: 0.27rem;
  line-height: calc(28/16);
  display: none;
}
.innovate-section6 .innerbox .itemlist .item .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;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  min-width: 28px;
  min-height: 28px;
  bottom: 0.6rem;
  border-radius: 50%;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}
.innovate-section6 .innerbox .itemlist .item .more:before {
  position: absolute;
  content: '';
  width: 12px;
  height: 2px;
  background-color: var(--active_color);
  transition: all 0.5s ease-in-out;
}
.innovate-section6 .innerbox .itemlist .item .more:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  background-color: var(--active_color);
  transition: all 0.5s ease-in-out;
}
.innovate-section6 .innerbox .itemlist .swiper-wrapper {
  width: 100%;
  /* 或者其他宽度 */
  height: 100%;
  /* 示例高度 */
}
.innovate-section6 .innerbox .itemlist .swiper-slide {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  width: 20% !important;
}
.innovate-section6 .innerbox .itemlist .on {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 40% !important;
}
.innovate-section6 .innerbox .itemlist .on .item .icon {
  margin-top: 0;
}
.innovate-section6 .innerbox .itemlist .on .item .num {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #C4131A;
  font-size: var(--font130);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0);
}
.innovate-section6 .innerbox .itemlist .on .item .t1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
}
.innovate-section6 .innerbox .itemlist .on .item .more:after {
  display: none;
}
/*.product-section-normal .innerbox .swipercontent .swipertitle .t-list .tabbox .t_name.swiper-slide-active .item { color: #C4131A; }*/
/*.product-section-normal .innerbox .swipercontent .swipertitle .t-list .tabbox .t_name.swiper-slide-active .item::afte { background: #C4131A; }*/

