@font-face {
  font-family: 'iconfont';  /* Project id 5053154 */
  src: url('//at.alicdn.com/t/c/font_5053154_dm6pkc1m34k.woff2?t=1775787015568') format('woff2'),
  url('//at.alicdn.com/t/c/font_5053154_dm6pkc1m34k.woff?t=1775787015568') format('woff'),
  url('//at.alicdn.com/t/c/font_5053154_dm6pkc1m34k.ttf?t=1775787015568') format('truetype');
}
/*@font-face {*/
/*  font-family: Regular;*/
/*  src: url('../fonts/SourceHanSansCN-Regular.otf');*/
/*  !*src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSansCN-Regular.otf')*!*/
/*}*/
@font-face {
  font-family: Figtree;
  src: url('../fonts/Figtree-VariableFont_wght.ttf');
}
/*@font-face {*/
/*  font-family: AlimamaShuHeiTi;*/
/*  src: url('../fonts/AlimamaShuHeiTi-Bold.otf');*/
/*}*/
@font-face {
  font-family: din;
  src: url('../fonts/DIN-Condensed-Bold.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: 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: #F9AD44;
  /* 滑块背景颜色 */
  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;
}
.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: 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);
}
.animation-color-bg {
  width: 100%;
  height: 100%;
  z-index: 15;
  background-color: #1F4397;
  position: absolute;
  inset: 0%;
  transform: translate3d(0px, 0%, 0px);
  transition: 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animation-color-bg.active {
  transform: translate3d(0px, 100%, 0px);
  transform-style: preserve-3d;
}
header {
  width: 100%;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 20px 3vw;
  align-items: center;
  -webkit-transition: all 0.5s;
}
header .logo {
  width: 12vw;
}
header .logo img:nth-child(1) {
  display: block;
}
header .logo img:nth-child(2) {
  display: none;
}
header .right {
  display: flex;
}
header .right nav ul {
  display: flex;
  align-items: center;
}
header .right nav ul li {
  width: 7vw;
  color: white;
  text-align: center;
}
header .right nav ul li a {
  color: white;
  font-size: 16px;
  padding: 1.19vw 0;
  font-family: Medium;
  position: relative;
}
header .right nav ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #F9AD44;
  transform: scaleX(0);
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
header .right nav ul li .meua {
  top: 100%;
  left: 0;
  width: 100%;
  position: absolute;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  overflow: hidden;
  background: #fff;
  -webkit-transform: perspective(300px) scaleY(0) translateZ(30px);
  transform: perspective(300px) scaleY(0) translateZ(30px);
  opacity: 0;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  display: flex;
  padding: 0 12vw;
}
header .right nav ul li .meua .titBox {
  width: 15vw;
  border-right: 1px solid #d4d4d4;
  padding: 3vw 0 0 0;
  text-align: left;
}
header .right nav ul li .meua .titBox .en {
  color: #999999;
  font-size: 1vw;
  text-transform: uppercase;
}
header .right nav ul li .meua .titBox .cn {
  color: #1F4397;
  font-size: 1.8vw;
  font-weight: bold;
}
header .right nav ul li .meua .textBox {
  width: 50vw;
  display: flex;
  align-items: center;
  padding: 3vw 0 3vw 4vw;
}
header .right nav ul li .meua .textBox .second {
  width: 13vw;
  margin-right: 3vw;
  position: relative;
}
header .right nav ul li .meua .textBox .second a {
  display: flex;
  color: #333333;
  justify-content: space-between;
  font-size: 16px;
  padding: 1.2vw 0;
  transition: 0.4s all;
}
header .right nav ul li .meua .textBox .second a i {
  color: #999999;
}
header .right nav ul li .meua .textBox .second a:before {
  content: inherit;
}
header .right nav ul li .meua .textBox .second a:hover {
  padding-left: 1vw;
  color: #F9AD44;
}
header .right nav ul li .meua .textBox .second a:hover i {
  color: #F9AD44;
}
header .right nav ul li .meua .textBox .secondImg {
  width: 32vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
header .right nav ul li .meua2 .textBox .second a {
  padding: 0.7vw 0;
}
header .right nav ul li.active .meua {
  -webkit-transform: perspective(300px) scaleY(1) translateZ(0);
  transform: perspective(300px) scaleY(1) translateZ(0);
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms 
                    ease, opacity 500ms 
                    ease, visibility 500ms 
                    ease;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
}
header .right nav ul li:hover a:before {
  transform: scaleX(1);
}
header .right nav ul li:last-child {
  width: auto;
  margin: 0;
  margin-left: 2vw;
}
header .right nav ul li:last-child a:before {
  content: inherit;
}
header .right .serach {
  font-size: 20px;
  padding: 0 0 0 1.2vw;
  cursor: pointer;
  color: white;
  transition: 0.3s all;
}
header .right .serach input {
  width: 0;
  position: relative;
  right: 1.5vw;
  margin-top: 0.3vw;
  border: transparent;
  outline: none;
  border-bottom: 1px solid #333333;
  background: transparent;
  color: #333333;
  font-size: 15px;
  font-family: inherit;
  transition: 0.3s all;
}
header .right .serach input::placeholder {
  color: #999999;
}
header .right .serach.active input {
  width: 10vw;
}
header.active {
  background: white;
  border-bottom: 1px solid #D4D4D4;
}
header.active .logo img:nth-child(1) {
  display: none;
}
header.active .logo img:nth-child(2) {
  display: block;
}
header.active .right nav ul li a {
  color: #333333;
}
header.active .right nav ul .joinIcon {
  border: 1px solid #333333;
}
header.active .right .serach {
  color: #333333;
}
footer {
  width: 100%;
  background: url('../images/footer.jpg') center no-repeat;
  background-size: cover !important;
  position: relative;
  padding: 5vw 8vw 0 8vw;
}
footer .footer {
  display: flex;
  justify-content: space-between;
}
footer .footer .left .logo {
  width: 12vw;
}
footer .footer .left .qrcode-scanner {
  width: 8vw;
  height: 8vw;
  position: relative;
  color: white;
  font-size: 0.85vw;
  text-align: center;
  margin-top: 5vw;
  /* 扫描线样式 */
  /* 扫描动画关键帧 */
  /* 扫码框角落装饰 */
}
footer .footer .left .qrcode-scanner .qrcode {
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
}
footer .footer .left .qrcode-scanner .scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  /* 渐变扫描线效果 */
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.8), #007bff, rgba(0, 123, 255, 0.8), transparent);
  /* 发光效果 */
  box-shadow: 0 0 10px 1px rgba(0, 123, 255, 0.6);
  /* 扫描动画 */
  animation: scan 2s linear infinite;
}
footer .footer .left .qrcode-scanner p {
  margin-top: 0.5vw;
}
@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
footer .footer .left .qrcode-scanner .qrcode-scanner::before,
footer .footer .left .qrcode-scanner .qrcode-scanner::after,
footer .footer .left .qrcode-scanner .qrcode-scanner span::before,
footer .footer .left .qrcode-scanner .qrcode-scanner span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  z-index: 1;
}
footer .footer .left .qrcode-scanner .qrcode-scanner::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
@keyframes f5VerticalFlow {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(110%);
  }
}
@-webkit-keyframes f5PolygonScan {
  0% {
    -webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
  }
  90% {
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
}
@keyframes f5PolygonScan {
  0% {
    clip-path: polygon(0 0,100% 0,100% 0,0 0);
  }
  90% {
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
  100% {
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
}
@keyframes f5Rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rightImg2Reveal {
  0% {
    -webkit-clip-path: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
  }
  60% {
    -webkit-clip-path: polygon(20% 20%,80% 20%,80% 80%,20% 80%);
  }
  100% {
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
}
@keyframes rightImg2Reveal {
  0% {
    clip-path: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
  }
  60% {
    clip-path: polygon(20% 20%,80% 20%,80% 80%,20% 80%);
  }
  100% {
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
  }
}
footer .footer .left .qrcode-scanner .qrcode-scanner::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
footer .footer .left .qrcode-scanner .qrcode-scanner span::before {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
footer .footer .left .qrcode-scanner .qrcode-scanner span::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
footer .footer .left .qrcode-scanner img {
  border-radius: 5px;
  margin: 0 auto 0.5vw auto;
}
footer .footer .center {
  padding-left: 20vw;
}
footer .footer .center ul li {
  margin-bottom: 1.5vw;
}
footer .footer .center ul li a {
  color: #F5F5F7;
  font-size: 0.9vw;
}
footer .footer .right {
  color: white;
}
footer .footer .right .item {
  margin-bottom: 2.5vw;
}
footer .footer .right .item .t {
  font-size: 1.1vw;
  font-weight: bold;
}
footer .footer .right .item .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
footer .footerInfo {
  font-size: 0.85vw;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 2vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 2vw;
  opacity: 0.5;
}
footer .footerInfo a {
  color: white;
}
footer .footerInfo .Designed{
  font-size: .6vw;
}
.bannerBox {
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}
.bannerBox .banner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-size: cover !important;
}
.bannerBox .text {
  padding: 12vw 8vw 0 8vw;
}
.bannerBox .text .m {
  color: #999999;
  font-size: 0.9vw;
  margin-bottom: 1vw;
}
.bannerBox .text .t {
  font-size: 3vw;
  /*font-family: AlimamaShuHeiTi;*/
  font-weight: bold;
  color: #1F4397;
}
.bannerBox .tabBox {
  position: absolute;
  bottom: 2vw;
  background: white;
  border-radius: 5vw;
  display: inline-flex;
  margin-left: 8vw;
  margin-top: 8vw;
  padding: 0 1.5vw;
}
.bannerBox .tabBox .tab {
  position: relative;
  color: #999999;
  font-size: 1vw;
  display: block;
  padding: 0.5vw 1.2vw;
}
.bannerBox .tabBox .active {
  color: #333333;
}
.bannerBox .tabBox .active::before {
  content: '';
  position: absolute;
  width: 0.4vw;
  height: 0.4vw;
  border: 3px solid #F9AD44;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.bannerBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5vw;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.titBox .en {
  color: #1F4397;
  font-size: 0.9vw;
  font-weight: 400;
  text-transform: uppercase;
}
.titBox .cn {
  font-size: 2.2vw;
  /*font-family: AlimamaShuHeiTi;*/
  font-weight: bold;
  color: #1F4397;
  margin: 5px 0;
}
.titBox .des {
  color: #666666;
  font-size: 1vw;
}
.more {
  background: white;
  color: #F9AD44;
  font-size: 0.9vw;
  font-family: din;
  padding: 0.5vw 3vw 0.5vw 2vw;
  display: inline-block;
  border-radius: 3vw;
  font-weight: 700;
  transition: 0.5s all;
}
.more i {
  position: absolute;
  transition: 0.5s all;
  transform: translateX(1vw);
  font-size: 0.8vw;
  margin-top: 0.15vw;
}
.more:hover {
  background: #F9AD44;
  color: white;
}
.more:hover i {
  transform: translateX(1.5vw);
}
.index {
  width: 100%;
  position: relative;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index .f1 .f1Swiper {
  width: 100%;
  height: 100%;
  /* 单个分页项容器：数字+横线 垂直居中组合 */
  /* 分页数字：上方显示，选中时橙色 */
  /* 选中状态的数字 */
  /* 分页横线（替代原 bullet）：下方显示 */
  /* 选中状态的横线 */
}
.index .f1 .f1Swiper .swiper-pagination {
  width: 100% !important;
  bottom: 5vh;
  flex-direction: inherit !important;
  display: flex !important;
  justify-content: center;
}
.index .f1 .f1Swiper .swiper-pagination-custom {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.5vw;
  /* 分页项之间的间距 */
  cursor: pointer;
}
.index .f1 .f1Swiper .swiper-pagination-number {
  font-size: 30px;
  font-weight: bold;
  -webkit-text-stroke: 0.5px #fff;
  /*font-family: AlimamaShuHeiTi;*/
  font-weight: bold;
  margin-bottom: 10px;
  /* 数字与横线的间距 */
  transition: color 0.3s ease;
  color: transparent;
}
.index .f1 .f1Swiper .swiper-pagination-number-active {
  color: transparent;
  -webkit-text-stroke: 0.5px #f5a21b !important;
}
.index .f1 .f1Swiper .swiper-pagination-line {
  width: 3.5vw;
  height: 2px;
  background: #fff;
  transition: background-color 0.3s ease;
}
.index .f1 .f1Swiper .swiper-pagination-line-active {
  background-color: #F9AD44;
}
.index .f1 .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.index .f1::before {
  /*width: 100%;*/
  /*height: 20vw;*/
  /*position: absolute;*/
  /*left: 0;*/
  /*top: 0%;*/
  /*content: '';*/
  /*background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));*/
  /*pointer-events: none;*/
  /*z-index: 9;*/
}
.index .f2 {
  width: 100%;
  height: auto;
  background-size: cover !important;
  position: relative;
  padding: 6vw 8vw;
}
.index .f2 .text {
  width: 50vw;
  margin: 3vw 0;
}
.index .f2 .text .des {
  color: #434343;
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
  margin-bottom: 3vw;
}
.index .f2 .numBox {
  display: flex;
  margin-top: 5vw;
}
.index .f2 .numBox .item {
  width: 17vw;
  background: linear-gradient(180deg, rgba(229, 242, 254, 0.8) 0%, rgba(246, 251, 255, 0.64) 100%);
  overflow: hidden;
  border: 1px solid white;
  padding: 1vw;
  margin-right: 2vw;
  color: #434343;
}
.index .f2 .numBox .item .num {
  font-size: 1.2vw;
}
.index .f2 .numBox .item .num span {
  font-size: 3vw;
  font-family: Figtree;
  font-weight: 600;
}
.index .f2 .numBox .item .des {
  font-size: 1vw;
}
.index .f3 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 5vw 8vw 0 8vw;
}
.index .f3 .f3Box {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: 2vw;
}
.index .f3 .f3Box .itemBox {
  width: 100%;
  height: 100%;
  padding-left: 2vw;
  display: flex;
  justify-content: space-between;
}
.index .f3 .f3Box .itemBox .textBox {
  width: 38%;
  padding-top: 1vw;
  background: white;
}
.index .f3 .f3Box .itemBox .textBox .tit .num {
  color: #fff;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: transparent;
  background-image: linear-gradient(180deg, #999, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2vw;
  /*font-family: AlimamaShuHeiTi;*/
  font-weight: bold;
  position: relative;
  padding-left: 2vw;
}
.index .f3 .f3Box .itemBox .textBox .tit .num::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1.5vw;
  height: 1.5vw;
  top: 0.4vw;
  background: url('../images/Vector.png') center no-repeat;
  background-size: cover !important;
}
.index .f3 .f3Box .itemBox .textBox .tit .t {
  color: #1F4397;
  font-size: 1.6vw;
  font-weight: 600;
}
.index .f3 .f3Box .itemBox .textBox .item {
  padding: 1.5vw 0;
  border-bottom: 1px solid #e9e9e9;
}
.index .f3 .f3Box .itemBox .textBox .item p {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 0.5vw;
}
.index .f3 .f3Box .itemBox .textBox .item p em{
  font-style: normal;
  font-size: 1.3vw;
  color: #1F4397;
  display: flex;
  align-items: center;
}
.index .f3 .f3Box .itemBox .textBox .item p em img{
  width: 1.3vw !important;
  height: 1.3vw !important;
  margin-top: .2vw;
}
.index .f3 .f3Box .itemBox .textBox .item strong {
  font-size: 1.2vw;
  color: #333333;
}
.index .f3 .f3Box .itemBox .textBox .item hr{
  margin: 2vw 0;
  opacity: .3;
}
.index .f3 .f3Box .itemBox .textBox .more {
  background: #F9AD44;
  color: white;
  margin-top: 2vw;
}
.index .f3 .f3Box .itemBox .imgBox {
  width: 58%;
  height: 30vw;
  position: relative;
  padding-top: 2vw;
  overflow: hidden;
}
.index .f3 .f3Box .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.index .f3 .f3Box .itemBox .imgBox:hover .img {
  transform: scale(1.05);
}
.index .f3 .f3Box .itemBox2 {
  position: relative;
  /*position: absolute;*/
  /*top: 80vh;*/
  left: 0;
  width: 100%;
  z-index: 10;
}
.index .f3 .f3Box .itemBox3 {
  position: relative;
  /*position: absolute;*/
  /*top: 180vh;*/
  left: 0;
  width: 100%;
  z-index: 11;
}
.index .f3 .f3Box::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  border: 1px dashed #e9e9e9;
}
.index .f3 .f3Box::after {
  content: '';
  position: absolute;
  width: 1.7vw;
  height: 1.7vw;
  background: url('../images/Vector2.png') center no-repeat;
  background-size: cover !important;
  left: -0.75vw;
  top: 1.4vw;
}
.index .f4 {
  width: 100%;
  height: auto;
  position: relative;
  background: url('../images/f222.jpg?v1') center no-repeat;
  background-size: cover !important;
  padding: 6vw 8vw 8vw 8vw;
}
.index .f4 .titBox {
  text-align: center;
}
.index .f4 .titBox .en{
  color: white;
}
.index .f4 .titBox .cn{
  color: white;
}
.index .f4 .titBox .des{
  color: white;
}
.index .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 6vw;
}
.index .f4 .f4Box .item {
  width: 15vw;
  height: 20vw;
  position: relative;
  background: #F9F9F9;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover !important;
  box-shadow: 0 1vw 1vw 0 gainsboro;
  transition: all 0.5s;
}
.index .f4 .f4Box .item .bgImg {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: all 0.5s;
}
.index .f4 .f4Box .item .bgVideo {
  width: 102%;
  height: 100%;
  opacity: 0;
  object-fit: cover !important;
  position: absolute;
  transition: all 0.5s;
}
.index .f4 .f4Box .item .text {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  transition: all 0.3s;
}
.index .f4 .f4Box .item .text .icon {
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  margin: 4vw auto 3vw auto;
}
.index .f4 .f4Box .item .text .t {
  font-size: 1.2vw;
}
.index .f4 .f4Box .item .text .b {
  font-size: 0.8vw;
  color: #999999;
  margin-top: 0.3vw;
}
.index .f4 .f4Box .item .textBox {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: relative;
  padding: 2vw;
  color: white;
  transform: translateY(3vw);
  transition: 0.5s all;
}
.index .f4 .f4Box .item .textBox .icon {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
}
.index .f4 .f4Box .item .textBox .t {
  font-size: 1.2vw;
  margin: 1vw 0;
  font-weight: bold;
}
.index .f4 .f4Box .item .textBox .d {
  width: 28vw;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
}
.index .f4 .f4Box .item .textBox .more {
  margin-top: 1.5vw;
}
.index .f4 .f4Box .active {
  width: 32vw;
}
.index .f4 .f4Box .active .bgImg {
  opacity: 1;
}
.index .f4 .f4Box .active .bgVideo {
  opacity: 1;
}
.index .f4 .f4Box .active .text {
  opacity: 0;
}
.index .f4 .f4Box .active .textBox {
  opacity: 1;
  transform: translateY(0);
}
.index .f5 {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover !important;
  padding-top: 8vw;
  overflow: hidden;
  /* 滚动容器：仅负责无限滚动，无任何3D样式 */
  /* Logo组：仅排版，无多余样式 */
  /* Logo卡片：基础样式 */
  /* 无限滚动动画（加前缀兼容） */
}
.index .f5 .titBox {
  text-align: center;
}
.index .f5 .more {
  display: table;
  margin: 2vw auto 0 auto;
}
.index .f5 .f5LogoBox {
  width: 100%;
  height: 105%;
  margin-top: 2vw;
  position: relative;
  /* 核心：直接用transform实现3D梯形，放弃复杂perspective */
  transform: perspective(2000px) rotateX(65deg) scaleX(0.7) scaleY(1);
  transform-origin: center top;
  /* 旋转中心在顶部，强制上窄下宽 */
  -webkit-transform-origin: center top;
  overflow: hidden;
  border: 1px solid #eee;
  /* 加边框，直观看到整体倾斜 */
}
.index .f5 .logo-scroll-container {
  width: 100%;
  height: 100%;
  animation: scrollUp 20s linear infinite;
  -webkit-animation: scrollUp 20s linear infinite;
  /* 兼容webkit */
}
.index .f5 .logo-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  margin-top: 2vw;
}
.index .f5 .logos {
  width: 12vw;
  background: white;
  border-radius: .5vw;
  padding: 1vw;
  font-size: .8vw;
  text-align: center;
}
.index .f5 .logos img {
  width: 5vw;
  margin: 0 auto .5vw auto;
  object-fit: cover !important;
}
@-webkit-keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.index .f5::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 20vw;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
.index .f6 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.index .f6 .f6Head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.index .f6 .f6Head .more {
  background: #F9AD44;
  color: white;
}
.index .f6 .f6Top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
}
.index .f6 .f6Top .item {
  width: 66%;
  height: 28vw;
  position: relative;
  overflow: hidden;
}
.index .f6 .f6Top .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.index .f6 .f6Top .item .text {
  width: 100%;
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2vw 3vw;
  transform: translateY(2vw);
  transition: 0.5s all;
}
.index .f6 .f6Top .item .text .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.index .f6 .f6Top .item .text .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: #F9AD44;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.index .f6 .f6Top .item .text .name {
  font-size: 1.2vw;
  margin-top: 0.5vw;
}
.index .f6 .f6Top .item .text .more {
  opacity: 0;
  margin-top: 2vw;
}
.index .f6 .f6Top .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.index .f6 .f6Top .item:hover .img {
  transform: scale(1.05);
}
.index .f6 .f6Top .item:hover .text {
  transform: translateY(0);
}
.index .f6 .f6Top .item:hover .text .more {
  opacity: 1;
}
.index .f6 .f6Top .item2 {
  width: 32%;
  height: 28vw;
  position: relative;
  overflow: hidden;
}
.index .f6 .f6Top .item2 .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.index .f6 .f6Top .item2 .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  padding: 2vw 3vw;
}
.index .f6 .f6Top .item2 .text .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.index .f6 .f6Top .item2 .text .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: #F9AD44;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.index .f6 .f6Top .item2 .text .name {
  font-size: 1.2vw;
  margin-top: 0.5vw;
}
.index .f6 .f6Top .item2 .text .more {
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 3vw;
}
.index .f6 .f6Top .item2:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.index .f6 .f6Top .item2:hover .img {
  transform: scale(1.05);
}
.index .f6 .f6Top .item2:hover .more i {
  transform: translateX(1.5vw);
}
.index .f6 .f6Box {
  width: 100%;
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.index .f6 .f6Box .item {
  width: 32%;
  display: block;
  padding: 2vw 3vw;
  background: #F5F5F7;
  transition: 0.5s all;
}
.index .f6 .f6Box .item .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.index .f6 .f6Box .item .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: #F9AD44;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.index .f6 .f6Box .item .name {
  font-size: 1.2vw;
  margin-top: 0.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index .f6 .f6Box .item .more {
  padding: 0;
  margin-top: 3vw;
  background: transparent;
}
.index .f6 .f6Box .item .more:hover {
  color: #F9AD44;
}
.index .f6 .f6Box .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.index .f6 .f6Box .item:hover .more i {
  transform: translateX(1.5vw);
}
.index .f7 {
  width: 100%;
  height: auto;
  background-size: cover !important;
  position: relative;
  text-align: center;
  padding: 6vw 0;
}
.index .f7 .des {
  width: 60%;
  font-size: 1vw;
  line-height: 2;
  text-align: center;
  margin: 1vw auto;
}
.index .f7 .f7Box {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 3vw 0;
  /* 向左滚动动画（滚动距离=scroll-wrap的一半宽度） */
  /* 向右滚动动画 */
  /* 第一/三组：向左滚动 */
  /* 第二组：向右滚动 */
}
.index .f7 .f7Box .item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 1vw 0;
  /* 组间距 */
  overflow: hidden;
  position: relative;
  /* 无缝滚动定位基础 */
}
.index .f7 .f7Box .item .logoh {
  width: 12vw;
  height: 6vw;
  position: relative;
  background: white;
  border-radius: 5px;
}
.index .f7 .f7Box .item .logoh img {
  width: 100%;
  height: 5vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  object-fit: contain;
  /* 保持图片比例 */
}
.index .f7 .f7Box .item .scroll-wrap {
  display: flex;
  align-items: center;
  gap: 1vw;
  /* 和item的gap一致 */
  width: fit-content;
  /* 宽度自适应内容 */
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.index .f7 .f7Box .item:nth-child(1) .scroll-wrap,
.index .f7 .f7Box .item:nth-child(3) .scroll-wrap {
  animation-name: scrollLeft;
}
.index .f7 .f7Box .item:nth-child(2) .scroll-wrap {
  animation-name: scrollRight;
}
.index .f7::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: linear-gradient(to right, #d5e8fd 0%, rgba(213, 232, 253, 0.1) 100%);
}
.index .f7::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 99;
  background: linear-gradient(to left, #d5e8fd 0%, rgba(213, 232, 253, 0.1) 100%);
}
.about {
  width: 100%;
  position: relative;
}
.about .f1 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
  overflow: hidden;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.about .f1 .imgBox {
  width: 45%;
  height: 25vw;
  position: relative;
  overflow: hidden;
}
.about .f1 .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.about .f1 .text {
  width: 50%;
}
.about .f1 .text .d {
  width: 100%;
  height: 12vw;
  text-align: justify;
  overflow-y: scroll;
  font-size: 1vw;
  line-height: 2;
  margin: 2vw 0;
  overscroll-behavior: contain;
  -ms-scroll-chaining: none;
  touch-action: pan-y;
  padding-right: 1vw;
}
.about .f1 .text .d::-webkit-scrollbar{
  /*width: 2px;*/
  /*height: 2px;*/
}
.about .f1 .text .numBox {
  display: flex;
  justify-content: space-between;
}
.about .f1 .text .numBox .item {
  overflow: hidden;
  color: #1F4397;
}
.about .f1 .text .numBox .item .num {
  font-size: 1vw;
}
.about .f1 .text .numBox .item .num span {
  font-size: 2.5vw;
  font-family: Figtree;
  font-weight: 600;
}
.about .f1 .text .numBox .item .des {
  font-size: 1vw;
}
.about .f2 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url('../images/img9.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw 8vw;
  text-align: center;
}
.about .f2 .titBox {
  text-align: center;
}
.about .f2 .tabBox {
  display: inline-flex;
  margin: 2vw auto;
  border-radius: 5vw;
  border: 1px solid #E5E5E5;
  background: #FFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  padding: 0.3vw;
}
.about .f2 .tabBox .tab {
  color: #666666;
  font-size: 1vw;
  padding: 0.2vw 1.2vw;
  cursor: pointer;
}
.about .f2 .tabBox .active {
  color: white;
  background: #F9AD44;
  border-radius: 5vw;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about .f2 .f2Box .left {
  width: 50%;
  margin-top: 2vw;
}
.about .f2 .f2Box .left .f2Swiper {
  width: 100%;
  height: 24vw;
  margin: 0;
  overflow: hidden;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide {
  height: 4vw;
  cursor: pointer;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide .item {
  position: relative;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide .item .t {
  color: #666666;
  font-size: 0.9vw;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide .item .name {
  font-size: 1vw;
  margin-top: 0.5vw;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide .item::before {
  content: '';
  position: absolute;
  width: 2vw;
  height: 3vw;
  background: url('../images/icon5.png') center no-repeat;
  background-size: cover !important;
  left: 0;
  top: 0;
}
.about .f2 .f2Box .left .f2Swiper .swiper-slide .item::after {
  content: '';
  position: absolute;
  width: 2vw;
  height: 3vw;
  background: url('../images/icon6.png') center no-repeat;
  background-size: cover !important;
  right: 0;
  top: 0;
}
.about .f2 .f2Box .right {
  width: 50%;
}
.about .f2 .f2Box .right img {
  width: 100%;
}
.about .f2 .f2Box2 {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: none;
}
.about .f2 .f2Box2 .swiper-slide {
  text-align: center;
}
.about .f2 .f2Box2 .swiper-slide .item {
  width: 100%;
  height: 21vw;
  background: url('../images/img11.jpg') center no-repeat;
  background-size: cover !important;
  padding: 1.5vw;
  cursor: pointer;
}
.about .f2 .f2Box2 .swiper-slide .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.about .f2 .f2Box2 .swiper-slide .name {
  padding: 1vw 0;
  font-size: 0.9vw;
  color: #666666;
}
.about .f2 .f2Box2 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  right: -4.5vw;
  top: 40%;
  color: #333333;
}
.about .f2 .f2Box2 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  left: -4.5vw;
  top: 40%;
  color: #333333;
}
.about .f2 .f2Box2 .swiper-button-next:after,
.about .f2 .f2Box2 .swiper-button-prev:after {
  content: inherit;
}
.about .f3 {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 5vw 8vw;
  overflow: hidden;
  background-size: cover !important;
}
.about .f3 .titBox {
  text-align: center;
  position: relative;
  z-index: 1;
}
.about .f3 .f3Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 5vw;
}
.about .f3 .f3Swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .f3 .f3Swiper .swiper-slide .img {
  width: 50%;
  height: 22vw;
  background-size: cover !important;
}
.about .f3 .f3Swiper .swiper-slide .text {
  width: 40%;
}
.about .f3 .f3Swiper .swiper-slide .text .year {
  font-weight: bold;
  font-size: 6vw;
  color: white;
}
.about .f3 .f3Swiper .swiper-slide .text .des {
  font-size: 1vw;
  margin-top: 2vw;
  line-height: 2;
}
.about .f3 .f3SwiperYear {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 4vw;
  padding-top: 2vw;
}
.about .f3 .f3SwiperYear .year {
  color: white;
  font-size: 1.5vw;
  font-weight: bold;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.about .f3 .f3SwiperYear .year::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  left: 50%;
  top: -1.1vw;
}
.about .f3 .f3SwiperYear .swiper-slide-thumb-active .year {
  color: #1F4397;
}
.about .f3 .f3SwiperYear .swiper-slide-thumb-active .year::after {
  content: '';
  position: absolute;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
  left: 50%;
  top: -1.45vw;
}
.about .f3 .f3SwiperYear::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  left: 0;
  top: 1vw;
}
.about .f3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #beddff);
  left: 0;
  top: 0;
}
.about .f4 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
}
.about .f4 .titBox {
  width: 20%;
}
.about .f4 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  right: inherit;
  top: inherit;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  left: 10vw;
  bottom: 6vw;
  font-size: 1.5vw;
  color: #1F4397;
}
.about .f4 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  left: 7.5vw;
  top: inherit;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  bottom: 6vw;
  font-size: 1.5vw;
  color: #1F4397;
}
.about .f4 .swiper-button-next:after,
.about .f4 .swiper-button-prev:after {
  content: inherit;
}
.about .f4 .swiper-pagination {
  width: 13%;
  height: 1px;
  bottom: 5vw;
  left: 8vw;
  top: inherit;
}
.about .f4 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #1F4397;
}
.about .f4 .f4Swiper {
  width: 80%;
  position: relative;
  overflow: hidden;
}
.about .f4 .f4Swiper .swiper-slide .item {
  width: 100%;
  height: 35vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.about .f4 .f4Swiper .swiper-slide .item .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  background-size: cover !important;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 2vw;
  color: white;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .he {
  display: flex;
  justify-content: space-between;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .he .txt .num {
  font-size: 1.2vw;
  font-weight: bold;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .he .txt .en {
  -webkit-text-stroke: 0.5px white;
  color: transparent;
  font-size: 1.3vw;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .he .icon {
  width: 1.8vw;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .text {
  width: 100%;
  height: 10vw;
  position: absolute;
  bottom: 0;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.about .f4 .f4Swiper .swiper-slide .item .textBox .text .d {
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
}
.about .f4 .f4Swiper .swiper-slide .item:hover .img {
  transform: scale(1.1);
}
.about .f5 {
  width: 100%;
  position: relative;
  background: url('../images/img19.jpg') center no-repeat;
  background-size: cover !important;
  padding: 10vw 8vw;
}
.about .f5 .f5en {
  width: 90%;
  position: absolute;
  top: 5vw;
  left: 5%;
}
.about .f5 .titBox {
  text-align: center;
}
.about .f5 .f5Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 3vw;
}
.about .f5 .f5Swiper .swiper-slide {
  border-radius: 0.5vw;
  overflow: hidden;
}
.about .f5 .f5Swiper .swiper-slide .img {
  width: 100%;
  height: 25vw;
  transition: 0.3s all;
  background-size: cover !important;
}
.about .f5 .f5Swiper .swiper-slide:hover .img {
  transform: scale(1.1);
}
.about .f5 .f5Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  right: 1.5vw;
  color: #333333;
}
.about .f5 .f5Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  left: 1.5vw;
  color: #333333;
}
.about .f5 .f5Swiper .swiper-button-next:after,
.about .f5 .f5Swiper .swiper-button-prev:after {
  content: inherit;
}
.strength {
  width: 100%;
  position: relative;
}
.strength .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f1 .f1Box {
  width: 100%;
  height: 30vw;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  position: relative;
}
.strength .f1 .f1Box .f1Text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3vw 5vw;
  backdrop-filter: blur(2px);
  background: linear-gradient(0deg, #1f4397 0%, rgba(31, 67, 151, 0) 100%);
}
.strength .f1 .f1Box .f1Text .titBox .cn {
  color: white;
}
.strength .f1 .f1Box .f1Text .f1Item {
  width: 70%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.strength .f1 .f1Box .f1Text .f1Item .item {
  position: relative;
}
.strength .f1 .f1Box .f1Text .f1Item .item .icon {
  position: absolute;
  margin-left: -1.8vw;
  font-size: 1.2vw;
  top: -0.1vw;
}
.strength .f1 .f1Box .f1Text .f1Item .item .t {
  font-size: 1vw;
}
.strength .f1 .f1Box .f1Text .f1Item .item .d {
  font-size: 0.85vw;
  line-height: 2;
  color: #D9D9D9;
  margin-top: 0.5vw;
}
.strength .f1 .f1Box .f1Text .f1Item .item:last-child .t {
  font-size: 0.9vw;
  line-height: 2;
}
.strength .f1 .f1Box .f1Text .f1Item .item:last-child::before {
  content: inherit;
}
.strength .f1 .f1Box .f1Text .f1Item .item::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  right: -5vw;
}
.strength .f2 {
  width: 100%;
  height: 90vh;
  position: relative;
  padding: 0 8vw 5vw 8vw;
  background: linear-gradient(0deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f2 .f2Swiper {
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
  margin-top: 3vw;
}
.strength .f2 .f2Swiper .swiper-slide {
  width: 30vw;
  height: 19vw;
  transition: 0.3s all;
  margin-right: 2vw;
  box-sizing: border-box;
}
.strength .f2 .f2Swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
}
.strength .f2 .f2Swiper .swiper-slide .text {
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 1vw;
  padding: 2vw;
  color: white;
  opacity: 0;
  background: linear-gradient(0deg, #1f4397 0%, rgba(31, 67, 151, 0) 100%);
}
.strength .f2 .f2Swiper .swiper-slide .text .t {
  font-size: 1.2vw;
}
.strength .f2 .f2Swiper .swiper-slide .text .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.strength .f2 .f2Swiper .swiper-slide-active {
  width: 45vw;
  height: 29vw;
  margin-left: 2vw;
}
.strength .f2 .f2Swiper .swiper-slide-active .text {
  opacity: 1;
}
.strength .f2 .f2Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  right: 1.5vw;
  top: inherit;
  background: white;
  border-radius: 50%;
  bottom: 1vw;
  color: #1F4397;
}
.strength .f2 .f2Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  left: inherit;
  right: 5vw;
  top: inherit;
  background: white;
  border-radius: 50%;
  bottom: 1vw;
  color: #1F4397;
}
.strength .f2 .f2Swiper .swiper-button-next:after,
.strength .f2 .f2Swiper .swiper-button-prev:after {
  content: inherit;
}
.strength .f2 .f2Swiper .swiper-pagination {
  width: auto;
  bottom: 1vw;
  left: 47vw;
  font-size: 1vw;
  color: #999999;
}
.strength .f2 .f2Swiper .swiper-pagination .swiper-pagination-current {
  font-size: 2vw;
  color: #1F4397;
}
.strength .f3 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 8vw 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f3 .titBox {
  text-align: center;
}
.strength .f3 .f3Box {
  width: 100%;
  background: white;
  border-radius: 1vw;
  overflow: hidden;
  padding: 3vw;
  margin-top: 3vw;
}
.strength .f3 .f3Box .f3Tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.strength .f3 .f3Box .f3Tab .tab {
  padding-bottom: 1vw;
  position: relative;
  cursor: pointer;
}
.strength .f3 .f3Box .f3Tab .tab .num {
  position: absolute;
  font-size: 5vw;
  color: #F9AD44;
  font-weight: bold;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 10%;
  opacity: 0.25;
  font-family: Din;
}
.strength .f3 .f3Box .f3Tab .tab .name {
  font-size: 1.2vw;
  font-weight: bold;
  text-align: center;
}
.strength .f3 .f3Box .f3Tab .active {
  border-bottom: 2px solid #1F4397;
  color: #1F4397;
}
.strength .f3 .f3Box .f3Item {
  width: 100%;
  margin-top: 3vw;
}
.strength .f3 .f3Box .f3Item .item {
  display: none;
  justify-content: space-between;
  align-items: center;
}
.strength .f3 .f3Box .f3Item .item .txt {
  width: 35%;
}
.strength .f3 .f3Box .f3Item .item .txt .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.strength .f3 .f3Box .f3Item .item .txt .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.strength .f3 .f3Box .f3Item .item .imgBox {
  width: 50%;
}
.strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .img {
  width: 100%;
  height: 22vw;
  border-radius: 1vw;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}
.strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .swiper-pagination {
  width: auto;
  border-radius: 5vw;
  padding: 0 0.5vw;
  left: 50%;
  transform: translateX(-50%);
}
.strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .swiper-pagination-bullet-active {
  width: 1.5vw;
  border-radius: 0.5vw;
}
.strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .swiper-pagination-bullet {
  background: white;
  padding: 0;
  opacity: 1;
}
.strength .f3 .f3Box .f3Item .active {
  display: flex;
}
.strength .f4 {
  width: 100%;
  padding: 0 8vw;
  position: relative;
  background: linear-gradient(0deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f4 .titBox {
  text-align: center;
}
.strength .f4 .f4Box {
  width: 100%;
  height: 30vw;
  margin-top: 3vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.strength .f4 .f4Box .item {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.3s all;
}
.strength .f4 .f4Box .item .txt {
  width: 100%;
  position: absolute;
  transition: 0.3s all;
  bottom: 2vw;
}
.strength .f4 .f4Box .item .txt .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.strength .f4 .f4Box .item .txt .d {
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
  opacity: 0;
  height: 0;
}
.strength .f4 .f4Box .item:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
}
.strength .f4 .f4Box .item:hover .txt {
  transform: translateY(-3vw);
}
.strength .f4 .f4Box .item:hover .txt .d {
  opacity: 1;
}
.strength .f5 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f5 .titBox {
  text-align: center;
  position: relative;
  top: 2vw;
}
.strength .f5 .f5Img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.strength .f5 .f5Img1{
  position: relative;
  z-index: 2;
}
.strength .f5 .f5Img2{
  width: 9vw;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
  clip-path: polygon(0 0,100% 0,100% 0,0 0);
  animation: f5PolygonScan 4s linear infinite;
}
.strength .f5 .f5Img3{
  width: 9vw;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
  clip-path: polygon(0 0,100% 0,100% 0,0 0);
  animation: f5PolygonScan 4s linear infinite;
}
.strength .f5 .f5Img4{
  width: 22.5vw;
  position: absolute;
  left: 23.5vw;
  top: 8.8vw;
  z-index: -1;
  transform-origin: 50% 50%;
  animation: f5Rotate360 5s linear infinite;
}
.strength .f5 .f5Img5{
  width: 29vw;
  position: absolute;
  left: 35.3vw;
  top: 5vw;
  transform-origin: 50% 50%;
  animation: f5Rotate360 8s linear infinite;
}
.strength .f6 {
  width: 100%;
  position: relative;
  padding: 0 8vw 5vw 8vw;
  background: linear-gradient(0deg, #E4ECFC 0%, #FFF 100%);
}
.strength .f6 .titBox {
  text-align: center;
}
.strength .f6 .f6Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.strength .f6 .f6Box .item {
  width: 32%;
  height: 15vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.strength .f6 .f6Box .item .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  background-size: cover !important;
}
.strength .f6 .f6Box .item .textBox {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  transition: 0.3s all;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.strength .f6 .f6Box .item .textBox .txt {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 2vw;
  bottom: 0;
  transition: 0.3s all;
  transform: translateY(70%);
}
.strength .f6 .f6Box .item .textBox .txt .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.strength .f6 .f6Box .item .textBox .txt .d {
  font-size: 0.9vw;
  line-height: 1.7;
  opacity: 0;
  margin-top: 1vw;
}
.strength .f6 .f6Box .item:hover .img {
  transform: scale(1.1);
}
.strength .f6 .f6Box .item:hover .textBox .txt {
  transform: translateY(20%);
}
.strength .f6 .f6Box .item:hover .textBox .txt .d {
  opacity: 1;
}
.strength2 {
  width: 100%;
  position: relative;
}
.strength2 .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength2 .f1 .f1Box {
  width: 100%;
  height: 30vw;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  position: relative;
}
.strength2 .f1 .f1Box .f1Text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3vw 5vw;
  backdrop-filter: blur(2px);
  background: linear-gradient(0deg, #1f4397 0%, rgba(31, 67, 151, 0) 100%);
}
.strength2 .f1 .f1Box .f1Text .titBox .cn {
  color: white;
}
.strength2 .f1 .f1Box .f1Text .f1Item {
  width: 70%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item {
  position: relative;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item .icon {
  position: absolute;
  margin-left: -1.8vw;
  font-size: 1.2vw;
  top: -0.1vw;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item .t {
  font-size: 1vw;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item .d {
  font-size: 0.85vw;
  line-height: 2;
  color: #D9D9D9;
  margin-top: 0.5vw;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item:last-child .t {
  font-size: 0.9vw;
  line-height: 2;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item:last-child::before {
  content: inherit;
}
.strength2 .f1 .f1Box .f1Text .f1Item .item::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  right: -5vw;
}
.strength2 .f2 {
  width: 100%;
  position: relative;
  padding: 0 0 5vw 0;
}
.strength2 .f2 .titBox {
  padding-left: 8vw;
}
.strength2 .f2 .titBox .des {
  width: 50%;
  margin-top: 1vw;
}
.strength2 .f2 .f2Swiper {
  width: 100%;
  margin-top: 3vw;
  overflow: hidden;
  position: relative;
}
.strength2 .f2 .f2Swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  background: #1F4397;
  border-radius: 1vw;
  overflow: hidden;
}
.strength2 .f2 .f2Swiper .swiper-slide .text {
  width: 30%;
  padding: 4vw 2vw;
  color: white;
}
.strength2 .f2 .f2Swiper .swiper-slide .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.strength2 .f2 .f2Swiper .swiper-slide .text .d {
  font-size: 0.9vw;
  line-height: 2;
  margin-top: 1vw;
  text-align: justify;
}
.strength2 .f2 .f2Swiper .swiper-slide .img {
  width: 70%;
  height: 26vw;
  background-size: cover !important;
}
.strength2 .f2 .f2Swiper .swiper-slide:first-child {
  padding-left: 8vw;
}
.strength2 .f2 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  right: 8vw;
  top: inherit;
  font-size: 1.5vw;
  top: 6vw;
  color: #1F4397;
}
.strength2 .f2 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  left: inherit;
  right: 11vw;
  top: inherit;
  font-size: 1.5vw;
  top: 6vw;
  color: #1F4397;
}
.strength2 .f2 .swiper-button-next:after,
.strength2 .f2 .swiper-button-prev:after {
  content: inherit;
}
.strength3 {
  width: 100%;
  position: relative;
}
.strength3 .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength3 .f1 .f1Box {
  width: 100%;
  height: 30vw;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  position: relative;
}
.strength3 .f1 .f1Box .f1Text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3vw 5vw;
  backdrop-filter: blur(2px);
  background: linear-gradient(0deg, #1f4397 0%, rgba(31, 67, 151, 0) 100%);
}
.strength3 .f1 .f1Box .f1Text .titBox .cn {
  color: white;
}
.strength3 .f1 .f1Box .f1Text .f1Item {
  width: 70%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item {
  position: relative;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item .icon {
  position: absolute;
  margin-left: -1.8vw;
  font-size: 1.2vw;
  top: -0.1vw;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item .t {
  font-size: 1vw;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item .d {
  font-size: 0.85vw;
  line-height: 2;
  color: #D9D9D9;
  margin-top: 0.5vw;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item:last-child .t {
  font-size: 0.9vw;
  line-height: 2;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item:last-child::before {
  content: inherit;
}
.strength3 .f1 .f1Box .f1Text .f1Item .item::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  right: -5vw;
}
.strength3 .f1 .f1Item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.strength3 .f1 .f1Item .item {
  margin-top: 2vw;
  height: 30vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
}
.strength3 .f1 .f1Item .item .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  background-size: cover !important;
}
.strength3 .f1 .f1Item .item .text {
  width: 100%;
  position: absolute;
  bottom: 0;
  color: white;
  padding: 5vw 1.5vw 1.5vw 1.5vw;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.strength3 .f1 .f1Item .item .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.strength3 .f1 .f1Item .item .text .d {
  font-size: 1vw;
  margin: 1.5vw 0 0.5vw 0;
}
.strength3 .f1 .f1Item .item .text .d2 {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
}
.strength3 .f1 .f1Item .item:hover .img {
  transform: scale(1.1);
}
.strength3 .f1 .f1Item .item:nth-child(1) {
  width: 65%;
}
.strength3 .f1 .f1Item .item:nth-child(2) {
  width: 32%;
}
.strength3 .f1 .f1Item .item:nth-child(3) {
  width: 32%;
}
.strength3 .f1 .f1Item .item:nth-child(4) {
  width: 65%;
}
.strength3 .f1 .f1Item .item:nth-child(5) {
  width: 65%;
}
.strength3 .f1 .f1Item .item:nth-child(6) {
  width: 32%;
}
.strength4 {
  width: 100%;
  position: relative;
}
.strength4 .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw 15vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.strength4 .f1 .left .f1En {
  width: 40vw;
  margin: 5vw 0;
}
.strength4 .f1 .left .textBox {
  display: flex;
  color: #1F4397;
  font-weight: bold;
}
.strength4 .f1 .left .textBox .its {
  display: flex;
  align-items: flex-end;
  padding: 0 3vw;
}
.strength4 .f1 .left .textBox .its .num {
  font-size: 5vw;
  line-height: 1;
  display: flex;
}
.strength4 .f1 .left .textBox .its .num span {
  font-size: 3vw;
}
.strength4 .f1 .left .textBox .its p {
  font-size: 1.3vw;
  margin-left: 0.5vw;
}
.strength4 .f1 .left .textBox .its:first-child {
  padding-left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.strength4 .f1 .right {
  width: 60%;
  position: absolute;
  right: 0;
  top: 5vw;
}
.strength4 .f1 .right .rightImg2{
  width: 38vw;
  position: absolute;
  top: 4.2vw;
  right: 12.2vw;
  -webkit-clip-path: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
  clip-path: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
  animation: rightImg2Reveal 3.5s linear infinite;
  will-change: clip-path;
}
.solution {
  width: 100%;
  position: relative;
}
.solution .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw 10vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.solution .f1 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  background: white;
}
.solution .f1 .itemBox .imgBox {
  width: 50%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}
.solution .f1 .itemBox .imgBox .solutionImgSwiper {
  width: 100%;
  height: 100%;
}
.solution .f1 .itemBox .imgBox .solutionImgSwiper .swiper-pagination {
  bottom: 0.8vw;
}
.solution .f1 .itemBox .imgBox .solutionImgSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.solution .f1 .itemBox .imgBox .solutionImgSwiper .swiper-pagination-bullet-active {
  background: #ffffff;
}
.solution .f1 .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  background-size: cover !important;
}
.solution .f1 .itemBox .text {
  width: 50%;
  padding: 0 3vw;
}
.solution .f1 .itemBox .text .titBox {
  padding-bottom: 1.5vw;
  display: flex;
  align-items: flex-end;
}
.solution .f1 .itemBox .text .titBox .cn {
  font-size: 2vw;
}
.solution .f1 .itemBox .text .titBox .tt {
  font-size: 1.2vw;
  position: relative;
  top: 0.5vw;
}
.solution .f1 .itemBox .text .titBox .tt span {
  font-size: 3.5vw;
  font-weight: bold;
  color: #1F4397;
  margin-left: 0.5vw;
}
.solution .f1 .itemBox .text .its {
  width: 100%;
  padding: 1vw 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.solution .f1 .itemBox .text .its p {
  font-size: 1vw;
  line-height: 1.7;
  color: #666666;
  margin-top: 1vw;
}
.solution .f1 .itemBox .text .its strong {
  font-size: 1.2vw;
  color: #333333;
}
.solution .f1 .itemBox .text .its em {
  font-style: normal;
  font-size: 1.3vw;
  color: #1F4397;
  display: flex;
  align-items: center;
}
.solution .f1 .itemBox .text .its em img{
  width: 1.3vw !important;
  height: 1.3vw !important;
  margin-top: .2vw;
}
.solution .f1 .itemBox .text .its hr {
  margin: 1vw 0;
  opacity: .3;
}
.solution .f1 .itemBox .text .itsImg {
  width: 100%;
  padding: 2vw 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.solution .f1 .itemBox:last-child {
  margin-bottom: 0;
}
.case {
  width: 100%;
  position: relative;
}
.case .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  text-align: center;
  background: #E4ECFC;
}
.case .f1 .tabBox {
  background: white;
  border-radius: 5vw;
  display: inline-flex;
  padding: 0 1.5vw;
}
.case .f1 .tabBox .tab {
  position: relative;
  color: #999999;
  font-size: 1vw;
  display: block;
  padding: 0.5vw 1.2vw;
  cursor: pointer;
}
.case .f1 .tabBox .active {
  color: #333333;
}
.case .f1 .tabBox .active::before {
  content: '';
  position: absolute;
  width: 0.4vw;
  height: 0.4vw;
  border: 3px solid #F9AD44;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.case .f1 .logo-group {
  width: 100%;
  margin-top: 2vw;
  display: none;
  position: relative;
}
.case .f1 .logo-group.active {
  display: block;
}
.case .f1 .logo-group .logoSwiper {
  width: 100%;
  height: auto;
}
.case .f1 .logo-group .logos {
  background: white;
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 0.5vw;
  font-size: 0.7vw;
  color: #666666;
  margin-bottom: 1vw;
  height: calc((100% - 40px) / 3) !important;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.case .f1 .logo-group .logos img {
  width: 3.5vw;
  height: 3.5vw;
  margin: 0 auto 0.3vw auto;
}
.case .f1 .logo-group .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: #1F4397;
  border-radius: 50%;
}
.case .f1 .logo-group .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  left: -5vw;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: #1F4397;
  border-radius: 50%;
}
.case .f1 .logo-group .swiper-button-next:after,
.case .f1 .logo-group .swiper-button-prev:after {
  content: inherit;
}
.case .f1 .logo-group .swiper-button-next i,
.case .f1 .logo-group .swiper-button-prev i {
  font-size: 1.2vw;
}
.case .f1 .info {
  position: relative;
  text-align: center;
  font-size: 1.5vw;
  font-weight: bold;
  color: #1F4397;
  margin-top: 3vw;
}
.case .f1 .info::before {
  content: '';
  position: absolute;
  width: 1.5vw;
  height: 2.5vw;
  background: url('../images/icon8.png') center no-repeat;
  background-size: cover !important;
  margin-left: -2.5vw;
  top: 55%;
  transform: translateY(-50%);
}
.case .f1 .info::after {
  content: '';
  position: absolute;
  width: 1.5vw;
  height: 2.5vw;
  background: url('../images/icon9.png') center no-repeat;
  background-size: cover !important;
  margin-left: 1vw;
  top: 55%;
  transform: translateY(-50%);
}
.case .f2 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: white;
}
.case .f2 .titBox {
  text-align: center;
}
.case .f2 .f2Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
}
.case .f2 .f2Swiper .swiper-slide {
  width: 100%;
  height: 20vw;
  background: url('../images/img58.jpg') center no-repeat;
  background-size: cover !important;
  text-align: center;
  cursor: pointer;
}
.case .f2 .f2Swiper .swiper-slide .text {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 52%;
  left: 50%;
}
.case .f2 .f2Swiper .swiper-slide .text .year {
  font-size: 0.9vw;
  color: #666666;
}
.case .f2 .f2Swiper .swiper-slide .text .t {
  font-size: 1.3vw;
  margin: 0.2vw 0;
}
.case .f2 .f2Swiper .swiper-slide .text .d {
  font-size: 0.9vw;
  color: #666666;
}
.case .f2 .f2Swiper .swiper-slide .name {
  width: 100%;
  font-size: 1vw;
  color: #666666;
  position: absolute;
  bottom: 4vw;
}
.case .f2 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  right: 3vw;
  top: 58%;
  color: white;
  background: #1F4397;
  border-radius: 50%;
}
.case .f2 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  left: 3vw;
  top: 58%;
  color: white;
  background: #1F4397;
  border-radius: 50%;
}
.case .f2 .swiper-button-next:after,
.case .f2 .swiper-button-prev:after {
  content: inherit;
}
.case .f3 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.case .f3 .titBox {
  text-align: center;
}
.case .f3 .f3SwiperTop {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-bottom: 1vw;
}
.case .f3 .f3SwiperTop .swiper-slide {
  background: white;
  border-radius: 0.5vw;
  padding: 0.5vw 0;
  border: 1px solid transparent;
  cursor: pointer;
}
.case .f3 .f3SwiperTop .swiper-slide .iconImg {
  width: 100%;
  height: 3vw;
}
.case .f3 .f3SwiperTop .swiper-slide .iconImg img {
  width: auto;
  height: 3.5vw;
  max-width: inherit;
  margin: 0 auto;
}
.case .f3 .f3SwiperTop .swiper-slide .name {
  text-align: center;
  font-size: 0.9vw;
  margin-top: 1vw;
}
.case .f3 .f3SwiperTop .swiper-slide-thumb-active {
  border: 1px solid #1F4397;
}
.case .f3 .f3SwiperTop .swiper-slide-thumb-active::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.4vw solid transparent;
  border-right: 0.4vw solid transparent;
  border-top: 0.5vw solid #1F4397;
  transform: translateX(-50%);
  bottom: -0.5vw;
  left: 50%;
}
.case .f3 .f3Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
  overflow: hidden;
}
.case .f3 .f3Swiper .swiper-slide {
  display: flex;
}
.case .f3 .f3Swiper .swiper-slide .img {
  width: 50%;
  height: 26vw;
  background-size: cover !important;
}
.case .f3 .f3Swiper .swiper-slide .text {
  width: 50%;
  padding-left: 5vw;
  padding-top: 5vw;
}
.case .f3 .f3Swiper .swiper-slide .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.case .f3 .f3Swiper .swiper-slide .text .des {
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
  color: #666666;
}
.case .f3 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  background: #1F4397;
  border-radius: 50%;
  right: 40vw;
  top: inherit;
  bottom: 7vw;
  color: white;
}
.case .f3 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  background: #1F4397;
  border-radius: 50%;
  left: inherit;
  right: 43vw;
  top: inherit;
  bottom: 7vw;
  color: white;
}
.case .f3 .swiper-button-next:after,
.case .f3 .swiper-button-prev:after {
  content: inherit;
}
.case .f3 .swiper-pagination {
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 47vw;
  top: inherit;
}
.case .f3 .f3Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #1F4397;
}
.cooperation {
  width: 100%;
  position: relative;
}
.cooperation .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 0;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.cooperation .f1 .titBox {
  text-align: center;
}
.cooperation .f1 .f1Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
}
.cooperation .f1 .f1Swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 2vw;
  border-radius: 1vw;
}
.cooperation .f1 .f1Swiper .swiper-slide .img {
  width: 40%;
  height: 22vw;
  border-radius: 1vw;
  background-size: cover !important;
}
.cooperation .f1 .f1Swiper .swiper-slide .text {
  width: 55%;
}
.cooperation .f1 .f1Swiper .swiper-slide .text .t {
  display: flex;
  align-items: center;
  font-size: 1.2vw;
  font-weight: bold;
}
.cooperation .f1 .f1Swiper .swiper-slide .text .t img {
  width: 4vw;
  margin-right: 1vw;
}
.cooperation .f1 .f1Swiper .swiper-slide .text .d {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  color: #666666;
  margin-top: 1vw;
}
.cooperation .f1 .f1Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #E4ECFC;
  right: 10.5vw;
  color: #333333;
}
.cooperation .f1 .f1Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #E4ECFC;
  left: 10.5vw;
  color: #333333;
}
.cooperation .f1 .f1Swiper .swiper-button-next:after,
.cooperation .f1 .f1Swiper .swiper-button-prev:after {
  content: inherit;
}
.cooperation .f2 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 0 5vw 0;
  background: linear-gradient(0deg, #E4ECFC 0%, #FFF 100%);
}
.cooperation .f2 .f2Box {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 3vw 0;
  /* 向左滚动动画（滚动距离=scroll-wrap的一半宽度） */
  /* 向右滚动动画 */
  /* 第一/三组：向左滚动 */
  /* 第二组：向右滚动 */
}
.cooperation .f2 .f2Box .item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 1vw 0;
  /* 组间距 */
  overflow: hidden;
  position: relative;
  /* 无缝滚动定位基础 */
}
.cooperation .f2 .f2Box .item .logoh {
  width: 12vw;
  height: 6vw;
  position: relative;
  background: white;
  border-radius: 5px;
}
.cooperation .f2 .f2Box .item .logoh img {
  width: 100%;
  height: 5vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  object-fit: contain;
  /* 保持图片比例 */
}
.cooperation .f2 .f2Box .item .scroll-wrap {
  display: flex;
  align-items: center;
  gap: 1vw;
  /* 和item的gap一致 */
  width: fit-content;
  /* 宽度自适应内容 */
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.cooperation .f2 .f2Box .item:nth-child(1) .scroll-wrap,
.cooperation .f2 .f2Box .item:nth-child(3) .scroll-wrap {
  animation-name: scrollLeft;
}
.cooperation .f2 .f2Box .item:nth-child(2) .scroll-wrap {
  animation-name: scrollRight;
}
.cooperation .f2 .f2Box .item:nth-child(4) .scroll-wrap {
  animation-name: scrollRight;
}
.cooperation .f2::before {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.1) 100%);
}
.cooperation .f2::after {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 99;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.1) 100%);
}
.news {
  width: 100%;
  position: relative;
}
.news .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.news .f1 .f1Swiper {
  width: 100%;
  margin: 0 0 3vw 0;
  position: relative;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: flex;
}
.news .f1 .f1Swiper .swiper-slide .imgBox {
  width: 55%;
  height: 23vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  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:hover .img {
  transform: scale(1.1);
}
.news .f1 .f1Swiper .swiper-slide .text {
  width: 45%;
  padding: 1vw 0 0 3vw;
}
.news .f1 .f1Swiper .swiper-slide .text .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.news .f1 .f1Swiper .swiper-slide .text .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: #F9AD44;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.news .f1 .f1Swiper .swiper-slide .text .name {
  font-size: 1.2vw;
  font-weight: 400;
  margin: 1vw 0;
  line-height: 1.7;
  text-align: justify;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .text .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
  text-align: justify;
  color: #666666;
}
.news .f1 .f1Swiper .swiper-slide .text .more {
  font-size: 0.9vw;
  color: #0055B9;
  margin-top: 2vw;
  padding: 0;
  background: transparent;
}
.news .f1 .f1Swiper .swiper-slide .text .more i {
  font-size: 0.8vw;
  transform: rotate(0);
}
.news .f1 .f1Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  color: #1F4397;
  background: rgba(255,255,255,.8);
  right: inherit;
  top: inherit;
  bottom: 0;
  left: 63%;
}
.news .f1 .f1Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  right: 10.5vw;
  color: #1F4397;
  background: rgba(255,255,255,.8);
  left: 59%;
  top: inherit;
  bottom: 0;
}
.news .f1 .f1Swiper .swiper-button-next:after,
.news .f1 .f1Swiper .swiper-button-prev:after {
  content: inherit;
}
.news .f1 .f1Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2vw;
}
.news .f1 .f1Box .item {
  width: 23%;
  position: relative;
  display: block;
  border-radius: 1vw;
  background: white;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.news .f1 .f1Box .item .imgBox {
  width: 100%;
  height: 12vw;
  overflow: hidden;
}
.news .f1 .f1Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.news .f1 .f1Box .item .text {
  padding: 1vw;
  height: 10vw;
}
.news .f1 .f1Box .item .text .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.news .f1 .f1Box .item .text .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: #F9AD44;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.news .f1 .f1Box .item .text .name {
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 0.5vw;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .f1 .f1Box .item .text .more {
  padding: 0;
  margin-top: 2vw;
  background: transparent;
}
.news .f1 .f1Box .item .text .more i {
  transform: rotate(0);
}
.news .f1 .f1Box .item:hover {
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.news .f1 .f1Box .item:hover .imgBox .img {
  transform: scale(1.1);
}
.contactUs {
  width: 100%;
  position: relative;
}
.contactUs .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%);
}
.contactUs .f1 .titBox {
  text-align: center;
}
.contactUs .f1 .f1Box {
  width: 100%;
  border-radius: 1vw;
  background: white;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  padding: 5vw;
}
.contactUs .f1 .f1Box .left {
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.contactUs .f1 .f1Box .left .its {
  margin-bottom: 3vw;
}
.contactUs .f1 .f1Box .left .its .t {
  color: #1F4397;
  font-size: 1vw;
}
.contactUs .f1 .f1Box .left .its .d {
  font-size: 1.5vw;
  font-weight: bold;
}
.contactUs .f1 .f1Box .left .qrcodeBox .t {
  color: #1F4397;
  font-size: 1.2vw;
}
.contactUs .f1 .f1Box .left .qrcodeBox .qrcode {
  width: 8vw;
  border: 1px solid #1F4397;
  border-radius: 0.5vw;
  margin-top: 1vw;
  overflow: hidden;
}
.contactUs .f1 .f1Box .right {
  width: 50%;
  padding-left: 5vw;
}
.contactUs .f1 .f1Box .right form {
  width: 100%;
}
.contactUs .f1 .f1Box .right form .inputBox {
  border: 1px solid #D9D9D9;
  padding: 0.8vw 1vw;
  margin-bottom: 1.5vw;
}
.contactUs .f1 .f1Box .right form .inputBox input {
  width: 100%;
  font-size: 0.9vw;
  outline: none;
  border: transparent;
  background: transparent;
  font-family: Regular;
}
.contactUs .f1 .f1Box .right form .inputBox textarea {
  width: 100%;
  height: 8vw;
  font-size: 0.9vw;
  outline: none;
  border: transparent;
  background: transparent;
  font-family: Regular;
  resize: none;
}
.contactUs .f1 .f1Box .right .submit {
  background: #F9AD44;
  color: white;
  font-size: 1vw;
  padding: 0.6vw 5vw;
  display: inline-block;
  cursor: pointer;
}
.contactUs .f1 .f2Box {
  width: 100%;
  border-radius: 1vw;
  background: white;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  padding: 5vw;
}
.contactUs .f1 .f2Box .left {
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.contactUs .f1 .f2Box .left .titBox {
  text-align: left;
}
.contactUs .f1 .f2Box .left .its {
  margin-top: 3vw;
}
.contactUs .f1 .f2Box .left .its .t {
  color: #1F4397;
  font-size: 1vw;
}
.contactUs .f1 .f2Box .left .its .d {
  font-size: 1.5vw;
  font-weight: bold;
}
.contactUs .f1 .f2Box .left .qrcodeBox .t {
  color: #1F4397;
  font-size: 1.2vw;
}
.contactUs .f1 .f2Box .left .qrcodeBox .qrcode {
  width: 8vw;
  border: 1px solid #1F4397;
  border-radius: 0.5vw;
  margin-top: 1vw;
  overflow: hidden;
}
.contactUs .f1 .f2Box .right {
  width: 50%;
  padding-left: 5vw;
}
.contactUs .f1 .f2Box .right form {
  width: 100%;
}
.contactUs .f1 .f2Box .right form .inputBox {
  position: relative;
  margin-bottom: 1.5vw;
}
.contactUs .f1 .f2Box .right form .inputBox .name {
  font-size: 1vw;
}
.contactUs .f1 .f2Box .right form .inputBox input {
  width: 100%;
  font-size: 0.9vw;
  padding: 0.8vw 1vw;
  margin-top: 1vw;
  outline: none;
  border: 1px solid #D9D9D9;
  background: transparent;
  font-family: Regular;
}
.contactUs .f1 .f2Box .right form .inputBox textarea {
  width: 100%;
  height: 8vw;
  font-size: 0.9vw;
  padding: 0.8vw 1vw;
  margin-top: 1vw;
  outline: none;
  border: 1px solid #D9D9D9;
  background: transparent;
  font-family: Regular;
  resize: none;
}
.contactUs .f1 .f2Box .right form .inputBox .upfile {
  display: inline-flex;
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  margin-top: 1vw;
  border: 1px solid #D9D9D9;
  align-items: center;
  cursor: pointer;
}
.contactUs .f1 .f2Box .right form .inputBox .upfile i {
  font-size: 1.2vw;
  margin-right: 0.5vw;
}
.contactUs .f1 .f2Box .right form .inputBox .upfile .fileName {
  margin-left: 1vw;
  color: #1F4397;
  font-size: 0.8vw;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contactUs .f1 .f2Box .right form .inputBox .file {
  width: 8vw;
  height: 3vw;
  position: absolute;
  left: 0;
  top: 1vw;
  opacity: 0;
  cursor: pointer;
}
.contactUs .f1 .f2Box .right .submit {
  background: #F9AD44;
  color: white;
  font-size: 1vw;
  padding: 0.6vw 5vw;
  display: inline-block;
  cursor: pointer;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1440px) {
  header .right nav ul li a{
    font-size: 14px;
  }
  header .right .serach{
    font-size: 16px;
  }
  .index .f1 .f1Swiper .swiper-pagination-number{
    font-size: 22px;
  }
  .about .f2 .f2Box .left .f2Swiper{
    height: 26vw;
  }
}
@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: 14px;
    float: left;
  }

  .sp_logo img {

    margin: auto;

    width: 150px;

    transition: .35s all ease-in-out;
  }

  .sp_nav {
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 10px;
    float: right;
    position: relative;
    cursor: pointer;
    /*font-size: 12px;*/
    /*background: #1F4397;*/
    /*color: white;*/
    /*line-height: 1;*/
    /*text-align: center;*/
    /*padding-top: 5px;*/
  }
  .sp_nav svg{
    /*display: block !important;*/
    /*visibility: visible !important;*/
    /*opacity: 1 !important;*/
  }
  .sp_nav p{
    font-size: 22px;
    margin-bottom: 3px;
  }
  .sp_nav span {

    display: block;

    background: #1F4397;

    width: 30px;

    height: 2px;

    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 a {

    color: rgba(0, 0, 0, .8);

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;

  }
  .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: #0055B9;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #0055B9;

  }

  .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: 3vw;
    top: 1vw;
    font-size: 32px;
    color: #0055B9;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  .lang{
    padding-left: 6vw;
    font-size: 14px;
  }
  .lang .icon {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    vertical-align: top;
    background: url(../images/language_icon_2.gif) center no-repeat #0055b9;
    background-size: cover !important;
    border-radius: 50%;
    margin-top: 3vw;
    margin-right: 1vw;
  }
  main{
    margin-top: 50px;
  }
  .more {
    font-size: 14px;
    padding: 2.5vw 8vw 1.5vw 6vw;
    border-radius: 5vw;
  }
  .more i {
    font-size: 12px;
    margin-top: -.2vw;
  }
  .index .f1 {
    overflow: hidden;
    height: 100vw;
    background: #1F4397;
  }
  .index .f1::before{
    content: inherit;
  }
  .homeBanner{
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner_bg{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: .5;
    pointer-events: none;
  }
  .banner_bg canvas{
    width: 100%;
    height: 100%;
  }
  #canvas {
    width: 100% !important;
    height: 170vw !important;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  #headline {
    display: none;
  }
  .index .f1 .img2{
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 40vw;
  }
  .index .f2 {
    padding: 10vw 5vw;
  }
  .titBox{
    text-align: center;
  }
  .titBox .en {
    font-size: 12px;
  }
  .titBox .cn {
    font-size: 22px;
  }
  .titBox .des {
    font-size: 16px;
  }
  .index .f2 .text {
    width: 100%;
    margin: 5vw 0;
  }
  .index .f2 .text .des {
    font-size: 14px;
  }
  .index .f2 .numBox {
    display: block;
  }
  .index .f2 .numBox .item {
    width: 100%;
    padding: 3vw;
    margin-right: 0;
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .index .f2 .numBox .item .num {
    font-size: 16px;
  }
  .index .f2 .numBox .item .num span {
    font-size: 24px;
  }
  .index .f2 .numBox .item .des {
    font-size: 16px;
  }
  .index .f3 {
    height: auto;
    padding: 10vw 5vw;
  }
  .index .f3 .f3Box {
    height: auto;
    margin-top: 5vw;
  }
  .index .f3 .f3Box .itemBox {
    padding-left: 0;
    display: block;
  }
  .index .f3 .f3Box .itemBox2 {
    position: relative;
    top: inherit;
    left: inherit;
    margin-top: 10vw;
  }
  .index .f3 .f3Box::before {
    content: inherit;
  }
  .index .f3 .f3Box::after {
    content: inherit;
  }
  .index .f3 .f3Box .itemBox .imgBox {
    width: 100%;
    height: 50vw;
    margin-top: 0;
  }
  .index .f3 .f3Box .itemBox .textBox {
    width: 100%;
    margin-top: 5vw;
    color: #333333;
  }
  .index .f3 .f3Box .itemBox .textBox .tit .num {
    font-size: 26px;
    padding-left: 7vw;
  }
  .index .f3 .f3Box .itemBox .textBox .tit .num::before {
    width: 4.5vw;
    height: 4.5vw;
    top: 2vw;
  }
  .index .f3 .f3Box .itemBox .textBox .tit .t {
    font-size: 18px;
  }
  .index .f3 .f3Box .itemBox .textBox .item {
    padding: 5vw 0;
  }
  .index .f3 .f3Box .itemBox .textBox .item strong {
    font-size: 16px;
  }
  .index .f3 .f3Box .itemBox .textBox .item p {
    font-size: 14px;
  }
  .index .f3 .f3Box .itemBox .textBox .more {
    margin-top: 5vw;
  }
  .index .f4 {
    padding: 10vw 5vw;
    background: linear-gradient(177deg, #0266AE, #9fd1f5);
  }
  .index .f4 .f4Box {
    display: block;
    margin-top: 0;
  }
  .index .f4 .f4Box .item {
    width: 100% !important;
    height: auto;
    margin-top: 5vw;
    background: white;
    box-shadow: inherit;
  }
  .index .f4 .f4Box .active .text{
    opacity: 1;
  }
  .index .f4 .f4Box .item .text {
    display: block;
  }
  .index .f4 .f4Box .item .text .icon{
    width: 20vw;
  }
  .index .f4 .f4Box .item .text .t{
    display: none;
  }
  .index .f4 .f4Box .item .text .b{
    display: none;
  }
  .index .f4 .f4Box .item .textBox {
    opacity: 1;
    transform: inherit;
    padding: 25vw 5vw 5vw 5vw;
    color: #333333;
  }
  .index .f4 .f4Box .item .textBox .icon {
    width: 12vw;
    margin: 0 auto;
    display: none;
  }
  .index .f4 .f4Box .item .textBox .t {
    font-size: 18px;
    margin: 3vw 0;
    text-align: center;
  }
  .index .f4 .f4Box .item .textBox .d {
    display: none;
  }
  .index .f4 .f4Box .item .bgVideo {
    display: none;
  }
  .index .f4 .f4Box .item .textBox .more {
    margin: 3vw auto 0 auto;
    display: table;
  }
  .index .f5 {
    height: 80vw;
    padding: 10vw 0;
    background: linear-gradient(180deg, #E4ECFC 0%, #FFF 100%) !important;
  }
  .index .f5 .f5LogoBox {
    height: 80vw;
    margin-top: 5vw;
    transform: perspective(1000px) rotateX(70deg) scaleX(0.7) scaleY(1);
  }
  .index .f5 .logos {
    width: 23vw;
    font-size: 12px;
    border-radius: 1vw;
    padding: 1vw;
    text-align: center;
  }
  .index .f5 .logos img {
    width: 15vw;
    height: 15vw;
  }
  .index .f6 {
    padding: 10vw 5vw;
  }
  .index .f6 .titBox{
    text-align: left;
  }
  .index .f7 {
    padding: 10vw 0;
  }
  .index .f7 .des {
    width: 90%;
    font-size: 14px;
    line-height: 1.7;
    margin: 5vw auto;
  }
  .index .f7 .f7Box .item .scroll-wrap {
    gap: 3vw;
  }
  .index .f7 .f7Box .item .logoh {
    width: 28vw;
    height: 15vw;
  }
  .index .f7 .f7Box .item .logoh img {
    height: 50px;
  }
  .index .f7::before {
    width: 20%;
    height: 53%;
    top: inherit;
    bottom: 0;
  }
  .index .f7::after {
    width: 20%;
    height: 53%;
    top: inherit;
    bottom: 0;
  }
  footer {
    padding: 10vw 5vw;
  }
  footer .footer {
    display: block;
  }
  footer .footer .left .logo {
    width: 45vw;
    margin: 0 auto;
  }
  footer .footer .left .qrcode-scanner {
    width: 25vw;
    height: 25vw;
    margin: 10vw auto;
    font-size: 12px;
  }
  footer .footer .center {
    display: none;
  }
  footer .footer .right .item {
    margin-top: 2vw;
    margin-bottom: 0;
    text-align: center;
  }
  footer .footer .right .item .d {
    font-size: 14px;
    display: flex;
    justify-content: center;
  }
  footer .footerInfo {
    font-size: 12px;
    padding: 5vw 0 0 0;
    display: block;
  }
  .bannerBox .text .m {
    font-size: 12px;
  }
  .bannerBox .text {
    padding: 12vw 5vw 0 5vw;
  }
  .bannerBox .text .t {
    font-size: 20px;
  }
  .bannerBox .tabBox {
    display: none;
  }
  .about .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .about .f1 .text {
    width: 100%;
  }
  .about .f1 .text .titBox{
    text-align: left;
  }
  .about .f1 .text .d {
    height: auto;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    margin: 5vw 0;
    overflow: inherit;
  }
  .about .f1 .text .numBox {
    display: block;
  }
  .about .f1 .text .numBox .item {
    width: 100%;
    padding: 3vw;
    margin-right: 0;
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
  }
  .about .f1 .text .numBox .item .num {
    font-size: 16px;
  }
  .about .f1 .text .numBox .item .num span {
    font-size: 24px;
  }
  .about .f1 .text .numBox .item .des {
    font-size: 16px;
  }
  .about .f1 .imgBox {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .about .f2 {
    padding: 10vw 5vw;
    height: auto;
  }
  .about .f2 .tabBox .tab {
    font-size: 14px;
    padding: 1vw 5vw;
  }
  .about .f2 .f2Box {
    margin-top: 5vw;
    display: block;
  }
  .about .f2 .f2Box .left {
    width: 100%;
  }
  .about .f2 .f2Box .right {
    width: 100%;
  }
  .about .f2 .f2Box .left .f2Swiper .swiper-slide .item .t {
    font-size: 14px;
  }
  .about .f2 .f2Box .left .f2Swiper .swiper-slide .item .name {
    font-size: 16px;
  }
  .about .f2 .f2Box .left .f2Swiper .swiper-slide .item::before {
    width: 7vw;
    height: 12vw;
  }
  .about .f2 .f2Box .left .f2Swiper .swiper-slide .item::after {
    width: 7vw;
    height: 12vw;
  }
  .about .f2 .f2Box2 .swiper-slide .item {
    height: 56vw;
  }
  .about .f2 .f2Box2 .swiper-slide .name {
    font-size: 14px;
  }
  .about .f2 .f2Box2 .swiper-button-next {
    width: 7.5vw;
    height: 7.5vw;
    top: 45%;
    right: 0;
  }
  .about .f2 .f2Box2 .swiper-button-prev {
    width: 7.5vw;
    height: 7.5vw;
    top: 45%;
    left: 0;
  }
  .about .f3 {
    height: auto;
    padding: 10vw 5vw;
  }
  .about .f3 .f3SwiperYear .year {
    font-size: 12px;
  }
  .about .f3 .f3SwiperYear .year::before {
    width: 1.3vw;
    height: 1.3vw;
    top: -1.5vw;
  }
  .about .f3 .f3Swiper .swiper-slide {
    display: block;
  }
  .about .f3 .f3Swiper .swiper-slide .img {
    width: 100%;
    height: 50vw;
  }
  .about .f3 .f3Swiper .swiper-slide .text {
    width: 100%;
  }
  .about .f3 .f3Swiper .swiper-slide .text .des {
    font-size: 14px;
    line-height: 1.7;
  }
  .about .f4 {
    padding: 10vw 5vw;
    display: block;
  }
  .about .f4 .titBox {
    width: 100%;
  }
  .about .f4 .f4Swiper {
    width: 100%;
    margin-top: 5vw;
  }
  .about .f4 .f4Swiper .swiper-slide .item {
    height: 70vw;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox {
    padding: 5vw;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .he .txt .num {
    font-size: 20px;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .he .txt .en {
    font-size: 12px;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .he .icon {
    width: 4vw;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .text {
    width: 80%;
    height: auto;
    bottom: 5vw;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .text .t {
    font-size: 16px;
  }
  .about .f4 .f4Swiper .swiper-slide .item .textBox .text .d {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 3vw;
  }
  .about .f4 .swiper-pagination {
    width: 90%;
    bottom: 0;
    left: 5vw;
  }
  .about .f4 .swiper-button-next {
    width: 5.5vw;
    height: 5.5vw;
    left: 12vw;
    bottom: 2vw;
    font-size: 14px;
  }
  .about .f4 .swiper-button-prev {
    width: 5.5vw;
    height: 5.5vw;
    left: 5vw;
    bottom: 2vw;
    font-size: 14px;
  }
  .about .f5 {
    padding: 20vw 5vw;
  }
  .about .f5 .f5Swiper {
    margin-top: 5vw;
  }
  .about .f5 .f5Swiper .swiper-slide .img {
    height: 55vw;
  }
  .about .f5 .f5Swiper .swiper-button-next,
  .about .f5 .f5Swiper .swiper-button-prev {
    width: 7.5vw;
    height: 7.5vw;
  }
  .strength .f1 {
    padding: 10vw 5vw;
  }
  .strength .f1 .f1Box {
    height: auto;
  }
  .strength .f1 .f1Box .f1Text {
    position: relative;
    padding: 5vw;
    display: block;
  }
  .strength .f1 .f1Box .f1Text .f1Item {
    width: 100%;
    display: block;
    padding-left: 5.5vw;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item {
    margin-top: 5vw;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item .icon {
    font-size: 16px;
    margin-left: -6vw;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item .t {
    font-size: 16px;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item .d {
    font-size: 14px;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item:last-child .t {
    font-size: 16px;
    line-height: 1.7;
  }
  .strength .f1 .f1Box .f1Text .f1Item .item::before {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -2vw;
  }
  .strength .f2 {
    height: auto;
    padding: 10vw 5vw;
  }
  .strength .f2 .f2Swiper {
    height: auto;
    margin-top: 5vw;
  }
  .strength .f2 .f2Swiper .swiper-slide {
    height: auto;
    margin-right: 0;
  }
  .strength .f2 .f2Swiper .swiper-slide-active{
    margin-left: 0;
  }
  .strength .f2 .f2Swiper .swiper-slide .img {
    height: 50vw;
  }
  .strength .f2 .f2Swiper .swiper-slide .text {
    width: 100%;
    position: relative;
    color: #333333;
    padding: 3vw 0;
    opacity: 1;
    bottom: inherit;
    background: transparent;
  }
  .strength .f2 .f2Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .strength .f2 .f2Swiper .swiper-slide .text .d {
    font-size: 14px;
  }
  .strength .f2 .f2Swiper .swiper-button-next,
  .strength .f2 .f2Swiper .swiper-button-prev {
    display: none;
  }
  .strength .f2 .f2Swiper .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
  }
  .strength .f2 .f2Swiper .swiper-pagination .swiper-pagination-current {
    font-size: 16px;
  }
  .strength .f3 {
    padding: 0;
  }
  .strength .f3 .f3Box {
    padding: 5vw 5vw 0 5vw;
    border-radius: 0;
    margin-top: 5vw;
  }
  .strength .f3 .f3Box .f3Tab {
    overflow-x: scroll;
    display: -webkit-box;
  }
  .strength .f3 .f3Box .f3Tab .tab {
    margin-right: 3vw;
  }
  .strength .f3 .f3Box .f3Tab .tab .num {
    display: none;
  }
  .strength .f3 .f3Box .f3Tab .tab .name {
    font-size: 16px;
  }
  .strength .f3 .f3Box .f3Item .active {
    display: block;
  }
  .strength .f3 .f3Box .f3Item .item .txt {
    width: 100%;
  }
  .strength .f3 .f3Box .f3Item .item .txt .t {
    font-size: 16px;
  }
  .strength .f3 .f3Box .f3Item .item .txt .d {
    font-size: 14px;
  }
  .strength .f3 .f3Box .f3Item .item .imgBox {
    width: 100%;
    margin-top: 3vw;
  }
  .strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .img {
    height: 50vw;
  }
  .strength .f3 .f3Box .f3Item .item .imgBox .f3Swiper .swiper-pagination-bullet-active {
    width: 5vw;
    border-radius: 1vw;
  }
  .strength .f4 {
    padding: 10vw 5vw;
  }
  .strength .f4 .f4Box {
    background-image: none !important;
    height: auto;
    margin-top: 5vw;
    display: block;
    padding: 5vw 0;
  }
  .strength .f4 .f4Box .item {
    height: 50vw;
    padding: 0;
    margin-top: 3vw;
    background-size: cover !important;
  }
  .strength .f4 .f4Box .item .txt{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
  }
  .strength .f4 .f4Box .item .txt .t {
    font-size: 16px;
  }
  .strength .f4 .f4Box .item .txt .d {
    font-size: 14px;
    opacity: 1;
  }
  .strength .f4 .f4Box .item .txt {
    position: relative;
    bottom: inherit;
  }
  .strength .f4 .f4Box .item:hover .txt {
    transform: translate(-50%,-50%);
  }
  .strength .f5 {
    padding: 1vw 5vw;
  }
  .strength .f5 .titBox {
    top: inherit;
  }
  .strength .f6 {
    padding: 10vw 5vw;
  }
  .strength .f6 .f6Box {
    display: block;
  }
  .strength .f6 .f6Box .item {
    width: 100%;
    height: auto;
    margin-top: 5vw;
  }
  .strength .f6 .f6Box .item .img {
    height: 50vw;
  }
  .strength .f6 .f6Box .item .textBox {
    position: relative;
    background: transparent;
  }
  .strength .f6 .f6Box .item .textBox .txt {
    padding: 3vw 0;
    position: relative;
    color: #333333;
    transform: inherit;
  }
  .strength .f6 .f6Box .item .textBox .txt .t {
    font-size: 16px;
  }
  .strength .f6 .f6Box .item .textBox .txt .d {
    font-size: 14px;
    opacity: 1;
  }
  .strength .f6 .f6Box .item:hover .img {
    transform: inherit;
  }
  .strength .f6 .f6Box .item:hover .textBox .txt {
    transform: inherit;
  }
  .strength2 .f1 {
    padding: 10vw 5vw;
  }
  .strength2 .f2 {
    padding: 0 5vw 10vw 5vw;
  }
  .strength2 .f2 .titBox {
    padding: 0;
  }
  .strength2 .f2 .titBox .des {
    width: 100%;
    margin-top: 5vw;
  }
  .strength2 .f2 .f2Swiper .swiper-slide {
    display: block;
  }
  .strength2 .f2 .f2Swiper .swiper-slide .text {
    width: 100%;
    padding: 5vw;
  }
  .strength2 .f2 .f2Swiper .swiper-slide .img {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .strength2 .f2 .f2Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .strength2 .f2 .f2Swiper .swiper-slide .text .d {
    font-size: 14px;
  }
  .strength2 .f2 .swiper-button-next {
    font-size: 16px;
    top: 9vw;
  }
  .strength2 .f2 .swiper-button-prev {
    font-size: 16px;
    top: 9vw;
    right: 15vw;
  }
  .strength2 .f1 .f1Box {
    height: 38vw;
  }
  .strength3 .f1 {
    padding: 10vw 5vw;
  }
  .strength3 .f1 .f1Box {
    height: 38vw;
  }
  .strength3 .f1 .f1Item {
    display: block;
  }
  .strength3 .f1 .f1Item .item {
    margin-top: 5vw;
    width: 100% !important;
    height: 50vw;
  }
  .strength3 .f1 .f1Item .item .text {
    padding: 5vw;
  }
  .strength3 .f1 .f1Item .item .text .t {
    font-size: 16px;
  }
  .strength3 .f1 .f1Item .item .text .d {
    font-size: 15px;
    margin: 2vw 0;
  }
  .strength3 .f1 .f1Item .item .text .d2 {
    font-size: 14px;
  }
  .strength4 .f1 {
    padding: 10vw 5vw;
  }
  .strength4 .f1 .left .f1En {
    width: 100%;
  }
  .strength4 .f1 .left .textBox {
    justify-content: center;
  }
  .strength4 .f1 .left .textBox .its {
    padding: 0 8vw !important;
  }
  .strength4 .f1 .left .textBox .its .num {
    font-size: 48px;
  }
  .strength4 .f1 .left .textBox .its p {
    font-size: 14px;
  }
  .strength4 .f1 .right {
    width: 100%;
    position: relative;
    right: inherit;
    top: inherit;
    margin-top: 10vw;
  }
  .solution .f1 {
    padding: 10vw 5vw;
  }
  .solution .f1 .itemBox {
    display: block;
  }
  .solution .f1 .itemBox .imgBox {
    width: 100%;
    height: 65vw;
  }
  .solution .f1 .itemBox .text {
    width: 100%;
    padding: 5vw;
  }
  .solution .f1 .itemBox .text .titBox {
    padding-bottom: 3vw;
  }
  .solution .f1 .itemBox .text .titBox .cn {
    font-size: 18px;
    margin: 0;
  }
  .solution .f1 .itemBox .text .its {
    padding: 3vw 0;
  }
  .solution .f1 .itemBox .text .its strong{
    font-size: 16px;
  }
  .solution .f1 .itemBox .text .its p {
    font-size: 14px;
  }
  .solution .f1 .itemBox .text .its hr{
    margin: 3vw 0;
  }
  .solution .f1 .itemBox .text .titBox .tt {
    font-size: 18px;
  }
  .solution .f1 .itemBox .text .titBox .tt span {
    font-size: 26px;
  }
  .case .f1 {
    padding: 10vw 5vw;
  }
  .case .f1 .tabBox {
    padding: 1vw 3vw;
  }
  .case .f1 .tabBox .tab {
    font-size: 14px;
    padding: 0 2vw;
  }
  .case .f1 .tabBox .active::before {
    width: 1.4vw;
    height: 1.4vw;
    border: 2px solid #F9AD44;
    left: -1vw;
  }
  .case .f1 .logo-group {
    margin-top: 5vw;
  }
  .case .f1 .logo-group .logoSwiper {
    height: 50vw;
    padding: 0 2vw;
  }
  .case .f1 .logo-group .logos {
    width: 100%;
    height: calc((100% - 20px) / 2) !important;
    padding: 1vw .2vw;
    font-size: 12px;
    margin-top: 0 !important;
  }
  .case .f1 .logo-group .logos img {
    width: 12vw;
    height: 12vw;
  }
  .case .f1 .logo-group .swiper-button-next,
  .case .f1 .logo-group .swiper-button-prev {
    width: 8vw;
    height: 8vw;
  }
  .case .f1 .logo-group .swiper-button-next i,
  .case .f1 .logo-group .swiper-button-prev i {
    font-size: 4vw;
  }
  .case .f1 .logo-group .swiper-button-next{
    right: -3vw;
    top: 58%;
  }
  .case .f1 .logo-group .swiper-button-prev{
    left: -3vw;
    top: 58%;
  }
  .case .f1 .info {
    font-size: 16px;
    margin-top: 5vw;
  }
  .case .f1 .info::before {
    width: 4.5vw;
    height: 7.5vw;
    margin-left: -6.5vw;
  }
  .case .f1 .info::after {
    width: 4.5vw;
    height: 7.5vw;
    margin-left: 4.5vw;
  }
  .case .f2 {
    padding: 10vw 5vw;
  }
  .case .f2 .f2Swiper {
    margin-top: 5vw;
  }
  .case .f2 .f2Swiper .swiper-slide {
    height: 66vw;
  }
  .case .f2 .f2Swiper .swiper-slide .text .year {
    font-size: 14px;
  }
  .case .f2 .f2Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .case .f2 .f2Swiper .swiper-slide .text .d {
    font-size: 14px;
  }
  .case .f2 .f2Swiper .swiper-slide .name {
    font-size: 16px;
    bottom: 10vw;
  }
  .case .f2 .swiper-button-next,
  .case .f2 .swiper-button-prev {
    width: 8vw;
    height: 8vw;
    font-size: 12px;
  }
  .case .f2 .swiper-button-next{
    right: 1.5vw;
  }
  .case .f2 .swiper-button-prev{
    left: 1.5vw;
  }
  .case .f3 {
    padding: 10vw 5vw;
  }
  .case .f3 .f3SwiperTop {
    display: none;
  }
  .case .f3 .f3Swiper {
    margin-top: 5vw;
  }
  .case .f3 .f3Swiper .swiper-slide {
    display: block;
  }
  .case .f3 .f3Swiper .swiper-slide .img {
    width: 100%;
    height: 50vw;
  }
  .case .f3 .f3Swiper .swiper-slide .text {
    width: 100%;
    padding: 3vw 0;
  }
  .case .f3 .f3Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .case .f3 .f3Swiper .swiper-slide .text .des {
    font-size: 14px;
  }
  .case .f3 .f3Swiper .swiper-pagination {
    width: 100%;
    left: 0;
  }
  .case .f3 .swiper-button-next,
  .case .f3 .swiper-button-prev {
    width: 8vw;
    height: 8vw;
    font-size: 12px;
    color: white;
    background: #1F4397;
    border-radius: 50%;
  }
  .case .f3 .swiper-button-next{
    right: 1.5vw;
    bottom: inherit;
    top: 65vw;
  }
  .case .f3 .swiper-button-prev{
    left: 1.5vw;
    bottom: inherit;
    top: 65vw;
  }
  .news .f1 {
    padding: 10vw 5vw;
  }
  .news .f1 .f1Swiper {
    margin: 0;
    padding-bottom: 8vw;
  }
  .news .f1 .f1Swiper .swiper-slide {
    display: block;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .news .f1 .f1Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 50vw;
  }
  .news .f1 .f1Swiper .swiper-slide .text {
    width: 100%;
    height: 26vw;
    padding: 3vw;
  }
  .news .f1 .f1Swiper .swiper-slide .text .time {
    font-size: 14px;
    padding-left: 4vw;
  }
  .news .f1 .f1Swiper .swiper-slide .text .name {
    font-size: 16px;
    margin: 2vw 0;
    -webkit-line-clamp: 2;
  }
  .news .f1 .f1Swiper .swiper-slide .text .time::before {
    height: 3.5vw;
  }
  .news .f1 .f1Swiper .swiper-button-next,
  .news .f1 .f1Swiper .swiper-button-prev {
    display: none;
  }
  .news .f1 .f1Box {
    display: block;
  }
  .news .f1 .f1Box .item {
    width: 100%;
    margin-top: 5vw;
    margin-bottom: 0;
  }
  .news .f1 .f1Box .item .imgBox {
    height: 50vw;
  }
  .news .f1 .f1Box .item .text {
    height: auto;
    padding: 3vw;
  }
  .news .f1 .f1Box .item .text .time {
    font-size: 14px;
    padding-left: 4vw;
  }
  .news .f1 .f1Box .item .text .name {
    font-size: 16px;
    margin: 2vw 0;
    -webkit-line-clamp: 2;
  }
  .news .f1 .f1Box .item .text .time::before {
    height: 3.5vw;
  }
  .cooperation .bannerBox .text{
    padding: 5vw 5vw 0 5vw;
  }
  .cooperation .f1 {
    padding: 10vw 5vw;
  }
  .cooperation .f1 .f1Swiper {
    margin-top: 5vw;
  }
  .cooperation .f1 .f1Swiper .swiper-button-next,
  .cooperation .f1 .f1Swiper .swiper-button-prev {
    display: none;
  }
  .cooperation .f1 .f1Swiper .swiper-slide {
    display: block;
  }
  .cooperation .f1 .f1Swiper .swiper-slide .img {
    width: 100%;
    height: 50vw;
  }
  .cooperation .f1 .f1Swiper .swiper-slide .text {
    width: 100%;
    padding: 3vw;
  }
  .cooperation .f1 .f1Swiper .swiper-slide .text .t {
    font-size: 16px;
  }
  .cooperation .f1 .f1Swiper .swiper-slide .text .t img {
    width: 13vw;
    margin-right: 3vw;
  }
  .cooperation .f1 .f1Swiper .swiper-slide .text .d {
    font-size: 14px;
    margin-top: 3vw;
  }
  .cooperation .f2 .f2Box .item {
    margin: 3vw 0;
  }
  .cooperation .f2 .f2Box .item .scroll-wrap {
    gap: 3vw;
  }
  .cooperation .f2 .f2Box .item .logoh {
    width: 28vw;
    height: 15vw;
  }
  .cooperation .f2 .f2Box .item .logoh img {
    height: 50px;
  }
  .contactUs .f1 {
    padding: 10vw 5vw;
  }
  .contactUs .f1 .f1Box {
    margin-top: 5vw;
    display: block;
  }
  .contactUs .f1 .f1Box .left {
    width: 100%;
    border-right: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5vw;
  }
  .contactUs .f1 .f1Box .left .its .t {
    font-size: 14px;
  }
  .contactUs .f1 .f1Box .left .its .d {
    font-size: 16px;
  }
  .contactUs .f1 .f1Box .left .qrcodeBox .t {
    font-size: 14px;
    text-align: center;
  }
  .contactUs .f1 .f1Box .left .qrcodeBox .qrcode {
    width: 25vw;
    margin: 3vw auto 0 auto;
  }
  .contactUs .f1 .f1Box .right {
    width: 100%;
    padding-left: 0;
    padding-top: 5vw;
  }
  .contactUs .f1 .f1Box .right form .inputBox {
    margin-bottom: 3vw;
    padding: 1.5vw 3vw;
  }
  .contactUs .f1 .f1Box .right form .inputBox input {
    font-size: 14px;
  }
  .contactUs .f1 .f1Box .right form .inputBox textarea {
    height: 20vw;
    font-size: 14px;
  }
  .contactUs .f1 .f1Box .right .submit {
    width: 100%;
    padding: 2vw 0;
    font-size: 16px;
    letter-spacing: 5px;
    margin: 0 auto;
    text-align: center;
  }
  .contactUs .f1 .f2Box {
    margin-top: 5vw;
    display: block;
  }
  .contactUs .f1 .f2Box .left {
    width: 100%;
    border-right: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5vw;
  }
  .contactUs .f1 .f2Box .left .titBox{
    text-align: center;
  }
  .contactUs .f1 .f2Box .left .its .t {
    font-size: 14px;
  }
  .contactUs .f1 .f2Box .left .its .d {
    font-size: 16px;
  }
  .contactUs .f1 .f2Box .right {
    width: 100%;
    padding-left: 0;
    padding-top: 5vw;
  }
  .contactUs .f1 .f2Box .right form .inputBox {
    margin-bottom: 3vw;
  }
  .contactUs .f1 .f2Box .right form .inputBox .name {
    font-size: 14px;
  }
  .contactUs .f1 .f2Box .right form .inputBox input {
    font-size: 14px;
    padding: 1.5vw 3vw;
  }
  .contactUs .f1 .f2Box .right form .inputBox textarea {
    height: 20vw;
    font-size: 14px;
  }
  .contactUs .f1 .f2Box .right .submit {
    width: 100%;
    padding: 2vw 0;
    font-size: 16px;
    letter-spacing: 5px;
    margin: 0 auto;
    text-align: center;
  }
  .contactUs .f1 .f2Box .right form .inputBox .upfile {
    font-size: 14px;
    padding: 1vw 2vw;
  }
  .contactUs .f1 .f2Box .right form .inputBox .upfile i {
    font-size: 16px;
  }
  .contactUs .f1 .f2Box .right form .inputBox .file {
    width: 26vw;
    height: 10vw;
    top: 5vw;
  }
  .contactUs .f1 .f2Box .right form .inputBox .upfile .fileName {
    font-size: 12px;
  }
  .f6MobileBox {
    width: 100%;
    position: relative;
  }
  .f6MobileBox .item {
    width: 100%;
    position: relative;
    display: block;
    border-radius: 1vw;
    background: white;
    overflow: hidden;
    margin-top: 5vw;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .f6MobileBox .item .imgBox {
    width: 100%;
    height: 50vw;
    overflow: hidden;
  }
  .f6MobileBox .item .imgBox .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: 0.5s all;
  }
  .f6MobileBox .item .text {
    padding: 3vw;
    height: auto;
  }
  .f6MobileBox .item .text .time {
    font-size: 14px;
    position: relative;
    padding-left: 3vw;
  }
  .f6MobileBox .item .text .time::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3vw;
    background: #F9AD44;
    left: 0.2vw;
    top: 51%;
    transform: translateY(-50%) rotate(10deg);
  }
  .f6MobileBox .item .text .name {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    margin-top: 0.5vw;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .f6MobileBox .item:hover {
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
  }
  .f6MobileBox .item:hover .imgBox .img {
    transform: scale(1.1);
  }
  .index .f1 .f1Swiper .swiper-pagination{
    bottom: 2vh;
  }
  .index .f1 .f1Swiper .swiper-pagination-number{
    font-size: 16px;
    margin: .5vw 1vw;
  }
  .index .f1 .f1Swiper .swiper-pagination-line{
    width: 5vw;
  }
  .shouzhi{
    position: absolute;
    right: 15vw;
    font-size: 28px;
    top: 1.5vw;
    color: #1F4397;
    animation: shouzhiAnm 1s infinite;
  }
  @keyframes shouzhiAnm {
    0%{
      transform: translateX(1vw);
    }
    50%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(1vw);
    }
  }
  .strength4 .f1 .right .rightImg2{
    width: 66vw;
    top: 3.5vw;
    right: 14vw;
  }
  .solution .f1 .itemBox .text .its em{
    font-size: 16px;
  }
  .solution .f1 .itemBox .text .its em img{
    width: 18px !important;
    height: 18px !important;
  }
  .index .f3 .f3Box .itemBox .textBox .item p em{
    font-size: 16px;
  }
  .index .f3 .f3Box .itemBox .textBox .item p em img{
    width: 18px !important;
    height: 18px !important;
  }
  footer .footerInfo .Designed{
    font-size: 10px;
  }
}
