@font-face {
  font-family: 'iconfont';  /* Project id 5181045 */
  src: url('//at.alicdn.com/t/c/font_5181045_f83c7kssfma.woff2?t=1784165838831') format('woff2'),
  url('//at.alicdn.com/t/c/font_5181045_f83c7kssfma.woff?t=1784165838831') format('woff'),
  url('//at.alicdn.com/t/c/font_5181045_f83c7kssfma.ttf?t=1784165838831') format('truetype');
}
/*@font-face {*/
/*  font-family: OPPOSans;*/
/*  src: url('../fonts/OPPOSans.ttf');*/
/*}*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
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: #1282CB;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bulrAnmkey {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
.bulrAnm {
  -webkit-animation: bulrAnmkey 1s ease both;
  animation: bulrAnmkey 1s ease both;
  -ms-animation: bulrAnmkey 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup2 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.4s;
}
.he_fadeup3 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.5s;
}
.he_fadeup4 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}
.he_fadeup5 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.7s;
}
.cpthActive.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}
.cpth {
  -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}
.animate-on-scroll {
  /* 初始状态：透明 + 偏移 */
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 1.8秒慢动画（时长可调） */
  transform-origin: center center;
  /* skew倾斜中心点（避免变形偏移） */
  transform: translateY(60px) skewY(1deg);
}
/* 动画触发后的状态 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) skew(0);
  /* 重置偏移和skew */
}
.animate-img {
  overflow: hidden;
  opacity: 0;
  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);
}
.img-popup-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  cursor: zoom-out;
}
.img-popup-layer img {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.imgAnimation {
  width: 100%;
  position: relative;
  opacity: 0;
}
.imgAnimation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: scaleY(1);
  transform-origin: bottom center;
  z-index: 1;
  -webkit-transition: 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.imgAnimation.animated {
  opacity: 1;
}
.imgAnimation.animated::before {
  transform: scaleY(0);
}
header {
  width: 84%;
  position: fixed;
  left: 8%;
  top: 0.5vw;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  padding: 0 1vw;
  border-radius: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-transition: all 0.5s;
}
header .logo {
  width: 8vw;
}
header .logo img:nth-child(2) {
  display: none;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  transition: 0.3s all;
  padding: 1.7vw 1.5vw;
}
header nav ul li .lang{
  font-size: 16px;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
}
header nav ul li i{
  margin-right: 3px;
}
header nav ul li a {
  color: white;
  font-size: 17px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}
header nav ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  bottom: -10px;
  left: 0;
  transition: all 0.3s;
}
header nav ul li i {
  color: white;
  cursor: pointer;
  font-size: 20px;
}
header nav ul li .second {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  background: white;
  left: 0;
  border-radius: 0.5vw;
  -webkit-clip-path: inset(0 -100vw 100%);
  clip-path: inset(0 -100vw 100%);
  transition: -webkit-clip-path 0.75s ease;
  transition: clip-path 0.75s ease, -webkit-clip-path 0.75s ease;
  pointer-events: none;
  visibility: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  top: 4.6vw;
}
header nav ul li .second a {
  color: #666666;
  font-size: 16px;
  padding: 1.2vw 0;
  margin: 0 1.8vw;
}
header nav ul li .second a .icon {
  width: auto;
  height: 1.8vw;
  margin-bottom: 0.5vw;
}
header nav ul li .second a .icon img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
header nav ul li .second a:hover {
  color: #1282CB;
}
header nav ul li .second a::before {
  content: inherit;
}
header nav ul li:hover a:before {
  transform: scaleX(1);
}
header nav ul li:hover .second {
  -webkit-clip-path: inset(0 -100vw 0);
  clip-path: inset(0 -100vw 0);
  pointer-events: all;
  visibility: visible;
}
header.active .logo img:nth-child(2) {
  display: block;
}
header.active .logo img:nth-child(1) {
  display: none;
}
header.active nav ul li a {
  color: #333333;
}
header.active nav ul li a:before {
  background: #333333;
}
header.active nav ul li i {
  color: #333333;
}
header.active2 {
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 8vw;
  backdrop-filter: blur(0);
  background: #F7F7F7;
}
header.active2 .logo img:nth-child(2) {
  display: block;
}
header.active2 .logo img:nth-child(1) {
  display: none;
}
header.active2 nav ul li a {
  color: #333333;
}
header.active2 nav ul li a:before {
  background: #333333;
}
header.active2 nav ul li i {
  color: #333333;
}
footer {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #1282CB 0%, #115C8D 100%);
  padding: 0 8vw;
}
footer .footer {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3vw 0;
}
footer .footer .left .logo {
  width: 12vw;
}
footer .footer .left .txt {
  margin-top: 2vw;
  color: white;
}
footer .footer .left .txt .tit {
  font-size: 1vw;
  font-weight: 500;
}
footer .footer .left .txt .phones {
  font-size: 0.85vw;
  margin: 2vw 0 1vw 0;
}
footer .footer .left .txt .address {
  font-size: 0.85vw;
}
footer .footer .left .txt .address .d {
  opacity: 0.8;
  margin-top: 0.5vw;
}
footer .footer .footerNav {
  margin-top: 3vw;
}
footer .footer .footerNav ul {
  display: flex;
  justify-content: space-between;
}
footer .footer .footerNav ul .level1 {
  margin-right: 7vw;
}
footer .footer .footerNav ul .level1 a {
  font-size: 0.9vw;
  font-family: Medium;
  color: white;
}
footer .footer .footerNav ul .level1 ul {
  display: block;
  margin-top: 1.5vw;
}
footer .footer .footerNav ul .level1 ul li {
  margin-bottom: 0.5vw;
  text-align: left;
  position: relative;
}
footer .footer .footerNav ul .level1 ul li a {
  font-size: 0.8vw;
  font-family: Regular;
  position: relative;
  opacity: 0.8;
  color: white;
}
footer .footer .footerNav ul .level1 ul li a::after {
  width: 0%;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -3px;
  content: '';
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
footer .footer .footerNav ul .level1 ul li a:hover {
  opacity: 1;
}
footer .footer .footerNav ul .level1 ul li a:hover::after {
  width: 100%;
  left: 0%;
}
footer .footer .footerNav ul .level1:last-child {
  margin-right: 0;
}
footer .footer .qrcode {
  width: 6vw;
  text-align: center;
  font-size: 0.85vw;
  color: white;
  margin-top: 3vw;
}
footer .footer .qrcode img {
  margin-bottom: 0.5vw;
  border-radius: 0.5vw;
}
footer .footerInfo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  opacity: 0.8;
  font-size: 0.8vw;
  padding: 2vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footerInfo a {
  color: white;
}
.bannerBox {
  width: 100%;
  height: 32vw;
  position: relative;
  overflow: hidden;
}
.bannerBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  transform: scale(1.1);
  background-size: cover !important;
  background-blend-mode: multiply;
  animation: bannerBoxAnm 2s forwards;
}
@keyframes bannerBoxAnm {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bannerBox .txt {
  position: absolute;
  top: 45%;
  padding-left: 8vw;
  color: white;
  font-size: 3vw;
  font-weight: 500;
  transform: translateY(-50%);
}
.bannerBox .txt::before {
  content: '';
  position: absolute;
  width: 1vw;
  height: 1vw;
  background: url('../images/icon1.png') center no-repeat;
  background-size: contain !important;
  top: -1vw;
}
@keyframes bannerBoxAnmBe {
  0% {
    transform: translateX(-30vw);
  }
  100% {
    transform: translateX(0);
  }
}
.titBox .cn {
  font-size: 2.5vw;
  font-weight: 500;
  color: #1282CB;
}
.titBox .en {
  font-size: 1vw;
  text-transform: uppercase;
  line-height: 2;
  color: #999999;
}
.more {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #1282CB;
  border-radius: 5vw;
  color: white;
  font-size: 0.85vw;
  padding: 0.2vw;
  line-height: 2.1vw;
}
.more p {
  padding: 0 3.3vw 0 1vw;
  position: relative;
  z-index: 2;
  transition: 0.3s all;
}
.more .icon {
  width: 2vw;
  height: 2vw;
  color: #333333;
  background: white;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 0.3vw;
  transition: 0.4s ease-in-out;
}
.more .icon i {
  position: absolute;
  right: 0.5vw;
}
.more:hover {
  color: #1282CB;
}
.more:hover .icon {
  width: 93%;
  border-radius: 5vw;
  color: #1282CB;
}
.index {
  width: 100%;
  position: relative;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index .f1 .f1Swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.index .f1 .f1Swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  animation: fade 8s linear infinite alternate forwards;
}
@keyframes fade {
  0% {
    transform: scale(1.1) translateX(2%);
  }
  100% {
    transform: scale(1.1) translateX(-2%);
  }
}
.index .f1 .f1Swiper .swiper-slide .txt {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 8vw;
  color: white;
}
.index .f1 .f1Swiper .swiper-slide .txt .t {
  font-size: 1.3vw;
  display: flex;
  align-items: center;
}
.index .f1 .f1Swiper .swiper-slide .txt .t img {
  width: 1.2vw;
  margin-right: 1vw;
}
.index .f1 .f1Swiper .swiper-slide .txt .d {
  font-size: 3.5vw;
  font-weight: bold;
  margin-top: 1vw;
}
.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}
.index .f1 .f1Swiper .swiper-pagination {
  width: auto;
  bottom: 5vw;
  left: 8vw;
}
.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 2px;
  opacity: 1;
  position: relative;
  margin: 0 0.5vw;
  overflow: hidden;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.1s ease;
}
.index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet-active::after {
  width: var(--progress, 0%);
}
.index .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.index .f2 .f2Bg {
  width: 92%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 0 0 1vw 1vw;
  overflow: hidden;
}
.index .f2 .f2Text {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.index .f2 .f2Text .text {
  width: 50%;
}
.index .f2 .f2Text .text .des {
  font-size: 1vw;
  color: #666666;
  line-height: 1.7;
  text-align: justify;
}
.index .f2 .f2Text .text .more {
  margin-top: 5vw;
}
.index .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5vw;
}
.index .f2 .f2Box .item {
  width: 25%;
  height: 15vw;
  position: relative;
  padding: 0 3vw 0 2vw;
  transition: 0.5s all;
}
.index .f2 .f2Box .item .num font {
  font-size: 1.5vw;
  position: absolute;
  margin-left: -0.3vw;
  font-weight: bold;
}
.index .f2 .f2Box .item .num .count-number {
  font-weight: 500;
  font-size: 3vw;
}
.index .f2 .f2Box .item .num span {
  font-size: 1vw;
  font-weight: normal;
}
.index .f2 .f2Box .item .d {
  font-size: 1vw;
  line-height: 2;
  color: #666666;
}
.index .f2 .f2Box .item:nth-child(odd) {
  top: 3vw;
}
.index .f2 .f2Box .item:last-child .num font {
  margin-left: 0;
}
.index .f2 .f2Box .item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20vw;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.15) 100%);
  left: 0;
  top: 1vw;
}
.index .f2 .f2Box .item:hover {
  color: #1282CB;
}
.index .f2 .f2Box .item:hover::before {
  background: linear-gradient(180deg, #1282CB 0%, rgba(18, 130, 203, 0.15) 100%);
}
.index .f3 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
  margin-top: 9vw;
  padding: 6vw 8vw 3vw 8vw;
  background-blend-mode: multiply;
  transition: 0.5s all;
}
.index .f3 .titBox .cn {
  color: white;
}
.index .f3 .titBox .en {
  color: white;
}
.index .f3 .textBox {
  width: 30%;
  margin-top: 5vw;
}
.index .f3 .textBox .text {
  display: none;
  color: white;
}
.index .f3 .textBox .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.index .f3 .textBox .text .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin: 1vw 0;
}
.index .f3 .textBox .text.active {
  display: block;
}
.index .f3 .f3Box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1vw;
  left: 0;
  position: absolute;
  bottom: 3vw;
}
.index .f3 .f3Box .item {
  width: 20%;
  height: 7vw;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
  transition: 0.5s all;
  overflow: hidden;
}
.index .f3 .f3Box .item .itsA {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw 1vw 1.5vw 1vw;
  transition: 0.5s all;
}
.index .f3 .f3Box .item .itsA .txt {
  width: 60%;
}
.index .f3 .f3Box .item .itsA .txt .t {
  font-size: 1vw;
  line-height: 2;
}
.index .f3 .f3Box .item .itsA .txt .t2 {
  font-size: 0.85vw;
  color: #999999;
}
.index .f3 .f3Box .item .itsA .icon {
  width: auto;
  height: 2vw;
}
.index .f3 .f3Box .item .itsA .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index .f3 .f3Box .item .itsB {
  position: absolute;
  top: 0;
  display: none;
  transition: 0.5s all;
}
.index .f3 .f3Box .item .itsB .icon {
  width: auto;
  height: 2vw;
  position: relative;
}
.index .f3 .f3Box .item .itsB .icon img {
  width: auto;
  height: 2vw;
  margin: 0 auto;
}
.index .f3 .f3Box .item.active {
  height: 15vw;
  border-radius: 20px 20px 0 0;
  background: rgba(18, 130, 203, 0.8);
}
.index .f3 .f3Box .item.active .itsA {
  opacity: 0;
}
.index .f3 .f3Box .item.active .itsB {
  display: block;
  color: white;
  padding: 2vw;
}
.index .f3 .f3Box .item.active .itsB .icon {
  width: 3vw;
  height: 3vw;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding-top: 0.7vw;
}
.index .f3 .f3Box .item.active .itsB .icon img {
  height: 1.5vw;
  filter: invert(1);
}
.index .f3 .f3Box .item.active .itsB .t {
  font-size: 1vw;
  line-height: 2;
  text-align: center;
  margin: 0.5vw 0;
}
.index .f3 .f3Box .item.active .itsB .d {
  font-size: 0.85vw;
  opacity: 0.8;
  line-height: 1.7;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.index .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.index .f4 .titBox .des {
  font-size: 1vw;
  margin-top: 2vw;
}
.index .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1vw;
  margin-top: 3vw;
}
.index .f4 .f4Box .left {
  width: 60%;
  height: 35vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
}
.index .f4 .f4Box .left .imgBox {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.index .f4 .f4Box .left .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  position: relative;
  z-index: -1;
  object-fit: cover;
}
.index .f4 .f4Box .left .textBox {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 3vw;
  color: white;
}
.index .f4 .f4Box .left .textBox .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.index .f4 .f4Box .left .textBox .d {
  width: 70%;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 2vw;
}
.index .f4 .f4Box .left .textBox .more {
  position: absolute;
  bottom: 3vw;
}
.index .f4 .f4Box .left:hover .imgBox img {
  transform: scale(1.05);
}
.index .f4 .f4Box .right {
  width: 40%;
}
.index .f4 .f4Box .right .item {
  width: 100%;
  height: 11vw;
  position: relative;
  display: block;
  border-radius: 1vw;
  overflow: hidden;
  margin-bottom: 1vw;
}
.index .f4 .f4Box .right .item .imgBox {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.index .f4 .f4Box .right .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -1;
  transition: 0.5s all;
}
.index .f4 .f4Box .right .item .textBox {
  position: absolute;
  top: 0;
  color: white;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.index .f4 .f4Box .right .item .textBox .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.index .f4 .f4Box .right .item:hover .imgBox img {
  transform: scale(1.05);
}
.index .f5 {
  width: 100%;
  position: relative;
  background: url('../images/img10.jpg') center no-repeat;
  background-size: cover !important;
  padding: 6vw 8vw;
}
.index .f5 .f5Text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f5 .f5Box {
  width: 100%;
  position: relative;
  display: flex;
  gap: 2vw;
  margin-top: 3vw;
}
.index .f5 .f5Box .item {
  width: 33%;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  background: white;
  transition: 0.5s all;
}
.index .f5 .f5Box .item .img {
  width: 100%;
  height: 18vw;
  border-radius: 1vw;
  background-size: cover !important;
  transition: 0.5s all;
}
.index .f5 .f5Box .item .textBox {
  height: 9vw;
  overflow: hidden;
  padding: 2vw;
  transition: 0.5s all;
}
.index .f5 .f5Box .item .textBox .labs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 0.8vw;
}
.index .f5 .f5Box .item .textBox .labs .lab {
  border-radius: 5px;
  background: #F7F7F7;
  padding: 0.2vw 0.5vw;
}
.index .f5 .f5Box .item .textBox .name {
  font-size: 1vw;
  margin: 1vw 0;
  text-align: justify;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.index .f5 .f5Box .item .textBox .des {
  font-size: 0.85vw;
  line-height: 1.7;
  text-align: justify;
  opacity: 0.8;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  opacity: 0;
}
.index .f5 .f5Box .item .textBox .more {
  position: absolute;
  bottom: 3vw;
  opacity: 0;
  transition: 0.5s all;
  background: white;
  color: #333333;
}
.index .f5 .f5Box .item .textBox .more .icon {
  background: #1282CB;
  color: white;
}
.index .f5 .f5Box .item .textBox .more:hover {
  color: white;
}
.index .f5 .f5Box .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/icon6.png') center no-repeat;
  background-size: contain !important;
  top: 0;
  right: -5vw;
  opacity: 0;
}
.index .f5 .f5Box .item:hover {
  color: white;
  background: linear-gradient(180deg, #1282CB 0%, #115C8D 100%), #F7F7F7;
}
.index .f5 .f5Box .item:hover .img {
  margin-top: -18vw;
}
.index .f5 .f5Box .item:hover .textBox {
  height: 25vw;
}
.index .f5 .f5Box .item:hover .textBox .time {
  color: white;
}
.index .f5 .f5Box .item:hover .textBox .des {
  opacity: 1;
}
.index .f5 .f5Box .item:hover .textBox .more {
  opacity: 1;
}
.index .f5 .f5Box .item:hover::before {
  opacity: 1;
}
.about {
  width: 100%;
  position: relative;
}
.about .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw 0 8vw;
}
.about .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}
.about .f1 .f1Box .item {
  width: 33%;
  border: 1px solid #D5E6F2;
  border-radius: 0.5vw;
  padding: 1.5vw;
}
.about .f1 .f1Box .item .t {
  font-size: 1.1vw;
  font-weight: 500;
}
.about .f1 .f1Box .item .d {
  font-size: 0.9vw;
  color: #666666;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.about .f1 .textBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.about .f1 .textBox .titBox .cn {
  color: #333333;
}
.about .f1 .textBox .des {
  width: 70%;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
}
.about .f2 {
  width: 100%;
  padding: 7vw 0 0 0;
}
.about .f2 .titBox {
  text-align: center;
}
.about .f2 .titBox .cn {
  color: #333333;
}
.about .f2 .historySwiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  padding: 0 8vw;
  overflow: hidden;
}
.about .f2 .historySwiper .swiper-slide {
  text-align: center;
}
.about .f2 .historySwiper .swiper-slide .year {
  color: #999999;
  font-size: 1.3vw;
  position: relative;
  top: 1vw;
  font-weight: bold;
}
.about .f2 .historySwiper .swiper-slide .txt {
  margin-top: 4vw;
  opacity: 0;
}
.about .f2 .historySwiper .swiper-slide .txt .t {
  color: #1282CB;
  font-size: 1.2vw;
}
.about .f2 .historySwiper .swiper-slide .txt .d {
  font-size: 1vw;
  line-height: 1.7;
  text-align: center;
  margin-top: 1vw;
}
.about .f2 .historySwiper .swiper-slide-active .year {
  font-size: 3vw;
  color: #1282CB;
  top: 0;
}
.about .f2 .historySwiper .swiper-slide-active .txt {
  opacity: 1;
}
.about .f2 .historySwiper .swiper-slide-active::before {
  content: '';
  position: absolute;
  width: 1.5vw;
  height: 1.5vw;
  background: url('../images/icon7.png') center no-repeat;
  background-size: contain !important;
  top: 5.2vw;
  margin-left: -0.7vw;
}
.about .f2 .historySwiper::before {
  content: '';
  position: absolute;
  width: 84%;
  border: 1px dashed #1282CB;
  opacity: 0.5;
  top: 6vw;
}
.about .f2 .f2Img {
  width: 100%;
  margin-top: -8vw;
}
.about .f3 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: url('../images/img10.jpg') center no-repeat;
  background-size: cover !important;
}
.about .f3 .titBox .cn {
  color: #333333;
}
.about .f3 .honorsSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.5vw;
}
.about .f3 .honorsSwiper .swiper-slide {
  transform: scale(0.5);
  transition: 0.5s all;
}
.about .f3 .honorsSwiper .swiper-slide .img {
  width: 100%;
  height: 25vw;
  display: flex;
  align-items: center;
}
.about .f3 .honorsSwiper .swiper-slide .img img {
  max-width: inherit;
  width: 16vw;
  height: auto;
  margin: 0 auto;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.about .f3 .honorsSwiper .swiper-slide .name {
  font-size: 1vw;
  margin-top: 1vw;
  text-align: center;
  opacity: 0;
}
.about .f3 .honorsSwiper .swiper-slide-active {
  transform: scale(1);
}
.about .f3 .honorsSwiper .swiper-slide-active .name {
  opacity: 1;
}
.about .f3 .honorsSwiper .swiper-button-next {
  width: 2vw;
  height: 2vw;
  background: white;
  border-radius: 50%;
  right: 30vw;
  top: inherit;
  bottom: 0;
}
.about .f3 .honorsSwiper .swiper-button-prev {
  width: 2vw;
  height: 2vw;
  background: white;
  border-radius: 50%;
  left: 30vw;
  top: inherit;
  bottom: 0;
}
.about .f3 .honorsSwiper .swiper-button-next:hover {
  background: #1282CB;
  color: white;
}
.about .f3 .honorsSwiper .swiper-button-prev:hover {
  background: #1282CB;
  color: white;
}
.about .f3 .honorsSwiper .swiper-button-next:after,
.about .f3 .honorsSwiper .swiper-button-prev:after {
  font-size: 0.9vw;
}
.solution {
  width: 100%;
  position: relative;
  display: inline-block;
  margin-top: 4vw;
}
.solution .left {
  width: 20%;
  height: 100vh;
  display: inline-block;
  float: left;
  position: sticky;
  top: 4vw;
  background: #F7F7F7;
  padding: 3vw 0 1vw 0;
}
.solution .left .item {
  cursor: pointer;
}
.solution .left .item .tit {
  padding: 1.2vw 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1vw;
  font-weight: 400;
}
.solution .left .item .tit .icon {
  font-size: 1vw;
}
.solution .left .item .tit .icon i:nth-child(2) {
  display: none;
}
.solution .left .item.active .tit .icon i:nth-child(1) {
  display: none;
}
.solution .left .item.active .tit .icon i:nth-child(2) {
  display: block;
}
.solution .left .item .its {
  padding-left: 3vw;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.solution .left .item .its .it {
  color: #666666;
  font-size: 0.85vw;
  padding: 1vw 0;
  display: block;
  border-bottom: 1px solid #EAEAEA;
}
.solution .left .item .its .it:hover {
  color: #1282CB;
}
.solution .left .item.active .tit {
  background: #1282CB;
  color: white;
}
.solution .left .item.active .its {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.solution .right {
  width: 80%;
  display: inline-block;
  padding: 3vw;
}
.solution .right .item {
  width: 100%;
  height: 32vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  margin-bottom: 3vw;
  display: block;
  opacity: 0;
}
.solution .right .item .imgBg {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.solution .right .item .textBox {
  width: 30vw;
  height: 22vw;
  position: absolute;
  bottom: 3vw;
  left: 3vw;
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: white;
  padding: 2vw;
  overflow: hidden;
}
.solution .right .item .textBox .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6vw;
  font-weight: 500;
}
.solution .right .item .textBox .tit .icon {
  width: 1.5vw;
  filter: invert(1);
}
.solution .right .item .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin: 1.5vw 0;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.solution .right .item .textBox .labs {
  display: flex;
  align-items: center;
  gap: 1vw;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1.5vw;
}
.solution .right .item .textBox .labs .lab {
  font-size: 0.8vw;
  border: 1px solid white;
  color: white;
  border-radius: 5vw;
  padding: 0.2vw 1vw;
}
.solution .right .item .textBox .more {
  margin-top: 1.5vw;
}
.solution .right .item:hover .imgBg {
  transform: scale(1.05);
}
.solution .right .item:last-child {
  margin-bottom: 0;
}
.solution .right2 {
  width: 80%;
  display: inline-block;
  padding: 3vw 8vw 3vw 3vw;
}
.solution .right2 .textBox {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.solution .right2 .textBox .text {
  width: 55%;
  padding-top: 1vw;
}
.solution .right2 .textBox .text .tit {
  font-size: 1.6vw;
  font-weight: 500;
}
.solution .right2 .textBox .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin: 2vw 0;
}
.solution .right2 .textBox .text .its {
  margin-top: 1vw;
}
.solution .right2 .textBox .text .its .t {
  font-size: 1vw;
  color: #1077B9;
}
.solution .right2 .textBox .text .its .labs {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 1vw;
}
.solution .right2 .textBox .text .its .labs .lab {
  font-size: 0.8vw;
  border: 1px solid #666666;
  color: #666666;
  border-radius: 5vw;
  padding: 0.2vw 1vw;
}
.solution .right2 .textBox .imgBox {
  width: 40%;
  height: 18vw;
  border-radius: 1vw;
  overflow: hidden;
}
.solution .right2 .textBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.solution .right2 .textBox .imgBox:hover .img {
  transform: scale(1.05);
}
.solution .right2 .itemBox {
  width: 100%;
  position: relative;
  margin: 0 0 5vw 0;
}
.solution .right2 .itemBox .items{
  opacity: 0;
  padding-top: 5vw;
}
.solution .right2 .itemBox .item {
  border-radius: 1vw;
  background: #ffffff;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(40px);
  padding: 2vw;
}
.solution .right2 .itemBox .item .text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution .right2 .itemBox .item .text .imgBox {
  width: 60%;
  height: 22vw;
  border-radius: 1vw;
  overflow: hidden;
}
.solution .right2 .itemBox .item .text .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.solution .right2 .itemBox .item .text .imgBox:hover .img {
  transform: scale(1.05);
}
.solution .right2 .itemBox .item .text .txt {
  width: 37%;
}
.solution .right2 .itemBox .item .text .txt .t {
  font-size: 1.2vw;
  font-weight: 500;
}
.solution .right2 .itemBox .item .text .txt .d {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
}
.solution .right2 .itemBox .item .its {
  width: 100%;
  position: relative;
  padding-top: 2vw;
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.solution .right2 .itemBox .item .its .it {
  width: 33%;
}
.solution .right2 .itemBox .item .its .it .t {
  background: #1282CB;
  color: white;
  border-radius: 5vw;
  font-size: 0.9vw;
  padding: 0.3vw 1vw;
  display: inline-block;
}
.solution .right2 .itemBox .item .its .it .d {
  font-size: 0.8vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
}
.news {
  width: 100%;
  position: relative;
  padding: 0 8vw;
  overflow: hidden;
}
.news .newsBg {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  left: 0;
  pointer-events: none;
}
.news .tits {
  color: #1282CB;
  font-size: 3vw;
  position: relative;
  font-weight: 500;
  margin-top: 10vw;
}
.news .tits::before {
  content: '';
  position: absolute;
  width: 1vw;
  height: 1vw;
  background: url('../images/icon1_1.png') center no-repeat;
  background-size: contain !important;
  top: -1vw;
}
.news .f1Swiper {
  width: 100%;
  position: relative;
  opacity: 0;
  margin-top: 3vw;
  background: white;
  border-radius: 1vw;
  padding: 1.5vw;
  overflow: hidden;
}
.news .f1Swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.news .f1Swiper .swiper-slide .imgBox {
  width: 50%;
  height: 27vw;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
}
.news .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.5s all;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.15);
  background-size: cover !important;
}
.news .f1Swiper .swiper-slide .imgBox:hover .img {
  transform: scale(1.1);
}
.news .f1Swiper .swiper-slide .text {
  width: 50%;
  padding: 3vw 2vw 0 3vw;
}
.news .f1Swiper .swiper-slide .text .time {
  color: #737373;
  font-size: 0.85vw;
}
.news .f1Swiper .swiper-slide .text .name {
  font-size: 1.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.7;
  overflow: hidden;
  margin: 1vw 0;
}
.news .f1Swiper .swiper-slide .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.news .f1Swiper .swiper-slide .text .more {
  margin-top: 2vw;
}
.news .f1Swiper .swiper-pagination {
  width: auto;
  left: 45vw;
  bottom: 3vw;
}
.news .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  transition: 0.3s all;
  background: #1282CB;
}
.news .f1Swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 1.5vw;
  border-radius: 5px;
}
.news .newsBox {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-top: 5vw;
}
.news .newsBox .item {
  width: 31.7%;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  background: white;
  transition: 0.5s all;
}
.news .newsBox .item .img {
  width: 100%;
  height: 18vw;
  border-radius: 1vw;
  background-size: cover !important;
  transition: 0.5s all;
}
.news .newsBox .item .textBox {
  height: 9vw;
  overflow: hidden;
  padding: 2vw;
  transition: 0.5s all;
}
.news .newsBox .item .textBox .labs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 0.8vw;
}
.news .newsBox .item .textBox .labs .lab {
  border-radius: 5px;
  background: #F7F7F7;
  padding: 0.2vw 0.5vw;
}
.news .newsBox .item .textBox .name {
  font-size: 1vw;
  margin: 1vw 0;
  text-align: justify;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.news .newsBox .item .textBox .des {
  font-size: 0.85vw;
  line-height: 1.7;
  text-align: justify;
  opacity: 0.8;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  display: none;
}
.news .newsBox .item .textBox .more {
  position: absolute;
  bottom: 3vw;
  opacity: 0;
  transition: 0.5s all;
  background: white;
  color: #333333;
}
.news .newsBox .item .textBox .more .icon {
  background: #1282CB;
  color: white;
}
.news .newsBox .item .textBox .more:hover {
  color: white;
}
.news .newsBox .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/icon6.png') center no-repeat;
  background-size: contain !important;
  top: 0;
  right: -5vw;
  opacity: 0;
}
.news .newsBox .item:hover {
  color: white;
  background: linear-gradient(180deg, #1282CB 0%, #115C8D 100%), #F7F7F7;
}
.news .newsBox .item:hover .img {
  margin-top: -18vw;
}
.news .newsBox .item:hover .textBox {
  height: 25vw;
}
.news .newsBox .item:hover .textBox .time {
  color: white;
}
.news .newsBox .item:hover .textBox .more {
  opacity: 1;
}
.news .newsBox .item:hover::before {
  opacity: 1;
}
.news .newsBox .item:hover .textBox .des{
  opacity: 1;
  display: block;
}
.strategy {
  width: 100%;
  position: relative;
}
.strategy .f1 {
  width: 100%;
  position: relative;
  padding: 6vw 4vw;
}
.strategy .f1 .f1Box {
  width: 100%;
  height: 32vw;
  background-blend-mode: multiply;
  background-size: cover !important;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.strategy .f1 .f1Box .text {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  text-align: center;
}
.strategy .f1 .f1Box .text .titBox .cn {
  color: white;
}
.strategy .f1 .f1Box .text .titBox .en {
  color: white;
}
.strategy .f1 .f1Box .text .des {
  color: white;
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 3vw;
}
.strategy .f2 {
  width: 100%;
  height: 100vh;
  background-blend-mode: multiply;
  background-size: cover !important;
  position: relative;
}
.strategy .f2 .textBox {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  bottom: 5vw;
  color: white;
  padding: 0 8vw;
}
.strategy .f2 .textBox .tits .t {
  font-size: 2vw;
  font-weight: 500;
}
.strategy .f2 .textBox .tits .d {
  font-size: 2.2vw;
  font-weight: 200;
}
.strategy .f2 .textBox .text {
  width: 30vw;
  border-radius: 1vw;
  background: rgba(18, 130, 203, 0.6);
  backdrop-filter: blur(10px);
  padding: 2vw;
}
.strategy .f2 .textBox .text .titBox .cn {
  color: white;
}
.strategy .f2 .textBox .text .titBox .en {
  color: white;
}
.strategy .f2 .textBox .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 2vw;
  text-align: justify;
  opacity: 0.9;
}
.strategy .f3 {
  width: 100%;
  position: relative;
  background-size: cover !important;
  padding: 15vw 8vw 6vw 8vw;
}
.strategy .f3 .f3Text {
  width: 40%;
}
.strategy .f3 .f3Text .titBox .cn {
  color: #333333;
}
.strategy .f3 .f3Text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 2vw;
  text-align: justify;
}
.strategy .f3 .f3Box {
  width: 100%;
  position: relative;
  margin-top: 7vw;
  padding-top: 8vw;
}
.strategy .f3 .f3Box .titBox .cn {
  color: #333333;
}
.strategy .f3 .f3Box .f3Item {
  width: 100%;
  position: relative;
  display: flex;
  gap: 2vw;
  margin-top: 3vw;
}
.strategy .f3 .f3Box .f3Item .item {
  width: 33%;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  background: white;
  transition: 0.5s all;
}
.strategy .f3 .f3Box .f3Item .item .img {
  width: 100%;
  height: 18vw;
  border-radius: 1vw;
  background-size: cover !important;
  transition: 0.5s all;
}
.strategy .f3 .f3Box .f3Item .item .textBox {
  height: 9vw;
  overflow: hidden;
  padding: 2vw;
  transition: 0.5s all;
}
.strategy .f3 .f3Box .f3Item .item .textBox .labs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 0.8vw;
}
.strategy .f3 .f3Box .f3Item .item .textBox .labs .lab {
  border-radius: 5px;
  background: #F7F7F7;
  padding: 0.2vw 0.5vw;
}
.strategy .f3 .f3Box .f3Item .item .textBox .name {
  font-size: 1vw;
  margin: 1vw 0;
  text-align: justify;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.strategy .f3 .f3Box .f3Item .item .textBox .des {
  font-size: 0.85vw;
  line-height: 1.7;
  text-align: justify;
  opacity: 0.8;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  opacity: 0;
}
.strategy .f3 .f3Box .f3Item .item .textBox .more {
  position: absolute;
  bottom: 3vw;
  opacity: 0;
  transition: 0.5s all;
  background: white;
  color: #333333;
}
.strategy .f3 .f3Box .f3Item .item .textBox .more .icon {
  background: #1282CB;
  color: white;
}
.strategy .f3 .f3Box .f3Item .item .textBox .more:hover {
  color: white;
}
.strategy .f3 .f3Box .f3Item .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/icon6.png') center no-repeat;
  background-size: contain !important;
  top: 0;
  right: -5vw;
  opacity: 0;
}
.strategy .f3 .f3Box .f3Item .item:hover {
  color: white;
  background: linear-gradient(180deg, #1282CB 0%, #115C8D 100%), #F7F7F7;
}
.strategy .f3 .f3Box .f3Item .item:hover .img {
  margin-top: -18vw;
}
.strategy .f3 .f3Box .f3Item .item:hover .textBox {
  height: 25vw;
}
.strategy .f3 .f3Box .f3Item .item:hover .textBox .time {
  color: white;
}
.strategy .f3 .f3Box .f3Item .item:hover .textBox .des {
  opacity: 1;
}
.strategy .f3 .f3Box .f3Item .item:hover .textBox .more {
  opacity: 1;
}
.strategy .f3 .f3Box .f3Item .item:hover::before {
  opacity: 1;
}
.contactUs {
  width: 100%;
  position: relative;
}
.contactUs .f1 {
  width: 100%;
  position: relative;
  background-size: cover !important;
  padding: 6vw 8vw;
  display: flex;
  justify-content: space-between;
}
.contactUs .f1 .textBox {
  width: 40%;
}
.contactUs .f1 .textBox .titBox .cn {
  color: #333333;
}
.contactUs .f1 .textBox .des {
  font-size: 1vw;
  margin: 1vw 0;
}
.contactUs .f1 .textBox .txt {
  margin-top: 5vw;
}
.contactUs .f1 .textBox .txt .t {
  font-size: 1.2vw;
  font-weight: 500;
}
.contactUs .f1 .textBox .txt .d {
  margin-top: 1vw;
  font-size: 0.9vw;
}
.contactUs .f1 .textBox .links {
  width: 12vw;
  color: white;
  display: inline-flex;
  justify-content: space-between;
  border-radius: 0.5vw;
  margin-top: 3vw;
  align-items: center;
  padding: 1vw;
  background: linear-gradient(0deg, #1282CB 0%, #1282CB 100%), linear-gradient(90deg, #1282CB 0%, #115C8D 100%);
}
.contactUs .f1 .mapImg {
  width: 60%;
}
.services {
  width: 100%;
  position: relative;
}
.services .f1 {
  width: 100%;
  position: relative;
  background-size: cover !important;
  padding: 6vw 8vw;
}
.services .f1 .titBox .cn {
  color: #333333;
}
.services .f1 .f1Box {
  width: 100%;
  position: relative;
  margin-top: 5vw;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.services .f1 .f1Box .left {
  width: 50%;
  position: relative;
  height: 28vw;
}
.services .f1 .f1Box .left .f1SwiperImg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  margin: 0;
}
.services .f1 .f1Box .left .f1SwiperImg .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .f1 .f1Box .left .f1SwiperImg .swiper-slide .img {
  width: 32vw;
  height: 25vw;
  border-radius: 1vw;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.services .f1 .f1Box .right {
  width: 50%;
  position: relative;
  margin-top: -5vw;
}
.services .f1 .f1Box .right .f1SwiperText {
  width: 100%;
  height: 25vw;
  overflow: hidden;
  position: relative;
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide {
  padding: 1vw 0;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide .t {
  font-size: 1.4vw;
  font-weight: 500;
  color: #333;
  margin-top: 2vw;
  transition: all 0.3s ease;
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide .d {
  width: 80%;
  height: 0;
  font-size: 0.95vw;
  line-height: 1.8;
  color: #666;
  opacity: 0;
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide-active {
  opacity: 1;
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide-active .t {
  font-size: 1.6vw;
  color: #1282CB;
  font-weight: 600;
  margin-top: 0;
}
.services .f1 .f1Box .right .f1SwiperText .swiper-slide-active .d {
  height: auto;
  margin-top: 0.8vw;
  opacity: 11;
}
.services .f1 .f1Box .right .swiper-button-prev,
.services .f1 .f1Box .right .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E5E5;
  color: #333;
  top: auto;
  bottom: 2vw;
  transition: all 0.3s ease;
}
.services .f1 .f1Box .right .swiper-button-prev:after,
.services .f1 .f1Box .right .swiper-button-next:after {
  font-size: 0.8vw;
  font-weight: bold;
}
.services .f1 .f1Box .right .swiper-button-prev:hover,
.services .f1 .f1Box .right .swiper-button-next:hover {
  background: #1282CB;
  border-color: #1282CB;
  color: #fff;
}
.services .f1 .f1Box .right .swiper-button-prev {
  left: 0;
}
.services .f1 .f1Box .right .swiper-button-next {
  left: 3.5vw;
}
.services .f1 .f1Box .right .swiper-pagination {
  position: absolute;
  bottom: 2.5vw;
  right: 0;
  left: auto;
  width: auto;
  font-size: 0.9vw;
  color: #999;
}
.services .f1 .f1Box .right .swiper-pagination .swiper-pagination-current {
  color: #1282CB;
  font-weight: 600;
}
.services .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.services .f2 .titBox .cn {
  color: #333333;
}
.services .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1vw;
  margin-top: 3vw;
}
.services .f2 .f2Box .item {
  flex: 1;
  height: 27vw;
  background-size: cover !important;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  background-blend-mode: multiply;
  transition: 0.5s all;
}
.services .f2 .f2Box .item .text {
  position: absolute;
  bottom: 0;
  padding: 1.5vw;
  color: white;
  transition: 0.5s all;
}
.services .f2 .f2Box .item .text .t {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1vw;
}
.services .f2 .f2Box .item .text .des {
  width: 30vw;
  line-height: 2;
  font-size: 0.9vw;
  opacity: 0;
  height: 0;
  transition: 0.5s all;
}
.services .f2 .f2Box .active {
  flex: 2;
}
.services .f2 .f2Box .active .text .des {
  opacity: 1;
  height: auto;
}
.services .f3 {
  width: 100%;
  position: relative;
  background: #F7F7F7;
  padding: 6vw 8vw;
}
.services .f3 .titBox .cn {
  color: #333333;
}
.services .f3 .f3Swiper {
  width: 100%;
  position: relative;
  opacity: 0;
  margin-top: 3vw;
  background: white;
  border-radius: 1vw;
  padding: 1.5vw;
  overflow: hidden;
}
.services .f3 .f3Swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .f3 .f3Swiper .swiper-slide .imgBox {
  width: 50%;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
}
.services .f3 .f3Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.5s all;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.15);
  background-size: cover !important;
}
.services .f3 .f3Swiper .swiper-slide .imgBox:hover .img {
  transform: scale(1.1);
}
.services .f3 .f3Swiper .swiper-slide .text {
  width: 50%;
  padding: 0 3vw;
  position: relative;
}
.services .f3 .f3Swiper .swiper-slide .text .icon {
  width: 3vw;
  position: absolute;
  top: -7vw;
}
.services .f3 .f3Swiper .swiper-slide .text .name {
  font-size: 1.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.7;
  overflow: hidden;
  margin: 1vw 0;
}
.services .f3 .f3Swiper .swiper-slide .text .des {
  font-size: 1.1vw;
  line-height: 1.7;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.services .f3 .f3Swiper .swiper-pagination {
  width: auto;
  left: 4vw;
  bottom: 3vw;
}
.services .f3 .f3Swiper .swiper-pagination .swiper-pagination-bullet {
  transition: 0.3s all;
  background: #1282CB;
}
.services .f3 .f3Swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 1.5vw;
  border-radius: 5px;
}
.services .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.services .f4 .titBox .cn {
  color: #333333;
}
.services .f4 .f4Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}
.services .f4 .f4Box .item {
  width: 25%;
  height: 25vw;
  position: relative;
  border-radius: 1vw;
  background: #F5F5F7;
  overflow: hidden;
  padding: 2vw;
}
.services .f4 .f4Box .item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s all;
  background-blend-mode: multiply;
  background-size: cover !important;
}
.services .f4 .f4Box .item .tit {
  font-size: 1.2vw;
  font-weight: 500;
  padding-bottom: 1vw;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.services .f4 .f4Box .item .icon {
  width: 8vw;
  margin: 3vw auto;
}
.services .f4 .f4Box .item .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  position: relative;
  z-index: 2;
}
.services .f4 .f4Box .item:hover .bg {
  opacity: 1;
}
.services .f4 .f4Box .item:hover .tit {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.services .f4 .f4Box .item:hover .des {
  color: white;
}
.contactUs .f2{
  width: 100%;
  padding: 6vw 8vw;
  display: flex;
  justify-content: space-between;
}
.contactUs .f2 .left{
  width: 50%;
}
.contactUs .f2 .left .txt{
  font-size: 1.5vw;
  font-weight: 500;
}
.contactUs .f2 .left .qrcode {
  width: 6vw;
  text-align: center;
  font-size: 0.85vw;
  margin-top: 3vw;
}
.contactUs .f2 .left .qrcode img {
  margin-bottom: 0.5vw;
  border-radius: 0.5vw;
  border: 1px solid #D9D9D9;
}
.contactUs .f2 .right{
  width: 50%;
}
form .formBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .formBox .inputItem{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
form .formBox .inputBox {
  width: 48%;
  margin-top: 1.5vw;
  border: 1px solid #D9D9D9;
  border-radius: .5vw;
}
form .formBox .inputBox input {
  width: 100%;
  background: transparent;
  border: transparent;
  outline: none;
  padding: .8vw 1vw;
  font-size: 1vw;
  font-family: Regular;
}
form .formBox .textareaBox {
  width: 100%;
  margin-top: 1.5vw;
  border: 1px solid #D9D9D9;
  border-radius: .5vw;
}
form .formBox .textareaBox textarea {
  width: 100%;
  height: 9.1vw;
  background: transparent;
  border: transparent;
  outline: none;
  padding: 1vw;
  font-size: 1vw;
  font-family: Regular;
  resize: none;
}
form .formBox .submit {
  width: 30%;
  background: #1282CB;
  font-size: .9vw;
  border-radius: .5vw;
  padding: .7vw 0;
  color: white;
  text-align: center;
  margin-top: 1vw;
  cursor: pointer;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: white;

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

  .sp_logo {
    padding: 5px 15px;
    float: left;
  }

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

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

  .sp_nav span {

    display: block;

    background: #1282CB;

    width: 30px;

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

    left: 10px;

    transition: all ease .35s

  }

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

    top: 15px;

  }

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

    top: 25px

  }

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

    top: 35px

  }

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

    top: 25px;

    transform: rotate(45deg)

  }

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

    width: 0

  }

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

    top: 25px;

    transform: rotate(-45deg)

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

    right: 85% !important;

  }
  .nav_show {

    right: 0;

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

    overflow: hidden;

    border-top: 0

  }

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

    /*float: left;*/

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

  }

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

    float: right;

    width: 70px;

    overflow: hidden;

    line-height: 30px;

    margin-top: 5px

  }

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

    width: 35px;

    float: left;

    border-left: 1px #ddd solid;

    text-align: center;

    color: #999

  }

  .sjj_nav ul li i {

    position: absolute;

    top: 5px;

    right: 0;

    height: 30px;

    padding: 0 7px

  }

  .sjj_nav ul li i svg {

    transform: rotate(-90deg);

    transition: all ease .35s

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    transform: rotate(0)

  }

  .sjj_nav ul li {

    border-top: 1px #ddd solid;

    position: relative;

    line-height: 55px;

    font-size: 14px

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

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

  }

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

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

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;
    text-transform: uppercase;
  }
  .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: #1282CB;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #1282CB;

  }

  .sjj_nav ul li ul li > ul {

    margin-left: 10px

  }
  .sjj_nav .iconBox{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15vw;
  }
  .sjj_nav .iconBox .icon{
    width: 50px;
    margin: 0 3vw;
    display: inline-block;
  }
  .sp_flex .sjj_nav .close{
    position: absolute;
    right: 4vw;
    top: 1vw;
    font-size: 22px;
    color: #1282CB;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  main{
    margin-top: 50px !important;
  }
  .titBox .cn {
    font-size: 26px;
    font-weight: 500;
  }
  .titBox .en {
    font-size: 12px;
    line-height: 1.7;
  }
  .more {
    font-size: 14px;
    padding: 2vw;
    line-height: 4vw;
  }
  .more p {
    padding: 0 8vw 0 2vw;
  }
  .more .icon {
    width: 6vw;
    height: 6vw;
    right: 1vw;
    line-height: 6vw;
  }
  .more .icon i {
    right: 1.5vw;
  }
  .more:hover .icon {
    width: 92%;
  }
  .index .f1 {
    height: 60vw;
  }
  .index .f1 .f1Swiper .swiper-slide .txt .t {
    font-size: 16px;
  }
  .index .f1 .f1Swiper .swiper-slide .txt .d {
    font-size: 24px;
    margin-top: 3vw;
  }
  .index .f1 .f1Swiper .f1-pagination .swiper-pagination-bullet {
    width: 30px;
    margin: 0 1vw;
  }
  .index .f2 {
    padding: 10vw 5vw;
  }
  .index .f2 .f2Text {
    display: block;
  }
  .index .f2 .f2Text .text {
    width: 100%;
    margin-top: 3vw;
  }
  .index .f2 .f2Text .text .des {
    font-size: 16px;
  }
  .index .f2 .f2Box {
    flex-wrap: wrap;
  }
  .index .f2 .f2Box .item {
    width: 50%;
    margin: 3vw 0;
    color: #1282CB;
  }
  .index .f2 .f2Box .item:nth-child(odd) {
    top: inherit;
  }
  .index .f2 .f2Box .item .d {
    font-size: 16px;
  }
  .index .f2 .f2Box .item .num .count-number {
    font-size: 36px;
  }
  .index .f2 .f2Box .item .num font {
    font-size: 20px;
  }
  .index .f2 .f2Box .item .num span {
    font-size: 16px;
    margin-left: 2vw;
  }
  .index .f2 .f2Box .item::before {
    background: linear-gradient(180deg, #1282CB 0%, rgba(18, 130, 203, 0.15) 100%);
  }
  .index .f2 .f2Bg {
    width: 100%;
    top: inherit;
    bottom: -15vw;
  }
  .index .f3 {
    background: #f6f6f6 !important;
    height: auto;
    margin-top: 15vw;
    padding: 10vw 5vw;
  }
  .index .f3 .titBox .cn{
    color: #1282CB;
  }
  .index .f3 .titBox .en{
    color: #999999;
  }
  .index .f3 .textBox .img{
    width: 100%;
    margin-top: 5vw;
  }
  .index .f3 .textBox .text{
    color: #333333;
    margin: 3vw 0 8vw 0;
    display: block;
  }
  .index .f3 .f3Box .item.active .itsB .d {
    display: none;
  }
  .index .f3 .f3Box .item .itsA .txt .t2 {
    display: none;
  }
  .index .f3 .textBox {
    width: 100%;
    margin-top: 3vw;
  }
  .index .f3 .textBox .text .t {
    font-size: 20px;
  }
  .index .f3 .textBox .text .d {
    font-size: 16px;
    margin: 3vw 0;
  }
  .index .f3 .f3Box {
    bottom: 0;
    gap: 3vw;
    display: none;
  }
  .index .f3 .f3Box .item {
    border-radius: 10px 10px 0 0;
  }
  .index .f3 .f3Box .item .itsA {
    padding: 1vw;
  }
  .index .f3 .f3Box .item .itsA .txt {
    width: 100%;
    text-align: center;
  }
  .index .f3 .f3Box .item .itsA .txt .t {
    font-size: 14px;
    line-height: inherit;
  }
  .index .f3 .f3Box .item .itsA .icon {
    display: none;
  }
  .index .f3 .f3Box .item .itsB {
    width: 100%;
    text-align: center;
  }
  .index .f3 .f3Box .item.active .itsB .icon {
    display: none;
  }
  .index .f3 .f3Box .item.active .itsB {
    padding: 1vw;
  }
  .index .f3 .f3Box .item.active .itsB .t {
    font-size: 14px;
    line-height: inherit;
    margin: 0;
  }
  .index .f3 .f3Box .item.active {
    height: 7vw;
    border-radius: 10px 10px 0 0;
  }
  .index .f4 {
    padding: 10vw 5vw;
  }
  .index .f4 .titBox .des {
    font-size: 16px;
    margin: 5vw 0;
  }
  .index .f4 .f4Box {
    display: block;
    margin-top: 5vw;
  }
  .index .f4 .f4Box .left {
    width: 100%;
    height: 95vw;
  }
  .index .f4 .f4Box .left .textBox {
    padding: 10vw 5vw;
  }
  .index .f4 .f4Box .left .textBox .t {
    font-size: 20px;
  }
  .index .f4 .f4Box .left .textBox .d {
    width: 100%;
    font-size: 16px;
    margin-top: 5vw;
  }
  .index .f4 .f4Box .left .textBox .more {
    position: relative;
    bottom: inherit;
    margin-top: 5vw;
  }
  .index .f4 .f4Box .right {
    width: 100%;
  }
  .index .f4 .f4Box .right .item {
    height: 25vw;
    margin-top: 5vw;
    margin-bottom: 0;
  }
  .index .f4 .f4Box .right .item .textBox .t {
    font-size: 20px;
  }
  .index .f4 .f4Box .right .item .textBox {
    width: 100%;
    text-align: center;
  }
  .index .f5 {
    padding: 10vw 5vw;
  }
  .index .f5 .f5Box {
    display: block;
  }
  .index .f5 .f5Box .item {
    width: 100%;
    display: block;
    margin-top: 5vw;
  }
  .index .f5 .f5Box .item .img {
    height: 50vw;
  }
  .index .f5 .f5Box .item .textBox {
    height: auto;
    padding: 5vw;
  }
  .index .f5 .f5Box .item .textBox .labs {
    font-size: 14px;
  }
  .index .f5 .f5Box .item .textBox .labs .lab {
    padding: 1vw 2vw;
  }
  .index .f5 .f5Box .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0 0 0;
  }
  .index .f5 .f5Box .item .textBox .des {
    display: none;
  }
  .index .f5 .f5Box .item .textBox .more {
    display: none;
  }
  .index .f5 .f5Box .item::before {
    content: inherit;
  }
  .index .f5 .f5Box .item:hover .img {
    margin-top: 0;
  }
  .index .f5 .f5Box .item:hover {
    color: #333333;
    background: white;
  }
  .index .f5 .f5Box .item:hover .textBox {
    height: auto;
  }
  footer {
    padding: 0 5vw;
  }
  footer .footer {
    padding: 5vw 0;
    display: block;
  }
  footer .footer .footerNav {
    display: none;
  }
  footer .footer .left .logo {
    width: 30vw;
  }
  footer .footer .left .txt {
    margin-top: 5vw;
  }
  footer .footer .left .txt .tit {
    font-size: 18px;
  }
  footer .footer .left .txt .phones {
    font-size: 16px;
    margin: 5vw 0;
  }
  footer .footer .left .txt .address {
    font-size: 16px;
  }
  footer .footerInfo {
    display: block;
    font-size: 14px;
  }
  footer .footerInfo p:last-child {
    text-align: right;
  }
  footer .footer .qrcode {
    width: 20vw;
    font-size: 14px;
    margin: 5vw auto 0 auto;
  }
  footer .footer .qrcode img {
    margin-bottom: 1vw;
  }
  .bannerBox {
    height: 50vw;
  }
  .bannerBox .txt {
    font-size: 26px;
  }
  .bannerBox .txt::before {
    width: 3vw;
    height: 3vw;
    top: -3vw;
  }
  .about .f1 {
    padding: 10vw 5vw 0 5vw;
  }
  .about .f1 .f1Box {
    display: block;
  }
  .about .f1 .f1Box .item {
    width: 100%;
    padding: 5vw;
    margin-bottom: 5vw;
    text-align: center;
  }
  .about .f1 .f1Box .item .t {
    font-size: 22px;
  }
  .about .f1 .f1Box .item .d {
    font-size: 16px;
    margin-top: 1vw;
  }
  .about .f1 .textBox {
    display: block;
    margin-top: 0;
  }
  .about .f1 .textBox .des {
    width: 100%;
    font-size: 16px;
    margin: 5vw 0;
  }
  .about .f2 {
    padding: 5vw 0 0 0;
  }
  .about .f2 .historySwiper {
    margin-top: 5vw ;
    padding: 0 5vw;
  }
  .about .f2 .historySwiper .swiper-slide .year {
    font-size: 18px;
  }
  .about .f2 .historySwiper .swiper-slide-active .year {
    font-size: 36px;
  }
  .about .f2 .historySwiper .swiper-slide .txt {
    margin-top: 8vw;
  }
  .about .f2 .historySwiper .swiper-slide .txt .t {
    font-size: 20px;
  }
  .about .f2 .historySwiper .swiper-slide .txt .d {
    font-size: 16px;
  }
  .about .f2 .historySwiper::before {
    width: 90%;
    top: 15vw;
    opacity: 0.3;
  }
  .about .f2 .historySwiper .swiper-slide-active::before {
    width: 3.5vw;
    height: 3.5vw;
    top: 13.5vw;
    margin-left: -1.7vw;
  }
  .about .f3 {
    padding: 10vw 5vw;
  }
  .about .f3 .honorsSwiper .swiper-slide .name {
    font-size: 16px;
  }
  .about .f3 .honorsSwiper {
    margin-top: 5vw;
  }
  .about .f3 .honorsSwiper .swiper-slide .img {
    height: 60vw;
  }
  .about .f3 .honorsSwiper .swiper-slide .img img {
    width: 40vw;
  }
  .about .f3 .honorsSwiper .swiper-button-prev {
    width: 8vw;
    height: 8vw;
    left: 10vw;
  }
  .about .f3 .honorsSwiper .swiper-button-next {
    width: 8vw;
    height: 8vw;
    right: 10vw;
  }
  .about .f3 .honorsSwiper .swiper-button-next:after,
  .about .f3 .honorsSwiper .swiper-button-prev:after {
    font-size: 10px;
  }
  .solution {
    display: block;
    padding: 10vw 5vw;
  }
  .solution .left {
    display: none;
  }
  .solution .right {
    width: 100%;
    padding: 0;
  }
  .solution .right .item {
    height: auto;
    margin-bottom: 5vw;
    background: #F1F1F1;
  }
  .solution .right .item .imgBg {
    height: 40vw;
  }
  .solution .right .item .textBox {
    width: 100%;
    position: relative;
    bottom: inherit;
    left: inherit;
    height: auto;
    padding: 5vw;
    color: #333333;
  }
  .solution .right .item .textBox .tit {
    font-size: 22px;
  }
  .solution .right .item .textBox .tit .icon {
    width: 6vw;
    filter: invert(0);
  }
  .solution .right .item .textBox .des {
    font-size: 16px;
    -webkit-line-clamp: 4;
    margin: 5vw 0;
  }
  .solution .right .item .textBox .labs {
    flex-wrap: wrap;
    gap: 3vw;
    padding-top: 5vw;
    border-top: 1px solid #D1D1D1;
  }
  .solution .right .item .textBox .labs .lab {
    color: #666666;
    border: 1px solid #999999;
    font-size: 14px;
    padding: 0.5vw 3vw;
  }
  .solution .right .item .textBox .more {
    margin-top: 5vw;
  }
  .solution .right2 {
    width: 100%;
    padding: 0;
  }
  .solution .right2 .textBox {
    display: block;
  }
  .solution .right2 .textBox .text {
    width: 100%;
    padding: 0;
  }
  .solution .right2 .textBox .text .tit {
    font-size: 24px;
  }
  .solution .right2 .textBox .text .des {
    font-size: 16px;
    margin: 3vw 0;
  }
  .solution .right2 .textBox .text .its {
    margin-top: 5vw;
  }
  .solution .right2 .textBox .text .its .t {
    font-size: 20px;
  }
  .solution .right2 .textBox .text .its .labs {
    gap: 3vw;
    padding-top: 3vw;
  }
  .solution .right2 .textBox .text .its .labs .lab {
    color: #666666;
    border: 1px solid #999999;
    font-size: 14px;
    padding: 0.5vw 3vw;
  }
  .solution .right2 .textBox .imgBox {
    width: 100%;
    height: 40vw;
    margin-top: 5vw;
  }
  .solution .right2 .itemBox .item {
    margin-top: 5vw;
    padding: 5vw;
  }
  .solution .right2 .itemBox .item .text {
    display: block;
  }
  .solution .right2 .itemBox .item .text .txt {
    width: 100%;
  }
  .solution .right2 .itemBox .item .text .txt .t {
    font-size: 20px;
  }
  .solution .right2 .itemBox .item .text .txt .d {
    font-size: 16px;
    margin-top: 3vw;
  }
  .solution .right2 .itemBox .item .text .imgBox {
    width: 100%;
    height: 45vw;
    margin-top: 5vw;
  }
  .solution .right2 .itemBox .item .its {
    margin-top: 5vw;
    padding-top: 0;
    display: block;
  }
  .solution .right2 .itemBox .item .its .it {
    width: 100%;
    margin-top: 5vw;
  }
  .solution .right2 .itemBox .item .its .it .t {
    font-size: 17px;
    padding: 1vw 3vw;
  }
  .solution .right2 .itemBox .item .its .it .d {
    font-size: 16px;
    margin-top: 3vw;
  }
  .services .f1 {
    padding: 10vw 5vw;
    overflow: hidden;
  }
  .services .f1 .f1Box {
    display: block;
  }
  .services .f1 .f1Box .left {
    width: 100%;
    height: 75vw;
  }
  .services .f1 .f1Box .left .f1SwiperImg .swiper-slide .img {
    width: 75vw;
    height: 50vw;
  }
  .services .f1 .f1Box .right {
    width: 100%;
    padding-bottom: 15vw;
  }
  .services .f1 .f1Box .right .f1SwiperText {
    height: inherit;
  }
  .services .f1 .f1Box .right .f1SwiperText .swiper-slide {
    opacity: 0.3;
  }
  .services .f1 .f1Box .right .f1SwiperText .swiper-slide-active {
    opacity: 1;
  }
  .services .f1 .f1Box .right .f1SwiperText .swiper-slide .t {
    font-size: 20px;
  }
  .services .f1 .f1Box .right .f1SwiperText .swiper-slide .d {
    width: 100%;
    font-size: 16px;
    margin-top: 3vw;
  }
  .services .f1 .f1Box .right .swiper-button-prev,
  .services .f1 .f1Box .right .swiper-button-next {
    width: 8vw;
    height: 8vw;
  }
  .services .f1 .f1Box .right .swiper-button-next {
    left: 11vw;
  }
  .services .f1 .f1Box .right .swiper-button-prev:after,
  .services .f1 .f1Box .right .swiper-button-next:after {
    font-size: 10px;
  }
  .services .f1 .f1Box .right .swiper-pagination {
    font-size: 16px;
  }
  .services .f2 {
    padding: 10vw 5vw;
  }
  .services .f2 .f2Box {
    display: block;
  }
  .services .f2 .f2Box .item {
    width: 100% !important;
    height: 90vw;
    margin-top: 5vw;
  }
  .services .f2 .f2Box .item .text {
    padding: 5vw;
  }
  .services .f2 .f2Box .item .text .t {
    font-size: 20px;
    margin-bottom: 5vw;
  }
  .services .f2 .f2Box .item .text .des {
    width: 100%;
    font-size: 16px;
    line-height: 1.7;
    opacity: 1;
    height: auto;
  }
  .services .f3 {
    padding: 10vw 5vw;
  }
  .services .f3 .f3Swiper {
    margin-top: 5vw;
    padding: 5vw 5vw 10vw 5vw;
  }
  .services .f3 .f3Swiper .swiper-slide {
    display: block;
  }
  .services .f3 .f3Swiper .swiper-slide .text {
    width: 100%;
    padding: 0;
  }
  .services .f3 .f3Swiper .swiper-slide .text .icon {
    width: 8vw;
    position: relative;
    top: inherit;
  }
  .services .f3 .f3Swiper .swiper-slide .text .name {
    font-size: 20px;
    margin: 3vw 0;
  }
  .services .f3 .f3Swiper .swiper-slide .text .des {
    font-size: 16px;
  }
  .services .f3 .f3Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .services .f3 .f3Swiper .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 3vw;
  }
  .services .f3 .f3Swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 5vw;
  }
  .services .f4 {
    padding: 10vw 5vw;
  }
  .services .f4 .f4Box {
    display: block;
  }
  .services .f4 .f4Box .item {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-top: 5vw;
  }
  .services .f4 .f4Box .item .tit {
    font-size: 20px;
    padding-bottom: 5vw;
  }
  .services .f4 .f4Box .item .icon{
    width: 30vw;
    margin: 15vw auto;
  }
  .services .f4 .f4Box .item .des {
    font-size: 16px;
  }
  .news {
    padding: 0 5vw 10vw 5vw;
  }
  .news .tits {
    font-size: 22px;
  }
  .news .tits::before {
    width: 3vw;
    height: 3vw;
    top: -3vw;
  }
  .news .f1Swiper {
    margin-top: 5vw;
    padding: 3vw 3vw 5vw 3vw;
  }
  .news .f1Swiper .swiper-slide {
    display: block;
  }
  .news .f1Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 50vw;
  }
  .news .f1Swiper .swiper-slide .text {
    width: 100%;
    padding: 3vw;
  }
  .news .f1Swiper .swiper-slide .text .time {
    font-size: 14px;
  }
  .news .f1Swiper .swiper-slide .text .name {
    font-size: 16px;
  }
  .news .f1Swiper .swiper-slide .text .des {
    display: none;
  }
  .news .f1Swiper .swiper-slide .text .more {
    display: none;
  }
  .news .f1Swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 5vw;
  }
  .news .f1Swiper .swiper-pagination {
    width: 100%;
    left: inherit;
  }
  .news .newsBox {
    display: block;
  }
  .news .newsBox .item {
    width: 100%;
    display: block;
    margin-top: 5vw;
  }
  .news .newsBox .item .img {
    height: 50vw;
  }
  .news .newsBox .item::before {
    content: inherit;
  }
  .news .newsBox .item .textBox {
    height: auto;
    padding: 5vw;
  }
  .news .newsBox .item .textBox .labs {
    font-size: 14px;
  }
  .news .newsBox .item .textBox .labs .lab {
    padding: 1vw 2vw;
  }
  .news .newsBox .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0 0 0;
  }
  .news .newsBox .item .textBox .des {
    display: none;
  }
  .news .newsBox .item .textBox .more {
    display: none;
  }
  .news .newsBox .item::before {
    content: inherit;
  }
  .news .newsBox .item:hover .img {
    margin-top: 0;
  }
  .news .newsBox .item:hover {
    color: #333333;
    background: white;
  }
  .news .newsBox .item:hover .textBox {
    height: auto;
  }
  .strategy .f1 {
    padding: 10vw 5vw;
  }
  .strategy .f1 .f1Box {
    height: auto;
    padding: 10vw 5vw;
  }
  .strategy .f1 .f1Box .text {
    width: 100%;
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
  }
  .strategy .f1 .f1Box .text .des {
    font-size: 16px;
    text-align: left;
    margin-top: 5vw;
  }
  .strategy .f2 {
    height: auto;
    padding: 10vw 5vw;
  }
  .strategy .f2 .textBox {
    position: relative;
    display: block;
    bottom: inherit;
    padding: 0;
  }
  .strategy .f2 .textBox .tits .t {
    font-size: 22px;
  }
  .strategy .f2 .textBox .tits .d {
    font-size: 16px;
    margin-top: 2vw;
  }
  .strategy .f2 .textBox .text {
    width: 100%;
    margin-top: 5vw;
    padding: 10vw 5vw;
  }
  .strategy .f2 .textBox .text .des {
    font-size: 16px;
    margin-top: 5vw;
  }
  .strategy .f3 {
    background: transparent !important;
    padding: 15vw 5vw;
    overflow: hidden;
  }
  .strategy .f3 .f3Text {
    width: 100%;
  }
  .strategy .f3 .f3Text .des {
    font-size: 16px;
    margin-top: 3vw;
  }
  .strategy .f3 .f3Box {
    padding-top: 0;
    margin-top: 10vw;
  }
  .strategy .f3 .f3Box .f3Item {
    display: block;
  }
  .strategy .f3 .f3Box .f3Item .item {
    width: 100%;
    display: block;
    margin-top: 5vw;
    background: rgba(0, 0, 0, 0.02);
  }
  .strategy .f3 .f3Box .f3Item .item .img {
    height: 50vw;
  }
  .strategy .f3 .f3Box .f3Item .item::before {
    content: inherit;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox {
    height: auto;
    padding: 5vw;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox .labs {
    font-size: 14px;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox .labs .lab {
    padding: 1vw 2vw;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0 0 0;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox .des {
    display: none;
  }
  .strategy .f3 .f3Box .f3Item .item .textBox .more {
    display: none;
  }
  .strategy .f3 .f3Box .f3Item .item::before {
    content: inherit;
  }
  .strategy .f3 .f3Box .f3Item .item:hover .img {
    margin-top: 0;
  }
  .strategy .f3 .f3Box .f3Item .item:hover {
    color: #333333;
    background: white;
  }
  .strategy .f3 .f3Box .f3Item .item:hover .textBox {
    height: auto;
  }
  .strategy .f3 .f3Bg {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .contactUs .f1 {
    display: block;
    padding: 10vw 5vw;
  }
  .contactUs .f1 .textBox {
    width: 100%;
  }
  .contactUs .f1 .textBox .des {
    font-size: 18px;
    margin: 3vw 0;
  }
  .contactUs .f1 .textBox .txt .t {
    font-size: 16px;
  }
  .contactUs .f1 .textBox .txt .d {
    font-size: 16px;
    margin-top: 2vw;
    line-height: 1.7;
  }
  .contactUs .f1 .textBox .links {
    width: 30vw;
    font-size: 14px;
    padding: 3vw;
    border-radius: 1vw;
    margin-top: 5vw;
  }
  .contactUs .f1 .mapImg {
    width: 100%;
    margin-top: 5vw;
  }
  .contactUs .f2{
    padding: 10vw 5vw;
    display: block;
  }
  .contactUs .f2 .left{
    width: 100%;
    text-align: center;
  }
  .contactUs .f2 .left .txt{
    font-size: 22px;
  }
  .contactUs .f2 .left .qrcode{
    width: 20vw;
    font-size: 16px;
    margin: 5vw auto;
  }
  .contactUs .f2 .right{
    width: 100%;
  }
  form .formBox .inputItem{
    display: block;
  }
  form .formBox .inputBox{
    width: 100%;
    margin-top: 3vw;
  }
  form .formBox .inputBox input{
    font-size: 16px;
    padding: 3vw;
  }
  form .formBox .textareaBox{
    margin-top: 3vw;
  }
  form .formBox .textareaBox textarea{
    height: 35vw;
    font-size: 16px;
    padding: 3vw;
  }
  form .formBox .submit{
    width: 100%;
    font-size: 16px;
    padding: 3vw 0;
    margin-top: 3vw;
  }
}
