@font-face {
  font-family: 'iconfont';  /* Project id 5216422 */
  src: url('//at.alicdn.com/t/c/font_5216422_hhgjcuxn92r.woff2?t=1786957678820') format('woff2'),
  url('//at.alicdn.com/t/c/font_5216422_hhgjcuxn92r.woff?t=1786957678820') format('woff'),
  url('//at.alicdn.com/t/c/font_5216422_hhgjcuxn92r.ttf?t=1786957678820') format('truetype');
}
@font-face {
  font-family: DelaGothicOne;
  src: url('../fonts/DelaGothicOne-Regular.ttf');
}
@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Medium.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Arial;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
:root {
  --mainC: #019EED;
}
.iconfont {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
/* 修改滚动条的样式 */
::-webkit-scrollbar {
  width: 8px;
  /* 滚动条宽度 */
  height: 8px;
  /* 滚动条高度 */
}
/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  background-color: #019EED;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bulrAnmkey {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
.bulrAnm {
  -webkit-animation: bulrAnmkey 1s ease both;
  animation: bulrAnmkey 1s ease both;
  -ms-animation: bulrAnmkey 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup2 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.4s;
}
.he_fadeup3 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.5s;
}
.he_fadeup4 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}
.he_fadeup5 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.7s;
}
.cpthActive.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}
.cpth {
  -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}
.animate-on-scroll {
  /* 初始状态：透明 + 偏移 */
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 1.8秒慢动画（时长可调） */
  transform-origin: center center;
  /* skew倾斜中心点（避免变形偏移） */
  transform: translateY(60px) skewY(1deg);
}
/* 动画触发后的状态 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) skew(0);
  /* 重置偏移和skew */
}
.animate-img {
  overflow: hidden;
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animate-img img {
  transform: scale(0);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img .img {
  transform: scale(0);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img.animated {
  opacity: 1;
}
.animate-img.animated img {
  transform: scale(1);
}
.animate-img.animated .img {
  transform: scale(1);
}
.img-popup-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  cursor: zoom-out;
}
.img-popup-layer img {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
/* 双层遮罩，实现左右分开散开 */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.split-left,
.split-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
.split-left {
  left: 0;
  transform-origin: left center;
}
.split-right {
  right: 0;
  transform-origin: right center;
}
/* 散开动画 */
.preloader.open .split-left {
  transform: translateX(-100%);
}
.preloader.open .split-right {
  transform: translateX(100%);
}
/* 居中文字进度 */
.load-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.load-text {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.load-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: textFade 0.4s ease forwards;
}
@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.load-text span:nth-child(1) {
  animation-delay: 0.1s;
}
.load-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.load-text span:nth-child(3) {
  animation-delay: 0.3s;
}
.load-text span:nth-child(4) {
  animation-delay: 0.4s;
}
.load-text span:nth-child(5) {
  animation-delay: 0.5s;
}
.load-text span:nth-child(6) {
  animation-delay: 0.6s;
}
.load-text span:nth-child(7) {
  animation-delay: 0.7s;
}
.load-text span:nth-child(8) {
  animation-delay: 0.8s;
}
.load-text span:nth-child(9) {
  animation-delay: 0.9s;
}
.progress-bar {
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.progress-line {
  height: 100%;
  width: 0;
  background: #fff;
  animation: progressRun 2s linear forwards;
}
@keyframes progressRun {
  to {
    width: 100%;
  }
}
.letter {
  display: inline-block;
  line-height: 1em;
}
header {
  width: 100%;
  position: fixed;
  top: 1vw;
  padding: 0 1vw;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s all ease-in-out;
}
header .logo {
  width: 8vw;
}
header .logo img:nth-child(2) {
  display: none;
}
header nav {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 5vw;
}
header nav ul {
  display: flex;
}
header nav ul li {
  margin: 0 2vw;
  padding: 1vw 0;
}
header nav ul li a {
  font-size: 16px;
  position: relative;
  color: white;
}
header nav ul li a::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: white;
  bottom: -5px;
  left: 0;
  transition: 0.3s all;
}
header nav ul li:hover a::before {
  width: 100%;
}
header nav .lang {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  padding: 0.3vw 0.5vw;
  margin: 0 1vw;
  color: white;
}
header.active {
  padding: 0 2vw;
}
header.active .logo img:nth-child(2) {
  display: block;
}
header.active .logo img:nth-child(1) {
  display: none;
}
header.active nav {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
header.active nav ul li a {
  color: #333333;
}
header.active nav ul li a::before {
  background: #333333;
}
header.active nav .lang {
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #333333;
}
footer {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  padding: 3vw 5vw;
}
footer .footer {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  color: white;
}
footer .footer .left {
  width: 40%;
  position: relative;
}
footer .footer .left .logo {
  width: 8vw;
}
footer .footer .left .tit {
  font-size: 3vw;
  margin-top: 2vw;
  line-height: 1.2;
}
footer .footer .right {
  width: 50%;
  position: relative;
}
footer .footer .right .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2vw;
  margin-top: 1vw;
  border-bottom: 1px solid rgba(255,255,255,.4);
}
footer .footer .right .nav a {
  color: white;
  opacity: 0.8;
  font-size: 0.9vw;
}
footer .footer .right .txt {
  display: flex;
  padding: 2vw 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
}
footer .footer .right .txt .it {
  width: 15vw;
  margin-right: 7vw;
}
footer .footer .right .txt .it .t {
  font-size: 1vw;
}
footer .footer .right .txt .it .d {
  font-size: 0.9vw;
  margin-top: 2vw;
  line-height: 1.7;
}
footer .footer .right .follow {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 1vw;
}
footer .footer .right .follow .t2 {
  font-size: 1vw;
}
footer .footer .right .follow .iconBox {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-left: 1vw;
}
footer .footer .right .follow .iconBox .icon {
  width: 1.8vw;
  height: 1.8vw;
  border-radius: 50%;
  background: white;
  text-align: center;
  line-height: 1.8vw;
  font-size: 1vw;
  color: #333333;
  cursor: pointer;
}
footer .footer .right .follow .iconBox .icon .qrHover{
  position: absolute;
  width: 7vw;
  margin-top: -9vw;
  margin-left: -2.5vw;
  opacity: 0;
  pointer-events: none;
  transition: .3s all ease-in-out;
}
footer .footer .right .follow .iconBox .icon:hover .qrHover{
  opacity: 1;
  pointer-events: all;
}
footer .footer .right .txt .itsBox .its {
  margin-bottom: 2vw;
}
footer .footer .right .txt .itsBox .its .t {
  font-size: 0.9vw;
}
footer .footer .right .txt .itsBox .its .d {
  font-family: Barlow;
  font-size: 1.2vw;
}
footer .footer .right .txt .itsBox .its:last-child{
  margin-bottom: 0;
}
footer .footerInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9vw;
  color: white;
  opacity: 0.8;
  margin-top: 1vw;
}
footer .footerInfo a {
  color: white;
}
.titBox .tit {
  font-size: 4vw;
}
.more {
  border: 1px solid #999999;
  padding: 0.8vw 1.2vw;
  font-size: 1vw;
  border-radius: 10vw;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.more i {
  margin-left: 1vw;
}
.more::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #019EED;
  left: 0;
  top: 0;
  transform: scale(0);
  transition: 0.3s all ease-in-out;
  border-radius: 10vw;
  z-index: -1;
}
.more:hover {
  color: white;
  border: 1px solid white;
}
.more:hover::before {
  transform: scale(1);
}
.bannerBox {
  width: 100%;
  height: 35vw;
  position: relative;
  overflow: hidden;
}
.bannerBox .banner {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover !important;
  transition: 0.3s allease-in-out;
  animation: bannerBoxidentifier 2s forwards;
}
.bannerBox .banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}
@keyframes bannerBoxidentifier {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bannerBox .text {
  color: white;
  font-weight: 550;
  font-size: 5vw;
  line-height: 1.2;
  position: absolute;
  left: 5vw;
  bottom: 5vw;
}
.tabBox {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 2vw;
}
.tabBox .tab {
  cursor: pointer;
  border-radius: 5vw;
  font-size: 1.2vw;
  padding: 0.8vw 2vw;
  border: 1px solid #019EED;
  opacity: 0.7;
}
.tabBox .active {
  color: white;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%), #019EED;
  border: 1px solid white;
  opacity: 1;
}
.index {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: absolute;
}
.index .f1 .text {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 3vw;
  z-index: 9;
}
.index .f1 .text .tit {
  color: white;
  font-size: 4vw;
  line-height: 1.2;
  font-family: DelaGothicOne;
}
.index .f1 .text .textBox {
  display: flex;
  gap: 1vw;
  color: white;
  margin-top: 3vw;
}
.index .f1 .text .textBox .its {
  width: 12vw;
  border-radius: 1vw;
  background: rgba(50, 195, 242, 0.7);
  backdrop-filter: blur(25px);
  padding: 1.5vw 1vw;
}
.index .f1 .text .textBox .its .icon {
  width: 2.5vw;
}
.index .f1 .text .textBox .its .t {
  font-size: 1vw;
  margin-top: 1vw;
  line-height: 1.5;
}
.index .f1 .text .textBox .its:nth-child(1) {
  animation: fadeIniup 1s 1s ease both;
}
.index .f1 .text .textBox .its:nth-child(2) {
  animation: fadeIniup 1s 1.2s ease both;
}
.index .f1 .text .textBox .its:nth-child(3) {
  animation: fadeIniup 1s 1.4s ease both;
}
@keyframes textImgAnm {
  0% {
    transform: translateY(3vw);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.index .f1 .text .splitTextTit2 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.index .f1 .f1Swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.index .f1 .f1Swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  animation: fade 8s linear infinite alternate forwards;
}
.index .f1 .f1Swiper .swiper-slide .img picture img{
  height: 100%;
}
@keyframes fade {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}
.index .f1 .f1Swiper .swiper-pagination {
  width: auto;
  bottom: 5vw;
  left: 3vw;
}
.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 2px;
  opacity: 1;
  position: relative;
  margin: 0 0.5vw;
  overflow: hidden;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.1s ease;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet-active::after {
  width: var(--progress, 0%);
}
.index .f1 .bannerBoxs {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index .f1 .bannerBoxs .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s allease-in-out;
  animation: bannerBoxidentifier 2s forwards;
}
.index .f1 .bannerBoxs video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
.index .f1 .bannerBoxs .text {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 3vw;
}
.index .f1 .bannerBoxs .text .tit {
  color: white;
  font-size: 4vw;
  line-height: 1.2;
  font-family: DelaGothicOne;
}
.index .f1 .bannerBoxs .text .textBox {
  display: flex;
  gap: 1vw;
  color: white;
  margin-top: 3vw;
}
.index .f1 .bannerBoxs .text .textBox .its {
  width: 12vw;
  border-radius: 1vw;
  background: rgba(50, 195, 242, 0.7);
  backdrop-filter: blur(25px);
  padding: 1.5vw 1vw;
}
.index .f1 .bannerBoxs .text .textBox .its .icon {
  width: 3vw;
}
.index .f1 .bannerBoxs .text .textBox .its .t {
  font-size: 1vw;
  margin-top: 1vw;
  line-height: 1.5;
}
.index .f1 .bannerBoxs .text .textBox .its:nth-child(1) {
  animation: fadeIniup 1s 1s ease both;
}
.index .f1 .bannerBoxs .text .textBox .its:nth-child(2) {
  animation: fadeIniup 1s 1.2s ease both;
}
.index .f1 .bannerBoxs .text .textBox .its:nth-child(3) {
  animation: fadeIniup 1s 1.4s ease both;
}
@keyframes textImgAnm {
  0% {
    transform: translateY(3vw);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.index .f1 .bannerBoxs .text .splitTextTit2 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.index .f1 .bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.index .f1 .bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(15);
  opacity: 0;
}
.index .f1 .shubiao {
  width: 1vw;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 2vw;
  z-index: 3;
}
.index .f2 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index .f2 .left {
  width: 40%;
  text-align: right;
}
.index .f2 .left .splitTextTit {
  opacity: 0;
}
.index .f2 .left .t1 {
  font-weight: bold;
  font-size: 6vw;
}
.index .f2 .left .t2 {
  font-size: 4vw;
  font-weight: bold;
}
.index .f2 .center {
  width: 12vw;
  margin: 0 5vw;
  opacity: 0;
}
.index .f2 .right {
  width: 40%;
  font-size: 1.1vw;
  line-height: 1.7;
  opacity: 0;
  transform: translateX(6vw);
}
.index .f2 .right .des {
  width: 80%;
}
.index .f3 {
  width: 100%;
  position: relative;
  padding: 5vw 2vw;
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-top: 5vw;
  background: white;
}
.index .f3 .its {
  width: 33%;
  height: 20vw;
  position: relative;
  border-radius: 1vw;
  color: white;
  padding: 2vw;
}
.index .f3 .its .titHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f3 .its .titHead .t {
  font-size: 1vw;
}
.index .f3 .its .titHead .icon {
  width: 2vw;
}
.index .f3 .its .txt {
  width: calc(100% - 4vw);
  position: absolute;
  bottom: 2vw;
}
.index .f3 .its .txt .num {
  font-size: 1.5vw;
}
.index .f3 .its .txt .num span {
  font-size: 4vw;
}
.index .f3 .its .txt .d {
  font-size: 1vw;
}
.index .f3 .its:nth-child(1) {
  background: #0A6AE8;
}
.index .f3 .its:nth-child(2) {
  background: #32C3F2;
}
.index .f3 .its:nth-child(3) {
  background: #019EED;
}
.index .f4 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
  margin-top: -12vw;
  padding: 4vw 5vw 10vw 5vw;
}
.index .f4 .titBox .tit {
  text-align: center;
}
.index .f4 .f4Box {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5vw;
}
.index .f4 .f4Box .f4Text {
  width: 30%;
}
.index .f4 .f4Box .f4Text .t,
.index .f4 .f4Box .f4Text .name,
.index .f4 .f4Box .f4Text .d,
.index .f4 .f4Box .f4Text .btnBox {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.index .f4 .f4Box .f4Text.f4-text-hidden .t {
  opacity: 0;
  transform: translateY(20px);
}
.index .f4 .f4Box .f4Text.f4-text-hidden .name {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}
.index .f4 .f4Box .f4Text.f4-text-hidden .d {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}
.index .f4 .f4Box .f4Text.f4-text-hidden .btnBox {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}
.index .f4 .f4Box .f4Text.f4-text-show .t {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.index .f4 .f4Box .f4Text.f4-text-show .name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.index .f4 .f4Box .f4Text.f4-text-show .d {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.index .f4 .f4Box .f4Text.f4-text-show .btnBox {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.index .f4 .f4Box .f4Text .t {
  font-size: 1.2vw;
}
.index .f4 .f4Box .f4Text .name {
  font-size: 3vw;
  font-weight: bold;
  margin: 1.5vw 0;
  line-height: 1;
}
.index .f4 .f4Box .f4Text .d {
  font-size: 1vw;
  color: #666666;
}
.index .f4 .f4Box .f4Text .btnBox {
  display: flex;
  gap: 1vw;
  margin-top: 2vw;
}
.index .f4 .f4Box .f4Text .btnBox .labBtn {
  border: 1px solid #999999;
  padding: 0.8vw 1.2vw;
  font-size: 1vw;
  border-radius: 10vw;
  display: inline-flex;
}
.index .f4 .f4Box .f4Img {
  width: 45%;
  height: 28vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.index .f4 .f4Box .f4Img img {
  max-width: 80%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.index .f4 .f4Box .f4Img img.f4-img-hidden {
  opacity: 0;
  transform: scale(0);
}
.index .f4 .f4Box .f4Img img.f4-img-show {
  opacity: 1;
  transform: scale(1);
}
/* 左右切换箭头：默认隐藏，仅在移动端显示 */
.index .f4 .f4Box .f4Arrow {
  display: none;
}
.index .f4 .f4Box .f4Item {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: -2vw;
}
.index .f4 .f4Box .f4Item .item {
  width: calc(50% - 1vw);
  height: 7vw;
  border-radius: 0.5vw;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
  padding: 1vw;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.index .f4 .f4Box .f4Item .item .it {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10vw;
  font-size: 0.9vw;
  display: inline-block;
  padding: 0.2vw 0.8vw;
  transition: all 0.3s ease-in-out;
}
.index .f4 .f4Box .f4Item .item .name {
  font-size: 1vw;
  position: absolute;
  bottom: 1vw;
}
.index .f4 .f4Box .f4Item .active {
  border: 1px solid white;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
}
.index .f4 .f4Box .f4Item .active .it {
  border: 1px solid white;
  background: white;
  color: #333333;
}
.index .f4 .f4Box .f4Item .active .name {
  color: white;
}
.index .f5 {
  width: 100%;
  padding: 5vw;
}
.index .f5 .titBox .tit {
  text-align: center;
}
.index .f5 .f5Box {
  width: 100%;
  height: auto;
  margin-top: 3vw;
  border-radius: 1vw;
  position: relative;
  background-size: cover !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw 0;
}
.index .f5 .f5Box .item {
  width: 20%;
}
.index .f5 .f5Box .item .its {
  text-align: center;
  margin: 4vw 0;
}
.index .f5 .f5Box .item .its .num {
  font-weight: bold;
  font-size: 3vw;
  background: linear-gradient(313deg, #FFF 1.63%, #00A9A3 98.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index .f5 .f5Box .item .its .d {
  color: white;
  font-size: 1vw;
}
.index .f5 .f5Box .item .its:nth-child(2) {
  margin-left: -10vw;
}
.index .f5 .f5Box .item:last-child .its:nth-child(2) {
  margin-left: 0;
}
.index .f5 .f5Box .center {
  width: 40%;
  position: relative;
}
.index .f5 .f5Box .center .mapImg {
  width: 100%;
  position: relative;
}
.index .f5 .f5Box .center .mapIcons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.index .f5 .f5Box .center .mapIcons .mapIcon {
  width: 2.5vw;
  position: absolute;
  animation: mapIconAnm 1s ease-in-out infinite;
}
@keyframes mapIconAnm {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(1) {
  top: 10vw;
  left: 10vw;
  animation: mapIconAnm 1s linear infinite 0s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(2) {
  top: 15vw;
  left: 15vw;
  animation: mapIconAnm 1.1s linear infinite 0.1s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(3) {
  top: 15vw;
  left: 5vw;
  animation: mapIconAnm 1.2s linear infinite 0.2s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(4) {
  top: 10vw;
  left: 20vw;
  animation: mapIconAnm 1.3s linear infinite 0.3s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(5) {
  top: 5vw;
  left: 20vw;
  animation: mapIconAnm 1.4s linear infinite 0.3s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(6) {
  top: 5vw;
  left: 10vw;
  animation: mapIconAnm 1.5s linear infinite 0.4s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(7) {
  top: 7vw;
  left: 15vw;
  animation: mapIconAnm 1.6s linear infinite 0.5s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(8) {
  top: 7vw;
  left: 8vw;
  animation: mapIconAnm 1.7s linear infinite 0.6s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(9) {
  top: 10vw;
  left: 6vw;
  animation: mapIconAnm 1.8s linear infinite 0.7s;
}
.index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(10) {
  top: 12vw;
  left: 4vw;
  animation: mapIconAnm 1.9s linear infinite 0.8s;
}
.index .f5 .f5Box .center .more {
  margin: 0 auto;
  display: table;
  border: 1px solid white;
  color: white;
}
.index .f6 {
  width: 100%;
  position: relative;
  padding: 0 5vw;
}
.index .f6 .titHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f6 .f6Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
}
.index .f6 .f6Box .item {
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.index .f6 .f6Box .item .imgBox {
  width: 20vw;
  height: 12vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.index .f6 .f6Box .item .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover;
}
.index .f6 .f6Box .item .text {
  width: calc(100% - 22vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #F7F7F7;
  padding: 3vw 4vw;
  position: relative;
  border-radius: 1vw;
  transition: 0.3s all;
}
.index .f6 .f6Box .item .text .time {
  width: 10vw;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.index .f6 .f6Box .item .text .time .day {
  font-weight: 500;
  font-size: 2.5vw;
}
.index .f6 .f6Box .item .text .time .monty {
  font-size: 1vw;
  margin-left: 0.5vw;
}
.index .f6 .f6Box .item .text .name {
  width: 80%;
  font-size: 1.1vw;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.index .f6 .f6Box .item .text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  border-radius: 1vw;
  transition: 0.5s all;
  z-index: 1;
  opacity: 0;
}
.index .f6 .f6Box .item:hover .imgBox img {
  transform: scale(1.1);
}
.index .f6 .f6Box .item:hover .text::before {
  opacity: 1;
}
.index .f6 .f6Box .item:hover .text {
  color: white;
}
.index .f7 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 6vw 5vw;
}
.index .f7 form {
  width: 50%;
  border-radius: 1vw;
  background: rgba(247, 247, 247, 0.7);
  backdrop-filter: blur(25px);
  padding: 2vw;
}
.index .f7 form .inputBox {
  width: 100%;
  margin-bottom: 2vw;
}
.index .f7 form .inputBox .name {
  font-size: 1vw;
}
.index .f7 form .inputBox input {
  width: 100%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  background: transparent;
  padding: 0.7vw 1vw;
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.index .f7 form .inputBox textarea {
  width: 100%;
  height: 10vw;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  background: transparent;
  padding: 0.7vw 1vw;
  font-size: 0.9vw;
  margin-top: 0.5vw;
  resize: none;
}
.index .f7 form .submit {
  padding: 0.8vw 2vw;
  cursor: pointer;
}
.company {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.company .cp-banner {
  width: 100%;
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.company .cp-banner .cp-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/company-building.jpg') center no-repeat;
  background-size: cover;
  z-index: 0;
}
.company .cp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 106, 232, 0.85) 0%, rgba(1, 158, 237, 0.85) 100%);
  z-index: 1;
}
.company .cp-banner .cp-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.company .cp-banner .tit {
  font-family: DelaGothicOne;
  font-size: 5vw;
  line-height: 1.15;
  margin-bottom: 1.5vw;
  letter-spacing: -0.02em;
}
.company .cp-banner .tit .letters {
  display: block;
}
.company .cp-banner .sub {
  font-size: 1.2vw;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 40vw;
  margin: 0 auto;
}
.company .cp-sec {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
}
.company .titBox {
  text-align: center;
  margin-bottom: 5vw;
}
.company .cp-intro .cp-intro-grid {
  display: flex;
  gap: 4vw;
  align-items: flex-start;
  max-width: 90vw;
  margin: 0 auto;
}
.company .cp-intro .cp-intro-left {
  width: 42%;
  position: sticky;
  top: 5vw;
}
.company .cp-intro .cp-intro-img {
  width: 100%;
  height: 25vw;
  border-radius: 1.2vw;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1vw 3vw rgba(10, 106, 232, 0.12);
}
.company .cp-intro .cp-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.company .cp-intro .cp-intro-img:hover img {
  transform: scale(1.05);
}
.company .cp-intro .cp-intro-img-caption {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  margin-top: 1.2vw;
  font-size: 0.8vw;
  color: #999999;
  letter-spacing: 0.05em;
}
.company .cp-intro .cp-intro-img-caption .dot {
  width: 0.5vw;
  height: 0.5vw;
  background: #0A6AE8;
  border-radius: 50%;
  flex-shrink: 0;
}
.company .cp-intro .cp-intro-right {
  width: 58%;
  position: relative;
  padding-top: 1vw;
}
.company .cp-intro .cp-intro-accent {
  position: absolute;
  left: -2vw;
  top: 1.5vw;
  width: 3px;
  height: 4vw;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  border-radius: 2px;
}
.company .cp-intro h3 {
  font-size: 2.2vw;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1.8vw;
  color: #1F4397;
  letter-spacing: -0.01em;
}
.company .cp-intro p {
  font-size: 1vw;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 0.5vw;
}
.company .cp-intro .hl {
  color: #0A6AE8;
  font-weight: 600;
}
.company .cp-timeline {
  padding: 6vw 0;
  color: white;
  background-size: cover !important;
}
.company .cp-timeline .cp-tl-swiper {
  position: relative;
  max-width: 90vw;
  margin: 0 auto;
}
.company .cp-timeline .cp-tl-track {
  position: relative;
  padding: 2vw 4vw;
}
.company .cp-timeline .cp-tl-swiper-container {
  overflow: hidden;
  padding: 1vw 0;
}
.company .cp-timeline .cp-tl-slide {
  height: auto;
}
.company .cp-timeline .cp-tl-card {
  background: white;
  border-radius: 1vw;
  padding: 2.5vw 2.2vw;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.company .cp-timeline .cp-tl-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.15);
  border-color: transparent;
}
.company .cp-timeline .cp-tl-card:hover .cp-tl-bar {
  height: 5vw;
}
.company .cp-timeline .cp-tl-bar {
  position: absolute;
  top: 0;
  left: 2.2vw;
  width: 2px;
  height: 3vw;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  border-radius: 2px;
  transition: height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.company .cp-timeline .cp-tl-year {
  font-family: DelaGothicOne;
  font-size: 2.5vw;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.2vw;
  padding-left: 1.5vw;
}
.company .cp-timeline .cp-tl-tag {
  display: inline-block;
  padding: 0.3vw 1vw;
  background: rgba(31, 67, 151, 0.06);
  color: #1F4397;
  border-radius: 5vw;
  font-size: 0.75vw;
  font-weight: 600;
  margin-bottom: 1vw;
  letter-spacing: 0.05em;
}
.company .cp-timeline .cp-tl-title {
  font-size: 1.2vw;
  font-weight: bold;
  margin: 1vw 0;
  color: #272727;
}
.company .cp-timeline .cp-tl-desc {
  font-size: 0.9vw;
  color: #777777;
  line-height: 1.9;
}
.company .cp-timeline .cp-tl-prev,
.company .cp-timeline .cp-tl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.06);
}
.company .cp-timeline .cp-tl-prev i,
.company .cp-timeline .cp-tl-next i {
  font-size: 1vw;
  color: #1F4397;
  transition: color 0.3s;
}
.company .cp-timeline .cp-tl-prev:hover,
.company .cp-timeline .cp-tl-next:hover {
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  border-color: transparent;
  box-shadow: 0 0.5vw 2vw rgba(10, 106, 232, 0.4);
}
.company .cp-timeline .cp-tl-prev:hover i,
.company .cp-timeline .cp-tl-next:hover i {
  color: white;
}
.company .cp-timeline .cp-tl-prev {
  left: 0;
}
.company .cp-timeline .cp-tl-prev i {
  transform: rotate(180deg);
}
.company .cp-timeline .cp-tl-next {
  right: 0;
}
.company .cp-honors {
  background: white;
}
.company .cp-honors .cp-honors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5vw;
  max-width: 90vw;
  margin: 0 auto;
}
.company .cp-honors .cp-honor-card {
  width: calc(25% - 1.125vw);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1vw;
  padding: 2.5vw 2vw;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.company .cp-honors .cp-honor-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A6AE8 0%, #019EED 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.company .cp-honors .cp-honor-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.15);
  border-color: transparent;
}
.company .cp-honors .cp-honor-card:hover::after {
  transform: scaleX(1);
}
.company .cp-honors .cp-honor-card:hover .h-icon {
  transform: scale(1.08) rotate(-3deg);
}
.company .cp-honors .h-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5vw;
}
.company .cp-honors .h-icon {
  width: 3vw;
  height: 3vw;
  border-radius: 0.8vw;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 0.5vw 1.5vw rgba(10, 106, 232, 0.25);
}
.company .cp-honors .h-icon img {
  width: 1.5vw;
}
.company .cp-honors .h-num {
  font-family: DelaGothicOne;
  font-size: 2.2vw;
  color: #1F4397;
  line-height: 1;
  opacity: 0.15;
}
.company .cp-honors .h-num span {
  font-family: 'Arial';
  font-size: 1vw;
  font-weight: normal;
}
.company .cp-honors .h-tit {
  font-size: 1.15vw;
  font-weight: bold;
  margin-bottom: 0.8vw;
  color: #272727;
}
.company .cp-honors .h-desc {
  font-size: 0.88vw;
  color: #777777;
  line-height: 1.8;
}
.news {
  width: 100%;
  position: relative;
}
.news .tabBox {
  justify-content: center;
  padding: 5vw 0 3vw 0;
}
.news .f1 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 8vw 6vw 8vw;
}
.news .f1 .f1Swiper {
  width: 100%;
  position: relative;
  opacity: 0;
}
.news .f1 .f1Swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.news .f1 .f1Swiper .swiper-slide .imgBox {
  width: 50%;
  height: 23vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.5s all;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.15);
  background-size: cover !important;
}
.news .f1 .f1Swiper .swiper-slide .imgBox::before {
  content: '';
  position: absolute;
  right: -3%;
  top: 5%;
  width: 80%;
  height: 90%;
  background: #019EED;
  opacity: 0.3;
}
.news .f1 .f1Swiper .swiper-slide .imgBox:hover .img {
  transform: scale(1.1);
}
.news .f1 .f1Swiper .swiper-slide .text {
  width: 48%;
  padding: 1vw 0 0 3vw;
}
.news .f1 .f1Swiper .swiper-slide .text .time {
  display: flex;
  align-items: center;
  color: #737373;
  font-size: 0.85vw;
}
.news .f1 .f1Swiper .swiper-slide .text .time img {
  width: 1vw;
  height: 0.8vw;
  margin-right: 0.3vw;
}
.news .f1 .f1Swiper .swiper-slide .text .name {
  font-size: 1.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.7;
  overflow: hidden;
  margin: 2vw 0;
}
.news .f1 .f1Swiper .swiper-slide .text .more {
  display: inline-flex;
}
.news .f1 .f1Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  right: 10.5vw;
  color: #999999;
  border: 1px solid #999999;
  right: inherit;
  top: inherit;
  bottom: 0;
  left: 60%;
}
.news .f1 .f1Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  right: 10.5vw;
  color: #999999;
  border: 1px solid #999999;
  left: 56%;
  top: inherit;
  bottom: 0;
}
.news .f1 .f1Swiper .swiper-button-next:after,
.news .f1 .f1Swiper .swiper-button-prev:after {
  font-size: 0.9vw;
}
.news .f1 .f1Box {
  width: 100%;
  position: relative;
  margin-top: 5vw;
}
.news .f1 .f1Box .item {
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.news .f1 .f1Box .item .imgBox {
  width: 20vw;
  height: 12vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.news .f1 .f1Box .item .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover;
}
.news .f1 .f1Box .item .text {
  width: calc(100% - 22vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #F7F7F7;
  padding: 3vw 4vw;
  position: relative;
  border-radius: 1vw;
  transition: 0.3s all;
}
.news .f1 .f1Box .item .text .time {
  width: 10vw;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.news .f1 .f1Box .item .text .time .day {
  font-weight: 500;
  font-size: 2.5vw;
}
.news .f1 .f1Box .item .text .time .monty {
  font-size: 1vw;
  margin-left: 0.5vw;
}
.news .f1 .f1Box .item .text .name {
  width: 80%;
  font-size: 1.1vw;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.news .f1 .f1Box .item .text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  border-radius: 1vw;
  transition: 0.5s all;
  z-index: 1;
  opacity: 0;
}
.news .f1 .f1Box .item:hover .imgBox img {
  transform: scale(1.1);
}
.news .f1 .f1Box .item:hover .text::before {
  opacity: 1;
}
.news .f1 .f1Box .item:hover .text {
  color: white;
}
.contactUs {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contactUs .mapBg {
  width: 90%;
  position: absolute;
  margin-top: 15vw;
  z-index: 9;
  right: 0;
  pointer-events: none;
}
.contactUs .cu-network {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
  background: white;
  overflow: hidden;
}
.contactUs .cu-network .titBox {
  text-align: center;
  margin-bottom: 3vw;
}
.contactUs .cu-network .network-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 90vw;
  margin: 0 auto 4vw;
  flex-wrap: wrap;
}
.contactUs .cu-network .network-stats-row .stats-item {
  text-align: center;
  padding: 0 2vw;
}
.contactUs .cu-network .network-stats-row .stats-item .stats-num {
  font-size: 2.2vw;
  font-weight: bold;
  background: linear-gradient(135deg, #0A6AE8 0%, #019EED 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.contactUs .cu-network .network-stats-row .stats-item .stats-num span {
  font-size: 1.4vw;
}
.contactUs .cu-network .network-stats-row .stats-item .stats-label {
  color: #8a92a6;
  font-size: 0.75vw;
  margin-top: 0.3vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contactUs .cu-network .network-stats-row .stats-divider {
  width: 1px;
  height: 2vw;
  background: linear-gradient(180deg, transparent, #D0D8E8, transparent);
}
.contactUs .cu-network .sales-network {
  max-width: 90vw;
  position: relative;
  margin: 5vw auto 0 auto;
}
.contactUs .cu-network .sales-network .sales-grid {
  width: 50%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  z-index: 9;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card {
  width: 48%;
  position: relative;
  background: #F8FAFE;
  border: 1px solid #EDF2F8;
  border-radius: 0.8vw;
  padding: 1.5vw 1vw;
  display: flex;
  align-items: start;
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1vw;
  right: 1vw;
  height: 2px;
  background: linear-gradient(90deg, #0A6AE8, #019EED);
  opacity: 0.3;
  transition: opacity 0.35s;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card:hover {
  background: white;
  border-color: rgba(10, 106, 232, 0.2);
  box-shadow: 0 0.8vw 2vw rgba(10, 106, 232, 0.08);
  transform: translateY(-3px);
}
.contactUs .cu-network .sales-network .sales-grid .sales-card:hover::before {
  opacity: 1;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card.global {
  background: linear-gradient(135deg, #F0F6FF 0%, #E8F4FF 100%);
  border-color: rgba(10, 106, 232, 0.2);
}
.contactUs .cu-network .sales-network .sales-grid .sales-card.global::before {
  opacity: 0.6;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card.global:hover {
  background: linear-gradient(135deg, #F5F9FF 0%, #EDF6FF 100%);
  box-shadow: 0 0.8vw 2vw rgba(10, 106, 232, 0.12);
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-card-top {
  width: 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6vw;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-region {
  font-size: 0.85vw;
  font-weight: bold;
  color: #1a1a2e;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tag {
  font-size: 0.6vw;
  color: #8a92a6;
  background: #EDF2F8;
  padding: 0.15vw 0.5vw;
  border-radius: 0.25vw;
  letter-spacing: 0.05em;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tag.blue {
  color: #0A6AE8;
  background: rgba(10, 106, 232, 0.08);
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-txt {
  display: block;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-name {
  font-size: 1.1vw;
  font-weight: bold;
  color: #0A6AE8;
  margin-bottom: 0.3vw;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-territory {
  font-size: 0.7vw;
  color: #8a92a6;
  margin-top: 1vw;
  line-height: 1.5;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel {
  min-width: 10vw;
  position: absolute;
  right: 1vw;
  display: inline-flex;
  align-items: center;
  gap: 0.4vw;
  font-size: 0.85vw;
  color: #1a1a2e;
  text-decoration: none;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 0.5vw;
  padding: 0.4vw 0.8vw;
  transition: all 0.3s;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel i {
  color: #0A6AE8;
  font-size: 0.9vw;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel:hover {
  background: #0A6AE8;
  color: white;
  border-color: #0A6AE8;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel:hover i {
  color: white;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email {
  min-width: 10vw;
  position: absolute;
  right: 1vw;
  display: inline-flex;
  align-items: center;
  bottom: .5vw;
  gap: 0.4vw;
  font-size: 0.85vw;
  color: #1a1a2e;
  text-decoration: none;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 0.5vw;
  padding: 0.4vw 0.8vw;
  transition: all 0.3s;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email i {
  color: #0A6AE8;
  font-size: 0.9vw;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email:hover {
  background: #0A6AE8;
  color: white;
  border-color: #0A6AE8;
}
.contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email:hover i {
  color: white;
}
.contactUs .cu-contact {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
  background: #F7F7F7;
}
.contactUs .cu-contact .titBox {
  text-align: center;
  margin-bottom: 4vw;
}
.contactUs .cu-contact .titBox .tit {
  font-size: 4vw;
  text-align: center;
}
.contactUs .cu-contact .cu-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  max-width: 90vw;
  margin: 0 auto;
}
.contactUs .cu-contact .cu-contact-card {
  width: calc(25% - 1.125vw);
  background: white;
  border-radius: 1.2vw;
  padding: 2.5vw 2vw 1vw 2vw;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}
.contactUs .cu-contact .cu-contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A6AE8 0%, #019EED 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contactUs .cu-contact .cu-contact-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.15);
  border-color: transparent;
}
.contactUs .cu-contact .cu-contact-card:hover::after {
  transform: scaleX(1);
}
.contactUs .cu-contact .cu-contact-card:hover .cu-contact-icon {
  transform: scale(1.08);
}
.contactUs .cu-contact .cu-contact-card .cu-contact-icon {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 0.8vw;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 0.5vw 1.5vw rgba(10, 106, 232, 0.25);
  margin: 0 auto 1.5vw auto;
}
.contactUs .cu-contact .cu-contact-card .cu-contact-icon i {
  font-size: 1.5vw;
  color: white;
}
.contactUs .cu-contact .cu-contact-card .cu-contact-body .t {
  font-size: 1.1vw;
  font-weight: bold;
  color: #1F4397;
  margin-bottom: 0.8vw;
}
.contactUs .cu-contact .cu-contact-card .cu-contact-body .d {
  font-size: 0.9vw;
  color: #777777;
  line-height: 1.8;
}
.contactUs .cu-contact .cu-contact-card .cu-contact-body .qrcode {
  width: 7vw;
  margin: 0 auto;
}
.contactUs .cu-message {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
  background: white;
}
.contactUs .cu-message .cu-message-inner {
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4vw;
}
.contactUs .cu-message .cu-message-left {
  width: 38%;
  position: sticky;
  top: 5vw;
  align-self: flex-start;
}
.contactUs .cu-message .cu-message-left .cu-message-desc {
  font-size: 1vw;
  color: #777777;
  line-height: 1.8;
  margin-top: 2vw;
  max-width: 80%;
}
.contactUs .cu-message .cu-message-form {
  width: 55%;
  border-radius: 1.2vw;
  background: rgba(247, 247, 247, 0.7);
  backdrop-filter: blur(25px);
  padding: 3vw 2.5vw;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contactUs .cu-message .cu-message-form .cu-form-row {
  display: flex;
  gap: 1.5vw;
  margin-bottom: 2vw;
}
.contactUs .cu-message .cu-message-form .cu-form-row .cu-inputBox {
  flex: 1;
}
.contactUs .cu-message .cu-message-form .cu-inputBox {
  width: 100%;
}
.contactUs .cu-message .cu-message-form .cu-inputBox .name {
  font-size: 1vw;
  color: #333333;
  font-weight: 500;
}
.contactUs .cu-message .cu-message-form .cu-inputBox input {
  width: 100%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  background: white;
  padding: 0.8vw 1vw;
  font-size: 0.9vw;
  margin-top: 0.5vw;
  transition: border-color 0.3s;
}
.contactUs .cu-message .cu-message-form .cu-inputBox input:focus {
  outline: none;
  border-color: #0A6AE8;
}
.contactUs .cu-message .cu-message-form .cu-inputBox textarea {
  width: 100%;
  height: 10vw;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  background: white;
  padding: 0.8vw 1vw;
  font-size: 0.9vw;
  margin-top: 0.5vw;
  resize: none;
  transition: border-color 0.3s;
}
.contactUs .cu-message .cu-message-form .cu-inputBox textarea:focus {
  outline: none;
  border-color: #0A6AE8;
}
.contactUs .cu-message .cu-message-form .submit {
  padding: 0.8vw 2.5vw;
  cursor: pointer;
  margin-top: 0.5vw;
}
.joinUs {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.joinUs .ju-why {
  width: 100%;
  position: relative;
  padding: 8vw 5vw 5vw;
}
.joinUs .ju-why .ju-why-inner {
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  gap: 8vw;
  align-items: flex-start;
}
.joinUs .ju-why .ju-why-left {
  width: 42%;
}
.joinUs .ju-why .ju-why-right {
  width: 50%;
  padding-top: 1vw;
}
.joinUs .ju-why .ju-why-lead {
  font-size: 1.35vw;
  line-height: 1.75;
  color: #444444;
  max-width: 90%;
  margin-bottom: 4vw;
}
.joinUs .ju-why .ju-why-stats {
  display: flex;
  gap: 3vw;
}
.joinUs .ju-why .ju-why-stats .ju-why-stat .num {
  font-family: Barlow;
  font-size: 3.5vw;
  font-weight: bold;
  color: #0A6AE8;
  line-height: 1;
}
.joinUs .ju-why .ju-why-stats .ju-why-stat .num span {
  font-size: 1.8vw;
  font-weight: normal;
}
.joinUs .ju-why .ju-why-stats .ju-why-stat .label {
  font-size: 0.85vw;
  color: #888888;
  margin-top: 0.5vw;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.joinUs .ju-culture {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
  background: #F8FAFC;
}
.joinUs .ju-culture .ju-culture-inner {
  max-width: 90vw;
  margin: 0 auto;
}
.joinUs .ju-culture .ju-culture-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4vw;
  margin-bottom: 5vw;
}
.joinUs .ju-culture .ju-culture-header .ju-culture-sub {
  width: 35%;
  font-size: 1vw;
  color: #666666;
  line-height: 1.8;
  padding-bottom: 0.5vw;
}
.joinUs .ju-culture .ju-culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
}
.joinUs .ju-culture .ju-culture-card {
  background: #0a1628;
  border-radius: 1.2vw;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  min-height: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.joinUs .ju-culture .ju-culture-card .ju-culture-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.joinUs .ju-culture .ju-culture-card .ju-culture-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.88) 100%);
  transition: background 0.4s;
}
.joinUs .ju-culture .ju-culture-card .ju-culture-content {
  position: relative;
  z-index: 3;
  padding: 2.2vw;
}
.joinUs .ju-culture .ju-culture-card:hover {
  transform: translateY(-0.6vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.25);
}
.joinUs .ju-culture .ju-culture-card:hover .ju-culture-bg {
  transform: scale(1.05);
}
.joinUs .ju-culture .ju-culture-card:hover .ju-culture-overlay {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.78) 100%);
}
.joinUs .ju-culture .ju-culture-card .ju-culture-tit {
  font-size: 1.3vw;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.8vw;
}
.joinUs .ju-culture .ju-culture-card .ju-culture-desc {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
}
.joinUs .ju-benefits {
  width: 100%;
  position: relative;
  padding: 8vw 5vw;
}
.joinUs .ju-benefits .ju-benefits-inner {
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  gap: 6vw;
  align-items: flex-start;
}
.joinUs .ju-benefits .ju-benefits-left {
  width: 38%;
  position: sticky;
  top: 5vw;
  align-self: flex-start;
}
.joinUs .ju-benefits .ju-benefits-left .ju-benefits-sub {
  font-size: 1vw;
  color: #666666;
  line-height: 1.8;
  margin-top: 2vw;
  max-width: 85%;
}
.joinUs .ju-benefits .ju-benefits-right {
  width: 56%;
}
.joinUs .ju-benefits .ju-benefit-item {
  display: flex;
  gap: 1.5vw;
  padding: 2vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.joinUs .ju-benefits .ju-benefit-item:first-child {
  padding-top: 0;
}
.joinUs .ju-benefits .ju-benefit-item:hover {
  padding-left: 1vw;
}
.joinUs .ju-benefits .ju-benefit-item:hover .ju-benefit-dot {
  transform: scale(1.5);
  background: #0A6AE8;
}
.joinUs .ju-benefits .ju-benefit-dot {
  width: 0.6vw;
  height: 0.6vw;
  min-width: 0.6vw;
  border-radius: 50%;
  background: #D1D5DC;
  margin-top: 0.5vw;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.joinUs .ju-benefits .ju-benefit-info .ju-benefit-tit {
  font-size: 1.2vw;
  font-weight: bold;
  color: #272727;
  margin-bottom: 0.5vw;
}
.joinUs .ju-benefits .ju-benefit-info .ju-benefit-desc {
  font-size: 0.9vw;
  color: #777777;
  line-height: 1.8;
}
.joinUs .ju-positions {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
  background: #F8FAFC;
}
.joinUs .ju-positions .ju-positions-inner {
  max-width: 90vw;
  margin: 0 auto;
}
.joinUs .ju-positions .ju-positions-header {
  text-align: center;
  margin-bottom: 5vw;
}
.joinUs .ju-positions .ju-positions-header .ju-positions-sub {
  font-size: 1vw;
  color: #666666;
  margin-top: 1.5vw;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.joinUs .ju-positions .ju-positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
}
.joinUs .ju-positions .ju-position-card {
  background: white;
  border-radius: 1.2vw;
  padding: 2.5vw 2.2vw;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.joinUs .ju-positions .ju-position-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0A6AE8 0%, #019EED 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.joinUs .ju-positions .ju-position-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.12);
}
.joinUs .ju-positions .ju-position-card:hover::after {
  transform: scaleX(1);
}
.joinUs .ju-positions .ju-position-tag {
  display: inline-block;
  padding: 0.3vw 1vw;
  border-radius: 5vw;
  background: rgba(10, 106, 232, 0.06);
  color: #0A6AE8;
  font-size: 0.75vw;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.2vw;
  width: fit-content;
}
.joinUs .ju-positions .ju-position-name {
  font-size: 1.2vw;
  font-weight: bold;
  color: #272727;
  margin-bottom: 0.8vw;
  line-height: 1.3;
}
.joinUs .ju-positions .ju-position-meta {
  display: flex;
  gap: 1.5vw;
  margin-bottom: 1.2vw;
  font-size: 0.8vw;
  color: #999999;
}
.joinUs .ju-positions .ju-position-meta span {
  display: flex;
  align-items: center;
  gap: 0.3vw;
}
.joinUs .ju-positions .ju-position-desc {
  font-size: 0.88vw;
  color: #777777;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5vw;
}
.joinUs .ju-positions .ju-position-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #0A6AE8;
  font-weight: 600;
  cursor: pointer;
  transition: gap 0.3s;
  width: fit-content;
}
.joinUs .ju-positions .ju-position-cta:hover {
  gap: 0.8vw;
}
.joinUs .ju-positions .ju-position-cta i {
  font-size: 0.8vw;
}
.products {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.products .pd-section {
  width: 100%;
  position: relative;
  padding: 5vw;
}
.products .pd-section .pd-section-inner {
  max-width: 90vw;
  margin: 0 auto;
}
.products .pd-section .titBox {
  text-align: center;
  margin-bottom: 2vw;
}
.products .pd-section .pd-section-desc {
  text-align: center;
  font-size: 1.05vw;
  color: #666666;
  line-height: 1.8;
  max-width: 55vw;
  margin: 0 auto 5vw;
}
.products .pd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}
.products .pd-card {
  background: white;
  border-radius: 1.2vw;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
.products .pd-card:hover {
  transform: translateY(-0.8vw);
  box-shadow: 0 2vw 5vw rgba(10, 106, 232, 0.15);
}
.products .pd-card:hover .pd-card-img img {
  transform: scale(1.08) rotate(-2deg);
}
.products .pd-card:hover .pd-card-cta {
  gap: 0.8vw;
  color: #0A6AE8;
}
.products .pd-card-img {
  width: 100%;
  height: 18vw;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .pd-card-img img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(0 0.5vw 1vw rgba(0, 0, 0, 0.15));
}
.products .pd-card-img .pd-card-placeholder {
  width: 5vw;
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .pd-card-img .pd-card-placeholder img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.products .pd-card-body {
  padding: 2vw 1.8vw 2vw;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.products .pd-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.3vw 1vw;
  border-radius: 5vw;
  background: rgba(10, 106, 232, 0.08);
  color: #0A6AE8;
  font-size: 0.72vw;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1vw;
  width: fit-content;
}
.products .pd-card-tag .cat {
  position: relative;
}
.products .pd-card-tag .cat::after {
  /*content: '';*/
  /*position: absolute;*/
  /*right: 0;*/
  /*top: 15%;*/
  /*height: 70%;*/
  /*width: 1px;*/
  /*background: rgba(10, 106, 232, 0.25);*/
}
.products .pd-card-tag .type {
  color: #0A6AE8;
  opacity: 0.8;
}
.products .pd-card-tag.ent {
  background: rgba(0, 169, 163, 0.08);
  color: #00A9A3;
}
.products .pd-card-tag.ent .cat::after {
  background: rgba(0, 169, 163, 0.25);
}
.products .pd-card-tag.ent .type {
  color: #00A9A3;
}
.products .pd-card-name {
  font-size: 1.2vw;
  font-weight: bold;
  color: #1F4397;
  line-height: 1.35;
  margin-bottom: 0.8vw;
}
.products .pd-card-desc {
  font-size: 0.85vw;
  color: #777777;
  line-height: 1.75;
  margin-bottom: 1.2vw;
  flex: 1;
}
.products .pd-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.88vw;
  color: #1F4397;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
}
.products .pd-card-cta i {
  font-size: 0.78vw;
  transition: transform 0.3s;
}
.products .pd-card-cta:hover {
  gap: 0.8vw;
  color: #0A6AE8;
}
.productsDetail {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.productsDetail .pd-info {
  width: 100%;
  position: relative;
  padding: 6vw 5vw;
}
.productsDetail .pd-info .pd-info-inner {
  max-width: 85vw;
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: flex-start;
}
.productsDetail .pd-info .pd-info-img {
  width: 45%;
  position: sticky;
  top: 5vw;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main {
  width: 100%;
  height: 30vw;
  border-radius: 1.5vw;
  overflow: hidden;
  box-shadow: 0 2vw 5vw rgba(10, 106, 232, 0.15);
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-prev,
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-next {
  width: 3vw;
  height: 3vw;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: all 0.3s;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-prev::after,
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-next::after {
  font-size: 1vw;
  color: #1F4397;
  font-weight: bold;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-prev:hover,
.productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-next:hover {
  background: white;
  transform: scale(1.1);
}
.productsDetail .pd-info .pd-info-img .pd-gallery-thumbs {
  width: 100%;
  height: 10vw;
  margin-top: 0.8vw;
  padding: 0.5vw;
  background: rgba(248, 251, 255, 0.8);
  border-radius: 1vw;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-thumbs .swiper-slide {
  border-radius: 0.6vw;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
  background: linear-gradient(135deg, #F0F6FF 0%, #E8F4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5vw;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px #0A6AE8;
}
.productsDetail .pd-info .pd-info-img .pd-gallery-thumbs .swiper-slide:hover {
  opacity: 0.85;
}
.productsDetail .pd-info .pd-info-text {
  width: 55%;
}
.productsDetail .pd-info .pd-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.4vw 1.2vw;
  border-radius: 5vw;
  background: rgba(10, 106, 232, 0.08);
  color: #0A6AE8;
  font-size: 0.75vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5vw;
}
.productsDetail .pd-info .pd-info-tag span {
  opacity: 0.4;
}
.productsDetail .pd-info .pd-info-name {
  font-size: 2.5vw;
  font-weight: bold;
  color: #1F4397;
  line-height: 1.25;
  margin-bottom: 1.2vw;
}
.productsDetail .pd-info .pd-info-desc {
  font-size: 1vw;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2vw;
}
.productsDetail .pd-info .pd-params-list {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-bottom: 2vw;
}
.productsDetail .pd-info .pd-param-item {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  padding: 1.2vw 1.5vw;
  background: rgba(248, 251, 255, 0.8);
  border-radius: 0.8vw;
  border: 1px solid rgba(10, 106, 232, 0.08);
  transition: all 0.3s;
}
.productsDetail .pd-info .pd-param-item:hover {
  background: white;
  transform: translateX(0.3vw);
  box-shadow: 0 0.5vw 1.5vw rgba(10, 106, 232, 0.08);
}
.productsDetail .pd-info .pd-param-num {
  font-family: Barlow;
  font-size: 1.4vw;
  font-weight: bold;
  color: #0A6AE8;
  min-width: 2vw;
  text-align: center;
  padding-top: 0.1vw;
}
.productsDetail .pd-info .pd-param-tit {
  font-size: 0.95vw;
  font-weight: bold;
  color: #1F4397;
}
.productsDetail .pd-info .pd-param-desc {
  font-size: 0.82vw;
  color: #777777;
  line-height: 1.6;
  margin-top: .3vw;
}
.productsDetail .pd-info .pd-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #888888;
  transition: all 0.3s;
}
.productsDetail .pd-info .pd-back:hover {
  color: #0A6AE8;
  gap: 0.8vw;
}
.productsDetail .pd-info .pd-back i {
  font-size: 0.78vw;
}
.productsDetail .pd-models {
  width: 100%;
  position: relative;
  padding: 0 5vw 6vw 5vw;
}
.productsDetail .pd-models .pd-models-inner {
  max-width: 85vw;
  margin: 0 auto;
}
.productsDetail .pd-models .titBox {
  text-align: center;
  margin-bottom: 4vw;
}
.productsDetail .pd-models .pd-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
}
.productsDetail .pd-models .pd-model-card {
  background: white;
  border-radius: 1.2vw;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productsDetail .pd-models .pd-model-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1.2vw 3vw rgba(10, 106, 232, 0.1);
}
.productsDetail .pd-models .pd-model-img {
  width: 100%;
  height: 14vw;
  background: linear-gradient(135deg, #F0F6FF 0%, #E8F4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5vw;
}
.productsDetail .pd-models .pd-model-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.productsDetail .pd-models .pd-model-info {
  padding: 1.8vw 1.5vw;
}
.productsDetail .pd-models .pd-model-name {
  font-family: Barlow;
  font-size: 1.3vw;
  font-weight: bold;
  color: #1F4397;
  margin-bottom: 0.4vw;
}
.productsDetail .pd-models .pd-model-type {
  font-size: 0.78vw;
  color: #0A6AE8;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.2vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid rgba(10, 106, 232, 0.1);
}
.productsDetail .pd-models .pd-model-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}
.productsDetail .pd-models .pd-model-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82vw;
  color: #555555;
}
.productsDetail .pd-models .pd-model-spec span {
  color: #999999;
  font-size: 0.75vw;
}
.support {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.support .sp-training {
  width: 100%;
  position: relative;
  padding: 8vw 5vw;
}
.support .sp-training .sp-training-inner {
  max-width: 85vw;
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: flex-start;
}
.support .sp-training .sp-training-left {
  width: 35%;
  position: sticky;
  top: 8vw;
}
.support .sp-training .sp-training-left .titBox {
  margin-bottom: 2vw;
}
.support .sp-training .sp-training-left .sp-training-lead {
  font-size: 1.05vw;
  color: #666666;
  line-height: 1.8;
}
.support .sp-training .sp-training-right {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.support .sp-training .sp-training-card {
  display: flex;
  gap: 2vw;
  padding: 2.5vw;
  background: white;
  border-radius: 1.2vw;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.support .sp-training .sp-training-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0A6AE8 0%, #019EED 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.support .sp-training .sp-training-card:hover {
  transform: translateX(0.5vw);
  box-shadow: 0 1vw 3vw rgba(10, 106, 232, 0.1);
}
.support .sp-training .sp-training-card:hover::before {
  transform: scaleY(1);
}
.support .sp-training .sp-training-num {
  font-family: Barlow;
  font-size: 2.5vw;
  font-weight: bold;
  color: rgba(10, 106, 232, 0.15);
  line-height: 1;
  min-width: 3vw;
  transition: color 0.4s;
}
.support .sp-training .sp-training-card:hover .sp-training-num {
  color: #0A6AE8;
}
.support .sp-training .sp-training-tit {
  font-size: 1.2vw;
  font-weight: bold;
  color: #1F4397;
  margin-bottom: 0.6vw;
}
.support .sp-training .sp-training-desc {
  font-size: 0.9vw;
  color: #777777;
  line-height: 1.75;
}
.support .sp-tech {
  width: 100%;
  position: relative;
  padding: 8vw 5vw;
  background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}
.support .sp-tech .sp-tech-inner {
  max-width: 85vw;
  margin: 0 auto;
}
.support .sp-tech .titBox {
  text-align: center;
  margin-bottom: 1.5vw;
}
.support .sp-tech .sp-tech-sub {
  text-align: center;
  font-size: 1.05vw;
  color: #666666;
  line-height: 1.8;
  max-width: 50vw;
  margin: 0 auto 5vw;
}
.support .sp-tech .sp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}
.support .sp-tech .sp-tech-card {
  background: white;
  border-radius: 1.2vw;
  padding: 3vw 2.5vw;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.support .sp-tech .sp-tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0A6AE8 0%, #32C3F2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.support .sp-tech .sp-tech-card::after {
  content: '';
  position: absolute;
  bottom: -5vw;
  right: -5vw;
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  background: rgba(10, 106, 232, 0.03);
  transition: all 0.5s;
}
.support .sp-tech .sp-tech-card:hover {
  transform: translateY(-0.6vw);
  box-shadow: 0 1.5vw 4vw rgba(10, 106, 232, 0.12);
}
.support .sp-tech .sp-tech-card:hover::before {
  transform: scaleX(1);
}
.support .sp-tech .sp-tech-card:hover::after {
  background: rgba(10, 106, 232, 0.06);
  transform: scale(1.2);
}
.support .sp-tech .sp-tech-icon {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 0.8vw;
  background: linear-gradient(135deg, #0A6AE8 0%, #019EED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8vw;
  box-shadow: 0 0.5vw 1.5vw rgba(10, 106, 232, 0.25);
  position: relative;
  z-index: 1;
}
.support .sp-tech .sp-tech-icon i {
  font-size: 1.6vw;
  color: white;
}
.support .sp-tech .sp-tech-tit {
  font-size: 1.15vw;
  font-weight: bold;
  color: #1F4397;
  margin-bottom: 0.8vw;
  position: relative;
  z-index: 1;
}
.support .sp-tech .sp-tech-desc {
  font-size: 0.88vw;
  color: #777777;
  line-height: 1.75;
  margin-bottom: 1.5vw;
  position: relative;
  z-index: 1;
}
.support .sp-tech .sp-tech-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.4vw 1vw;
  border-radius: 5vw;
  background: rgba(10, 106, 232, 0.08);
  color: #0A6AE8;
  font-size: 0.78vw;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.proVideo{
  width: 80%;
  height: 38vw;
  position: relative;
  margin: 3vw auto 0 auto;
}
.proVideo video{
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.videoList{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.videoList .videoItem{
  width: 23%;
  height: 10vw;
  position: relative;
  border-radius: .5vw;
  overflow: hidden;
  cursor: pointer;
}
.videoList .videoItem::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.1);
}
.videoList .videoItem img{
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.videoList .videoItem .play{
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  color: white;
  font-size: 3vw;
  transition: .3s all ease-in-out;
}
.videoList .videoItem:hover .play{
  transform: translate(-50%,-50%) scale(1.05);
}
.videoBoxs {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(55, 52, 56, 0.7);
  z-index: 999;
  display: none;
}
.videoBoxs .videos {
  width: 50vw;
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  border-radius: .5vw;
  padding: 0.5vw;
  transform: translate(-50%, -50%);
}
.videoBoxs .videos video {
  width: 100%;
  height: 100%;
  border-radius: .5vw;
  object-fit: cover !important;
}
.videoBoxs .close {
  color: white;
  position: absolute;
  right: -2vw;
  top: -2vw;
  font-size: 1vw;
  cursor: pointer;
}
.videoBoxs.active {
  display: block;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: white;

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

  .sp_logo {
    padding: 12px;
    float: left;
  }

  .sp_logo img {
    margin: auto;
    width: 120px;
    transition: .35s all ease-in-out;
  }

  .sp_nav {
    width: 50px;
    height: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    margin: 0 2vw;
  }

  .sp_nav span {

    display: block;

    background: #0A6AE8 ;

    width: 30px;

    height: 3px;
    border-radius: 10px;
    position: absolute;

    left: 10px;

    transition: all ease .35s

  }

  .sp_nav span:nth-of-type(1) {

    top: 15px;

  }

  .sp_nav span:nth-of-type(2) {

    top: 25px

  }

  .sp_nav span:nth-of-type(3) {

    top: 35px

  }

  .sp_nav_se span:nth-of-type(1) {

    top: 25px;

    transform: rotate(45deg)

  }

  .sp_nav_se span:nth-of-type(2) {

    width: 0

  }

  .sp_nav_se span:nth-of-type(3) {

    top: 25px;

    transform: rotate(-45deg)

  }
  .nav_sp_logo{
    width: 40px !important;
    position: fixed;
    z-index: 999;
  }
  .sp_flex{
    display: flex;
  }
  .sp_black{
    width: 50px;
    height: 100%;
    position: fixed;
    background: black;
    right: -100%;
    top: 0;
    transition: top ease .35s
  }
  .sjj_nav {
    position: fixed;
    z-index: 999;
    background: white;
    width: 85%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    top: 0;
    right: -100%;
    padding-top: 15vw;
    overflow: auto;
    overflow-x: hidden;
    transition: right ease .35s
  }
  .sp_flex .mengBan{
    width: 15%;
    height: 100%;
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    transition: right ease .35s
  }
  .nav_show2 {

    right: 85% !important;

  }
  .nav_show {

    right: 0;

  }
  .sp_bottom{
    width: 100%;
    margin: 8vw auto;
    display: inline-block;
    text-align: center;
  }
  .sp_bottom .sp_serach{
    width: 31vw;
    height: 12vw;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    margin-right: 5vw;
  }
  .sp_bottom .sp_serach i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sp_bottom .sp_lag{
    width: 31vw;
    height: 12vw;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    text-align: center;
  }
  .sp_bottom .sp_lag i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sjj_nav > ul > li:first-child {

    overflow: hidden;

    border-top: 0

  }

  .sjj_nav > ul > li:first-child > a {

    /*float: left;*/

    /*width: calc(100% - 70px)*/

  }

  .sjj_nav > ul > li:first-child .language {

    float: right;

    width: 70px;

    overflow: hidden;

    line-height: 30px;

    margin-top: 5px

  }

  .sjj_nav > ul > li:first-child .language a {

    width: 35px;

    float: left;

    border-left: 1px #ddd solid;

    text-align: center;

    color: #999

  }

  .sjj_nav ul li i {

    position: absolute;

    top: 5px;

    right: 0;

    height: 30px;

    padding: 0 7px

  }

  .sjj_nav ul li i svg {

    transform: rotate(-90deg);

    transition: all ease .35s

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    transform: rotate(0)

  }

  .sjj_nav ul li {

    border-top: 1px #ddd solid;

    position: relative;

    line-height: 55px;

    font-size: 14px

  }
  .sjj_nav ul li.active{
    background: #f3f3f3;
  }
  .sjj_nav > ul > li:last-child {

    /*border-bottom: 1px #ddd solid*/

  }

  .sjj_nav ul li ul {
    background: #f3f3f3;
    display: none;
    border-top: 1px #ddd solid;
    padding: 10px 0;
  }
  .sjj_nav ul li.lang ul{
    display: flex;
  }
  .sjj_nav ul li.lang a i{
    position: relative;
  }
  .sjj_nav ul li.lang ul li a{
    width: 100%;
    display: flex;
    padding-left: 25px;
  }
  .sjj_nav ul li.lang ul li a img{
    width: 25px;
    object-fit: contain;
    margin-right: 5px;
  }
  .sjj_nav ul li a {

    color: rgba(0, 0, 0, .8);

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;
    text-transform: capitalize;
  }
  .sjj_nav ul li ul li{
    border: transparent;
    line-height: 30px;
  }
  .sjj_nav ul li ul li a {

    color: rgba(0, 0, 0, .5);

    display: block;

    text-align: left;

    font-size: 14px;
    padding-left: 45px;

  }

  .sjj_nav ul li i svg {

    width: 20px;

    height: 20px;

    fill: #432883;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #432883;

  }

  .sjj_nav ul li ul li > ul {

    margin-left: 10px

  }
  .sjj_nav .iconBox{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15vw;
  }
  .sjj_nav .iconBox .icon{
    width: 50px;
    margin: 0 3vw;
    display: inline-block;
  }
  .sp_flex .sjj_nav .close{
    position: absolute;
    right: 4vw;
    top: 1vw;
    font-size: 22px;
    color: #0A6AE8;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  main{
    margin-top: 50px;
  }
  .more {
    font-size: 14px;
    padding: 1.6vw 5vw;
  }
  .more i {
    font-size: 10px;
    margin-left: 3vw;
  }
  .titBox .tit {
    font-size: 26px !important;
  }
  .index .f1 {
    height: 50vw;
    position: relative;
  }
  .index .f1 .shubiao {
    display: none;
  }
  .index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet {
    width: 30px;
  }
  .index .f1 .text .textBox {
    display: none;
  }
  .index .f1 .text .tit {
    font-size: 20px;
  }
  .index .f1 .bg {
    display: none;
  }
  .index .f2 {
    height: auto;
    display: block;
    padding: 10vw 5vw;
  }
  .index .f2 .left {
    width: 100%;
    text-align: left;
  }
  .index .f2 .left .splitTextTit {
    opacity: 1;
  }
  .index .f2 .left .t1 {
    font-size: 26px;
  }
  .index .f2 .left .t2 {
    font-size: 18px;
  }
  .index .f2 .center {
    display: none;
  }
  .index .f2 .right {
    width: 100%;
    opacity: 1;
    transform: inherit;
    font-size: 16px;
    margin-top: 5vw;
  }
  .index .f2 .right .des {
    width: 100%;
  }
  .index .f3 {
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .index .f3 .its {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-bottom: 5vw;
  }
  .index .f3 .its .titHead .t {
    font-size: 20px;
  }
  .index .f3 .its .titHead .icon {
    width: 8vw;
  }
  .index .f3 .its .txt {
    width: 100%;
    margin-top: 15vw;
    position: relative;
  }
  .index .f3 .its .txt .num {
    font-size: 22px;
  }
  .index .f3 .its .txt .num span {
    font-size: 32px;
  }
  .index .f3 .its .txt .d {
    font-size: 16px;
  }
  .index .f4 {
    background: url(../images/img4_m.jpg) center no-repeat !important;
    height: 70vh;
    margin-top: 0;
    padding: 10vw 5vw;
  }
  .index .f4 .f4Box {
    height: 90vw;
    display: block;
    margin-top: 10vw;
  }
  .index .f4 .f4Box .f4Text {
    width: 100%;
  }
  .index .f4 .f4Box .f4Img {
    width: 80%;
    height: 50vw;
    position: relative;
    transform: inherit;
    top: inherit;
    left: inherit;
    margin: 10vw auto;
  }
  .index .f4 .f4Box .f4Text .t {
    font-size: 16px;
  }
  .index .f4 .f4Box .f4Text .name {
    font-size: 20px;
    margin: 3vw 0;
  }
  .index .f4 .f4Box .f4Text .d {
    font-size: 16px;
  }
  .index .f4 .f4Box .f4Text .btnBox {
    margin-top: 5vw;
    gap: 5vw;
  }
  .index .f4 .f4Box .f4Text .btnBox .labBtn {
    font-size: 14px;
    padding: 1.5vw 5vw;
  }
  .index .f4 .f4Box .f4Item {
    width: 100%;
    margin-top: 5vw;
    display: none;
  }
  .index .f4 .f4Box .f4Item .item .it {
    font-size: 16px;
  }
  .index .f4 .f4Box .f4Item .item .name {
    font-size: 16px;
  }
  /* 移动端产品切换左右箭头 */
  .index .f4 .f4Box .f4Arrow {
    display: flex;
    position: absolute;
    top: 50vw;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: space-between;
  }
  .index .f4 .f4Box .f4Btn {
    width: 12vw;
    height: 12vw;
    max-width: 46px;
    max-height: 46px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .index .f4 .f4Box .f4Btn svg {
    width: 5vw;
    height: 5vw;
    max-width: 22px;
    max-height: 22px;
    fill: none;
    stroke: #0A6AE8;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .index .f4 .f4Box .f4Btn:active {
    background: #ffffff;
    transform: scale(0.92);
  }
  .index .f5 {
    padding: 10vw 5vw 0 5vw;
  }
  .index .f5 .f5Box {
    margin-top: 5vw;
    display: block;
  }
  .index .f5 .f5Box .item .its .num {
    font-size: 26px;
  }
  .index .f5 .f5Box .item .its .d {
    font-size: 14px;
  }
  .index .f5 .f5Box .item {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5vw;
  }
  .index .f5 .f5Box .item .its {
    width: 32%;
    margin: 0;
  }
  .index .f5 .f5Box .item .its:nth-child(2) {
    margin: 0;
  }
  .index .f5 .f5Box .center {
    width: 80%;
    margin: 5vw auto;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon {
    width: 7vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(1) {
    top: 22vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(3) {
    left: 28vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(5) {
    top: 7vw;
    left: 28vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(6) {
    top: 30vw;
    left: 8vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(7) {
    top: 10vw;
    left: 36vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(8) {
    top: 9vw;
    left: 43vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(9) {
    top: 22vw;
    left: 31vw;
  }
  .index .f5 .f5Box .center .mapIcons .mapIcon:nth-child(10) {
    top: 20vw;
    left: 20vw;
  }
  .index .f6 {
    padding: 10vw 5vw;
  }
  .index .f6 .f6Box {
    margin-top: 5vw;
  }
  .index .f6 .f6Box .item {
    margin-top: 5vw;
    display: block;
  }
  .index .f6 .f6Box .item .imgBox {
    width: 100%;
    height: 50vw;
  }
  .index .f6 .f6Box .item .text {
    width: 100%;
    padding: 5vw;
    display: block;
  }
  .index .f6 .f6Box .item .text .time {
    width: 100%;
  }
  .index .f6 .f6Box .item .text .time .day {
    font-size: 20px;
  }
  .index .f6 .f6Box .item .text .time .monty {
    font-size: 14px;
  }
  .index .f6 .f6Box .item .text .name {
    width: 100%;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .index .f7 {
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .index .f7 form {
    width: 100%;
    margin-top: 5vw;
    padding: 5vw;
  }
  .index .f7 form .inputBox {
    margin-bottom: 5vw;
  }
  .index .f7 form .inputBox .name {
    font-size: 16px;
  }
  .index .f7 form .inputBox input {
    font-size: 14px;
    padding: 2vw 3vw;
    margin-top: 2vw;
  }
  .index .f7 form .inputBox textarea {
    height: 30vw;
    font-size: 14px;
    padding: 2vw 3vw;
    margin-top: 2vw;
  }
  footer {
    padding: 10vw 5vw;
  }
  footer .footer {
    display: block;
  }
  footer .footer .left {
    width: 100%;
  }
  footer .footer .left .logo {
    width: 25vw;
  }
  footer .footer .left .tit {
    font-size: 16px;
    margin-top: 5vw;
  }
  footer .footer .right {
    width: 100%;
  }
  footer .footer .right .nav {
    display: none;
  }
  footer .footer .right .txt {
    margin-top: 5vw;
    display: block;
  }
  footer .footer .right .txt .it {
    width: auto;
    margin-right: 0;
  }
  footer .footer .right .txt .it .t {
    font-size: 16px;
  }
  footer .footer .right .txt .it .d {
    font-size: 14px;
  }
  footer .footer .right .follow .t2 {
    font-size: 16px;
  }
  footer .footer .right .follow .iconBox {
    gap: 2vw;
    margin-left: 2vw;
  }
  footer .footer .right .follow .iconBox .icon {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 16px;
  }
  footer .footer .right .txt .itsBox {
    margin-top: 5vw;
    display: flex;
  }
  footer .footer .right .txt .itsBox .its {
    margin-right: 5vw;
  }
  footer .footer .right .txt .itsBox .its .t {
    font-size: 14px;
  }
  footer .footer .right .txt .itsBox .its .d {
    font-size: 16px;
  }
  footer .footerInfo {
    display: block;
    font-size: 14px;
    line-height: 1.7;
  }
  .bannerBox {
    height: 50vw;
  }
  .bannerBox .text {
    font-size: 32px;
  }
  .tabBox {
    gap: 2vw;
  }
  .tabBox .tab {
    font-size: 14px;
    padding: 2vw 5vw;
  }
  .news .tabBox {
    padding: 10vw 0;
  }
  .news .f1 {
    padding: 0 5vw 10vw 5vw;
  }
  .news .f1 .f1Swiper {
    padding-bottom: 5vw;
  }
  .news .f1 .f1Swiper .swiper-slide {
    display: block;
  }
  .news .f1 .f1Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 50vw;
  }
  .news .f1 .f1Swiper .swiper-slide .text {
    width: 100%;
    padding: 5vw;
  }
  .news .f1 .f1Swiper .swiper-slide .text .time {
    font-size: 14px;
  }
  .news .f1 .f1Swiper .swiper-slide .text .name {
    font-size: 18px;
  }
  .news .f1 .f1Swiper .swiper-slide .text .more {
    display: none;
  }
  .news .f1 .f1Swiper .swiper-button-next,
  .news .f1 .f1Swiper .swiper-button-prev {
    display: none;
  }
  .news .f1 .f1Box .item {
    display: block;
  }
  .news .f1 .f1Box .item .imgBox {
    width: 100%;
    height: 50vw;
  }
  .news .f1 .f1Box .item .text {
    width: 100%;
    display: block;
    padding: 5vw;
  }
  .news .f1 .f1Box .item .text .time {
    width: 100%;
  }
  .news .f1 .f1Box .item .text .time .day {
    font-size: 20px;
  }
  .news .f1 .f1Box .item .text .time .monty {
    font-size: 14px;
  }
  .news .f1 .f1Box .item .text .name {
    width: 100%;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 2vw;
  }
  .contactUs .cu-network {
    padding: 10vw 5vw;
  }
  .contactUs .cu-network .network-stats-row {
    max-width: 100%;
    margin: 5vw auto;
  }
  .contactUs .cu-network .network-stats-row .stats-item {
    width: 45%;
    padding: 2vw 0;
  }
  .contactUs .cu-network .network-stats-row .stats-item .stats-num {
    font-size: 28px;
  }
  .contactUs .cu-network .network-stats-row .stats-item .stats-label {
    font-size: 14px;
  }
  .contactUs .cu-network .sales-network {
    max-width: 100%;
  }
  .contactUs .cu-network .sales-network .sales-grid {
    width: 100%;
    gap: 3vw;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card {
    padding: 3vw;
    display: block;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-name {
    font-size: 16px;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-territory {
    font-size: 14px;
    margin: 3vw auto;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel {
    font-size: 12px;
    position: relative;
    display: block;
    padding: 2vw 3vw;
    border-radius: 1vw;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-tel i {
    font-size: 12px;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email {
    font-size: 12px;
    position: relative;
    display: block;
    padding: 2vw 3vw;
    border-radius: 1vw;
    bottom: inherit;
  }
  .contactUs .cu-network .sales-network .sales-grid .sales-card .sales-email i {
    font-size: 12px;
  }
  .contactUs .mapBg {
    display: none;
  }
  .contactUs .cu-contact {
    padding: 10vw 5vw;
  }
  .contactUs .cu-contact .cu-contact-grid {
    gap: 3vw;
    max-width: 100%;
  }
  .contactUs .cu-contact .cu-contact-card {
    width: 100%;
    padding: 5vw;
    display: flex;
    justify-content: space-between;
  }
  .contactUs .cu-contact .cu-contact-card .cu-contact-icon {
    width: 8vw;
    height: 8vw;
  }
  .cu-contact-body {
    width: calc(100% - 15vw);
  }
  .contactUs .cu-contact .cu-contact-card .cu-contact-icon i {
    font-size: 16px;
  }
  .contactUs .cu-contact .cu-contact-card .cu-contact-body .t {
    font-size: 16px;
  }
  .contactUs .cu-contact .cu-contact-card .cu-contact-body .d {
    font-size: 16px;
  }
  .contactUs .cu-contact .cu-contact-card .cu-contact-body .qrcode {
    width: 25vw;
  }
  .contactUs .cu-message {
    padding: 10vw 5vw;
  }
  .contactUs .cu-message .cu-message-inner {
    max-width: 100%;
    display: block;
  }
  .contactUs .cu-message .cu-message-left {
    width: 100%;
    position: relative;
    top: inherit;
  }
  .contactUs .cu-message .cu-message-left .cu-message-desc {
    font-size: 16px;
  }
  .contactUs .cu-message .cu-message-form {
    width: 100%;
    padding: 5vw;
    margin-top: 5vw;
  }
  .contactUs .cu-message .cu-message-form .cu-form-row {
    display: block;
  }
  .contactUs .cu-message .cu-message-form .cu-form-row .cu-inputBox {
    margin-bottom: 5vw;
  }
  .contactUs .cu-message .cu-message-form .cu-inputBox .name {
    font-size: 16px;
  }
  .contactUs .cu-message .cu-message-form .cu-inputBox input {
    font-size: 14px;
    padding: 2vw 3vw;
    margin-top: 2vw;
  }
  .contactUs .cu-message .cu-message-form .cu-inputBox textarea {
    height: 30vw;
    font-size: 14px;
    padding: 2vw 3vw;
    margin-top: 2vw;
  }
  .joinUs .ju-culture {
    padding: 10vw 5vw;
  }
  .joinUs .ju-culture .ju-culture-inner {
    max-width: 100%;
  }
  .joinUs .ju-culture .ju-culture-header {
    display: block;
  }
  .joinUs .ju-culture .ju-culture-header .ju-culture-sub {
    width: 100%;
    font-size: 16px;
    margin-top: 3vw;
  }
  .joinUs .ju-culture .ju-culture-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 3vw;
  }
  .joinUs .ju-culture .ju-culture-card {
    min-height: 90vw;
  }
  .joinUs .ju-culture .ju-culture-card .ju-culture-content {
    padding: 5vw;
  }
  .joinUs .ju-culture .ju-culture-card .ju-culture-tit {
    font-size: 20px;
  }
  .joinUs .ju-culture .ju-culture-card .ju-culture-desc {
    font-size: 16px;
    line-height: inherit;
    margin-top: 3vw;
  }
  .joinUs .ju-positions {
    padding: 0 5vw 10vw 5vw;
  }
  .joinUs .ju-positions .ju-positions-header .ju-positions-sub {
    font-size: 16px;
    margin-top: 3vw;
    line-height: inherit;
  }
  .joinUs .ju-positions .ju-positions-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 3vw;
  }
  .joinUs .ju-positions .ju-position-card {
    padding: 5vw;
  }
  .joinUs .ju-positions .ju-position-tag {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .joinUs .ju-positions .ju-position-name {
    font-size: 18px;
    margin: 3vw 0;
  }
  .joinUs .ju-positions .ju-position-meta {
    font-size: 14px;
  }
  .joinUs .ju-positions .ju-position-desc {
    font-size: 16px;
    margin: 3vw 0;
    line-height: inherit;
  }
  .joinUs .ju-positions .ju-position-cta {
    font-size: 14px;
  }
  .joinUs .ju-positions .ju-position-cta i {
    font-size: 10px;
  }
  .company .cp-banner {
    height: 45vh;
    min-height: 350px;
  }
  .company .cp-banner .cp-banner-label {
    font-size: 1.5vw;
  }
  .company .cp-banner .tit {
    font-size: 6vw;
  }
  .company .cp-banner .sub {
    font-size: 2vw;
    max-width: 60vw;
  }
  .company .cp-sec {
    padding: 10vw 5vw;
  }
  .company .cp-intro-grid {
    flex-direction: column;
    gap: 3vw;
  }
  .company .cp-intro-left,
  .company .cp-intro-right {
    width: 100% !important;
    position: relative;
  }
  .company .cp-intro .cp-intro-img {
    height: 50vw;
  }
  .company .cp-intro-right h3 {
    font-size: 20px;
  }
  .company .cp-intro-right p {
    font-size: 16px;
  }
  .company .cp-intro-accent {
    height: 5vw;
  }
  .company .cp-intro-keybar {
    padding: 2.5vw;
  }
  .company .cp-intro-keybar .kb-num {
    font-size: 3vw;
  }
  .company .cp-intro-keybar .kb-label {
    font-size: 1.2vw;
  }
  .company .cp-intro-keybar .kb-div {
    height: 4vw;
  }
  .company .cp-timeline .cp-tl-prev,
  .company .cp-timeline .cp-tl-next {
    width: 8vw;
    height: 8vw;
  }
  .company .cp-timeline .cp-tl-prev i,
  .company .cp-timeline .cp-tl-next i {
    font-size: 10px;
  }
  .company .cp-timeline .cp-tl-card {
    padding: 5vw;
  }
  .company .cp-timeline .cp-tl-year {
    font-size: 24px;
  }
  .company .cp-timeline .cp-tl-title {
    font-size: 18px;
    margin: 5vw 0;
  }
  .company .cp-timeline .cp-tl-desc {
    font-size: 16px;
  }
  .company .cp-timeline .cp-tl-tag {
    font-size: 1vw;
    padding: 0.4vw 1.2vw;
  }
  .company .cp-timeline .cp-tl-bar {
    height: 12vw !important;
  }
  .company .cp-honors .cp-honors-grid {
    display: block;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card {
    width: 100%;
    padding: 5vw;
    margin-bottom: 5vw;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-icon {
    width: 8vw;
    height: 8vw;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-icon img {
    width: 5vw;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-num {
    font-size: 20px;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-num span {
    font-size: 20px;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-tit {
    font-size: 18px;
    margin: 3vw 0;
  }
  .company .cp-honors .cp-honors-grid .cp-honor-card .h-desc {
    font-size: 16px;
  }
  .products .pd-section {
    padding: 10vw 5vw;
  }
  .products .pd-section-desc {
    font-size: 1.4vw;
    max-width: 80vw;
    margin-bottom: 4vw;
  }
  .products .pd-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5vw;
  }
  .products .pd-card {
    margin-top: 5vw;
    padding: 5vw;
  }
  .products .pd-card-img {
    height: 50vw;
  }
  .products .pd-card-body {
    padding: 0;
  }
  .products .pd-card-tag {
    font-size: 12px;
    padding: 2vw 3vw;
  }
  .products .pd-card-name {
    font-size: 18px;
    margin: 2vw 0;
  }
  .products .pd-card-desc {
    font-size: 16px;
  }
  .products .pd-card-cta {
    font-size: 14px;
    margin-top: 2vw;
  }
  .products .pd-card-cta i {
    font-size: 10px;
  }
  .productsDetail .pd-info {
    padding: 10vw 5vw;
  }
  .productsDetail .pd-info .pd-info-inner {
    max-width: 100%;
    flex-direction: column;
    gap: 4vw;
  }
  .productsDetail .pd-info .pd-info-img {
    width: 100%;
    position: static;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-main {
    height: 50vw;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-slide {
    padding: 4vw;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-prev,
  .productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-next {
    width: 8vw;
    height: 8vw;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-prev::after,
  .productsDetail .pd-info .pd-info-img .pd-gallery-main .swiper-button-next::after {
    font-size: 10px;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-thumbs {
    height: 20vw;
    margin-top: 5vw;
  }
  .productsDetail .pd-info .pd-info-img .pd-gallery-thumbs .swiper-slide {
    padding: 0.8vw;
  }
  .productsDetail .pd-info .pd-info-text {
    width: 100%;
    margin-top: 5vw;
  }
  .productsDetail .pd-info .pd-info-tag {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .productsDetail .pd-info .pd-info-name {
    font-size: 20px;
    margin: 3vw 0;
  }
  .productsDetail .pd-info .pd-info-desc {
    font-size: 16px;
  }
  .productsDetail .pd-info .pd-back {
    font-size: 1.3vw;
  }
  .productsDetail .pd-info .pd-param-item {
    padding: 5vw;
    justify-content: space-between;
  }
  .productsDetail .pd-info .pd-param-content {
    width: calc(100% - 10vw);
  }
  .productsDetail .pd-info .pd-param-num {
    font-size: 22px;
  }
  .productsDetail .pd-info .pd-param-tit {
    font-size: 18px;
  }
  .productsDetail .pd-info .pd-param-desc {
    font-size: 16px;
  }
  .productsDetail .pd-info .pd-params-list {
    gap: 3vw;
    margin-top: 5vw;
  }
  .productsDetail .pd-models {
    padding: 0 5vw 10vw 5vw;
  }
  .productsDetail .pd-models .pd-models-inner {
    max-width: 100%;
  }
  .productsDetail .pd-models .pd-models-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .productsDetail .pd-models .pd-model-info {
    padding: 5vw;
  }
  .productsDetail .pd-models .pd-model-img {
    height: 50vw;
  }
  .productsDetail .pd-models .pd-model-name {
    font-size: 20px;
  }
  .productsDetail .pd-models .pd-model-type {
    font-size: 14px;
    margin: 3vw 0;
    padding-bottom: 3vw;
  }
  .productsDetail .pd-models .pd-model-specs {
    padding-top: 3vw;
  }
  .productsDetail .pd-models .pd-model-spec {
    font-size: 14px;
    line-height: 2;
  }
  .productsDetail .pd-models .pd-model-spec span {
    font-size: 14px;
  }
  .support .sp-training {
    padding: 10vw 5vw;
  }
  .support .sp-tech .sp-tech-inner{
    width: 100%;
  }
  .proVideo{
    width: 100%;
    height: 45vw;
  }
  .support .sp-training .sp-training-inner {
    flex-direction: column;
    gap: 4vw;
  }
  .support .sp-training .sp-training-left {
    width: 100%;
    position: static;
  }
  .support .sp-training .sp-training-left .sp-training-lead {
    font-size: 16px;
  }
  .support .sp-training .sp-training-right {
    width: 100%;
  }
  .support .sp-training .sp-training-card {
    padding: 5vw;
    justify-content: space-between;
  }
  .support .sp-training .sp-training-content {
    width: calc(100% - 10vw);
  }
  .support .sp-training .sp-training-num {
    font-size: 22px;
  }
  .support .sp-training .sp-training-tit {
    font-size: 18px;
  }
  .support .sp-training .sp-training-desc {
    font-size: 16px;
  }
  .support .sp-tech {
    padding: 10vw 5vw;
  }
  .support .sp-tech .sp-tech-sub {
    font-size: 16px;
    max-width: 80vw;
    margin-bottom: 4vw;
  }
  .support .sp-tech .sp-tech-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 3vw;
  }
  .support .sp-tech .sp-tech-card {
    padding: 5vw;
  }
  .support .sp-tech .sp-tech-icon {
    width: 8vw;
    height: 8vw;
  }
  .support .sp-tech .sp-tech-icon i {
    font-size: 16px;
  }
  .support .sp-tech .sp-tech-tit {
    font-size: 18px;
    margin: 5vw 0;
  }
  .support .sp-tech .sp-tech-desc {
    font-size: 16px;
  }
  .support .sp-tech .sp-tech-meta {
    font-size: 14px;
    padding: 2vw 3vw;
    margin-top: 3vw;
  }
  footer .footer .right .follow .iconBox .icon .qrHover{
    width: 30vw;
    margin-top: -39vw;
    margin-left: -11.5vw;
  }
  .videoList{
    gap: 5vw;
  }
  .videoList .videoItem{
    width: 100%;
    height: 45vw;
  }
  .videoList .videoItem .play{
    font-size: 48px;
  }
}
