@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #000;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
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;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #09FF13;
  --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;
  --color1: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.2);
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
  --font68: 0.68rem;
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
.font68 {
  font-size: var(--font68);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.CoFF {
  color: var(--color_fff);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "vivoSan";
  src: url("../fonts/vivoSansENVF.ttf");
}
@font-face {
  font-family: "AlumniSans";
  src: url("../fonts/AlumniSans-Medium.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Demi";
  src: url("../fonts/AVANTGARDEITCBYBT-DEMI.OTF");
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.22rem;
  --header-height2: 0.85rem;
  font-size: var(--font16);
  color: #333333;
  font-family: "vivoSan";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background: linear-gradient(127deg, #FFF 19.08%, #00AB72 177.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 0.38rem;
    height: 0.29rem;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.16rem;
}
.idxPageShow span {
  width: 0.38rem;
  height: 0.29rem;
  background-image: url(../images/bg4.png);
  background-size: 100% 100%;
  opacity: 1;
  border-radius: 0;
  background-color: unset;
}
.idxPageShow .swiper-pagination-bullet-active {
  background-image: url(../images/bg3.png);
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: var(--active_color) #d4d6d700;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.idx_homeCon20 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.idx_homeCon20 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon20 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.idx_homeCon20 .center_box .idx_title .t1 {
  font-weight: 800;
}
/* --------------------------------------------------------------- 新增公共组件 */
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  padding: 0.16rem 0.4rem;
  border: 1px solid #FFFFFF99;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background: var(--active_color);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.idx_more .more:hover {
  color: #000;
  border-color: var(--active_color);
}
.idx_more .more:hover img {
  filter: brightness(0) invert(0);
}
.idx_more .more:hover::after {
  height: 100%;
  top: 0;
}
.idx_more2 {
  width: 100%;
  height: auto;
}
.idx_more2 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #999999;
}
.idx_more2 .more img {
  filter: brightness(0) invert(0.5);
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 700;
}
@keyframes color1 {
  0% {
    color: #ffffff1A;
  }
  50% {
    color: #09FF13;
  }
  100% {
    opacity: 1;
    color: #FFF;
  }
}
@keyframes color2 {
  0% {
    color: #ffffff1A;
  }
  50% {
    color: #09FF13;
  }
  100% {
    opacity: 1;
    color: #999;
  }
}
.wowFg {
  overflow: hidden;
}
.wowFg span {
  display: inline-block;
  color: #ffffff1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wowFg.active span {
  animation: color1 0.5s forwards;
}
.wowFg.gray.active span {
  animation: color2 0.5s forwards;
}
.wowFgT.active span {
  animation: color1 0.5s forwards;
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 2.9rem 0.68rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 300;
  width: fit-content;
  padding: 0.17rem 0.15rem;
  padding-bottom: 0.08rem;
  color: #000;
  font-weight: 700;
  background-image: url(../images/bg2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t2 {
  width: fit-content;
  margin-top: 0.4rem;
  font-weight: 800;
  background: linear-gradient(127deg, #FFF 19.08%, #00AB72 177.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t3 {
  font-weight: 300;
  margin-top: 0.16rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .banner_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .banner_img img,
.idx_homeCon1 .swiper_box ul li .centerInfo .banner_img video {
  transform: scale(1.2);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.idx_homeCon1 .swiper_box ul li.swiper-slide-active .centerInfo .banner_img img,
.idx_homeCon1 .swiper_box ul li.swiper-slide-active .centerInfo .banner_img video {
  transform: scale(1);
}
.idx_homeCon1 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.53rem;
  z-index: 5;
  left: 0;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .images_box .icon {
  width: 0.8rem;
  position: absolute;
  z-index: 5;
  cursor: pointer;
}
.idx_homeCon2 .center_box .images_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .images_box .img img,
.idx_homeCon2 .center_box .images_box .img video {
  width: 100%;
  height: auto;
}
@media (max-width:480px) {
  .idx_homeCon2 {
    padding: 0.32rem;
  }
  .idx_homeCon2 .img img {
    border-radius: 0.08rem;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.16rem;
}
@media (max-width:480px) {
  .idx_homeCon3 {
    padding: 0 0.32rem;
  }
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
}
.idx_homeCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(162deg, #0D0D0D 36.41%, #1B2129 92.16%);
}
.idx_homeCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0.64rem;
  padding-bottom: 0;
}
.idx_homeCon3 .center_box .item_box .item .word .t2 {
  margin-top: 0.12rem;
  font-weight: 700;
}
.idx_homeCon3 .center_box .item_box .item .word .t3 {
  margin-top: 0.12rem;
}
.idx_homeCon3 .center_box .item_box .item .word .idx_more {
  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.32rem;
}
.idx_homeCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 54%;
}
.idx_homeCon3 .center_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width:480px) {
  .idx_homeCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  mask-image: url(../images/bg5_a.png);
  mask-position: bottom left;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/bg5_a.png);
  -webkit-mask-position: bottom left;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  background: #000;
}
.idx_homeCon4 .center_box .mask_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  mask-image: url(../images/bg5.png);
  mask-position: bottom left;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/bg5.png);
  -webkit-mask-position: bottom left;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  background: #000;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .mask_box .icon_box {
  width: 0.8rem;
  cursor: pointer;
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.idx_homeCon4 .center_box .mask_box .img {
  width: 100%;
  height: 100vh;
  max-height: 10.62rem;
}
.idx_homeCon4 .center_box .mask_box .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .content {
  width: 66%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0.16rem;
  z-index: 5;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_homeCon4 .center_box .content .colog_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  mask-image: url(../images/bg8.png);
  mask-position: bottom left;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/bg8.png);
  -webkit-mask-position: bottom left;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  background: linear-gradient(192deg, #09FF13 3.72%, #000 92.45%);
  /*backdrop-filter: blur(24px);*/
}
.idx_homeCon4 .center_box .content .imgBg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 3.52rem;
  pointer-events: none;
}
.idx_homeCon4 .center_box .content .word_box {
  width: 46.5%;
  bottom: 1.4rem;
  position: relative;
  z-index: 3;
  right: 0.8rem;
}
.idx_homeCon4 .center_box .content .word_box .icon {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .content .word_box .icon .t1 {
  margin-top: 0.16rem;
  font-weight: 700;
}
.idx_homeCon4 .center_box .content .word_box .icon .idx_more {
  margin-top: 0.39rem;
}
.idx_homeCon4 .center_box .content .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 1.12rem;
}
.idx_homeCon4 .center_box .content .word_box .word .t1 {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  line-height: 1.75;
}
.idx_homeCon4 .center_box .content .word_box .word .t2 {
  color: var(--active_color);
  font-weight: 700;
  margin-top: 0.16rem;
}
.idx_homeCon4 .bg_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(2px);
}
.idx_homeCon4 .bg_box .img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.idx_homeCon4 .bg_box .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .bg_box .img_bg {
  width: 123.4%;
  position: absolute;
  transform: translateY(-0.6rem);
  pointer-events: none;
}
.idx_homeCon4 .bg_box .img_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:480px) {
  .idx_homeCon4 .center_box {
    width: 100%;
    height: auto;
    mask-image: unset;
    padding: 0.32rem;
    background: none;
  }
  .idx_homeCon4 .center_box .mask_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    mask-image: unset;
  }
  .idx_homeCon4 .center_box .mask_box .img {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .center_box .mask_box .img img {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .center_box .mask_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 1rem 0.4rem;
    right: 0;
  }
  .idx_homeCon4 .center_box .mask_box .content .colog_bg {
    mask-image: unset;
  }
  .idx_homeCon4 .center_box .mask_box .content .word_box {
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
  }
  .idx_homeCon4 .center_box .mask_box .icon_box {
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(50%);
    top: auto;
    bottom: 2rem;
  }
  .idx_homeCon4 .bg_box {
    display: none;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -moz-backdrop-filter: blur(12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon5 .kol-con3 .content-title h1 {
  font-size: var(--font56);
}
@media (max-width:480px) {
  .idx_homeCon5 .kol-con3 .content-title h1 {
    font-size: var(--font40);
  }
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
  padding: 0 0.64rem;
}
.idx_homeCon5 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon5 .center_box .top_info .idx_title {
  width: fit-content;
}
.idx_homeCon5 .center_box .top_info .idx_more {
  width: fit-content;
}
@media (max-width:480px) {
  .idx_homeCon5 .center_box .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
.idx_homeCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.89rem;
  gap: 0.16rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.idx_homeCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF 24.05%, #999 170.27%);
}
.idx_homeCon5 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.48rem 0.32rem;
  padding-bottom: 0;
}
.idx_homeCon5 .center_box .item_box .item .word .icon {
  font-weight: 300;
  width: fit-content;
  padding: 0.06rem 0.18rem;
  padding-top: 0.08rem;
  color: #000;
  font-size: var(--font14);
  font-weight: 400;
  background: #EEEEEE;
  mask-image: url(../images/bg9.png);
  mask-position: bottom left;
  mask-size: 100% 100%;
  -webkit-mask-image: url(../images/bg9.png);
  -webkit-mask-position: bottom left;
  -webkit-mask-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .item_box .item .word .t1 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon5 .center_box .item_box .item .word .idx_more2 .font,
.idx_homeCon5 .center_box .item_box .item .word .idx_more2 img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .item_box .item .word .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  font-family: "AlumniSans";
  color: #999999;
}
.idx_homeCon5 .center_box .item_box .item .word .number .day {
  width: fit-content;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .item_box .item .word .number .mounth {
  line-height: 1;
}
.idx_homeCon5 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  mask-image: url(../images/bg10.png);
  mask-position: bottom left;
  mask-size: 100% 100%;
  -webkit-mask-image: url(../images/bg10.png);
  -webkit-mask-position: bottom left;
  -webkit-mask-size: 100% 100%;
  border-radius: 8px;
  overflow: hidden;
}
.idx_homeCon5 .center_box .item_box .item .img .pb {
  padding-bottom: 59.86%;
}
.idx_homeCon5 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .item_box .item:hover .word .icon {
  background: var(--active_color);
}
.idx_homeCon5 .center_box .item_box .item:hover .word .t1 {
  text-decoration: underline;
  color: #000;
}
.idx_homeCon5 .center_box .item_box .item:hover .word .idx_more2 .more .font {
  text-decoration: underline;
  color: #000;
}
.idx_homeCon5 .center_box .item_box .item:hover .word .idx_more2 .more img {
  filter: brightness(0) invert(0);
}
.idx_homeCon5 .center_box .item_box .item:hover .word .number .day {
  color: #000;
}
.idx_homeCon5 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
@media (max-width:480px) {
  .idx_homeCon5 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:480px) {
  .idx_homeCon5 .center_box {
    padding: 0 0.16rem;
  }
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.16rem;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.16rem;
  padding-top: 0.63rem;
}
.idx_homeCon6 .center_box .content {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  text-align: center;
}
.idx_homeCon6 .center_box .content .t2 {
  margin-top: 0.12rem;
  font-weight: 700;
}
.idx_homeCon6 .center_box .content .t3 {
  margin-top: 0.12rem;
}
.idx_homeCon6 .center_box .content .idx_more {
  margin-top: 0.32rem;
  display: -webkit-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;
}
.MaxUnset img {
  max-width: unset;
  max-height: unset;
}
.CoverImg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ContainImg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.borderLine {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
}
.FullTag {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.BreakAll {
  white-space: pre-line;
  word-break: break-all;
}
.row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.bottomIn {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.bottomIn.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
@keyframes TranslateIn {
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.ClearPosition {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
}
@media (max-width:480px) {
  .showForPC {
    display: none;
  }
}
@media (min-width: 481px) {
  .showForM {
    display: none;
  }
}
.scrollBox {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 95%, rgba(0, 0, 0, 0) 100%);
}
.scrollBox.start {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 5%, black 95%, rgba(0, 0, 0, 0) 100%);
}
.hoverBtn {
  position: relative;
  color: var(--color1);
}
.hoverBtn * {
  z-index: 1;
}
.hoverBtn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background: var(--active_color);
  top: auto;
  bottom: 0;
  left: 0;
  transition: height 0.3s;
  z-index: 0;
}
.hoverBtn:hover {
  color: #000;
  border-color: var(--active_color);
}
.hoverBtn:hover img,
.hoverBtn:hover svg {
  filter: brightness(0) invert(0);
}
.hoverBtn:hover::after {
  height: 100%;
  top: 0;
  bottom: auto;
}
.Coac .write {
  animation: none!important;
  color: var(--active_color) !important;
}
.search_for {
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
  padding: 0.64rem 0;
}
.search_for::after {
  display: none;
}
.search_for::before {
  display: none;
}
.search_for .search_in {
  width: 56%;
}
.search_for .search_in .inputBox {
  gap: 0.12rem;
}
.search_for .search_in .inputBox input {
  height: 0.56rem;
  font-size: var(--font16);
}
.search_for .search_in .inputBox button {
  padding: 0 0.4rem;
  height: 0.56rem;
  gap: 0.12rem;
  color: #000;
}
.search_for .search_in .inputBox button i {
  font-size: var(--font20);
  color: #000;
}
.search_for .search_in .inputBox button span {
  transform: translateY(-0.1em);
}
.search_for .search_in .search {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}
.search_for .search_in .search .list {
  gap: 0.12rem 0.6rem;
}
.search_for .search_in .search .list .one {
  font-size: var(--font16);
  color: #666;
}
.search_for .search_in .search .list .one:hover {
  color: #ffffff;
  text-decoration: underline;
}
.search_for .close_box {
  width: fit-content;
  height: auto;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
}
.search_for .close_box i {
  font-size: var(--font20);
  color: #fff;
}
.search_for .close_box:hover {
  color: var(--active_color);
}
.search_for.active {
  opacity: 1;
  visibility: visible;
}
header {
  padding: 0;
  z-index: 999;
}
header .level3 .child {
  position: absolute;
  left: 100%;
  top: 0;
  height: auto;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
}
header .level3 .child:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: rgba(0, 0, 0, 0.5);
}
header .level3 .child:before img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.active .header_box .bgBox,
header:hover .header_box .bgBox,
header.slideDown .header_box .bgBox {
  width: 100%;
}
header.active .header_box .bgBox:after,
header:hover .header_box .bgBox:after,
header.slideDown .header_box .bgBox:after {
  display: none;
}
header.active .header_box .menu_btn,
header:hover .header_box .menu_btn,
header.slideDown .header_box .menu_btn {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
header .searchBox {
  width: 100%;
  display: none;
}
header .slideBox {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  display: none;
}
header .productBox {
  height: calc(var(--wHeight, 100vh) - 1.22rem);
  display: none;
}
header .productBox .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
header .productBox .tabTitle {
  width: calc(2.82rem + 1px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.64rem;
  padding-top: 0.64rem;
  line-height: 1;
  position: relative;
  height: 100%;
}
header .productBox .tabTitle .item {
  width: fit-content;
  font-size: var(--font32);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0.1rem 0;
  position: relative;
  margin-bottom: 1em;
}
header .productBox .tabTitle .item a {
  color: rgba(255, 255, 255, 0.6);
}
header .productBox .tabTitle .item:hover,
header .productBox .tabTitle .item.active {
  color: #ffffff;
  font-weight: 700;
}
header .productBox .tabTitle .item:hover a,
header .productBox .tabTitle .item.active a {
  color: #fff;
}
header .productBox .tabTitle .item:hover:after,
header .productBox .tabTitle .item.active:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.04rem;
  background: var(--active_color);
  content: '';
  z-index: -1;
}
header .productBox .tabList {
  flex: 1;
  height: 100%;
}
header .productBox .tabList .tab {
  width: 100%;
  height: 100%;
}
header .productBox .product-list {
  margin: 0;
  padding: 0.64rem 0.8rem 0;
  height: 100%;
}
header .productBox .product-list .list-box {
  padding: 0;
  height: 100%;
  overflow-y: auto;
}
header .productBox .product-list .list-box .item {
  width: calc(calc(100% - 0.86rem - 0.32rem) / 3);
}
header .productBox .product-list .list-box .item:last-child {
  margin-bottom: 0.64rem;
}
header .navMap {
  height: calc(var(--wHeight, 100vh) - var(--header-height, 1.22rem));
  padding: 0.64rem;
  display: none;
}
header .navMap .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
header .navMap .image {
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  height: auto;
  max-height: 100%;
}
header .navMap .image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
header .navMap .item_box {
  width: 7.1rem;
  margin-left: 0.8rem;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
header .navMap .item_box .item {
  border-top: 1px solid;
  padding: 0.12rem 0 0.32rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .navMap .item_box .item:hover .title,
header .navMap .item_box .item.active .title {
  color: #ffffff;
}
header .navMap .item_box .title {
  color: rgba(255, 255, 255, 0.4);
  width: 2.6rem;
  margin-right: 0.3rem;
  font-size: var(--font40);
  font-weight: 650;
  line-height: 110%;
  /* 44px */
}
header .navMap .item_box .list {
  min-width: 1.6rem;
  margin-right: 0.3rem;
}
header .navMap .item_box .one,
header .navMap .item_box .two,
header .navMap .item_box .three {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font20);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .navMap .item_box .one:hover,
header .navMap .item_box .two:hover,
header .navMap .item_box .three:hover,
header .navMap .item_box .one.active,
header .navMap .item_box .two.active,
header .navMap .item_box .three.active {
  color: var(--active_color);
  text-decoration: underline;
}
header .navMap .item_box .one .icon,
header .navMap .item_box .two .icon,
header .navMap .item_box .three .icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 0.12rem;
  background: transparent url("../images/icon9.png") center center no-repeat;
  background-size: 100% auto;
}
header .navMap .item_box .three {
  font-size: var(--font16);
  line-height: 1.75;
  color: #666;
}
header .navMap .item_box .tabList {
  flex: 1;
}
header .header_box {
  height: auto;
  position: relative;
  width: calc(var(--wWidth, 100vw) - 0.32rem);
  margin-left: 0.16rem;
}
header .header_box .container_hed {
  width: 100%;
  padding: 0;
}
header .header_box .bgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.02rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(24px);
}
header .header_box .bgBox:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  height: calc(100% - 0.15vw);
}
header .header_box .bgBox .top {
  width: 100%;
  height: calc(calc(var(--wWidth, 100vw) - 0.32rem) * 0.01);
  background: transparent url("../images/header-top.png") left top no-repeat;
  background-size: calc(var(--wWidth, 100vw) - 0.32rem) auto;
}
header .header_box .bgBox .center {
  flex: 1;
  width: 100%;
  background: transparent url("../images/header-center.png") left top repeat-y;
  background-size: calc(var(--wWidth, 100vw) - 0.32rem) auto;
}
header .header_box .bgBox .bottom {
  height: calc(calc(var(--wWidth, 100vw) - 0.32rem) * 0.01);
  width: 100%;
  background: transparent url("../images/header-bottom.png") left bottom no-repeat;
  background-size: calc(var(--wWidth, 100vw) - 0.32rem) auto;
}
header .header_box .menu_btn {
  overflow: hidden;
  cursor: pointer;
  width: 1.2rem;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .header_box .menu_btn .icon {
  width: 100%;
  height: 100%;
  position: relative;
}
header .header_box .menu_btn .icon::after,
header .header_box .menu_btn .icon::before,
header .header_box .menu_btn .icon i {
  width: 0.24rem;
  height: 1px;
  display: block;
  background: #666666;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.01rem 0 0 -0.08rem;
  transform-origin: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .menu_btn .icon::before {
  content: '';
  margin-top: -0.04rem;
}
header .header_box .menu_btn .icon::after {
  content: '';
  margin-top: 6px;
}
header .header_box .menu_btn.active .icon i {
  opacity: 0;
}
header .header_box .menu_btn.active .icon::before {
  margin-top: -1px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 5px;
  background: var(--active_color);
}
header .header_box .menu_btn.active .icon::after {
  margin-top: -1px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--active_color);
}
header .header_box .center_box {
  height: 0.9rem;
  margin-top: 0.16rem;
  align-items: flex-start;
  z-index: 3;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box:before,
header .header_box .center_box:after {
  display: none;
}
header .header_box .center_box .column_left {
  gap: 0;
}
header .header_box .center_box .column_left .img_bg {
  display: none;
}
header .header_box .center_box .column_left .logo_box {
  width: auto;
  flex: 1;
}
header .header_box .column_center {
  height: 100%;
}
header .header_box .column_center .item_box .item {
  position: relative;
}
header .header_box .column_center .item_box .item:hover,
header .header_box .column_center .item_box .item.active {
  color: var(--active_color);
}
header .header_box .column_center .item_box .item:hover a:after,
header .header_box .column_center .item_box .item.active a:after {
  width: 0.6rem;
}
header .header_box .column_center .item_box .item:hover .Secondary_Navigation,
header .header_box .column_center .item_box .item.active .Secondary_Navigation {
  opacity: 1;
  visibility: visible;
}
header .header_box .column_center .item_box .item .one {
  height: 100%;
  font-size: var(--font18);
}
header .header_box .column_center .item_box .item .one:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.02rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  height: 0.15rem;
  background: transparent url("../images/product-hover.png") bottom center no-repeat;
  background-size: auto 100%;
}
header .header_box .column_center .item_box .item .Secondary_Navigation {
  top: 100%;
  background: none;
  width: max-content;
  padding-top: 0.08rem;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox {
  overflow: visible;
  position: relative;
  padding: 0.28rem 0.32rem 0.2rem;
  min-width: 1.5rem;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  width: 0.12rem;
  height: 0.12rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  transform: rotate(45deg);
  border-right: none;
  border-bottom: none;
  z-index: 2;
  -webkit-mask: url("../images/mask-2.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 100%;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  top: 0.05rem;
  height: calc(100% - 0.06rem);
  content: '';
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  border-radius: 8px;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox:after img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox .tOne {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
  font-size: var(--font18);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1;
  margin: 0.1rem 0;
  width: fit-content;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox .tOne:hover,
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox .tOne.active {
  color: #ffffff;
  font-weight: 700;
}
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox .tOne:hover:after,
header .header_box .column_center .item_box .item .Secondary_Navigation .navBox .tOne.active:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.04rem;
  background: var(--active_color);
  content: '';
  z-index: -1;
}
header .header_box .column_center .item_box .item .Secondary_Navigation.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
footer .one_box .tow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
footer .one_box .icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 0.12rem;
  background: transparent url("../images/icon9.png") center center no-repeat;
  background-size: 100% auto;
}
footer .one_box.active .icon {
  background: transparent url("../images/icon10.png") center center no-repeat;
  background-size: 100% auto;
}
@media (max-width:480px) {
  footer {
    padding-top: 0.16rem;
  }
  footer .center_box {
    border-radius: 0.08rem;
  }
}
.w1792 {
  width: 100%;
  margin: 0 auto;
  max-width: 17.92rem;
  position: relative;
}
.p160 {
  padding: 1.6rem 0;
}
@media (max-width:480px) {
  .w1792 {
    width: calc(100% - 0.64rem);
  }
  .popup_iframe .images .video iframe {
    height: auto;
    min-height: unset;
    max-height: 80%;
  }
}
.fontP {
  white-space: pre-line;
  word-break: break-all;
  color: #666;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.3125;
}
.write {
  display: inline-block;
}
.page-path {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: var(--font18);
}
.page-path .icon {
  width: 0.2rem;
  margin-right: 0.24rem;
}
.page-path a {
  color: var(--color1);
  font-weight: 400;
}
.page-path a:after {
  display: inline-block;
  margin: 0 0.08rem;
  content: '>';
}
.page-path span {
  color: var(--active_color);
}
.page-path span .write {
  animation: none!important;
  color: var(--active_color) !important;
}
@media (max-width:480px) {
  .page-path {
    margin-bottom: 0.2rem;
  }
}
.topBanner {
  width: 100%;
  position: relative;
}
.topBanner .write {
  opacity: 1;
  color: #ffffff1A;
  filter: none;
  transform: none;
}
.topBanner.ready .title h1 .write {
  animation: color1 0.5s forwards;
}
.topBanner.ready .title p:nth-child(2) {
  animation-delay: 1;
}
.topBanner.ready .title p:nth-child(3) {
  animation-delay: 1.2;
}
.topBanner.ready .title p:nth-child(4) {
  animation-delay: 1.4;
}
.topBanner.ready .title p:nth-child(5) {
  animation-delay: 1.6;
}
.topBanner .banner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.topBanner .banner img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.topBanner .banner:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0.08rem;
  width: 100%;
  height: 100%;
  background: transparent url("../images/Group 236.png") 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
  display: none;
}
.topBanner .banner:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../images/Group 237.png") left bottom no-repeat;
  background-size: 100% auto;
  z-index: 1;
  pointer-events: none;
  bottom: -1.68rem;
  display: none;
}
.topBanner .word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-left: 0.64rem;
  z-index: 3;
}
.topBanner .word img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.topBanner .title {
  word-break: break-all;
  white-space: pre-line;
  text-align: left;
}
.topBanner .title h1 {
  font-size: var(--font56);
  line-height: 1.17857143;
}
.topBanner .title .active {
  color: var(--active_color);
}
.topBanner .title p {
  font-size: var(--font24);
  color: #ffffff1f;
  margin-top: 0.32rem;
  max-width: 5.9rem;
}
.topBanner .page-path {
  position: absolute;
  left: 0.64rem;
  bottom: 0.5rem;
  margin-bottom: 0;
  z-index: 3;
}
.topBanner .t1 {
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 1.23rem;
  width: fit-content;
  padding: 0.12rem 0.18rem 0;
  height: 0.53rem;
  color: #000;
  font-weight: 700;
  background-image: url(../images/bg2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  font-size: var(--font24);
  line-height: 1.16666667;
}
.topBanner .t2 {
  margin-bottom: 0.32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 1.28rem;
  width: fit-content;
  padding: 0.5em 0.32rem 0;
  height: 0.45rem;
  color: var(--active_color);
  font-size: var(--font16);
  font-weight: 400;
  background-image: url(../images/news-4.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  line-height: 1.16666667;
}
.topBanner .scrollTitle,
.topBanner .tabTitle {
  position: absolute;
  width: 11.35rem;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding-right: 0.64rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.56rem;
}
.topBanner .scrollTitle:before,
.topBanner .tabTitle:before {
  width: 0.37rem;
  height: 0.05rem;
  background: transparent url("../images/technology-1.png") 0 0 no-repeat;
  background-size: 100% 100%;
  margin-top: 0.1rem;
  content: '';
  margin-right: auto;
}
.topBanner .scrollTitle:after,
.topBanner .tabTitle:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
  content: '';
}
.topBanner .scrollTitle span,
.topBanner .tabTitle span {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font18);
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  padding-bottom: 0.2rem;
}
.topBanner .scrollTitle span:after,
.topBanner .tabTitle span:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.02rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  height: 0.15rem;
  background: transparent url("../images/product-hover.png") bottom center no-repeat;
  background-size: auto 100%;
}
.topBanner .scrollTitle span:hover,
.topBanner .tabTitle span:hover,
.topBanner .scrollTitle span.active,
.topBanner .tabTitle span.active {
  color: var(--active_color);
}
.topBanner .scrollTitle span:hover:after,
.topBanner .tabTitle span:hover:after,
.topBanner .scrollTitle span.active:after,
.topBanner .tabTitle span.active:after {
  width: 0.6rem;
}
@media (max-width:480px) {
  .topBanner {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .topBanner .banner {
    height: 6rem;
  }
  .topBanner .banner img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .topBanner .page-path {
    display: none;
  }
  .topBanner .title h1 {
    font-size: var(--font38);
  }
  .topBanner .title p {
    max-width: 100%;
    font-size: var(--font16);
  }
  .topBanner .scrollTitle,
  .topBanner .tabTitle {
    position: relative;
    padding: 0.2rem 0.32rem 0;
    order: 2;
    width: 100%;
    background: #141414;
    gap: 0.32rem;
  }
  .topBanner .scrollTitle:before,
  .topBanner .tabTitle:before {
    width: 0;
    height: 0;
  }
  .topBanner .t1,
  .topBanner .t2 {
    font-size: var(--font16);
    padding-top: 0.08rem;
  }
  .topBanner .word {
    position: relative;
    left: unset;
    top: unset;
    padding: 0.64rem 0.32rem 0;
    height: max-content;
    order: 3;
  }
}
.left-nav {
  position: absolute;
  left: 0.64rem;
  top: 0;
  width: 3.54rem;
  height: 6.05rem;
  background: transparent url("../images/left-nav.png") 0 0 no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  padding: 0.2rem 0.24rem;
  padding-right: 0;
}
.left-nav .filter-list {
  width: 100%;
  max-height: 98%;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 0.1rem;
  scrollbar-gutter: stable;
}
.left-nav .filter-item:last-child .filter-title {
  border-bottom: none;
}
.left-nav .filter-item .filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.32rem 0 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}
.left-nav .filter-item .filter-title span {
  color: #ffffff;
  font-size: var(--font20);
  font-weight: 400;
}
.left-nav .filter-item .filter-title i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 9px;
  height: 6px;
  background: transparent url("../images/left-nav-arrow.png") 0 0 no-repeat;
  background-size: 100% 100%;
  transform: rotate(-90deg);
  margin-right: 0.05rem;
}
.left-nav .filter-item .filter-title:hover {
  background: rgba(255, 255, 255, 0.03);
}
.left-nav .filter-item.active .filter-title i {
  transform: rotate(0deg);
  filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(3847%) hue-rotate(87deg) brightness(102%) contrast(101%);
}
.left-nav .filter-item .filter-content {
  display: none;
  padding: 0.24rem 0 0;
}
.left-nav .filter-item .filter-content.show {
  display: block;
}
.left-nav .filter-option {
  margin-bottom: 0.12rem;
}
.left-nav .filter-option:last-child {
  margin-bottom: 0;
}
.left-nav .filter-option .layui-form-radio .layui-icon-circle:before {
  content: "";
}
.left-nav .filter-option .layui-form-checkbox,
.left-nav .filter-option .layui-form-radio {
  margin: 0;
  background: transparent;
  border: none;
  width: 100%;
  padding-left: 0;
  position: relative;
  line-height: 1.5;
  padding-right: 0.2rem;
}
.left-nav .filter-option .layui-form-checkbox span,
.left-nav .filter-option .layui-form-radio span {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font16);
  padding: 0;
  line-height: 1.5;
}
.left-nav .filter-option .layui-form-checkbox > div,
.left-nav .filter-option .layui-form-radio > div {
  word-break: break-all;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font16);
  padding-left: 0;
  line-height: 1.5;
}
.left-nav .filter-option .layui-form-checkbox i,
.left-nav .filter-option .layui-form-radio i {
  width: 0.16rem;
  height: 0.16rem;
  line-height: 0.16rem;
  font-size: 0.12rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 2px;
  right: 0;
  top: 0.05rem;
  left: auto;
  position: absolute;
  margin: 0;
  text-align: center;
}
.left-nav .filter-option .layui-form-checkbox i:after,
.left-nav .filter-option .layui-form-radio i:after {
  color: #000000;
}
.left-nav .filter-option .layui-form-checkbox:hover span,
.left-nav .filter-option .layui-form-radio:hover span {
  color: #ffffff;
}
.left-nav .filter-option .layui-form-checkbox:hover i,
.left-nav .filter-option .layui-form-radio:hover i {
  border-color: rgba(255, 255, 255, 0.5);
}
.left-nav .filter-option .layui-form-checkbox.layui-form-checked span,
.left-nav .filter-option .layui-form-radio.layui-form-checked span,
.left-nav .filter-option .layui-form-checkbox.layui-form-radioed span,
.left-nav .filter-option .layui-form-radio.layui-form-radioed span,
.left-nav .filter-option .layui-form-checkbox.layui-form-checked > div,
.left-nav .filter-option .layui-form-radio.layui-form-checked > div,
.left-nav .filter-option .layui-form-checkbox.layui-form-radioed > div,
.left-nav .filter-option .layui-form-radio.layui-form-radioed > div {
  color: var(--active_color);
  text-decoration: underline;
}
.left-nav .filter-option .layui-form-checkbox.layui-form-checked i,
.left-nav .filter-option .layui-form-radio.layui-form-checked i,
.left-nav .filter-option .layui-form-checkbox.layui-form-radioed i,
.left-nav .filter-option .layui-form-radio.layui-form-radioed i {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.left-nav .filter-option .layui-form-checkbox.layui-form-checked .layui-icon-circle:before,
.left-nav .filter-option .layui-form-radio.layui-form-checked .layui-icon-circle:before,
.left-nav .filter-option .layui-form-checkbox.layui-form-radioed .layui-icon-circle:before,
.left-nav .filter-option .layui-form-radio.layui-form-radioed .layui-icon-circle:before {
  content: "\e605";
}
.left-nav .toggle-btn {
  display: none;
}
@media (max-width:480px) {
  .left-nav {
    left: -1px;
    transition: transform 0.5s;
    z-index: 9;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  }
  .left-nav.hide {
    transform: translateX(-100%);
  }
  .left-nav.hide .toggle-btn {
    width: 1rem;
    height: 1rem;
  }
  .left-nav.hide .toggle-btn i:before {
    transform: rotate(180deg);
  }
  .left-nav .toggle-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    font-size: 12px;
    width: 100vw;
    height: 6rem;
  }
  .left-nav .toggle-btn i {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 20px;
    height: 30px;
    margin-left: -1px;
    background: transparent url("../images/left-nav.png") right center no-repeat;
    background-size: 3.54rem auto;
    border-radius: 0 4px 4px 0;
    border: 1px solid #262d35;
    border-left: none;
  }
  .left-nav .toggle-btn i:before {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--active_color);
  }
}
.product-list {
  position: relative;
  padding: 0 0.64rem 0;
  margin-bottom: 1.68rem;
  margin-top: 1.6rem;
}
.product-list .list-box {
  padding-left: 4.16rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.16rem;
  width: calc(100% + 0.18rem);
  margin-bottom: 0.96rem;
}
.product-list .empty {
  width: 100%;
  min-height: 6.05rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #999999;
  font-size: var(--font20);
}
.product-list .item {
  background: transparent url("../images/product-15.png") 0 0 no-repeat;
  background-size: 100% 100%;
  width: 4.46rem;
  height: 5.07rem;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.product-list .item:before {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: linear-gradient(167deg, #09FF13 22.62%, #0D0D0D 88.76%);
}
.product-list .item:before img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-list .item:after {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: transparent url("../images/p-1.png") right top no-repeat;
  background-size: auto 100%;
}
.product-list .item:after img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 481px) {
  .product-list .item:hover .img-box img {
    transform: scale(1.05);
  }
  .product-list .item:hover:before,
  .product-list .item:hover:after {
    opacity: 1;
  }
  .product-list .item:hover h1 {
    text-decoration: underline;
  }
  .product-list .item:hover * {
    color: #000000 !important;
  }
}
.product-list .item .column {
  height: 5.07rem;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.product-list .item .word {
  padding: 0.4rem 0.38rem 0;
}
.product-list .item .img-box {
  width: 100%;
  flex: 1;
  margin: 0;
  position: relative;
}
.product-list .item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-list .item .img-box img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-list .item h1 {
  color: #FFF;
  font-size: var(--font32);
  font-weight: 700;
  line-height: 1.1875;
}
.product-list .item p {
  color: #999999;
  font-size: var(--font16);
  line-height: 1.1875;
  margin-top: 0.12rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 2.2em;
}
.product-list .item h2 {
  color: #ffffff;
  font-size: var(--font24);
  font-weight: 500;
  font-family: 'AlumniSans';
  margin-top: 0.15rem;
}
.product-list .item.type2 {
  width: 9.08rem;
}
.product-list .item.type2 .word {
  width: 3.2rem;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0.32rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.product-list .item.type2 .word .bottom {
  margin-top: auto;
  margin-bottom: 0;
  color: #666666;
}
.product-list .item.type2 .img-box {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 6rem;
}
@media (max-width:990px) {
  .product-list .item h1 {
    font-size: var(--font22);
  }
  .product-list .item p {
    font-size: var(--font14);
    margin-top: 0.2rem;
  }
  .product-list .item h2 {
    margin-top: 0.2rem;
  }
}
@media (max-width:480px) {
  .product-list {
    padding: 0 0.32rem;
  }
  .product-list .list-box {
    width: 100%;
    padding-left: 0;
  }
  .product-list .empty {
    min-height: 3rem;
  }
  .product-list .item {
    width: calc(calc(100% - 0.16rem) / 2);
  }
  .product-list .item .word {
    padding: 0.24rem 0.24rem 0;
  }
  .product-list .item h1 {
    font-size: var(--font22);
  }
  .product-list .item p {
    font-size: var(--font14);
    margin-top: 0.2rem;
  }
  .product-list .item h2 {
    margin-top: 0.2rem;
  }
  .product-list .item.type2 {
    width: 100%;
    height: 4rem;
  }
  .product-list .item.type2 .column {
    height: 4rem;
  }
  .product-list .item.type2 .word {
    width: 40%;
  }
  .product-list .item.type2 .img-box {
    width: 55%;
  }
}
.product.recommend {
  background: #000;
  padding: 1.6rem 0;
}
.product.recommend .box {
  position: relative;
  width: 14.4rem;
  margin: 0 auto;
}
.product.recommend .btn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.12rem;
}
.product.recommend .btn .prev,
.product.recommend .btn .next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 2;
  width: 0.52rem;
  height: 0.52rem;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
}
.product.recommend .btn .prev i,
.product.recommend .btn .next i {
  font-size: 0.16rem;
}
.product.recommend .btn .prev:hover,
.product.recommend .btn .next:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.product.recommend .swiper-box {
  position: relative;
  width: 100%;
  height: 5.32rem;
  overflow: hidden;
  margin-top: 0.8rem;
}
.product.recommend .swiper-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.product.recommend .swiper-slide {
  background: transparent url("../images/product-15.png") 0 0 no-repeat;
  background-size: 100% 100%;
  max-width: 33%;
  overflow: hidden;
}
.product.recommend .swiper-slide:before {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: linear-gradient(167deg, #09FF13 22.62%, #0D0D0D 88.76%);
}
.product.recommend .swiper-slide:before img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product.recommend .swiper-slide:after {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: transparent url("../images/p-1.png") right top no-repeat;
  background-size: auto 100%;
}
.product.recommend .swiper-slide:after img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product.recommend .swiper-slide:hover .img-box img {
  transform: scale(1.05);
}
.product.recommend .swiper-slide:hover:before,
.product.recommend .swiper-slide:hover:after {
  opacity: 1;
}
.product.recommend .swiper-slide:hover .word h1 {
  color: #000000;
  text-decoration: underline;
}
.product.recommend .swiper-slide:hover .word h2,
.product.recommend .swiper-slide:hover .word p {
  color: #000000;
}
.product.recommend .swiper-slide .column {
  height: 5.32rem;
  align-items: flex-start;
  justify-content: space-between;
}
.product.recommend .swiper-slide .word {
  padding: 0.4rem 0.4rem 0;
  position: relative;
  z-index: 2;
}
.product.recommend .swiper-slide .word h1 {
  color: #FFF;
  font-size: var(--font32);
  font-weight: 700;
  line-height: 1.1875;
}
.product.recommend .swiper-slide .word p {
  color: #999999;
  font-size: var(--font16);
  line-height: 1.1875;
  margin-top: 0.12rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.2em;
}
.product.recommend .swiper-slide .word h2 {
  color: #ffffff;
  font-size: var(--font24);
  font-weight: 500;
  font-family: 'AlumniSans';
  margin-top: 0.15rem;
}
.product.recommend .swiper-slide .img-box {
  width: 100%;
  flex: 1;
  margin: 0;
  position: relative;
}
.product.recommend .swiper-slide .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product.recommend .swiper-slide .img-box img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:480px) {
  .product.recommend {
    padding: 1.6rem 0.32rem;
  }
  .product.recommend .box {
    width: 100%;
  }
  .product.recommend .word {
    margin-top: 0;
  }
  .product.recommend .word h2 {
    font-size: var(--font36);
  }
  .product.recommend .swiper-slide {
    max-width: 100%;
  }
  .product.recommend .swiper-slide .column {
    height: 6rem;
  }
  .product.recommend .swiper-slide .word {
    padding: 0.32rem 0.32rem 0;
  }
  .product.recommend .swiper-box {
    height: 6rem;
    margin-top: 0.64rem;
  }
}
.layui-laypage {
  gap: 0;
  user-select: none;
}
.layui-laypage a,
.layui-laypage span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 0.12rem !important;
  background: none;
  color: #999999 !important;
  font-weight: 500;
}
.layui-laypage .layui-laypage-curr {
  background: var(--active_color);
  color: #000000 !important;
}
.layui-laypage .layui-laypage-curr em {
  color: #000000 !important;
}
.layui-laypage .layui-laypage-prev,
.layui-laypage .layui-laypage-next {
  width: 1.52rem;
  border: 1px solid #333333;
  margin: 0 0.24rem;
  color: #999999 !important;
}
.layui-laypage .layui-laypage-prev span,
.layui-laypage .layui-laypage-next span {
  color: #999999;
  pointer-events: none;
}
.layui-laypage .layui-laypage-prev:not(.layui-disabled):hover,
.layui-laypage .layui-laypage-next:not(.layui-disabled):hover {
  background: var(--active_color);
  color: #000000 !important;
}
.layui-laypage .layui-laypage-prev:not(.layui-disabled):hover span,
.layui-laypage .layui-laypage-next:not(.layui-disabled):hover span {
  color: #000000 !important;
}
.layui-laypage .iconfont {
  font-size: 12px;
  width: 0.24rem;
  height: 0.24rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.12rem;
}
.about-con1 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.about-con1 img {
  max-width: unset;
  max-height: unset;
}
.about-con1 .pin-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  background: transparent url("../images/about-1.jpg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.about-con1 .pin-box img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-con1 .column {
  margin: 0 auto;
  font-size: var(--font16);
  width: 100%;
  padding-top: 1.6rem;
}
.about-con1 .column h1 {
  color: #FFF;
  font-size: var(--font48);
  white-space: pre-line;
  word-break: break-all;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
}
.about-con1 .column .write {
  opacity: 0;
  color: #ffffff1A;
  filter: none;
  transform: none;
}
.about-con1 .column p {
  color: #999;
  text-align: center;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  margin-top: 0.32rem;
  width: 42.5em;
}
.about-con1 .box {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
}
.about-con1 .logo {
  width: 3.94rem;
}
.about-con1 .img1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14.56rem;
  top: -0.8rem;
}
.about-con1 .img2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: -1.84rem;
}
.about-con2 {
  width: 100%;
  height: calc(var(--wHeight, 100vh) * 1.5);
  position: relative;
  z-index: 2;
}
.about-con2 img {
  max-width: unset;
  max-height: unset;
}
.about-con2 .pin-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  height: var(--wHeight, 100vh);
}
.about-con2 .pin-box img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-con2 .mask-box {
  width: 100%;
  height: var(--wHeight, 100vh);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-mask: url("../images/about-7.png") center center no-repeat;
  -webkit-mask-size: 100% auto;
}
.about-con2 .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-con2 .word {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  left: 0.64rem;
  color: rgba(255, 255, 255, 0.4);
  width: 4.8rem;
  text-align: left;
  padding-bottom: 0.24rem;
}
.about-con2 .word p {
  font-size: var(--font24);
  font-style: normal;
  font-weight: 650;
  line-height: 1.33333333;
  letter-spacing: -1px;
}
.about-con2 .word b {
  color: #ffffff;
}
.about-con2 .borderLine {
  background: rgba(255, 255, 255, 0.3);
}
.about-con2 .sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0.64rem;
}
.about-con2 .sign img {
  width: 1.59rem;
}
.about-con2 .sign p {
  color: #FFF;
  font-size: var(--font16);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.92px;
}
.about-con3 {
  padding: 1.6rem 0.64rem;
  background: #141414;
}
.about-con3 .word h1 {
  color: #FFF;
  font-size: var(--font48);
  font-weight: 650;
  line-height: normal;
  letter-spacing: -1.92px;
}
.about-con3 .word p {
  white-space: pre-line;
  word-break: break-all;
  color: #666;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.3125;
  letter-spacing: -0.64px;
  margin-top: 0.32rem;
}
.about-con3 .word b {
  color: #ffffff;
  font-weight: normal;
}
.about-con3 .list {
  width: 100%;
  margin-top: 0.96rem;
}
.about-con3 .list .product-list {
  padding: 0;
  margin: 0;
}
.about-con3 .list .product-list .list-box {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.16rem;
}
.about-con3 .list .product-list .item {
  width: 33%;
  height: 5.8rem;
  background: transparent url("../images/about-11.png") 0 0 no-repeat;
  background-size: 100% 100%;
  padding: 0.48rem;
}
.about-con3 .list .product-list .item a {
  height: 100%;
}
.about-con3 .list .product-list .item .word {
  padding: 0;
}
.about-con3 .list .product-list .item .word h1 {
  font-size: var(--font40);
}
.about-con3 .list .product-list .item .column {
  height: 100%;
}
.about-con3 .list .product-list .item p {
  font-size: var(--font24);
  font-weight: 300;
  line-height: 1.33;
  height: 2.66em;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.about-con3 .list .product-list .item h1 {
  margin-bottom: auto;
}
.about-con3 .list .product-list .item .num {
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--font16);
  line-height: 2;
  color: #666666;
  letter-spacing: -0.64px;
}
.about-con3 .list .product-list .item:hover h1 {
  text-decoration: none;
}
.about-con3 .list .product-list .item:hover p {
  color: #ffffff !important;
}
.about-con3 .list .product-list .icon {
  margin: 0.32rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.32rem;
}
.about-con3 .list .product-list .icon img {
  width: 0.64rem;
}
.about-con4 {
  width: 100%;
  height: calc(var(--wHeight, 100vh) * 2);
  position: relative;
  overflow: hidden;
}
.about-con4 .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-con4 img {
  max-width: unset;
  max-height: unset;
}
.about-con4 .pin-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  height: var(--wHeight, 100vh);
}
.about-con4 .pin-box img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-con4 .scroll {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100vw + 26.44rem);
  height: 100%;
}
.about-con4 .swiper-box {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.about-con4 .swiper-box .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.64rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.12rem;
  z-index: 3;
}
.about-con4 .swiper-box .btn .prev,
.about-con4 .swiper-box .btn .next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 2;
  width: 0.52rem;
  height: 0.52rem;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
}
.about-con4 .swiper-box .btn .prev i,
.about-con4 .swiper-box .btn .next i {
  font-size: 0.16rem;
}
.about-con4 .swiper-box .btn .prev:hover,
.about-con4 .swiper-box .btn .next:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.about-con4 .swiper-slide-active h2 {
  opacity: 0;
  transform: translate(0, 0.3rem);
  animation: TranslateIn 0.5s 0.7s ease-in-out forwards;
}
.about-con4 .swiper-slide-active .fadeInUp {
  opacity: 0;
  transform: translate(0, 0.3rem);
  animation: TranslateIn 0.5s 0.8s ease-in-out forwards;
}
.about-con4 .swiper-slide-active .write {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translate(0, 0) scale(1);
  opacity: 1;
  --filter: blur(0px);
}
.about-con4 .title {
  color: #FFF;
  font-size: var(--font48);
  font-weight: 650;
  line-height: normal;
  letter-spacing: -1.92px;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 1.2rem 0 2.2rem 0.64rem;
  z-index: 2;
}
.about-con4 .word {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  left: 0;
  top: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 1.2rem 0 2.2rem 0.64rem;
  text-align: left;
}
.about-con4 .word h1 {
  color: #FFF;
  font-size: var(--font48);
  font-weight: 650;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: auto;
}
.about-con4 .word h2 {
  margin: 0;
  color: var(--active_color);
  font-size: var(--font80);
  font-weight: 500;
  line-height: 0.96rem;
  letter-spacing: -3.2px;
}
.about-con4 .word .fadeInUp {
  margin: 0;
  width: 5.6rem;
  margin-top: 0.16rem;
}
.about-con4 .word p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.64px;
  padding-left: 0.2rem;
}
.about-con4 .word p:before {
  position: absolute;
  content: '';
  width: 0.05rem;
  height: 0.07rem;
  background: transparent url("../images/about-13.png") 0 0 no-repeat;
  background-size: 100% 100%;
  left: 0;
  top: 0.6em;
}
.about-con4 .images {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.about-con4 .images img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-con4 .years {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.64rem;
  z-index: 2;
}
.about-con4 .years p {
  padding-top: 0.32rem;
  padding-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.16666667;
  letter-spacing: -0.96px;
  cursor: pointer;
  user-select: none;
}
.about-con4 .years .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.about-con4 .years .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.about-con4 .years .line span {
  display: block;
  position: relative;
  width: 1em;
  height: 1px;
  font-size: var(--font24);
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-con4 .years .line span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 100%;
  content: '';
  width: 0.14rem;
  height: 0.1rem;
  background: transparent url("../images/about-14.png") 0 0 no-repeat;
  background-size: 100% 100%;
}
.about-con4 .scroll-box {
  position: relative;
  z-index: 2;
  flex: 1;
  height: 100%;
  text-align: left;
  background: transparent url("../images/about-20.png") right center no-repeat;
  background-size: auto 100%;
}
.about-con4 .scroll-box .t1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.9rem;
  color: #ffffff1A;
  font-size: var(--font48);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  width: 8em;
}
.about-con4 .scroll-box .t1 b {
  color: #ffffff;
}
.about-con4 .scroll-box .center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0.45rem;
  left: 7.46rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 90%;
  max-height: 8.32rem;
  flex-wrap: wrap;
}
.about-con4 .scroll-box .box {
  width: 8.54rem;
  height: 49%;
  background: transparent url("../images/about-15.png") 0 0 no-repeat;
  background-size: 100% 100%;
  padding: 0.48rem 0.56rem;
  position: relative;
}
.about-con4 .scroll-box .box h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 1.34rem;
  height: 0.51rem;
  background: transparent url("../images/about-16.png") 0 0 no-repeat;
  background-size: 100% 100%;
  color: #09FF13;
  font-size: var(--font20);
  font-weight: 400;
  line-height: normal;
}
.about-con4 .scroll-box .box h1 {
  color: #FFF;
  font-size: var(--font40);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -1.6px;
  white-space: pre-line;
  word-break: break-all;
  margin-top: 0.32rem;
}
.about-con4 .scroll-box .box .icon {
  position: absolute;
  width: 0.56rem;
  right: 0.56rem;
  bottom: 0.48rem;
}
.about-con4 .scroll-box .box2 .icon {
  width: 0.49rem;
}
.about-con4 .scroll-box .box3 {
  width: 9.08rem;
  height: 100%;
  background: transparent url("../images/about-19.png") 0 0 no-repeat;
  background-size: 100% 100%;
  margin-left: 0.16rem;
}
.about-con5 {
  text-align: center;
  padding: 1.6rem 0.64rem;
  background: #141414;
}
.about-con5 h1 {
  color: #FFF;
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
}
.about-con5 .swiper-box {
  margin-top: 0.96rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-con5 .swiper-slide {
  width: 3.46rem;
  height: 4.9rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFF 0%, #E5E5E5 100%);
  overflow: hidden;
  padding: 0.36rem 0.38rem 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.about-con5 .img-box {
  width: 100%;
  height: 3.77rem;
  border-radius: 8px;
  border: 2px solid #DDD;
  box-sizing: border-box;
}
.about-con5 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-con5 .img-box img img {
  max-width: unset;
  max-height: unset;
}
.about-con5 p {
  flex: 1;
  color: #000;
  text-align: center;
  font-size: var(--font16);
  line-height: 1.1875;
  letter-spacing: -0.64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.purchase-con1 .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.16rem;
}
.purchase-con1 .item {
  text-align: center;
  width: 3.46rem;
  height: 3.05rem;
}
.purchase-con1 .item .icon {
  width: 0.9rem;
}
.purchase-con1 .item p {
  color: #999;
  font-size: var(--font16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  white-space: pre-line;
  word-break: break-all;
  margin-top: 0.26rem;
}
.purchase-con1 .item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding-top: 0.82rem;
  background: transparent url("../images/purchase-6.png") 0 0 no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.purchase-con1 .item:hover a {
  background: transparent url("../images/purchase-7.png") 0 0 no-repeat;
  background-size: 100% 100%;
}
.purchase-con1 .item:hover p {
  color: #ffffff;
}
.purchase-con1 .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.purchase-con1 .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.purchase-con1 .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.purchase-con1 .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.purchase-con1 .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.purchase-con1 .item:nth-child(6) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
@media (max-width:480px) {
  .purchase-con1 .row {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .purchase-con1 .item {
    width: 3.26rem;
    height: auto;
  }
  .purchase-con1 a {
    height: auto;
    min-height: 3.05rem;
    padding-bottom: 0.32rem;
  }
}
.scene-con1 {
  text-align: center;
  padding: 1.6rem 0.64rem;
}
.scene-con1 h1 {
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  margin-bottom: 0.96rem;
}
.scene-con1 h1.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.scene-con1 h1.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.scene-con1 .item {
  margin-bottom: 0.32rem;
}
.scene-con1 .item.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.scene-con1 .item.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.scene-con1 .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 17.92rem;
  height: 6.4rem;
  margin: auto;
  background: transparent url("../images/scene-1.png") 0 0 no-repeat;
  background-size: 100% 100%;
  padding: 0.32rem;
  position: relative;
}
.scene-con1 .num {
  position: absolute;
  left: 0.32rem;
  top: 0.32rem;
  color: var(--active_color);
  font-size: var(--font16);
  line-height: 2;
  font-weight: 300;
  letter-spacing: -0.64px;
}
.scene-con1 .num span {
  color: var(--active_color);
}
.scene-con1 .column {
  flex: 1;
  height: 100%;
  justify-content: center;
  margin-right: 0.2rem;
  padding: 0 1rem;
}
.scene-con1 .column img {
  height: 1.08rem;
  margin-top: 0.64rem;
}
.scene-con1 .images {
  height: 100%;
  width: 10.24rem;
  border-radius: 8px;
  overflow: hidden;
}
.scene-con1 h2 {
  font-size: var(--font48);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  color: var(--active_color);
}
.scene-con1 p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.96px;
  margin-top: 0.24rem;
  text-align: justify;
}
@media (max-width:480px) {
  .scene-con1 {
    padding: 1.6rem 0.32rem 0.8rem;
  }
  .scene-con1 .item .row {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 8px 0;
    background: transparent url("../images/scene-1-m.png") left bottom no-repeat;
    background-size: 100% auto;
  }
  .scene-con1 h1 {
    font-size: var(--font32);
  }
  .scene-con1 h2 {
    font-size: var(--font32);
  }
  .scene-con1 p {
    font-size: var(--font16);
  }
  .scene-con1 .num {
    top: 4rem;
    font-size: var(--font12);
  }
  .scene-con1 .column {
    padding: 1rem 0 1.2rem;
    margin: 0;
    width: 100%;
    position: relative;
  }
  .scene-con1 .images {
    width: 100%;
    height: 3.5rem;
    border-radius: 8px;
  }
  .scene-con1 .images img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.content-title {
  text-align: center;
}
.content-title h2 {
  color: #09FF13;
  font-size: var(--font16);
  font-weight: 650;
  line-height: 1.1875;
  letter-spacing: -0.64px;
  margin-bottom: 0.16rem;
}
.content-title h2.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.content-title h2.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.content-title h1 {
  color: #FFF;
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  margin-bottom: 0.32rem;
}
.content-title h1.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.content-title h1.up80.animated {
  animation: TranslateIn 0.5s 0.2s ease-in-out forwards;
}
.content-title p {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  width: 6.65rem;
  margin: auto;
}
.content-title p.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.content-title p.up80.animated {
  animation: TranslateIn 0.5s 0.3s ease-in-out forwards;
}
.content-title.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.content-title.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
@media (max-width:480px) {
  .content-title h2 {
    font-size: var(--font14);
  }
  .content-title h1 {
    font-size: var(--font32);
  }
  .content-title p {
    font-size: var(--font14);
  }
}
.concept-con1 {
  padding: 1.6rem 0.64rem;
  position: relative;
  overflow: hidden;
  background: #000 url("../images/concept-0.png") left bottom no-repeat;
  background-size: 100% auto;
}
.concept-con1 .list {
  margin-top: 0.96rem;
}
.concept-con1 .list .item {
  width: 17.92rem;
  height: 5.12rem;
  margin: 0 auto 1.2rem;
}
.concept-con1 .list .item.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.concept-con1 .list .item.up80.animated {
  animation: TranslateIn 0.5s 0.2s ease-in-out forwards;
}
.concept-con1 .list .item:last-child {
  margin-bottom: 0;
}
.concept-con1 .list .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.concept-con1 .list .item .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.concept-con1 .list .item .images {
  width: 9.1rem;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.concept-con1 .list .item .column {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-right: 0.56rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.concept-con1 .list .item .t1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #666;
  width: 100%;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0.32rem;
  margin-bottom: auto;
}
.concept-con1 .list .item .t1 span:first-child {
  color: var(--active_color);
}
.concept-con1 .list .item .icon {
  width: 0.61rem;
}
.concept-con1 .list .item h2 {
  color: #FFF;
  font-size: var(--font32);
  font-weight: 650;
  line-height: 1.1875;
  letter-spacing: -1.28px;
  margin-top: 0.4rem;
}
.concept-con1 .list .item p {
  color: #999;
  font-size: var(--font18);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.72px;
  margin-top: 0.24rem;
}
@media (max-width:480px) {
  .concept-con1 {
    padding: 1.6rem 0.32rem 1.6rem;
  }
  .concept-con1 .list .item {
    width: 100%;
    height: auto;
  }
  .concept-con1 .list .item.animated .t1 {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.7s ease-in-out forwards;
  }
  .concept-con1 .list .item.animated .icon {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.9s ease-in-out forwards;
  }
  .concept-con1 .list .item.animated h2 {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 1s ease-in-out forwards;
  }
  .concept-con1 .list .item.animated p {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 1.1s ease-in-out forwards;
  }
  .concept-con1 .list .item .row {
    flex-direction: column-reverse;
  }
  .concept-con1 .list .item .images {
    width: 100%;
    height: 3.5rem;
    border-radius: 8px;
  }
  .concept-con1 .list .item .images img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .concept-con1 .list .item .column {
    border: none;
    margin: 0;
    width: 100%;
    position: relative;
  }
  .concept-con1 .list .item .icon {
    margin-top: 0.6rem;
    width: 0.8rem;
  }
  .concept-con1 .list .item h2 {
    font-size: var(--font22);
  }
  .concept-con1 .list .item p {
    font-size: var(--font12);
  }
  .concept-con1 .list .item .t1 {
    font-size: var(--font12);
  }
}
.image-list .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.image-list .item {
  width: 5.87rem;
  height: 5.09rem;
  border-radius: 8px;
  padding: 0.16rem;
  background: linear-gradient(168deg, #000 61.02%, #04291A 104.68%);
}
.image-list .image {
  width: 100%;
  height: 3.12rem;
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
.image-list .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-list .word {
  margin-top: 0.4rem;
  padding: 0 0.24rem;
  position: relative;
  z-index: 2;
}
.image-list h1 {
  color: #FFF;
  font-size: var(--font24);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.28px;
  margin-top: 0.4rem;
}
.image-list p {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.72px;
  margin-top: 0.16rem;
}
.concept-con2 {
  padding: 1.6rem 0.64rem;
  background: #141414;
}
.concept-con2 .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.concept-con2 .title .column {
  align-items: flex-start;
}
.concept-con2 .title h2 {
  color: #09FF13;
  font-size: var(--font16);
  font-weight: 650;
  line-height: 1.1875;
  letter-spacing: -0.64px;
  margin-bottom: 0.16rem;
}
.concept-con2 .title h1 {
  color: #FFF;
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
}
.concept-con2 .title p {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  width: 42em;
}
.concept-con2 .image-list {
  margin-top: 0.96rem;
}
.concept-con2 .image-list .item {
  opacity: 0;
  transform: translate(0.3rem, 0);
}
.concept-con2 .image-list .item.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.concept-con2 .image-list .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.concept-con2 .image-list .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.concept-con2 .image-list .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.concept-con2 .image-list .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.concept-con2 .image-list .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
@media (max-width:480px) {
  .concept-con2 {
    padding: 1.6rem 0;
  }
  .concept-con2 .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .concept-con2 .title .column {
    align-items: center;
  }
  .concept-con2 .title p {
    width: 100%;
    text-align: center;
    margin-top: 0.16rem;
  }
  .concept-con2 .title.animated h1 {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.2s ease-in-out forwards;
  }
  .concept-con2 .title.animated p {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.4s ease-in-out forwards;
  }
  .concept-con2 .image-list .box {
    flex-direction: column;
  }
  .concept-con2 .image-list .item {
    width: 100%;
    border-radius: 8px;
    height: auto;
    margin-bottom: 0.32rem;
    padding: 0.32rem;
  }
  .concept-con2 .image-list .image {
    height: 3.5rem;
  }
  .concept-con2 .image-list h1 {
    font-size: var(--font18);
  }
  .concept-con2 .image-list p {
    font-size: var(--font12);
    margin-bottom: 0.2rem;
  }
}
.concept-con3 {
  padding: 0.16rem;
}
.concept-con3 .main {
  width: 100%;
  height: 6.46rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.concept-con3 .main.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.concept-con3 .word {
  position: absolute;
  width: 5.97rem;
  height: 5.18rem;
  background: transparent url("../images/concept-9.png") 0 0 no-repeat;
  background-size: 100% 100%;
  right: 0.48rem;
  top: 0.62rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 0.8rem 0.64rem;
  opacity: 0;
  transform: translate(0.3rem, 0);
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.concept-con3 .word.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.concept-con3 .word .row {
  margin-top: auto;
  gap: 0.16rem;
}
.concept-con3 .word .row a {
  width: 2.18rem;
  height: 0.52rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 0.5px solid rgba(0, 0, 0, 0.4);
}
.concept-con3 .word .row a:hover {
  background: #000;
  color: var(--active_color);
}
.concept-con3 .word .row a:hover .icon {
  filter: none;
}
.concept-con3 .word .row .icon {
  width: 0.1rem;
  filter: brightness(0);
  margin-left: 0.16rem;
}
.concept-con3 .word h1 {
  white-space: pre-line;
  word-break: break-all;
  color: #000;
  font-size: var(--font48);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
}
.concept-con3 .word p {
  color: #000;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  margin-top: 0.24rem;
}
@media (max-width:480px) {
  .concept-con3 .main {
    height: auto;
    background: #000000;
    padding: 0.32rem;
  }
  .concept-con3 .main .CoverImg {
    width: 100%;
    height: 3.5rem;
  }
  .concept-con3 .main .word {
    margin-top: 0.32rem;
    width: 6.54rem;
    height: 5.67rem;
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
  }
  .concept-con3 .main .word .row a {
    width: auto;
    height: auto;
    padding: 0.15rem 0.2rem;
    font-size: var(--font14);
  }
}
.game-con1 {
  text-align: center;
  padding: 1.6rem 0.64rem;
  background: #000000;
}
.game-con1 .content-title {
  margin-bottom: 0.8rem;
}
.game-con1 .item {
  margin-bottom: 0.32rem;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.game-con1 .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 17.92rem;
  height: 6.4rem;
  margin: auto;
  background: transparent url("../images/game-0.png") 0 0 no-repeat;
  background-size: 100% 100%;
  padding: 0.32rem;
  position: relative;
}
.game-con1 .num {
  position: absolute;
  left: 0.32rem;
  top: 0.32rem;
  color: #09FF13;
  font-size: var(--font16);
  line-height: 2;
  font-weight: 300;
  letter-spacing: -0.64px;
}
.game-con1 .column {
  flex: 1;
  height: 100%;
  justify-content: center;
  margin-right: 0.2rem;
  padding: 0 1rem;
}
.game-con1 .column img {
  height: 1.08rem;
  margin-top: 0.64rem;
}
.game-con1 .column h1 {
  color: #FFF;
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  margin-bottom: 0.96rem;
}
.game-con1 .column h2 {
  font-size: var(--font48);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
  color: var(--active_color);
}
.game-con1 .column p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.96px;
  margin-top: 0.24rem;
  text-align: justify;
  text-align-last: center;
}
.game-con1 .images {
  height: 100%;
  width: 10.24rem;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width:480px) {
  .game-con1 {
    padding: 1.6rem 0.32rem 0.8rem;
  }
  .game-con1 .item .row {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 8px 0;
    background: transparent url("../images/scene-1-m.png") left bottom no-repeat;
    background-size: 100% auto;
  }
  .game-con1 .num {
    top: 4rem;
    font-size: var(--font12);
  }
  .game-con1 .column {
    padding: 1rem 0 1.2rem;
    margin: 0;
    width: 100%;
    position: relative;
  }
  .game-con1 .column h1 {
    font-size: var(--font32);
  }
  .game-con1 .column h2 {
    font-size: var(--font32);
  }
  .game-con1 .column p {
    font-size: var(--font16);
  }
  .game-con1 .images {
    width: 100%;
    height: 3.5rem;
    border-radius: 8px;
  }
  .game-con1 .images img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.game-con2 {
  padding: 0 0 1.6rem;
  background: #000000;
}
.game-con2 .image-list {
  margin-top: 0.8rem;
}
.game-con2 .image-list .item {
  background: transparent url("../images/game-2.png") 0 0 no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transform: translate(0.3rem, 0);
}
.game-con2 .image-list .item.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.game-con2 .image-list .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.game-con2 .image-list .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.game-con2 .image-list .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.game-con2 .image-list .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.game-con2 .image-list .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
@media (max-width:480px) {
  .game-con2 .image-list .box {
    flex-direction: column;
  }
  .game-con2 .image-list .item {
    width: 100%;
    border-radius: 8px;
    height: auto;
    margin-bottom: 0.32rem;
    padding: 0.32rem;
  }
  .game-con2 .image-list .image {
    height: 3.5rem;
  }
  .game-con2 .image-list h1 {
    font-size: var(--font18);
  }
  .game-con2 .image-list p {
    font-size: var(--font12);
    margin-bottom: 0.2rem;
  }
}
.game-con3 {
  background: #141414;
}
.game-con3 .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.game-con3 .title .column {
  align-items: flex-start;
}
.game-con3 .title h2 {
  color: #09FF13;
  font-size: var(--font16);
  font-weight: 650;
  line-height: 1.1875;
  letter-spacing: -0.64px;
  margin-bottom: 0.16rem;
}
.game-con3 .title h1 {
  color: #FFF;
  font-size: var(--font48);
  font-style: normal;
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -1.92px;
}
.game-con3 .title p {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  width: 42em;
}
.game-con3 .image-list {
  margin-top: 0.96rem;
}
.game-con3 .image-list .item {
  opacity: 0;
  transform: translate(0.3rem, 0);
}
.game-con3 .image-list .item.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.game-con3 .image-list .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.game-con3 .image-list .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.game-con3 .image-list .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.game-con3 .image-list .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.game-con3 .image-list .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.game-con3 .box {
  width: 100%;
  height: 9.12rem;
  position: relative;
  margin-top: 0.8rem;
}
.game-con3 .box .img1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.85rem;
  z-index: 2;
  margin-top: 0.25rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.game-con3 .box .img2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19.2rem;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  transform: translate(-50%, -50%) scale(0);
}
.game-con3 .box.animated .img1 {
  opacity: 1;
}
.game-con3 .box.animated .img2 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.game-con3 .box.animated .lt {
  transform: translate(-0.2rem, -0.2rem);
}
.game-con3 .box.animated .rt {
  transform: translate(0.2rem, -0.2rem);
}
.game-con3 .box.animated .lb {
  transform: translate(-0.2rem, 0.2rem);
}
.game-con3 .box.animated .rb {
  transform: translate(0.2rem, 0.2rem);
}
.game-con3 .box.animated .item {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.game-con3 .box.animated .item p {
  animation: TranslateIn 0.5s 1s ease-in-out forwards;
}
.game-con3 .box.animated .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.game-con3 .box.animated .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.game-con3 .box.animated .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.game-con3 .box.animated .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.game-con3 .box.animated .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.game-con3 .list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  z-index: 3;
}
.game-con3 .list img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.game-con3 .list .item {
  position: absolute;
  width: 8.88rem;
  height: 4.48rem;
  opacity: 0;
}
.game-con3 .list .item p {
  white-space: pre-line;
  word-break: break-all;
  color: #FFF;
  font-size: var(--font20);
  font-weight: 300;
  line-height: 1.15;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.32rem 0.4rem;
  text-align: left;
  opacity: 0;
}
.game-con3 .list .lt {
  left: 0;
  top: 0;
  -webkit-mask: url("../images/mask-7.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 100%;
}
.game-con3 .list .rt {
  right: 0;
  top: 0;
  -webkit-mask: url("../images/mask-8.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 100%;
}
.game-con3 .list .lb {
  left: 0;
  bottom: 0;
  -webkit-mask: url("../images/mask-10.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 100%;
}
.game-con3 .list .rb {
  right: 0;
  bottom: 0;
  -webkit-mask: url("../images/mask-9.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 100%;
}
@media (max-width:480px) {
  .game-con3 .p160 {
    padding-bottom: 0.8rem;
  }
  .game-con3 .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .game-con3 .title .column {
    align-items: center;
  }
  .game-con3 .title p {
    width: 100%;
    text-align: center;
    margin-top: 0.16rem;
  }
  .game-con3 .title.animated h1 {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.2s ease-in-out forwards;
  }
  .game-con3 .title.animated p {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation: TranslateIn 0.5s 0.4s ease-in-out forwards;
  }
  .game-con3 .box {
    height: auto;
  }
  .game-con3 .box .img1,
  .game-con3 .box .img2 {
    display: none;
  }
  .game-con3 .list {
    position: relative;
  }
  .game-con3 .list .item {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0.24rem;
    -webkit-mask: none;
    border-radius: 8px;
  }
  .game-con3 .list .item p {
    font-size: var(--font14);
    padding: 0.24rem 0rem 0.12rem;
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
  }
}
.tabList .tab {
  display: none;
}
.tabList .tab.active {
  display: block;
}
.empty-box {
  padding: 2.2rem 0 1.6rem;
  width: 100%;
  position: relative;
  font-size: var(--font16);
}
.empty-box img {
  max-width: unset;
  max-height: unset;
}
.empty-box h1 {
  color: #FFF;
  font-size: var(--font56);
  white-space: pre-line;
  word-break: break-all;
  font-weight: 650;
  line-height: 1.17857143;
  letter-spacing: -1.92px;
}
.empty-box h1 .write {
  color: #ffffff1a;
}
.empty-box p {
  color: #999;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.64px;
  margin-top: 0.32rem;
  width: 100%;
}
.empty-box .box {
  position: relative;
  width: 5.8rem;
  min-height: 4rem;
  text-align: center;
  margin: 0.8rem auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  z-index: 2;
}
.empty-box .img1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14.56rem;
  top: -1.4rem;
  pointer-events: none;
}
.empty-box .img2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: -2.44rem;
  pointer-events: none;
}
.empty-box .btn {
  cursor: pointer;
  width: 1.74rem;
  height: 0.52rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: var(--active_color);
  color: #000000;
  margin-top: 0.64rem;
}
.empty-box .btn .icon {
  width: 0.1rem;
  filter: brightness(0);
  margin-left: 0.16rem;
}
@media (max-width:480px) {
  .empty-box {
    font-size: var(--font12);
  }
  .empty-box .img1 {
    width: 8.56rem;
    top: -1rem;
  }
  .empty-box h1 {
    font-size: var(--font36);
  }
  .empty-box .img2 {
    width: 12.2rem;
    top: -1.5rem;
  }
}
.video-list .box {
  width: calc(100% + 0.16rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.video-list .item {
  width: calc(33% - 0.16rem);
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  border-radius: 8px;
  padding: 0.16rem 0.16rem 0;
  height: 3.38rem;
  background: linear-gradient(162deg, #0D0D0D 41.49%, #191F24 111.62%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.video-list .item:before {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: linear-gradient(167deg, #09FF13 22.62%, #0D0D0D 88.76%);
}
.video-list .item:before img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .item:after {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  background: transparent url("../images/p-1.png") right top no-repeat;
  background-size: auto 100%;
}
.video-list .item:after img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .item:hover .image img {
  transform: scale(1.05);
}
.video-list .item:hover .image:before {
  opacity: 0;
}
.video-list .item:hover:before,
.video-list .item:hover:after {
  opacity: 1;
}
.video-list .item:hover h1 {
  text-decoration: underline;
}
.video-list .item:hover * {
  color: var(--active_color) !important;
}
.video-list .item.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.video-list .item.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.video-list .item.up80:nth-child(3n+1) {
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.video-list .item.up80:nth-child(3n+2) {
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.video-list .item.up80:nth-child(3n) {
  -webkit-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.video-list .item .word {
  padding: 0;
  margin: 0;
  min-height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
.video-list .item .word p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
}
.video-list .image {
  position: relative;
  z-index: 2;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
.video-list .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .image:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.5);
  content: '';
  z-index: 2;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .image:before img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .image:after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0.56rem;
  height: 0.56rem;
  content: '';
  background: transparent url("../images/video-play.png") 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 3;
}
.service-con1 {
  padding: 1.6rem 0;
}
.service-con1 .product-list {
  margin-top: 0.8rem;
  padding-left: 4.8rem;
}
.service-con1 .content-title .up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.service-con1 .content-title .up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.service-con1 .list-page {
  margin-top: 0.8rem;
}
@media (max-width:480px) {
  .service-con1 .product-list {
    padding: 0 0.32rem;
    margin-bottom: 0;
  }
  .service-con1 .product-list .list-box {
    width: 100%;
    padding-left: 0;
  }
  .service-con1 .video-list .box {
    width: 100%;
  }
  .service-con1 .video-list .item {
    width: calc(calc(100% - 0.16rem) / 2);
    height: 2.8rem;
  }
  .service-con1 .video-list .item:nth-child(2n) {
    margin-right: 0;
  }
  .service-con1 .video-list .item .word {
    padding: 0.2rem 0.12rem;
  }
  .service-con1 .video-list .item h1 {
    font-size: var(--font22);
  }
  .service-con1 .video-list .item p {
    font-size: var(--font14);
    margin-top: 0;
  }
  .service-con1 .video-list .item.up80 {
    opacity: 0;
    transform: translate(0, 0.3rem);
    animation-delay: 0s;
  }
  .service-con1 .video-list .item.up80.animated {
    animation: TranslateIn 0.5s 0s ease-in-out forwards;
  }
  .service-con1 .video-list .item.up80:nth-child(2n+1) {
    -webkit-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
  }
  .service-con1 .video-list .item.up80:nth-child(2n) {
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
}
.popup_iframe {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
}
.service-con2 {
  background: #000000;
}
.service-con2 .row {
  align-items: flex-start;
}
.service-con2 .content-title {
  align-items: flex-start;
  text-align: left;
  max-width: 5.4rem;
  flex: 1;
}
.service-con2 .content-title h1 {
  white-space: pre-line;
  word-break: break-all;
}
.service-con2 .content-title p {
  width: 100%;
  white-space: pre-line;
  word-break: break-all;
}
.service-con2 .content-title .write {
  opacity: 1;
  filter: none;
  transform: none;
}
.service-con2 .content-title.animated .wowFgT .write {
  animation: color1 0.5s;
}
@media (max-width:480px) {
  .service-con2 .row {
    flex-direction: column;
  }
  .service-con2 .content-title {
    max-width: 100%;
  }
}
.slide-list {
  width: 10.48rem;
  margin-right: 0;
  margin-left: auto;
}
.slide-list.animated .item {
  opacity: 0;
  transform: translate(0.5rem, 0);
  animation: TranslateIn 0.5s 0.5s ease-in-out forwards;
}
.slide-list.animated .item:nth-child(1) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.slide-list.animated .item:nth-child(2) {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}
.slide-list.animated .item:nth-child(3) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.slide-list.animated .item:nth-child(4) {
  animation-delay: 0.9s;
  transition-delay: 0.9s;
}
.slide-list.animated .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.slide-list.animated .item:nth-child(6) {
  animation-delay: 1.1s;
  transition-delay: 1.1s;
}
.slide-list.animated .item:nth-child(7) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.slide-list.animated .item:nth-child(8) {
  animation-delay: 1.3s;
  transition-delay: 1.3s;
}
.slide-list.animated .item:nth-child(9) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.slide-list.animated .item:nth-child(10) {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}
.slide-list.animated .item:nth-child(11) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.slide-list.animated .item:nth-child(12) {
  animation-delay: 1.7s;
  transition-delay: 1.7s;
}
.slide-list.animated .item:nth-child(13) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.slide-list.animated .item:nth-child(14) {
  animation-delay: 1.9s;
  transition-delay: 1.9s;
}
.slide-list.animated .item:nth-child(15) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.slide-list.animated .item:nth-child(16) {
  animation-delay: 2.1s;
  transition-delay: 2.1s;
}
.slide-list.animated .item:nth-child(17) {
  animation-delay: 2.2s;
  transition-delay: 2.2s;
}
.slide-list.animated .item:nth-child(18) {
  animation-delay: 2.3s;
  transition-delay: 2.3s;
}
.slide-list.animated .item:nth-child(19) {
  animation-delay: 2.4s;
  transition-delay: 2.4s;
}
.slide-list.animated .item:nth-child(20) {
  animation-delay: 2.5s;
  transition-delay: 2.5s;
}
.slide-list .item {
  background: url('../images/service-2.png') top center no-repeat, url('../images/service-3.png') bottom center no-repeat;
  background-size: 100% auto, 100% auto;
  height: auto;
  padding: 0.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.16rem;
  width: 100%;
  opacity: 0;
}
.slide-list .item:before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  content: '';
  background: #0d0d0d;
  border-radius: 8px 8px 0 0;
  -webkit-mask: url("../images/mask-1.png") bottom center no-repeat;
  -webkit-mask-size: 100% auto;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.slide-list .item.active .title {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #262D36;
}
.slide-list .item.active .num {
  background: rgba(9, 255, 19, 0.06);
  color: var(--active_color);
}
.slide-list .item.active:before {
  background: linear-gradient(160deg, #0D0D0D 48.67%, #09FF13 767.75%);
}
.slide-list .center {
  background: url('../images/service-4.png') center center repeat-y;
  background-size: 100% auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.slide-list .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #FFF;
  padding: 0 0.2rem;
  margin-bottom: 0;
}
.slide-list .title .num {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 0.12rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: var(--font20);
  font-weight: 500;
  font-family: 'Montserrat';
  margin-right: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slide-list .title h2 {
  font-size: var(--font24);
  font-weight: 400;
  letter-spacing: -0.96px;
  transform: translateY(-5%);
}
.slide-list .slideBtn {
  position: absolute;
  right: 0;
  top: -0.2rem;
  width: 1rem;
  height: 0.96rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-left: 1px solid #262D36;
  cursor: pointer;
}
.slide-list .slideBtn span {
  width: 0.16rem;
  height: 0.16rem;
  background: transparent url("../images/icon9.png") center center no-repeat;
  background-size: 100% auto;
}
.slide-list .slide {
  padding: 0.42rem 0.42rem 0.22rem 1rem;
  display: none;
}
.slide-list .slide p {
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  white-space: pre-line;
  word-break: break-all;
}
@media (max-width:480px) {
  .slide-list {
    width: 100%;
    margin-top: 0.32rem;
  }
  .slide-list .title .num {
    font-size: var(--font14);
  }
  .slide-list .title h2 {
    font-size: var(--font16);
  }
  .slide-list .slide p {
    font-size: var(--font12);
  }
}
.service-con3 .content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
.service-con3 .content-title h1 {
  margin: 0;
}
.service-con3 .selectBox .layui-input,
.service-con3 .selectBox .layui-select,
.service-con3 .selectBox .layui-textarea {
  width: 5.98rem;
  height: 0.68rem;
  border: none;
  border-radius: 0;
  background: transparent url("../images/service-5.png") 0 0 no-repeat;
  background-size: 100% 100%;
  color: #666666;
  padding-left: 0.34rem;
  font-size: var(--font18);
}
.service-con3 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem;
  margin-top: 0.68rem;
  width: calc(100% + 0.16rem);
  margin-bottom: 0.8rem;
}
.service-con3 .list.animated .item {
  opacity: 0;
  transform: translate(0, 0.5rem);
  animation: TranslateIn 0.5s 0.5s ease-in-out forwards;
}
.service-con3 .list.animated .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.service-con3 .list.animated .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.service-con3 .list.animated .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.service-con3 .list.animated .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.service-con3 .list.animated .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.service-con3 .list.animated .item:nth-child(6) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.service-con3 .list.animated .item:nth-child(7) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.service-con3 .list.animated .item:nth-child(8) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.service-con3 .list.animated .item:nth-child(9) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.service-con3 .list.animated .item:nth-child(10) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.service-con3 .list .item {
  width: 5.87rem;
  height: 5.8rem;
  border-radius: 8px;
  background: linear-gradient(159deg, #000 46.11%, #003423 103.18%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  opacity: 0;
}
.service-con3 .list .item.full {
  width: calc(100% - 0.16rem);
  height: 5.8rem;
}
.service-con3 .list .column {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  padding: 0.48rem 0.48rem 0.4rem;
  position: relative;
  max-width: 5.87rem;
}
.service-con3 .list .image {
  width: 9.18rem;
  height: 5.16rem;
  margin-right: 0.32rem;
  margin-left: auto;
  margin-top: 0.32rem;
  border-radius: 8px;
  overflow: hidden;
}
.service-con3 .list .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-con3 .list h2 {
  color: #FFF;
  font-size: var(--font40);
  font-weight: 650;
  line-height: 1.175;
  letter-spacing: -1.6px;
  margin-bottom: 0.56rem;
}
.service-con3 .list .num {
  position: absolute;
  right: 0.48rem;
  top: 0.48rem;
  color: #666;
  font-size: var(--font16);
  font-weight: 300;
  letter-spacing: -0.64px;
}
.service-con3 .list p {
  color: #FFF;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.3125;
}
.service-con3 .list .row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.16rem;
}
.service-con3 .list .icon {
  width: 0.24rem;
  margin-right: 0.16rem;
}
.service-con3 .list h3 {
  color: var(--active_color);
  font-size: var(--font16);
  font-weight: 400;
}
.service-con3 .list .bottom {
  margin-top: auto;
  width: 100%;
}
.service-con3 .list .bottom p {
  margin-top: 0.24rem;
  padding-top: 0.24rem;
  border-top: 1px solid var(--border-color);
  color: #666666;
}
@media (max-width:480px) {
  .service-con3 .selectBox .layui-input,
  .service-con3 .selectBox .layui-select,
  .service-con3 .selectBox .layui-textarea {
    width: 3rem;
    padding-left: 0.32rem;
    font-size: var(--font12);
  }
  .service-con3 .list .item {
    width: 100%;
    height: auto;
    flex-direction: column-reverse;
    padding: 0.32rem;
  }
  .service-con3 .list .item.full {
    width: 100%;
    height: auto;
    padding: 0.32rem;
  }
  .service-con3 .list .column {
    max-width: 100%;
    height: auto;
    padding: 0;
  }
  .service-con3 .list .image {
    width: 100%;
    margin: 0 0 0.32rem;
    height: 3.2rem;
  }
  .service-con3 .list .num {
    right: 0;
    top: 0;
    font-size: var(--font12);
  }
  .service-con3 .list h2 {
    font-size: var(--font24);
  }
  .service-con3 .list .bottom {
    margin-top: 0.56rem;
  }
  .service-con3 .list p {
    font-size: var(--font12);
  }
  .service-con3 .list h3 {
    font-size: var(--font12);
  }
}
.layui-form-select dl {
  border-color: #262D36;
  background: #0d0d0d;
}
.layui-form-select dl dd:hover,
.layui-form-select dl dd.layui-this {
  background: rgba(0, 0, 0, 0.6);
}
.layui-form-select .layui-edge {
  border: none;
  width: 0.12rem;
  height: 0.08rem;
  right: 0.3rem;
  background: transparent url("../images/arrow-d.png") 0 0 no-repeat;
  background-size: 100% 100%;
}
.service-con4 {
  padding-bottom: 1.6rem;
}
.service-con4 .content-title {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0.8rem;
}
.service-con4 .list {
  position: relative;
  padding: 0;
  margin-top: 0;
}
.service-con4 .left-nav {
  left: 0;
}
.service-con4 .slide-list {
  width: 13.76rem;
}
.service-con4 .slide-list .slideBtn {
  height: 0.98rem;
}
.service-con4 .slide-list .item {
  padding: 0.24rem 0;
}
@media (max-width:480px) {
  .service-con4 .left-nav {
    left: -0.32rem;
  }
  .service-con4 .slide-list {
    width: 100%;
  }
}
.download-con1 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.download-con1 .left-nav {
  left: 0;
}
.download-con1 .main {
  width: 13.76rem;
  margin-left: auto;
  margin-right: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1B2027;
  background: #000000;
  background: linear-gradient(162deg, #000 41.49%, #191F24 111.62%);
}
.download-con1 .main .list {
  padding: 0.64rem;
}
.download-con1 .main .list p {
  white-space: pre-line;
  word-break: break-all;
  color: #666;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.3125;
}
.download-con1 .main .list h2 {
  color: #FFF;
  font-size: var(--font20);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.12rem;
}
.download-con1 .main .list h3 {
  color: #FFF;
  font-size: var(--font24);
  font-weight: 650;
  margin-top: 0.48rem;
  margin-bottom: 0.32rem;
}
.download-con1 .main .btn {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.04rem;
  font-size: var(--font16);
  color: #000;
}
.download-con1 .main .btn span {
  height: 0.52rem;
  border-radius: 8px;
  background: #09FF13;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-left: 0.34rem;
  padding-right: 0.46rem;
}
.download-con1 .main .btn span:last-child {
  padding: 0;
  width: 0.52rem;
}
.download-con1 .main .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 0.32rem;
  height: 1.34rem;
  background: #141414;
  border-radius: 8px;
  margin-bottom: 0.16rem;
}
.download-con1 .main .column {
  align-items: flex-start;
}
.download-con1 .title {
  height: 2.08rem;
  border-bottom: 1px solid #1B2027;
  padding-left: 0.64rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.download-con1 .title .images {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.64rem;
}
.download-con1 .title .images img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download-con1 .title h1 {
  color: #FFF;
  font-size: var(--font32);
  font-weight: 650;
}
@media (max-width:480px) {
  .download-con1 .left-nav {
    left: -0.32rem;
  }
  .download-con1 .main {
    width: 100%;
  }
  .download-con1 .main .list {
    padding: 0.32rem;
  }
  .download-con1 .main .list p {
    font-size: var(--font12);
  }
  .download-con1 .main .list h2 {
    font-size: var(--font14);
  }
  .download-con1 .main .column {
    flex: 1;
    margin-right: 0.24rem;
  }
  .download-con1 .main .btn {
    font-size: var(--font12);
  }
  .download-con1 .title {
    padding: 0 0.32rem;
    height: 1.36rem;
  }
  .download-con1 .title .images {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.32rem;
  }
  .download-con1 .title h1 {
    font-size: var(--font22);
  }
}
.drive-con1 .empty-box .logo {
  width: 3.94rem;
  margin-top: -1rem;
}
.drive-con1 .content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.drive-con1 .content-title h1 {
  margin: 0;
}
.drive-con1 .content-title .btn {
  cursor: pointer;
  width: 1.74rem;
  height: 0.52rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: var(--active_color);
  color: #000000;
}
.drive-con1 .content-title .btn .icon {
  width: 0.1rem;
  filter: brightness(0);
  margin-left: 0.16rem;
}
.drive-con1 .product-list {
  margin-top: 0.8rem;
  padding: 0;
}
.drive-con1 .product-list .list-box {
  padding: 0;
}
.drive-con1 .product-list .item {
  width: 5.87rem;
  height: 5.8rem;
  background: linear-gradient(159deg, #000 46.11%, #003423 103.18%);
}
.drive-con1 .product-list .item .word p span {
  color: #666;
  font-weight: 300;
  letter-spacing: -0.64px;
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 0.2rem;
  margin-right: 0.2rem;
}
.drive-con1 .product-list .item .word p span:last-child {
  border-right: none;
}
.drive-con1 .product-list .item .word p b {
  font-weight: 650;
}
.drive-con1 .product-list .item .word p .white {
  color: #ffffff;
}
.drive-con1 .product-list .item .word p .active {
  color: var(--active_color);
}
.drive-con1 .product-list .item .word h1 {
  margin-top: 0.16rem;
}
.drive-con1 .product-list .item {
  opacity: 0;
}
.drive-con1 .product-list.animated .item {
  opacity: 0;
  transform: translate(0, 0.5rem);
  animation: TranslateIn 0.5s 0.5s ease-in-out forwards;
}
.drive-con1 .product-list.animated .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.drive-con1 .product-list.animated .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.drive-con1 .product-list.animated .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.drive-con1 .product-list.animated .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.drive-con1 .product-list.animated .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.drive-con1 .product-list.animated .item:nth-child(6) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.drive-con1 .product-list.animated .item:nth-child(7) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.drive-con1 .product-list.animated .item:nth-child(8) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.drive-con1 .product-list.animated .item:nth-child(9) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.drive-con1 .product-list.animated .item:nth-child(10) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.drive-con1 .product-list.animated .item:nth-child(11) {
  animation-delay: 2.2s;
  transition-delay: 2.2s;
}
.drive-con1 .product-list.animated .item:nth-child(12) {
  animation-delay: 2.4s;
  transition-delay: 2.4s;
}
.drive-con1 .product-list.animated .item:nth-child(13) {
  animation-delay: 2.6s;
  transition-delay: 2.6s;
}
.drive-con1 .product-list.animated .item:nth-child(14) {
  animation-delay: 2.8s;
  transition-delay: 2.8s;
}
.drive-con1 .product-list.animated .item:nth-child(15) {
  animation-delay: 3s;
  transition-delay: 3s;
}
.drive-con1 .product-list.animated .item:nth-child(16) {
  animation-delay: 3.2s;
  transition-delay: 3.2s;
}
.drive-con1 .product-list.animated .item:nth-child(17) {
  animation-delay: 3.4s;
  transition-delay: 3.4s;
}
.drive-con1 .product-list.animated .item:nth-child(18) {
  animation-delay: 3.6s;
  transition-delay: 3.6s;
}
.drive-con1 .product-list.animated .item:nth-child(19) {
  animation-delay: 3.8s;
  transition-delay: 3.8s;
}
.drive-con1 .product-list.animated .item:nth-child(20) {
  animation-delay: 4s;
  transition-delay: 4s;
}
@media (max-width:480px) {
  .drive-con1 .product-list {
    margin-bottom: 0;
  }
  .drive-con1 .product-list .list-box {
    width: 100%;
    gap: 0.24rem;
    margin-bottom: 0;
  }
  .drive-con1 .product-list .item {
    width: 100%;
    height: auto;
  }
  .drive-con1 .product-list .item .word {
    padding: 0.32rem 0.32rem 0;
  }
  .drive-con1 .product-list .item .img-box {
    margin-top: 0.24rem;
    flex: unset;
  }
  .drive-con1 .product-list .item .img-box img {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    height: auto;
  }
  .drive-con1 .product-list .item .column {
    height: auto;
  }
}
.kol-con1 {
  background: #000000;
}
.kol-con1 .swiper1 {
  margin-top: 0.8rem;
}
.kol-con1 .swiper1.animated .swiper-slide {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translate(0, 0);
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(1) {
  animation-delay: 0.1s;
  transition-delay: 0.1s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(2) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(3) {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(4) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(5) {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(6) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(7) {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(8) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(9) {
  animation-delay: 0.9s;
  transition-delay: 0.9s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(10) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(11) {
  animation-delay: 1.1s;
  transition-delay: 1.1s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(12) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(13) {
  animation-delay: 1.3s;
  transition-delay: 1.3s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(14) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(15) {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(16) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(17) {
  animation-delay: 1.7s;
  transition-delay: 1.7s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(18) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(19) {
  animation-delay: 1.9s;
  transition-delay: 1.9s;
}
.kol-con1 .swiper1.animated .swiper-slide:nth-child(20) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.kol-con1 .swiper1 .swiper-slide {
  opacity: 0;
  transform: translate(0, 0.5rem);
  width: auto;
  height: auto;
  padding: 0 0.08rem;
  transition: none;
}
.kol-con1 .swiper1 .swiper-slide .box {
  width: 4.69rem;
  height: 6.2rem;
  background: transparent url("../images/kol-2.png") 0 0 no-repeat;
  background-size: 100% 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.kol-con1 .swiper1 .swiper-slide .box:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  content: '';
  pointer-events: none;
  background: transparent url("../images/kol-3.png") bottom center no-repeat;
  background-size: 100% auto;
}
.kol-con1 .swiper1 .swiper-slide .box:after img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.kol-con1 .swiper1 .swiper-slide .word {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.32rem 0.4rem;
  z-index: 2;
}
.kol-con1 .swiper1 .swiper-slide .word h2 {
  color: #000;
  font-size: var(--font24);
  font-weight: 650;
  line-height: 1.16666667;
  letter-spacing: -0.96px;
  margin-bottom: 0.12rem;
}
.kol-con1 .swiper1 .swiper-slide .word p {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.64px;
}
.kol-con1 .swiper2 {
  margin-top: 1.6rem;
  padding-left: 0.64rem;
}
.kol-con1 .swiper2 .content-title {
  padding-right: 0.64rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.8rem;
}
.kol-con1 .swiper2 .content-title h1 {
  margin: 0;
}
.kol-con1 .swiper2 .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.12rem;
}
.kol-con1 .swiper2 .btn .prev,
.kol-con1 .swiper2 .btn .next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 2;
  width: 0.52rem;
  height: 0.52rem;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
}
.kol-con1 .swiper2 .btn .prev i,
.kol-con1 .swiper2 .btn .next i {
  font-size: 0.16rem;
}
.kol-con1 .swiper2 .btn .prev:hover,
.kol-con1 .swiper2 .btn .next:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.kol-con1 .swiper2 .btn .swiper-button-disabled {
  opacity: 0.6;
  cursor: no-drop;
}
.kol-con1 .swiper2 .swiper-slide {
  width: auto;
  height: auto;
  padding-right: 0.16rem;
  margin-right: 0.24rem;
}
.kol-con1 .swiper2 .video-list {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translate(0, 0);
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(1) {
  animation-delay: 0.1s;
  transition-delay: 0.1s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(2) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(3) {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(4) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(5) {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(6) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(7) {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(8) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(9) {
  animation-delay: 0.9s;
  transition-delay: 0.9s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(10) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(11) {
  animation-delay: 1.1s;
  transition-delay: 1.1s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(12) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(13) {
  animation-delay: 1.3s;
  transition-delay: 1.3s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(14) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(15) {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(16) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(17) {
  animation-delay: 1.7s;
  transition-delay: 1.7s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(18) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(19) {
  animation-delay: 1.9s;
  transition-delay: 1.9s;
}
.kol-con1 .swiper2 .video-list.animated .swiper-slide:nth-child(20) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.kol-con1 .swiper2 .video-list .swiper-slide {
  opacity: 0;
  transform: translate(0, 0.5rem);
}
.kol-con1 .swiper2 .video-list .item {
  width: 8rem;
  height: 4.5rem;
  padding: 0;
  margin: 0;
}
.kol-con1 .swiper2 .video-list .item:before,
.kol-con1 .swiper2 .video-list .item:after {
  display: none;
}
.kol-con1 .swiper2 .video-list .item:hover .image:before {
  opacity: 1;
}
.kol-con1 .swiper2 .video-list .image {
  height: 100%;
}
.kol-con1 .swiper2 .video-list .image:after {
  z-index: 3;
}
.kol-con1 .swiper2 .video-list .word {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.32rem 0.4rem;
  color: #ffffff;
  z-index: 4;
  height: auto;
}
@media (max-width:480px) {
  .kol-con1 .swiper1 .swiper-slide .word h2 {
    font-size: var(--font16);
  }
  .kol-con1 .swiper1 .swiper-slide .word p {
    font-size: var(--font12);
  }
  .kol-con1 .swiper2 {
    padding: 0 0.32rem;
  }
  .kol-con1 .swiper2 .content-title {
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .kol-con1 .swiper2 .swiper-slide {
    width: 100%;
    height: 3.6rem;
    padding: 0;
  }
  .kol-con1 .swiper2 .video-list .item {
    width: 100%;
    height: 100%;
  }
  .kol-con1 .swiper2 .video-list .image {
    width: 100%;
  }
  .kol-con1 .swiper2 .video-list .word {
    font-size: var(--font12);
  }
}
.kol-con2 .p160 {
  padding-bottom: 0;
}
.kol-con2 .tabTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.kol-con2 .tabTitle.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.kol-con2 .tabTitle.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.kol-con2 .tabTitle span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 1.76rem;
  height: 0.52rem;
  padding: 0 0.12rem;
  border: 1px solid #333333;
  border-right: none;
  color: #FFF;
  font-size: var(--font16);
  font-weight: 300;
  cursor: pointer;
}
.kol-con2 .tabTitle span:last-child {
  border-right: 1px solid #333333;
}
.kol-con2 .tabTitle span:hover,
.kol-con2 .tabTitle span.active {
  border: 1px solid var(--active_color);
  background: var(--active_color);
  color: #000000;
}
.kol-con2 .video-list {
  margin-top: 0.8rem;
}
.kol-con2 .video-list .item {
  width: 5.86rem;
  height: 4.14rem;
}
@media (max-width:480px) {
  .kol-con2 .video-list .box {
    width: 100%;
  }
  .kol-con2 .video-list .item {
    width: 100%;
    height: 4.5rem;
    margin-right: 0;
    padding: 0.24rem;
    margin-bottom: 0.24rem;
  }
  .kol-con2 .video-list .item.up80 {
    animation-delay: 0.2s !important;
  }
  .kol-con2 .video-list .word {
    height: auto;
    margin-top: 0.24rem;
  }
  .kol-con2 .video-list .image {
    width: 100%;
  }
}
.kol-con3 {
  width: 100%;
}
.kol-con3 .content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.8rem;
}
.kol-con3 .content-title h1 {
  margin: 0;
}
a.more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 1.76rem;
  padding: 0.14rem 0.28rem;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font16);
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
a.more .icon {
  width: 10px;
  margin-left: 0.16rem;
}
a.more:not(.hoverBtn):hover,
a.more:not(.hoverBtn).active {
  border: 1px solid var(--active_color);
  background: var(--active_color);
  color: #000000;
}
a.more:not(.hoverBtn):hover .icon,
a.more:not(.hoverBtn).active .icon {
  filter: brightness(0);
}
@media (max-width:480px) {
  a.more {
    font-size: var(--font12);
  }
}
.news-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.news-list.animated .item {
  opacity: 0;
  transform: translate(0, 0.3rem);
  animation: TranslateIn 0.5s 0.5s ease-in-out forwards;
}
.news-list.animated .item:nth-child(1) {
  animation-delay: 0.1s;
  transition-delay: 0.1s;
}
.news-list.animated .item:nth-child(2) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.news-list.animated .item:nth-child(3) {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}
.news-list.animated .item:nth-child(4) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.news-list.animated .item:nth-child(5) {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}
.news-list.animated .item:nth-child(6) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.news-list.animated .item:nth-child(7) {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}
.news-list.animated .item:nth-child(8) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.news-list.animated .item:nth-child(9) {
  animation-delay: 0.9s;
  transition-delay: 0.9s;
}
.news-list.animated .item:nth-child(10) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.news-list.animated .item:nth-child(11) {
  animation-delay: 1.1s;
  transition-delay: 1.1s;
}
.news-list.animated .item:nth-child(12) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.news-list.animated .item:nth-child(13) {
  animation-delay: 1.3s;
  transition-delay: 1.3s;
}
.news-list.animated .item:nth-child(14) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.news-list.animated .item:nth-child(15) {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}
.news-list.animated .item:nth-child(16) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.news-list.animated .item:nth-child(17) {
  animation-delay: 1.7s;
  transition-delay: 1.7s;
}
.news-list.animated .item:nth-child(18) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.news-list.animated .item:nth-child(19) {
  animation-delay: 1.9s;
  transition-delay: 1.9s;
}
.news-list.animated .item:nth-child(20) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.news-list .swiper-box {
  width: 100%;
  overflow: hidden;
}
.news-list .item {
  width: calc((100% - 0.48rem) / 4);
  margin-bottom: 0.32rem;
  height: 6.34rem;
  border-radius: 8px;
  position: relative;
  margin-right: 0.16rem;
  background: linear-gradient(180deg, #FFF 24.05%, #999 170.27%);
  opacity: 0;
}
.news-list .item:nth-child(4n) {
  margin-right: 0;
}
.news-list .item.swiper-slide:nth-child(4n) {
  margin-right: 0.16rem;
}
.news-list .item:hover * {
  color: #000000 !important;
}
.news-list .item:hover h3 {
  background: transparent url("../images/news-2.png") 0 0 no-repeat;
  background-size: 100% 100%;
}
.news-list .item:hover h2 {
  text-decoration: underline;
}
.news-list .item:hover .more {
  text-decoration: underline;
}
.news-list .item:hover .image img {
  transform: scale(1.05);
}
.news-list .item a {
  height: 100%;
}
.news-list .item .word {
  flex: 1;
  padding: 0.4rem 0.32rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
}
.news-list .item .column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
}
.news-list .item .image {
  width: 101%;
  height: 2.6rem;
  -webkit-mask: url("../images/mask-news.png") 0 0 no-repeat;
  -webkit-mask-size: 100% 102%;
  margin-top: auto;
  margin-bottom: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: #000000;
}
.news-list .item .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.news-list .item h3 {
  min-width: 0.92rem;
  height: 2.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: transparent url("../images/news-1.png") 0 0 no-repeat;
  background-size: 100% 100%;
  color: #000;
  font-size: var(--font14);
  font-weight: 400;
  line-height: 1;
  padding: 0.12rem 0.18rem 0.08rem;
}
.news-list .item h2 {
  margin-top: 0.16rem;
  color: #666;
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.news-list .item .date {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  right: 0.32rem;
  bottom: 0;
}
.news-list .item .date p {
  color: #999;
  font-size: var(--font20);
  font-weight: 500;
  line-height: 1;
  font-family: "AlumniSans";
  text-align: right;
}
.news-list .item .date .year {
  display: block;
}
.news-list .item .date .day {
  font-size: var(--font80);
  font-weight: 500;
  margin-right: 0.08rem;
  padding-bottom: 0.1em;
}
.news-list .item .more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #999999;
  font-size: var(--font16);
  font-weight: 400;
  margin-top: 0.32rem;
  margin-bottom: auto;
}
.news-list .item .more .icon {
  width: 0.1rem;
  margin-left: 0.15rem;
  filter: brightness(0);
}
@media (max-width:480px) {
  .news-list.animated .item {
    animation-delay: 0.2s !important;
  }
  .news-list .item {
    width: 100%;
    height: 8rem;
  }
  .news-list .item .image {
    height: 4.1rem;
  }
  .news-list .item h2 {
    font-size: var(--font18);
  }
  .news-list .item .more {
    font-size: var(--font12);
  }
}
.cooperation-con1 .map-box {
  width: 9.88rem;
  height: 7.03rem;
}
.cooperation-con1 .map-box #main {
  width: 100%;
  height: 100%;
}
.cooperation-con1 .up50 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.cooperation-con1 .up50.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.cooperation-con1 .list-box {
  width: 6.72rem;
  height: 7.03rem;
  border-radius: 8px;
  background: linear-gradient(159deg, #000 46.11%, #003423 103.18%);
  padding: 0.48rem;
  margin-left: auto;
}
.cooperation-con1 .list-box.up50 {
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.cooperation-con1 .list-box .title {
  color: #FFF;
  font-size: var(--font32);
  font-weight: 500;
  line-height: normal;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.cooperation-con1 .list-box .title span {
  color: var(--active_color);
}
.cooperation-con1 .list-box .list {
  overflow-y: auto;
  scrollbar-gutter: stable;
  width: calc(100% + 0.48rem);
  margin-top: 0.32rem;
  height: 5rem;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 95%, rgba(0, 0, 0, 0) 100%);
}
.cooperation-con1 .list-box .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 5.76rem;
  margin-bottom: 0.48rem;
}
.cooperation-con1 .list-box .item:last-child {
  margin-bottom: 0.2rem;
}
.cooperation-con1 .list-box .item .word {
  flex: 1;
  margin-right: 0.4rem;
}
.cooperation-con1 .list-box .item .word h2 {
  color: #FFF;
  font-size: var(--font20);
  font-weight: 650;
  line-height: 1.15;
}
.cooperation-con1 .list-box .item .word p {
  color: #999;
  font-size: var(--font16);
  margin-top: 0.16rem;
  font-weight: 400;
  line-height: 1.1875;
}
.cooperation-con1 .list-box .item .image {
  width: 2.38rem;
  height: 1.34rem;
}
.cooperation-con1 .list-box .item .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:480px) {
  .cooperation-con1 .p160 {
    padding-top: 0.64rem;
  }
  .cooperation-con1 .up50 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cooperation-con1 .row {
    flex-direction: column;
  }
  .cooperation-con1 .map-box {
    width: 100%;
    height: 4.88rem;
  }
  .cooperation-con1 .list-box {
    margin-top: 0.24rem;
  }
  .cooperation-con1 .list-box .title {
    font-size: var(--font22);
  }
  .cooperation-con1 .list-box .item {
    flex-direction: column-reverse;
  }
  .cooperation-con1 .list-box .item .image {
    width: 100%;
    height: 3.2rem;
  }
  .cooperation-con1 .list-box .item .word {
    margin-right: 0;
    margin-top: 0.16rem;
  }
  .cooperation-con1 .list-box .item .word h2 {
    font-size: var(--font14);
  }
  .cooperation-con1 .list-box .item .word p {
    font-size: var(--font12);
  }
}
.media-con1 {
  background: #000000;
}
.media-con1 .image {
  mrgin-right: auto;
  width: 8.84rem;
  height: 4.97rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
.media-con1 .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-con1 .image h3 {
  position: absolute;
  left: 0.32rem;
  top: 0.32rem;
  min-width: 0.92rem;
  height: 2.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: transparent url("../images/news-3.png") 0 0 no-repeat;
  background-size: 100% 100%;
  color: #000;
  font-size: var(--font14);
  font-weight: 400;
  line-height: 1;
  padding: 0.12rem 0.18rem 0.08rem;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}
.media-con1 .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.media-con1 .word {
  width: 7.7rem;
}
.media-con1 .word h1 {
  color: #FFF;
  font-size: var(--font40);
  font-weight: 650;
  line-height: 1.2;
}
.media-con1 .word p {
  margin-top: 0.24rem;
  color: #999;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}
.media-con1 .word .more {
  width: 1.74rem;
  margin-top: 0.64rem;
}
.media-con1 .swiper-box {
  overflow: hidden;
  padding: 2px 0 2px 4px;
  position: relative;
}
.media-con1 .pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 7.7rem;
  z-index: 2;
}
.media-con1 .pagination p {
  color: #666;
  font-family: "AlumniSans";
  font-size: var(--font20);
  font-weight: 500;
}
.media-con1 .pagination p b {
  font-size: var(--font80);
  font-weight: 500;
  margin-right: 0.1rem;
  line-height: 1;
}
.media-con1 .pagination .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.12rem;
}
.media-con1 .pagination .btn .prev,
.media-con1 .pagination .btn .next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 2;
  width: 0.52rem;
  height: 0.52rem;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
}
.media-con1 .pagination .btn .prev i,
.media-con1 .pagination .btn .next i {
  font-size: 0.16rem;
}
.media-con1 .pagination .btn .prev:hover,
.media-con1 .pagination .btn .next:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.media-con1 .pagination .btn .swiper-button-disabled {
  opacity: 0.6;
  cursor: no-drop;
}
@media (max-width:480px) {
  .media-con1 .row {
    flex-direction: column;
  }
  .media-con1 .image {
    width: 100%;
    height: 3.85rem;
  }
  .media-con1 .word {
    width: 100%;
    margin-top: 0.24rem;
  }
  .media-con1 .word h1 {
    font-size: var(--font26);
  }
  .media-con1 .word p {
    font-size: var(--font12);
  }
  .media-con1 .word .more {
    margin-top: 0.32rem;
  }
  .media-con1 .swiper-box {
    overflow: visible;
    padding: 0 0 1.2rem;
  }
  .media-con1 .pagination {
    width: 100%;
  }
}
.media-con2 .tabTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.8rem;
}
.media-con2 .tabTitle.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.media-con2 .tabTitle.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.media-con2 .tabTitle span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 1.76rem;
  height: 0.52rem;
  padding: 0 0.12rem;
  border: 1px solid #333333;
  border-right: none;
  color: #FFF;
  font-size: var(--font16);
  font-weight: 300;
  cursor: pointer;
}
.media-con2 .tabTitle span:last-child {
  border-right: 1px solid #333333;
}
.media-con2 .tabTitle span:hover,
.media-con2 .tabTitle span.active {
  border: 1px solid var(--active_color);
  background: var(--active_color);
  color: #000000;
}
.news-detail .topBanner .word {
  width: 10rem;
  padding-bottom: 1rem;
}
.news-detail .topBanner .title h1 {
  font-weight: 400;
  line-height: 1;
}
.news-detail .topBanner .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 0.64rem;
}
.news-detail .topBanner .info .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #666;
  font-size: var(--font16);
  margin-right: 0.36rem;
  font-weight: 300;
  line-height: normal;
}
.news-detail .topBanner .info .item img {
  width: 0.4rem;
  margin-right: 0.08rem;
  margin-top: 0.02rem;
}
.news-detail .topBanner .info .item p {
  margin-top: 0;
}
.news-detail .news-con1 {
  background: #000000;
  position: relative;
  z-index: 2;
}
.news-detail .news-con1 .w1792 {
  transform: translateY(-2.2rem);
}
.news-detail .w1792 .main {
  text-align: center;
  padding: 0.96rem 0.8rem;
  background: #141414;
  border-radius: 8px;
}
.news-detail .w1792 .detail {
  width: 100%;
  max-width: 12rem;
  margin: 0 auto;
  text-align: justify;
  color: #666;
  font-size: var(--font18);
  font-weight: 400;
  line-height: 1.3;
}
.news-detail .w1792 .detail img {
  border-radius: 8px;
}
.news-detail .w1792 .detail * {
  margin: 0.24rem 0;
}
.news-detail .w1792 .detail a {
  display: inline-block;
  color: #666666;
  text-decoration: underline;
  margin: 0;
}
.news-detail .w1792 .detail h1,
.news-detail .w1792 .detail h2,
.news-detail .w1792 .detail h3,
.news-detail .w1792 .detail h4,
.news-detail .w1792 .detail h5,
.news-detail .w1792 .detail h6 {
  color: #FFF;
  font-size: var(--font24);
  font-weight: 400;
}
.news-detail .w1792 .info {
  border-top: 1px solid var(--border-color);
  margin-top: 0.96rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: left;
  padding-top: 0.48rem;
  gap: 0.32rem;
}
.news-detail .w1792 .info a {
  flex: 1;
}
.news-detail .w1792 .info a:hover .btn {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.news-detail .w1792 .info p {
  color: #666;
  font-size: var(--font16);
  text-align: left;
  line-height: 1.3;
  margin-bottom: 0.32rem;
  white-space: pre-line;
  word-break: break-all;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-detail .w1792 .info .back {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.96rem;
}
.news-detail .w1792 .info .prev,
.news-detail .w1792 .info .next {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-detail .w1792 .info .next {
  text-align: right;
  align-items: flex-end;
}
.news-detail .w1792 .info .next i {
  margin-right: 0;
  margin-left: 0.12rem;
}
.news-detail .w1792 .info .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 2;
  height: 0.4rem;
  border: 1px solid #666;
  cursor: pointer;
  color: #666;
  font-size: var(--font16);
  font-weight: 400;
  width: fit-content;
  padding: 0 0.2rem;
  line-height: 1;
  margin-top: auto;
}
.news-detail .w1792 .info .btn i {
  font-size: 0.16rem;
  margin-right: 0.12rem;
}
@media (max-width:480px) {
  .news-detail .news-con1 .w1792 {
    transform: translateY(-0.5rem);
  }
  .news-detail .news-con1 .w1792 .main {
    padding: 0.32rem;
  }
  .news-detail .news-con1 .w1792 .detail {
    font-size: var(--font14);
  }
  .news-detail .news-con1 .w1792 .detail h1,
  .news-detail .news-con1 .w1792 .detail h2,
  .news-detail .news-con1 .w1792 .detail h3,
  .news-detail .news-con1 .w1792 .detail h4,
  .news-detail .news-con1 .w1792 .detail h5,
  .news-detail .news-con1 .w1792 .detail h6 {
    color: #FFF;
    font-size: var(--font18);
    font-weight: 400;
  }
  .news-detail .news-con1 .w1792 .info .back {
    bottom: 0.32rem;
  }
  .news-detail .topBanner .banner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
  .news-detail .topBanner .word {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    padding: 1rem 0.32rem 1.2rem;
  }
  .news-detail .topBanner .t2 {
    height: 0.6rem;
  }
}
.contact-con1 {
  background: #000000;
}
.contact-con1 .map-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0.32rem;
  height: 6.4rem;
  background: transparent url("../images/contact-1.png") 0 0 no-repeat;
  background-size: 100% 100%;
}
.contact-con1 .map-box.up80 {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.contact-con1 .map-box.up80.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
.contact-con1 .map-box .column {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1;
  padding: 0.32rem;
}
.contact-con1 .map-box .column h1 {
  color: #FFF;
  font-size: var(--font48);
  font-weight: 650;
  letter-spacing: -1.92px;
  margin-bottom: auto;
}
.contact-con1 .map-box .column .row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 0.2rem;
}
.contact-con1 .map-box .column .icon {
  width: 0.24rem;
  margin-top: 0.02rem;
  margin-right: 0.16rem;
}
.contact-con1 .map-box .column p {
  color: #FFF;
  font-size: var(--font16);
  font-weight: 400;
  line-height: normal;
  flex-wrap: nowrap;
}
.contact-con1 .map-box .column a {
  display: inline-block;
  color: #ffffff;
}
.contact-con1 .map-box .map {
  width: 10.24rem;
  margin-left: auto;
  height: 100%;
  background: #000000;
}
.contact-con1 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem;
  margin-top: 0.32rem;
  width: calc(100% + 0.16rem);
}
.contact-con1 .list.animated .item {
  opacity: 0;
  transform: translate(0, 0.5rem);
  animation: TranslateIn 0.5s 0.5s ease-in-out forwards;
}
.contact-con1 .list.animated .item:nth-child(1) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.contact-con1 .list.animated .item:nth-child(2) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.contact-con1 .list.animated .item:nth-child(3) {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
.contact-con1 .list.animated .item:nth-child(4) {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}
.contact-con1 .list.animated .item:nth-child(5) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.contact-con1 .list.animated .item:nth-child(6) {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}
.contact-con1 .list.animated .item:nth-child(7) {
  animation-delay: 1.4s;
  transition-delay: 1.4s;
}
.contact-con1 .list.animated .item:nth-child(8) {
  animation-delay: 1.6s;
  transition-delay: 1.6s;
}
.contact-con1 .list.animated .item:nth-child(9) {
  animation-delay: 1.8s;
  transition-delay: 1.8s;
}
.contact-con1 .list.animated .item:nth-child(10) {
  animation-delay: 2s;
  transition-delay: 2s;
}
.contact-con1 .list .item {
  width: 5.87rem;
  height: 5.8rem;
  border-radius: 8px;
  background: transparent url("../images/contact-2.png") 0 0 no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  opacity: 0;
}
.contact-con1 .list .column {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  padding: 0.48rem;
  position: relative;
}
.contact-con1 .list .top {
  position: relative;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  margin-bottom: auto;
}
.contact-con1 .list .top .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 0.16rem;
  right: 0;
  width: 0.44rem;
  margin: 0;
}
.contact-con1 .list h2 {
  color: #09FF13;
  font-size: var(--font32);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -1.28px;
}
.contact-con1 .list p {
  color: #FFF;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.3125;
}
.contact-con1 .list .row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 0.16rem;
}
.contact-con1 .list a {
  color: #ffffff;
  display: inline-block;
}
.contact-con1 .list .icon {
  width: 0.2rem;
  margin-top: 0.02rem;
  margin-right: 0.16rem;
}
.contact-con1 .anchorBL {
  dissplay: none;
}
@media (max-width:480px) {
  .contact-con1 .map-box {
    background: transparent url("../images/scene-1-m.png") left bottom no-repeat;
    background-size: 100% auto;
    border-radius: 8px 8px 8px 0;
    flex-direction: column-reverse;
    height: auto;
  }
  .contact-con1 .map-box .map {
    width: 100%;
    height: 3.85rem;
  }
  .contact-con1 .map-box .column {
    padding: 0.32rem 0 0;
  }
  .contact-con1 .map-box .column .icon {
    margin-top: 0.06rem;
  }
  .contact-con1 .map-box .column h1 {
    font-size: var(--font36);
  }
  .contact-con1 .map-box .column p {
    font-size: var(--font12);
  }
  .contact-con1 .list {
    width: 100%;
    gap: 0.32rem;
  }
  .contact-con1 .list .item {
    width: 100%;
  }
}
.contact-con2 .content-title {
  text-align: left;
}
.contact-con2 .content-title h1 {
  margin-bottom: 0.24rem;
}
.contact-con2 .content-title p {
  width: auto;
  margin: 0;
}
.contact-con2 .layui-form {
  font-size: 0;
}
.contact-con2 .layui-form .item {
  width: calc(calc(100% - 0.64rem) / 3);
  display: inline-block;
  margin-right: 0.32rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font16);
  margin-bottom: 0.16rem;
}
.contact-con2 .layui-form .item:nth-child(3n) {
  margin-right: 0;
}
.contact-con2 .layui-form .item input {
  position: relative;
  z-index: 2;
}
.contact-con2 .layui-form .item.grid3 {
  width: 100%;
  margin-top: 0.16rem;
  border: none;
}
.contact-con2 .layui-form .item.grid3 label {
  pointer-events: auto;
  position: relative;
  margin: 0;
  transform: none;
  cursor: pointer;
}
.contact-con2 .layui-form .item label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  margin-top: -0.02rem;
  color: #666;
  font-size: var(--font16);
  font-weight: 400;
  user-select: none;
}
.contact-con2 .layui-form .item label i {
  color: var(--active_color);
  font-style: normal;
  margin-left: 0.02rem;
}
.contact-con2 .layui-form .item a {
  display: inline-block;
  color: var(--active_color);
  text-decoration: underline;
}
.contact-con2 .layui-form .layui-input,
.contact-con2 .layui-form .layui-select,
.contact-con2 .layui-form .layui-textarea {
  background: none;
  border: none;
  color: #ffffff;
  padding: 0;
  height: 0.72rem;
}
.contact-con2 .layui-form .layui-input::placeholder,
.contact-con2 .layui-form .layui-select::placeholder,
.contact-con2 .layui-form .layui-textarea::placeholder {
  color: #666;
}
.contact-con2 .layui-form textarea {
  padding: 0.05rem 0;
}
.contact-con2 .layui-form .layui-form-checkbox,
.contact-con2 .layui-form .layui-form-radio {
  margin: 0;
  background: transparent;
  border: none;
  padding-left: 0;
  position: relative;
}
.contact-con2 .layui-form .layui-form-checkbox i,
.contact-con2 .layui-form .layui-form-radio i {
  width: 0.16rem;
  height: 0.16rem;
  line-height: 0.16rem;
  font-size: 0.12rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 2px;
  margin: auto;
  bottom: 0;
  text-align: center;
}
.contact-con2 .layui-form .layui-form-checkbox i:after,
.contact-con2 .layui-form .layui-form-radio i:after {
  color: #000000;
}
.contact-con2 .layui-form .layui-form-checkbox:hover span,
.contact-con2 .layui-form .layui-form-radio:hover span {
  color: #ffffff;
}
.contact-con2 .layui-form .layui-form-checkbox:hover i,
.contact-con2 .layui-form .layui-form-radio:hover i {
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-con2 .layui-form .layui-form-checkbox.layui-form-checked span,
.contact-con2 .layui-form .layui-form-radio.layui-form-checked span,
.contact-con2 .layui-form .layui-form-checkbox.layui-form-radioed span,
.contact-con2 .layui-form .layui-form-radio.layui-form-radioed span,
.contact-con2 .layui-form .layui-form-checkbox.layui-form-checked > div,
.contact-con2 .layui-form .layui-form-radio.layui-form-checked > div,
.contact-con2 .layui-form .layui-form-checkbox.layui-form-radioed > div,
.contact-con2 .layui-form .layui-form-radio.layui-form-radioed > div {
  color: var(--active_color);
  text-decoration: underline;
}
.contact-con2 .layui-form .layui-form-checkbox.layui-form-checked i,
.contact-con2 .layui-form .layui-form-radio.layui-form-checked i,
.contact-con2 .layui-form .layui-form-checkbox.layui-form-radioed i,
.contact-con2 .layui-form .layui-form-radio.layui-form-radioed i {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.contact-con2 .layui-form .layui-form-checkbox.layui-form-checked .layui-icon-circle:before,
.contact-con2 .layui-form .layui-form-radio.layui-form-checked .layui-icon-circle:before,
.contact-con2 .layui-form .layui-form-checkbox.layui-form-radioed .layui-icon-circle:before,
.contact-con2 .layui-form .layui-form-radio.layui-form-radioed .layui-icon-circle:before {
  content: "\e605";
}
.contact-con2 .layui-form .btn_box {
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: 0;
  width: 1.74rem;
  height: 0.52rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: var(--font16);
  background: var(--active_color);
  cursor: pointer;
}
.contact-con2 .layui-form .btn_box .icon {
  width: 0.1rem;
  height: 0.1rem;
  margin-left: 0.16rem;
  transform: translateY(0.02rem);
}
@media (max-width:480px) {
  .contact-con2 .content-title {
    margin-bottom: 0.24rem;
  }
  .contact-con2 .layui-form .item {
    width: calc(calc(100% - 0.24rem) / 2);
    margin-right: 0.24rem;
  }
  .contact-con2 .layui-form .item:nth-child(2n) {
    margin-right: 0;
  }
  .contact-con2 .layui-form .item:nth-child(3n) {
    margin-right: 0.24rem;
  }
  .contact-con2 .layui-form .layui-textarea {
    padding-top: 0.1rem;
  }
  .contact-con2 .layui-form .layui-form-checkbox i,
  .contact-con2 .layui-form .layui-form-radio i {
    width: var(--font16);
    height: var(--font16);
    font-size: var(--font16);
    transform: translateY(-10%);
  }
}
.rightFixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 0.16rem;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.04rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.rightFixed.active {
  opacity: 1;
}
.rightFixed .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.12rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  cursor: pointer;
  position: relative;
}
.rightFixed .item:hover .hideBox {
  overflow: visible;
  pointer-events: auto;
}
.rightFixed .item:hover .hideBox .column {
  opacity: 1;
}
.rightFixed .hideBox {
  position: absolute;
  right: 100%;
  top: 0;
  padding-right: 0.12rem;
  overflow: hidden;
  pointer-events: none;
}
.rightFixed .hideBox .column {
  opacity: 0;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.12rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.12rem;
  white-space: nowrap;
  color: var(--color1);
  min-height: 0.48rem;
}
.rightFixed .icon {
  width: 0.3rem;
  height: 0.3rem;
}
.rightFixed .icon img,
.rightFixed .icon svg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:480px) {
  .rightFixed {
    display: none;
  }
}
