@font-face {
  font-family: 'iconfont';  /* Project id 5161246 */
  src: url('//at.alicdn.com/t/c/font_5161246_abfavrgbucw.woff2?t=1777346018646') format('woff2'),
  url('//at.alicdn.com/t/c/font_5161246_abfavrgbucw.woff?t=1777346018646') format('woff'),
  url('//at.alicdn.com/t/c/font_5161246_abfavrgbucw.ttf?t=1777346018646') format('truetype');
}
@font-face {
  font-family: HarmonyOS_Sans_SC_Regular;
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
}
@font-face {
  font-family: HarmonyOS_Sans_SC_Medium;
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: HarmonyOS_Sans_SC_Regular;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
:root {
  --mainC: #1F4397;
}
.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: #333333;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.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.5s;
}
.he_fadeup3 {
  -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;
}
.iconAnm {
  -webkit-animation: iconAnms 1s ease both;
  animation: iconAnms 1s ease both;
  -ms-animation: iconAnms 1s ease both;
  animation-delay: 0.3s;
}
.updown{
  position: absolute;
  color: white;
  font-size: 3vw;
  right: 2vw;
  bottom: 1vw;
  opacity: .5;
  z-index: 3;
  transform: rotate(180deg);
  animation: upAnm 1s linear;
}
@keyframes upAnm {
  0%{
    transform: rotate(180deg) translateY(0);
  }
  50%{
    transform: rotate(180deg) translateY(.5vw);
  }
  100%{
    transform: rotate(180deg) translateY(0);
  }
}
@keyframes iconAnms {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.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: 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animate-img img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img .img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img.active {
  opacity: 1;
}
.animate-img.active img {
  transform: scale(1);
}
.animate-img.active .img {
  transform: scale(1);
}
header {
  width: 100%;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 2vw 8vw;
  align-items: center;
  -webkit-transition: all 0.5s;
}
header .logo {
  width: 7vw;
  overflow: hidden;
}
header .logo img:nth-child(2) {
  display: none;
}
header nav {
  display: flex;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 40px;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  margin-right: 3vw;
  position: relative;
}
header nav ul li a {
  font-size: 16px;
  color: white;
}
header nav ul li:last-child {
  margin-left: 20px;
  margin-right: 0;
}
header nav .langBox {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: white;
  border: 1px solid white;
  margin-left: 50px;
}
header nav .langBox i {
  font-size: 20px;
  padding: 0 5px;
}
header nav .langBox p {
  padding: 3px 15px;
  border-left: 1px solid white;
}
header.active .logo img:nth-child(1) {
  display: none;
}
header.active .logo img:nth-child(2) {
  display: block;
}
header.active nav {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
header.active nav li a {
  color: #333333;
}
header.active2 {
  transform: translateY(-10vw);
}
footer {
  width: 100%;
  position: relative;
  background: #F5F5F5;
  padding: 3vw 8vw 0 8vw;
}
footer .logo {
  width: 7vw;
}
footer .des{
  font-size: 20px;
  margin-top: 1vw;
}
footer .des .d{
  font-size: 8px;
}
footer .footerCenter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2vw 0;
}
footer .footerCenter .text .nav {
  display: flex;
}
footer .footerCenter .text .nav a {
  display: block;
  font-size: 18px;
  margin-right: 1vw;
}
footer .footerCenter .text .address {
  margin-top: 1vw;
  font-size: 14px;
  line-height: 2;
  color: #434343;
}
footer .footerCenter .qrcodeBox {
  display: flex;
  text-align: center;
}
footer .footerCenter .qrcodeBox .qrcode {
  width: 6vw;
  font-size: 14px;
  margin-left: 2vw;
}
footer .footerCenter .qrcodeBox .qrcode p {
  margin-top: 5px;
}
footer .footerInfo {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 1vw 0;
  justify-content: space-between;
  font-size: 14px;
}
footer .footerInfo a {
  color: #999999;
}
.titBox .tit {
  font-size: 2.5vw;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.index {
  width: 100%;
  position: relative;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover !important;
}
.index .f1 .bannerSwiper{
  width: 100%;
  height: 100%;
  position: relative;
}
.index .f1 .bannerSwiper .imgBox{
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.index .f1 .bannerSwiper .text{
  width: 100%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 8vw;
}
.index .f1 .bannerSwiper .swiper-pagination{
  bottom: 1vw;
}
.index .f1 .bannerSwiper .swiper-pagination-bullet{
  background: white;
  margin: 0 .5vw;
}
.index .f1 .bannerSwiper .swiper-pagination-bullet-active{
  width: 2vw;
  border-radius: 10px;
}
.index .f1 .text {
  color: white;
  text-align: center;
}
.index .f1 .text .t {
  font-size: 2vw;
  font-weight: 400;
  margin-bottom: 2vw;
}
.index .f1 .text .d {
  font-size: 3.5vw;
  margin: 1vw 0 ;
  font-weight: 300;
}
.index .f1 .text .more {
  width: auto;
  border-radius: 5vw;
  display: inline-flex;
  align-items: center;
  border: 1px solid #F7F8F9;
  padding: 0.3vw 0.3vw 0.3vw 2.5vw;
  font-size: 0.9vw;
  transition: .3s all;
  cursor: pointer;
  background: linear-gradient(86deg, #FFF 1.98%, #EAEAEA 65.8%), linear-gradient(86deg, #000 1.98%, #434343 65.8%);
}
.index .f1 .text .more .icon {
  width: 2.5vw;
  height: 2.5vw;
  line-height: 2.5vw;
  background: white;
  border-radius: 50%;
  font-size: 0.9vw;
  margin-left: 2vw;
}
.index .f1 .text .more:hover{
  letter-spacing: 3px;
}
.index .f2 {
  width: 100%;
  position: relative;
  padding: 2vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index .f2 .item {
  width: 49%;
  height: 35vw;
  position: relative;
  background-size: cover !important;
  border-radius: 0.5vw;
  margin-bottom: 2vw;
  padding-top: 3vw;
  overflow: hidden;
}
.index .f2 .item .text {
  text-align: center;
}
.index .f2 .item .text .t {
  color: #666666;
  font-size: 1vw;
}
.index .f2 .item .text .d {
  font-size: 2.2vw;
  margin: 0.5vw 0 1vw 0;
}
.index .f2 .item .text .more {
  width: auto;
  border-radius: 5vw;
  display: inline-flex;
  align-items: center;
  padding: 0.5vw 1.5vw;
  font-size: 0.9vw;
  border: 1px solid #333333;
  transition: 0.3s all;
  color: white;
  background: rgba(0,0,0,.9);
}
.index .f2 .item .text .more i {
  margin-left: 1vw;
}
.index .f2 .item .text .more:hover {
  /*background: white;*/
  letter-spacing: 3px;
}
.index .f2 .item .img {
  width: 20vw;
  margin: 0 auto;
  pointer-events: none;
  transition: 0.5s all;
  transform: translateX(-50%);
  position: absolute;
  bottom: 1vw;
  left: 50%;
}
.index .f2 .item:hover .img {
  transform: translateX(-50%) scale(1.05);
}
.index .f3 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.index .f3 .titBox {
  text-align: center;
}
.index .f3 .newsList {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index .f3 .newsList .item {
  width: 31%;
  display: block;
  position: relative;
  border-radius: 1vw;
  margin-top: 3vw;
  overflow: hidden;
}
.index .f3 .newsList .item .imgBox {
  width: 100%;
  height: 18vw;
  overflow: hidden;
}
.index .f3 .newsList .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.index .f3 .newsList .item .text {
  width: 100%;
  background: #F9F9F9;
  position: relative;
  padding: 1.5vw;
}
.index .f3 .newsList .item .text .time {
  font-size: 0.85vw;
  color: #999999;
}
.index .f3 .newsList .item .text .tit {
  font-size: 1vw;
  margin: 1vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index .f3 .newsList .item .text .more {
  width: auto;
  border-radius: 5vw;
  display: inline-flex;
  align-items: center;
  font-size: 0.9vw;
  transition: 0.3s all;
}
.index .f3 .newsList .item .text .more i {
  margin-left: 1vw;
}
.index .f3 .newsList .item:hover .imgBox .img {
  transform: scale(1.1);
}
.pro {
  width: 100%;
  position: relative;
}
.pro .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
  cursor: pointer;
}
.pro .f1 video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  object-position: center;
}
.pro .f1 .f1M{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  display: none;
}
.pro .f1 .play {
  width: 7vw;
  height: 7vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  cursor: pointer;
  display: none;
}
.pro .f1 .play .playImg {
  width: 6vw;
  height: 6vw;
  background: url('../images/icon1.png') center no-repeat;
  background-size: cover !important;
  margin: 0 auto;
  animation: playImgAnm 6s infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pro .f1 .play i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 52%;
  font-size: 2vw;
}
.pro .f1 .play p {
  text-align: center;
  margin-top: 0.5vw;
  font-size: 0.9vw;
  color: white;
}
.pro .tabBox{
  width: 80%;
  padding: 0 4vw;
  margin: -5vw auto 0 auto;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  z-index: 99;
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10);
  transition: width 0.3s, border-radius 0.3s;
}
.pro .tabBox.sticky{
  width: 100%;
  padding: 0 8vw;
  border-radius: 0;
}
.pro .tabBox .tit{
  font-weight: 400;
  font-size: 1.8vw;
}
.pro .tabBox .tabs{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro .tabBox .tabs .tab{
  font-size: 1vw;
  color: #666666;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  margin: 0 2.5vw;
  padding: 1.5vw 0;
}
.pro .tabBox .tabs .tab:hover{
  color: #0050A8;
}
.pro .tabBox .tabs .tab.active{
  font-weight: 400;
  color: #0050A8;
  border-bottom: 1px solid #0050A8;
}
.pro .tabBox .phone{
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  font-size: .9vw;
  padding: .5vw 1.5vw;
}
.pro .f2 {
  width: 100%;
  position: relative;
  padding: 3vw 0 6vw 0;
}
.pro .f2 .titBox {
  text-align: center;
}
.pro .f2 .f2Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  padding: 0 8vw 100px 8vw;
}
.pro .f2 .f2Swiper .swiper-slide {
  height: 25vw;
  border-radius: 0.5vw;
  /*background: black;*/
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.pro .f2 .f2Swiper .swiper-slide .imgBox {
  width: 70%;
  height: 25vw;
  position: absolute;
  right: 0;
  transition: 0.5s all;
  background-size: cover !important;
}
.pro .f2 .f2Swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .95), rgba(0, 0, 0, 1));
}
.pro .f2 .f2Swiper .swiper-slide .text {
  width: 70%;
  padding: 3vw;
  color: white;
  position: relative;
  z-index: 2;
}
.pro .f2 .f2Swiper .swiper-slide .text .t {
  font-size: 2vw;
  font-weight: 400;
}
.pro .f2 .f2Swiper .swiper-slide .text .d {
  width: 100%;
  font-size: 1.15vw;
  margin-top: 1vw;
  line-height: 1.7;
}
.pro .f2 .f2Swiper .swiper-slide:hover .imgBox {
  transform: scale(1.1);
}
.pro .f2 .f2Swiper .swiper-pagination {
  width: 250px;
  border-radius: 3vw;
  left: 42vw;
  padding: 12px 0 17px 0;
  background-color: #F1F1F3;
}
.pro .f2 .f2Swiper .swiper-pagination .swiper-pagination-bullet {
  background: #AEAEAE;
  opacity: 1;
  margin: 0 0.4vw;
  transition: 1s all;
}
.pro .f2 .f2Swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 3vw;
  border-radius: 0.5vw;
}
.pro .f2 .f2Swiper .playIcon {
  width: 55px;
  height: 55px;
  background-color: #F1F1F3;
  border-radius: 50%;
  position: absolute;
  left: calc(42vw + 270px);
  bottom: 10px;
  cursor: pointer;
}
.pro .f2 .f2Swiper .playIcon i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 24px;
  transform: translate(-50%, -50%);
  display: none;
}
.pro .f2 .f2Swiper .playIcon i:nth-child(2) {
  display: block;
}
.pro .f2 .f2Swiper .playIcon.pause i:nth-child(1) {
  display: block;
}
.pro .f2 .f2Swiper .playIcon.pause i:nth-child(2) {
  display: none;
}
.pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #AEAEAE;
  border-radius: 50%;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet-active {
  width: 3vw;
  border-radius: 0.5vw;
}
.pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: black;
  border-radius: 2px;
  transition: width 0.1s ease;
}
.pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet-active::after {
  width: var(--progress, 0%);
}
.pro .f3 {
  width: 100%;
  position: relative;
  padding: 0 8vw 6vw 8vw;
}
.pro .f3 .titBox {
  text-align: center;
}
.pro .f3 .f3Box {
  width: 100%;
  height: 40vw;
  margin-top: 3vw;
  position: relative;
  border-radius: 1.5vw;
  background: #F1F1F3;
  overflow: hidden;
}
.pro .f3 .f3Box .f3Img {
  width: 100%;
  height: 100%;
  position: relative;
}
.pro .f3 .f3Box .f3Img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 40%;
  width: 13%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(241, 241, 243, 0), rgba(241, 241, 243, .5), rgba(241, 241, 243, 1));
}
.pro .f3 .f3Box .f3Img img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(10vw) scale(0.8);
}
.pro .f3 .f3Box .f3Img img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}
.pro .f3 .f3Box .itemBox {
  position: absolute;
  left: 0vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
}
.pro .f3 .f3Box .itemBox .ctrl {
  margin-right: 2vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-left: 2vw;
}
.pro .f3 .f3Box .itemBox .ctrl div {
  width: 2.5vw;
  height: 2.5vw;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.pro .f3 .f3Box .itemBox .ctrl div i {
  font-size: 1.2vw;
  color: #1d1d1f;
}
.pro .f3 .f3Box .itemBox .ctrl div:hover {
  background: rgba(255, 255, 255, 0.9);
}
.pro .f3 .f3Box .itemBox .itemList {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.pro .f3 .f3Box .itemBox .itemList .item {
  cursor: pointer;
}
.pro .f3 .f3Box .itemBox .itemList .item .pill {
  display: flex;
  align-items: center;
  background: #ffffff;
  backdrop-filter: blur(20px);
  padding: 0.8vw 1.5vw;
  border-radius: 5vw;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}
.pro .f3 .f3Box .itemBox .itemList .item .pill i {
  margin-right: 0.8vw;
  font-size: 1.2vw;
  color: #1d1d1f;
}
.pro .f3 .f3Box .itemBox .itemList .item .pill span {
  font-size: 1.5vw;
  color: #1d1d1f;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.pro .f3 .f3Box .itemBox .itemList .item .bubble {
  max-height: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  background: #ffffff;
  backdrop-filter: blur(30px);
  border-radius: 2vw;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pro .f3 .f3Box .itemBox .itemList .item .bubble .d {
  font-size: 1.15vw;
  line-height: 1.6;
  color: #424245;
  width: 22vw;
}
.pro .f3 .f3Box .itemBox .itemList .item .bubble .d span {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 1.7vw;
}
.pro .f3 .f3Box .itemBox .itemList .item.active .pill {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.pro .f3 .f3Box .itemBox .itemList .item.active .bubble {
  max-height: 300px;
  max-width: 30vw;
  opacity: 1;
  padding: 2.5vw;
}
.pro .f4 {
  width: 100%;
  position: relative;
  padding: 0 8vw 6vw 8vw;
}
.pro .f4 .titBox {
  text-align: center;
}
.pro .f4 .f4video {
  width: 100%;
  height: 40vw;
  border-radius: 0.5vw;
  margin-top: 3vw;
  position: relative;
  overflow: hidden;
}
.pro .f4 .f4video video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.pro .f4 .f4video .play {
  width: 7vw;
  height: 7vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  cursor: pointer;
}
.pro .f4 .f4video .play .playImg {
  width: 6vw;
  height: 6vw;
  background: url('../images/icon1.png') center no-repeat;
  background-size: cover !important;
  margin: 0 auto;
  animation: playImgAnm 6s infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pro .f4 .f4video .play i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 52%;
  font-size: 2vw;
}
.pro .f4 .f4video .play p {
  text-align: center;
  margin-top: 0.5vw;
  font-size: 0.9vw;
  color: white;
}
.pro .f5 {
  width: 100%;
  position: relative;
  padding: 0 8vw 6vw 8vw;
  display: flex;
  justify-content: space-between;
}
.pro .f5 .titBox {
  text-align: left;
}
.pro .f5 .f5Box {
  width: 60%;
  position: relative;
  background: #F1F1F3;
  border-radius: 1vw;
  padding: 2vw;
}
.pro .f5 .f5Box .item {
  width: 100%;
  position: relative;
  margin-bottom: 2vw;
}
.pro .f5 .f5Box .item .itemHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.pro .f5 .f5Box .item .itemHeader .tit {
  font-size: 1.2vw;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.pro .f5 .f5Box .item .itemHeader .icon i {
  font-size: 1vw;
}
.pro .f5 .f5Box .item .itemHeader .icon i:nth-child(2) {
  display: none;
}
.pro .f5 .f5Box .item .des {
  width: 100%;
  height: 0;
  opacity: 0;
  position: relative;
  color: #666666;
  font-size: 0.9vw;
  overflow-y: hidden;
  overflow-x: scroll;
  transition: 0.5s all;
}
.pro .f5 .f5Box .item .des table {
  width: 100%;
  transition: 0.5s all;
}
.pro .f5 .f5Box .item .des tr td,.pro .f5 .f5Box .item .des tr th {
  padding: 0.8vw 0;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pro .f5 .f5Box .item .des tr td:nth-child(1),.pro .f5 .f5Box .item .des tr th:nth-child(1) {
  width: 6vw;
}
.pro .f5 .f5Box .item .des tr td:nth-child(2),.pro .f5 .f5Box .item .des tr th:nth-child(2){
  padding: .8vw 2vw;
  text-align: center;
}
.pro .f5 .f5Box .item .des tr td:nth-child(3),.pro .f5 .f5Box .item .des tr th:nth-child(3){
  padding: .8vw 2vw;
  text-align: center;
}
.pro .f5 .f5Box .item .des tr td:last-child,.pro .f5 .f5Box .item .des tr th:last-child {
  text-align: right;
  padding: .8vw 0;
}
.pro .f5 .f5Box .item.active .itemHeader .icon i:nth-child(1) {
  display: none;
}
.pro .f5 .f5Box .item.active .itemHeader .icon i:nth-child(2) {
  display: block;
}
.pro .f5 .f5Box .item.active .des {
  opacity: 1;
  height: auto;
}
.pro .f5 .f5Box .item:last-child {
  margin-bottom: 0;
}
.pro .f6 {
  width: 100%;
  position: relative;
  padding: 0 8vw 6vw 8vw;
}
.pro .f6 .titBox {
  display: flex;
  justify-content: space-between;
}
.pro .f6 .titBox .btn .swiper-button-next:after,
.pro .f6 .titBox .btn .swiper-button-prev:after {
  display: none;
}
.pro .f6 .titBox .btn .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  background: #F1F1F3;
  border-radius: 50%;
  color: #000;
  right: 8vw;
  top: 8vw;
}
.pro .f6 .titBox .btn .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  background: #F1F1F3;
  border-radius: 50%;
  color: #000;
  right: 12vw;
  left: inherit;
  top: 8vw;
  transform: rotate(180deg);
}
.pro .f6 .f6Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
}
.pro .f6 .f6Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 18vw;
  border-radius: 1vw;
  overflow: hidden;
}
.pro .f6 .f6Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.pro .f6 .f6Swiper .swiper-slide .tit {
  font-size: 0.9vw;
  margin-top: 1vw;
}
.pro .f6 .f6Swiper .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.pro .f7 {
  width: 100%;
  position: relative;
  padding: 0 2vw 2vw 2vw;
}
.pro .f7 .titBox {
  text-align: center;
}
.pro .f7 .f7Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pro .f7 .f7Box .item {
  width: 49%;
  height: 35vw;
  position: relative;
  background-size: cover !important;
  border-radius: 0.5vw;
  padding-top: 5vw;
  margin-top: 3vw;
  display: block;
  overflow: hidden;
}
.pro .f7 .f7Box .item .text {
  text-align: center;
}
.pro .f7 .f7Box .item .text .t {
  color: #666666;
  font-size: 1vw;
}
.pro .f7 .f7Box .item .text .d {
  font-size: 2.2vw;
  margin: 0.5vw 0 1vw 0;
}
.pro .f7 .f7Box .item .text .more {
  width: auto;
  border-radius: 5vw;
  display: inline-flex;
  align-items: center;
  padding: 0.5vw 1.5vw;
  font-size: 0.9vw;
  border: 1px solid #333333;
  transition: 0.3s all;
  color: white;
  background: rgba(0, 0, 0, .9);
}
.pro .f7 .f7Box .item .text .more i {
  margin-left: 1vw;
}
.pro .f7 .f7Box .item .text .more:hover {
  letter-spacing: 3px;
}
.pro .f7 .f7Box .item .img {
  width: 20vw;
  margin: 0 auto;
  pointer-events: none;
  transition: 0.5s all;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}
.pro .f7 .f7Box .item:hover .img {
  transform: translateX(-50%) scale(1.1);
}
.about {
  width: 100%;
  position: relative;
}
.about .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover !important;
  display: flex;
  padding: 10vw 8vw 0 8vw;
  justify-content: space-between;
  color: white;
}
.about .f1 .text {
  position: relative;
}
.about .f1 .text .t {
  font-size: 1.8vw;
  font-weight: 300;
}
.about .f1 .text .t span {
  font-family: HarmonyOS_Sans_SC_Medium;
}
.about .f1 .text .d {
  font-size: 1vw;
  line-height: 2;
  margin-top: 3vw;
}
.about .f1 .f1Box {
  width: 55%;
  position: relative;
}
.about .f1 .f1Box .item {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  padding: 1vw 2vw 1.5vw 2vw;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.1s;
}
.about .f1 .f1Box .item .num {
  width: 3vw;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  color: transparent;
  font-size: 4vw;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.about .f1 .f1Box .item .txt {
  margin-left: 2vw;
  margin-top: 1.4vw;
}
.about .f1 .f1Box .item .txt .t1 {
  font-size: 1vw;
}
.about .f1 .f1Box .item .txt .t2 {
  font-size: 1vw;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.about .f1 .f1Box .item .txt .des {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1.5vw;
  margin-top: 1.5vw;
}
.about .f1 .f1Box .item .txt .des .t {
  font-size: 1.1vw;
  font-weight: bold;
}
.about .f1 .f1Box .item .txt .des .d {
  font-size: 0.9vw;
  line-height: 2;
  margin-top: 0.5vw;
}
.about .f2 {
  width: 100%;
  height: 110vh;
  position: relative;
  padding: 6vw 8vw;
  background: #F5F5F7;
}
.about .f2 .titBox .tit {
  text-align: left;
}
.about .f2 .des {
  width: 42vw;
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
}
.about .f2 .f2Box {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.about .f2 .f2Box .item1 {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
  box-shadow: 0 0 0 9.354px #F1F1F3, 0 0 0 11.225px #00B4D8;
  color: white;
  text-align: center;
  position: absolute;
  top: 15vw;
  padding-top: 1.5vw;
}
.about .f2 .f2Box .item1 .t {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item1 .num {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 2.3vw;
}
.about .f2 .f2Box .item1 .num span {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item1 .d {
  font-size: 0.8vw;
}
.about .f2 .f2Box .item2 {
  width: 13vw;
  height: 13vw;
  border-radius: 50%;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
  box-shadow: 0 0 0 9.354px #F1F1F3, 0 0 0 11.225px #00B4D8;
  color: white;
  text-align: center;
  position: absolute;
  top: 3vw;
  left: 12vw;
  padding-top: 2vw;
}
.about .f2 .f2Box .item2 .t {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item2 .nums {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 1.8vw;
  /*display: flex;*/
  justify-content: center;
  margin-top: 1vw;
  padding-left: 2vw;
}
.about .f2 .f2Box .item2 .nums p {
  display: flex;
  align-items: center;
  justify-content: left;
}
.about .f2 .f2Box .item2 .nums p font{
  width: 4vw;
}
.about .f2 .f2Box .item2 .nums p span {
  font-size: 0.8vw;
  text-align: left;
}
.about .f2 .f2Box .item3 {
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
  box-shadow: 0 0 0 9.354px #F1F1F3, 0 0 0 11.225px #00B4D8;
  color: white;
  text-align: center;
  position: absolute;
  top: -4vw;
  right: 18vw;
  padding-top: 2vw;
}
.about .f2 .f2Box .item3 .t {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item3 .d {
  font-size: 0.8vw;
  margin-top: 0.5vw;
}
.about .f2 .f2Box .item4 {
  width: 13vw;
  height: 13vw;
  border-radius: 50%;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
  box-shadow: 0 0 0 9.354px #F1F1F3, 0 0 0 11.225px #00B4D8;
  color: white;
  text-align: center;
  position: absolute;
  top: 12vw;
  right: 14vw;
  padding-top: 3vw;
}
.about .f2 .f2Box .item4 .t {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item4 .nums {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 2.5vw;
  display: flex;
  justify-content: center;
}
.about .f2 .f2Box .item4 .nums p {
  display: flex;
  align-items: center;
}
.about .f2 .f2Box .item4 .nums p span {
  font-size: 0.8vw;
}
.about .f2 .f2Box .item4 .nums p:nth-child(2) {
  margin: 0 0.5vw;
}
.about .f2 .f2Box .item4 .d {
  font-size: 0.8vw;
  margin-top: 1vw;
}
.about .f2 .f2Box .item5 {
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
  box-shadow: 0 0 0 9.354px #F1F1F3, 0 0 0 11.225px #00B4D8;
  color: white;
  text-align: center;
  position: absolute;
  top: 5vw;
  right: 2vw;
  padding-top: 2vw;
}
.about .f2 .f2Box .item5 .t {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item5 .num {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 2vw;
}
.about .f2 .f2Box .item5 .num span {
  font-size: 2vw;
}
.about .f2 .f2Box .item5 .d {
  font-size: 0.8vw;
}
.about .f2 .f2Box .itemO {
  width: 25vw;
  height: 25vw;
  background: url('../images/icon4.png?v1') center no-repeat;
  background-size: cover !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 25vw;
  color: white;
  top: 0;
}
.about .f2 .f2Box .itemO .t {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 4vw;
}
.about .f2 .f2Box .itemO .t span {
  font-size: 1.5vw;
  position: relative;
  top: -.3vw;
}
.about .f2 .f2Box .icon1 {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
  top: 7vw;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
}
.about .f2 .f2Box .icon2 {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
  top: 20vw;
  left: 20vw;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
}
.about .f2 .f2Box .icon3 {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 10vw;
  background: linear-gradient(150deg, #004FA2 13.84%, #4B95E4 85.96%);
}
.about .f2 .f2Info {
  position: absolute;
  right: 8vw;
  bottom: 0;
  font-weight: 300;
  font-size: 2vw;
  text-align: right;
}
.about .f3 {
  width: 100%;
  position: relative;
  background-size: cover !important;
  padding: 20vw 8vw 12vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.about .f3 .f3Img{
  width: 45vw;
  position: absolute;
  right: 0;
  top: 0;
}
.about .f3 .numsBox {
  width: 50%;
  position: relative;
}
.about .f3 .numsBox .nums {
  position: relative;
}
.about .f3 .numsBox .nums .num {
  font-size: 5vw;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.about .f3 .numsBox .nums .num font {
  font-size: 3vw;
  position: absolute;
  margin-left: -1vw;
}
.about .f3 .numsBox .nums .num span {
  font-size: 1vw;
}
.about .f3 .numsBox .nums .tit {
  font-size: 1vw;
}
.about .f3 .numsBox .nums::before {
  content: '';
  position: absolute;
  width: 7vw;
  height: 1px;
  top: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(50%);
}
.about .f3 .numsBox .nums:nth-child(1),
.about .f3 .numsBox .nums:nth-child(3) {
  padding-left: 8vw;
}
.about .f3 .numsBox .nums:nth-child(2),
.about .f3 .numsBox .nums:nth-child(4) {
  padding-left: 25vw;
}
.about .f3 .numsBox .nums:nth-child(2)::before,
.about .f3 .numsBox .nums:nth-child(4)::before {
  width: 24vw;
}
.about .f3 .textBox {
  width: 40%;
}
.about .f3 .textBox .tit {
  font-size: 2.5vw;
  font-weight: 400;
}
.about .f3 .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
}
.about .f3 .textBox .txtBox{
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.about .f3 .textBox .txtBox .it{
  font-size: .85vw;
  border-radius: 5vw;
  border: 1px solid white;
  color: white;
  padding: .5vw 1vw;
}
.about .f3 .textBox .info {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 6vw;
  padding-left: 0.8vw;
}
.about .f3 .textBox .info::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about .f4 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
  padding: 6vw 8vw 0 8vw;
  overflow: hidden;
}
.about .f4 .titBox .tit {
  text-align: left;
}
.about .f4 .logoSwiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
}
.about .f4 .logoSwiper .logos {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 0.5vw;
  margin-bottom: 1vw;
  height: 6vw;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about .f4 .logoSwiper .logos img {
  width: 100%;
  transition: 0.5s all;
  object-fit: cover !important;
}
.about .f4 .logoSwiper .logos:hover img {
  transform: scale(1.1);
}
.news {
  width: 100%;
  position: relative;
}
.news .f1 {
  width: 100%;
  position: relative;
  padding: 10vw 8vw 6vw 8vw;
}
.news .f1 .titBox {
  text-align: center;
}
.news .f1 .newsList {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news .f1 .newsList .item {
  width: 31%;
  display: block;
  position: relative;
  border-radius: 1vw;
  margin-top: 3vw;
  overflow: hidden;
}
.news .f1 .newsList .item .imgBox {
  width: 100%;
  height: 18vw;
  overflow: hidden;
}
.news .f1 .newsList .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.news .f1 .newsList .item .text {
  width: 100%;
  background: #F9F9F9;
  position: relative;
  padding: 1.5vw;
}
.news .f1 .newsList .item .text .time {
  font-size: 0.85vw;
  color: #999999;
}
.news .f1 .newsList .item .text .tit {
  font-size: 1vw;
  margin: 1vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news .f1 .newsList .item .text .more {
  width: auto;
  border-radius: 5vw;
  display: inline-flex;
  align-items: center;
  font-size: 0.9vw;
  transition: 0.3s all;
}
.news .f1 .newsList .item .text .more i {
  margin-left: 1vw;
}
.news .f1 .newsList .item:hover .imgBox .img {
  transform: scale(1.1);
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1600px) {
  .about .f2{
    height: 100vh;
  }
}
@media screen and (max-width: 1440px) {
  .about .f2{
    height: 90vh;
  }
}
@media screen and (max-width: 1366px) {
  .about .f2{
    height: 95vh !important;
  }
}
/* ======================================
   1. iPad 竖屏 (Portrait)
====================================== */
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: portrait) {
  .pro .f2 .f2Swiper {
    padding: 0 5vw 8vw 5vw !important;
  }
  .pro .f6 .titBox .btn .swiper-button-next {
    width: 6vw !important;
    height: 6vw !important;
    top: 12vw !important;
  }
  .pro .f6 .titBox .btn .swiper-button-prev {
    width: 6vw !important;
    height: 6vw !important;
    top: 12vw !important;
  }
  .about .f2 .f2Box .item1 {
    width: 22vw !important;
    height: 22vw !important;
  }
  .about .f2 .f2Box .item2 {
    width: 25vw !important;
    height: 25vw !important;
  }
  .about .f2 .f2Box .itemO {
    width: 60vw !important;
    height: 60vw !important;
    line-height: 60vw !important;
  }
  .about .f2 .f2Box .item3 {
    width: 22vw !important;
    height: 22vw !important;
  }
  .about .f2 .f2Box .item4 {
    width: 25vw !important;
    height: 25vw !important;
  }
  .about .f2 .f2Box .item5 {
    width: 22vw !important;
    height: 22vw !important;
  }
  .about .f2 .f2Box {
    height: 160vw !important;
  }
  .about .f3 {
    background-position: bottom right !important;
  }
}
/* ======================================
   2. iPad 横屏 (Landscape)
====================================== */
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: landscape) {
  .about .f1{
    padding: 15vw 8vw 0 8vw;
  }
  .pro .f2 .f2Swiper .swiper-pagination {
    left: 38vw;
  }
  .pro .f2 .f2Swiper .playIcon {
    left: calc(38vw + 270px);
  }
  .about .f2 {
    height: 75vh;
  }
  .about .f4 {
    height: 65vh;
  }
  .about .f2 .f2Info{
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  main{
    margin-top: 50px;
  }
  .pro .tabBox{
    display: none;
  }
  header {
    top: 0;
    height: 50px;
    padding: 10px 3vw;
    background: black;
    position: fixed !important;
    backdrop-filter: blur(10px);
  }
  header.active2{
    transform: initial !important;
  }
  header.active .logo img:nth-child(1){
    display: block;
  }
  header.active .logo img:nth-child(2){
    display: none;
  }
  header.active nav li a{
    color: white;
  }
  header .logo{
    width: 90px;
  }
  header nav{
    background: transparent;
    backdrop-filter: initial;
    padding: 0;
  }
  header nav ul li{
    margin-right: 2vw;
  }
  header nav ul li:last-child{
    margin-left: 10px;
  }
  header nav ul li:last-child i{
    font-size: 22px;
  }
  header nav ul li a{
    font-size: 14px;
  }
  .index .f1 {
    height: 100vw;
  }
  .index .f1 .text .t {
    font-size: 20px;
  }
  .index .f1 .text .d {
    font-size: 18px;
    margin: 10px 0 15px 0;
  }
  .index .f1 .text .more {
    font-size: 12px;
    padding: 3px 3px 3px 20px;
  }
  .index .f1 .text .more .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .index .f2 .item {
    width: 100%;
    height: 80vw;
  }
  .index .f2 .item .text .t {
    font-size: 14px;
  }
  .index .f2 .item .text .d {
    font-size: 16px;
    margin: 10px 0;
  }
  .index .f2 .item .text .more {
    font-size: 12px;
    padding: 3px 10px;
  }
  .index .f2 .item .img {
    width: 45vw;
  }
  .index .f3 {
    padding: 10vw 5vw;
  }
  .titBox .tit {
    font-size: 22px;
  }
  .index .f3 .newsList {
    display: block;
  }
  .index .f3 .newsList .item {
    width: 100%;
    margin-top: 5vw;
  }
  .index .f3 .newsList .item .imgBox {
    height: 50vw;
  }
  .index .f3 .newsList .item .text {
    padding: 3vw;
  }
  .index .f3 .newsList .item .text .time {
    font-size: 12px;
  }
  .index .f3 .newsList .item .text .tit {
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
  .index .f3 .newsList .item .text .more {
    display: none;
  }
  footer {
    padding: 10vw 5vw 0 5vw;
  }
  footer .logo {
    width: 100px;
  }
  footer .footerCenter {
    display: block;
    margin: 5vw 0;
  }
  footer .footerCenter .text .nav a {
    font-size: 14px;
    margin-right: 2vw;
  }
  footer .footerCenter .text .address {
    font-size: 12px;
    margin: 2vw 0;
  }
  footer .footerCenter .qrcodeBox {
    justify-content: center;
  }
  footer .footerCenter .qrcodeBox .qrcode {
    width: 20vw;
    font-size: 12px;
    margin: 0 5vw;
  }
  footer .footerInfo {
    font-size: 12px;
    padding: 3vw 0;
  }
  .pro .f1 {
    height: 100vw;
  }
  .pro .f2 {
    padding: 10vw 0;
  }
  .pro .f2 .titBox {
    padding-left: 5vw;
  }
  .pro .f2 .f2Swiper {
    margin-top: 5vw;
    padding: 0 5vw 15vw 5vw;
  }
  .pro .f2 .f2Swiper .swiper-slide{
    height: 50vw;
  }
  .pro .f2 .f2Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .pro .f2 .f2Swiper .swiper-slide .text {
    width: 60%;
    padding: 5vw;
  }
  .pro .f2 .f2Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .pro .f2 .f2Swiper .swiper-slide .text .d {
    width: 100%;
    font-size: 14px;
  }
  .pro .f2 .f2Swiper .swiper-pagination {
    width: 42%;
    left: 23%;
    padding: 0 0 5px 0;
    border-radius: 5vw;
  }
  .pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet {
    margin: 0 5px;
  }
  .pro .f2 .f2Swiper .f1-pagination .swiper-pagination-bullet-active {
    width: 10vw;
    border-radius: 10px;
  }
  .pro .f2 .f2Swiper .playIcon {
    width: 30px;
    height: 30px;
    right: 25%;
    left: inherit;
  }
  .pro .f2 .f2Swiper .playIcon i {
    font-size: 14px;
  }
  .pro .f3 {
    padding: 3vw 5vw;
  }
  .pro .f3 .f3Box {
    height: auto;
    margin-top: 5vw;
    background: transparent;
  }
  .pro .f3 .f3Box .itemBox .ctrl {
    display: none;
  }
  .pro .f3 .f3Box .itemBox {
    position: relative;
    left: inherit;
    top: inherit;
    transform: inherit;
    padding: 0;
  }
  .pro .f3 .f3Box .itemBox .itemList .item{
    overflow: hidden;
    margin-bottom: 5vw;
    background: #F1F1F3;
  }
  .pro .f3 .f3Box .itemBox .itemList .item.active .bubble {
    max-width: 100%;
    padding: 3vw;
  }
  .pro .f3 .f3Box .itemBox .itemList .item .bubble {
    opacity: 1;
    overflow: visible;
    max-width: inherit;
    max-height: inherit;
    padding: 3vw;
    background: transparent;
    border-radius: 0;
  }
  .pro .f3 .f3Box .itemBox .itemList .item .bubble .d {
    font-size: 14px;
    width: 100%;
    margin: 10px 0;
  }
  .pro .f3 .f3Box .itemBox .itemList .item .bubble .img{
    width: 100%;
  }
  .pro .f3 .f3Box .itemBox .itemList .item .bubble .img img{
    height: 50vw;
  }
  .pro .f3 .f3Box .itemBox .itemList .item .pill {
    display: none;
  }
  .pro .f4 {
    padding: 10vw 5vw;
  }
  .pro .f4 .f4video {
    margin-top: 5vw;
    height: 50vw;
  }
  .pro .f4 .f4video .play {
    width: 20vw;
    height: 15vw;
  }
  .pro .f4 .f4video .play .playImg {
    width: 13vw;
    height: 13vw;
  }
  .pro .f4 .f4video .play i {
    font-size: 16px;
  }
  .pro .f4 .f4video .play p {
    font-size: 12px;
  }
  .pro .f5 {
    padding: 3vw 5vw;
    display: block;
  }
  .pro .f5 .f5Box {
    width: 100%;
    margin-top: 5vw;
    padding: 5vw;
  }
  .pro .f5 .f5Box .item {
    margin-bottom: 3vw;
  }
  .pro .f5 .f5Box .item .itemHeader .tit {
    font-size: 16px;
  }
  .pro .f5 .f5Box .item .itemHeader .icon i {
    font-size: 14px;
  }
  .pro .f5 .f5Box .item .des {
    font-size: 14px;
    margin-top: 2vw;
  }
  .pro .f5 .f5Box .item .des table tr td {
    padding: 1.5vw 0;
  }
  .pro .f6 {
    padding: 10vw 5vw;
  }
  .pro .f6 .f6Swiper {
    margin-top: 5vw;
  }
  .pro .f6 .f6Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .pro .f6 .f6Swiper .swiper-slide .tit {
    font-size: 16px;
    margin-top: 2vw;
  }
  .pro .f6 .titBox .btn .swiper-button-next {
    width: 8vw;
    height: 8vw;
    top: 17vw;
    font-size: 12px;
  }
  .pro .f6 .titBox .btn .swiper-button-prev {
    width: 8vw;
    height: 8vw;
    top: 17vw;
    font-size: 12px;
    right: 19vw;
  }
  .pro .f7 .f7Box {
    display: block;
  }
  .pro .f7 .f7Box .item {
    width: 100%;
    height: 80vw;
  }
  .pro .f7 .f7Box .item .text .t {
    font-size: 14px;
  }
  .pro .f7 .f7Box .item .text .d {
    font-size: 16px;
    margin: 10px 0;
  }
  .pro .f7 .f7Box .item .text .more {
    font-size: 12px;
    padding: 3px 10px;
  }
  .pro .f7 .f7Box .item .img {
    width: 45vw;
  }
  .about .f1 {
    height: auto;
    display: block;
    padding: 10vw 5vw;
  }
  .about .f1 .text .t {
    font-size: 22px;
  }
  .about .f1 .text .d {
    font-size: 16px;
  }
  .about .f1 .f1Box {
    width: 100%;
    margin-top: 5vw;
  }
  .about .f1 .f1Box .item {
    position: relative;
    top: inherit;
    left: inherit;
    margin-top: 5vw;
    border-radius: 2vw;
    padding: 5vw;
  }
  .about .f1 .f1Box .item .num {
    width: 10vw;
    font-size: 48px;
  }
  .about .f1 .f1Box .item .txt {
    margin-left: 5vw;
    margin-top: 2vw;
  }
  .about .f1 .f1Box .item .txt .t1 {
    font-size: 16px;
  }
  .about .f1 .f1Box .item .txt .t2 {
    font-size: 14px;
  }
  .about .f1 .f1Box .item .txt .des {
    padding-top: 3vw;
    margin-top: 3vw;
  }
  .about .f1 .f1Box .item .txt .des .t {
    font-size: 16px;
  }
  .about .f1 .f1Box .item .txt .des .d {
    font-size: 14px;
  }
  .about .f2 {
    height: auto !important;
    padding: 0 5vw 40vw 5vw;
  }
  .about .f2 .des {
    width: 100%;
    font-size: 14px;
    margin-top: 3vw;
  }
  .about .f2 .f2Box {
    height: 180vw;
  }
  .about .f2 .f2Box .item1 {
    width: 30vw;
    height: 30vw;
    padding-top: 5.5vw;
    left: 5vw;
  }
  .about .f2 .f2Box .item1 .t {
    font-size: 12px;
  }
  .about .f2 .f2Box .item1 .num {
    font-size: 22px;
  }
  .about .f2 .f2Box .item1 .num span {
    font-size: 12px;
  }
  .about .f2 .f2Box .item1 .d {
    font-size: 12px;
  }
  .about .f2 .f2Box .item2 {
    width: 38vw;
    height: 38vw;
    padding-top: 5.5vw;
    left: 50vw;
  }
  .about .f2 .f2Box .item2 .t {
    font-size: 12px;
  }
  .about .f2 .f2Box .item2 .nums {
    font-size: 24px;
    display: block;
    text-align: center;
    margin-top: 1vw;
  }
  .about .f2 .f2Box .item2 .nums p {
    justify-content: center;
  }
  .about .f2 .f2Box .item2 .nums p span {
    font-size: 12px;
    margin-left: 5px;
  }
  .about .f2 .f2Box .item2 .nums p font{
    width: auto;
  }
  .about .f2 .f2Box .itemO {
    width: 70vw;
    height: 70vw;
    line-height: 70vw;
    top: 40vw;
  }
  .about .f2 .f2Box .itemO .t {
    font-size: 48px;
  }
  .about .f2 .f2Box .itemO .t span {
    font-size: 16px;
  }
  .about .f2 .f2Box .item3 {
    width: 44vw;
    height: 44vw;
    padding-top: 7.5vw;
    top: 105vw;
    left: 0;
  }
  .about .f2 .f2Box .item3 .t {
    font-size: 14px;
  }
  .about .f2 .f2Box .item3 .d {
    font-size: 12px;
    margin-top: 1vw;
  }
  .about .f2 .f2Box .item4 {
    width: 37vw;
    height: 37vw;
    padding-top: 6.5vw;
    top: 110vw;
    left: 55vw;
  }
  .about .f2 .f2Box .item4 .t {
    font-size: 14px;
  }
  .about .f2 .f2Box .item4 .d {
    font-size: 12px;
  }
  .about .f2 .f2Box .item5 {
    width: 40vw;
    height: 40vw;
    padding-top: 7.5vw;
    top: 155vw;
    left: 25vw;
  }
  .about .f2 .f2Box .item5 .t {
    font-size: 14px;
  }
  .about .f2 .f2Box .item5 .num {
    font-size: 22px;
  }
  .about .f2 .f2Box .item5 .num span {
    font-size: 12px;
  }
  .about .f2 .f2Box .item5 .d {
    font-size: 12px;
  }
  .about .f2 .f2Box .icon1 {
    width: 8vw;
    height: 8vw;
    top: 75vw;
  }
  .about .f2 .f2Box .icon2 {
    width: 6vw;
    height: 6vw;
    top: 155vw;
    left: 10vw;
  }
  .about .f2 .f2Box .icon3 {
    width: 9vw;
    height: 9vw;
    top: 50vw;
    left: 80vw;
  }
  .about .f2 .f2Info {
    font-size: 14px;
    right: 5vw;
    bottom: 2vw;
  }
  .about .f3 {
    background: linear-gradient(0deg, #0453A9, #63a4ea) !important;
    padding: 20vw 5vw 10vw 5vw;
    display: block;
  }
  .about .f3 .textBox {
    width: 100%;
  }
  .about .f3 .textBox .tit {
    font-size: 22px;
  }
  .about .f3 .textBox .des {
    font-size: 14px;
    margin-top: 3vw;
  }
  .about .f3 .numsBox {
    width: 100%;
  }
  .about .f3 .numsBox .nums {
    margin-top: 5vw;
  }
  .about .f3 .numsBox .nums .num {
    font-size: 36px;
  }
  .about .f3 .numsBox .nums .num font {
    font-size: 26px;
  }
  .about .f3 .numsBox .nums .num span {
    font-size: 14px;
    margin-left: 10px;
  }
  .about .f3 .numsBox .nums .tit {
    font-size: 14px;
  }
  .about .f3 .numsBox .nums:nth-child(1),
  .about .f3 .numsBox .nums:nth-child(3) {
    padding-left: 20vw;
  }
  .about .f3 .numsBox .nums::before {
    width: 18vw;
  }
  .about .f3 .numsBox .nums:nth-child(2),
  .about .f3 .numsBox .nums:nth-child(4) {
    padding-left: 50vw;
  }
  .about .f3 .numsBox .nums:nth-child(2)::before,
  .about .f3 .numsBox .nums:nth-child(4)::before {
    width: 48vw;
  }
  .about .f3 .textBox .txtBox{
    gap: 3vw;
  }
  .about .f3 .textBox .txtBox .it {
    font-size: 12px;
    border-radius: 5vw;
    border: 1px solid white;
    color: white;
    padding: 1vw 2vw;
  }
  .about .f3 .textBox .info {
    font-size: 14px;
    right: 5vw;
    bottom: 5vw;
  }
  .about .f4 {
    height: auto;
    padding: 10vw 5vw;
  }
  .about .f4 .logoSwiper {
    margin-top: 5vw;
  }
  .about .f4 .logoSwiper .logos {
    height: 12vw;
    margin-bottom: 2vw;
  }
  .news .f1 {
    padding: 10vw 5vw;
  }
  .news .f1 .newsList {
    display: block;
  }
  .news .f1 .newsList .item {
    width: 100%;
    margin-top: 5vw;
  }
  .news .f1 .newsList .item .imgBox {
    height: 50vw;
  }
  .news .f1 .newsList .item .text {
    padding: 3vw;
  }
  .news .f1 .newsList .item .text .time {
    font-size: 12px;
  }
  .news .f1 .newsList .item .text .tit {
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
  .news .f1 .newsList .item .text .more {
    display: none;
  }
  .pro .f5 .f5Box .item .des table tr td:nth-child(1){
    width: 20vw;
  }
  .about .f4 .logoSwiper .logos img{
    width: 40%;
  }
  .index .f1 .bannerSwiper .swiper-pagination-bullet-active{
    width: 6vw;
  }
  footer .des{
    margin-top: 3vw;
  }
}
