@font-face {
  font-family: 'iconfont';  /* Project id 5068815 */
  src: url('//at.alicdn.com/t/c/font_5068815_uu4o6nmw9f9.woff2?t=1770630748006') format('woff2'),
  url('//at.alicdn.com/t/c/font_5068815_uu4o6nmw9f9.woff?t=1770630748006') format('woff'),
  url('//at.alicdn.com/t/c/font_5068815_uu4o6nmw9f9.ttf?t=1770630748006') format('truetype');
}
@font-face {
  font-family: Regular;
  /*src: url('../fonts/OPPOSans.ttf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/OPPOSans.ttf')
}
@font-face {
  font-family: Din;
  src: url('../fonts/Din.woff2');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Regular;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
.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: #0055B9;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navSlideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes navSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-ms-keyframes navSlideUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    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(80px);
}
/* 动画触发后的状态 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0);
  /* 重置偏移和skew */
}
.animate-img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}
.animate-img.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
}
.loading img {
  width: 26vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: fadeInOut 2s ease-in-out;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loading::before {
  width: 100%;
  height: 50vh;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  background: white;
  transition: transform 0.8s ease;
  transform: translateY(0);
}
.loading::after {
  width: 100%;
  height: 50vh;
  bottom: 0;
  left: 0;
  content: '';
  position: absolute;
  background: white;
  transition: transform 0.8s ease;
  transform: translateY(0);
}
.loading.hide img {
  opacity: 0;
}
.loading.hide::before {
  transform: translateY(-100%);
}
.loading.hide::after {
  transform: translateY(100%);
}
header {
  width: 100%;
  position: fixed;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  padding: 15px 8vw;
  align-items: center;
  transition: all 0.5s;
  border-radius: 0;
}
header .logo {
  width: 8vw;
  position: relative;
}
header .logo img:nth-child(2) {
  display: none;
}
header .right {
  width: 70vw;
}
header .right nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .right nav ul li {
  text-align: center;
}
header .right nav ul li a {
  color: white;
  font-size: 18px;
  padding: 1.55vw 0;
  position: relative;
}
header .right nav ul li ul {
  position: absolute;
  display: block;
  margin-top: 1vw;
  opacity: 0;
  pointer-events: none;
}
header .right nav ul li ul li {
  margin-right: 0;
  padding: 6px 0;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
header .right nav ul li ul li a {
  font-size: 15px;
  display: block;
  padding: 0;
}
header .right nav ul li i {
  font-size: 22px;
}
header .right nav ul li:last-child {
  margin: 0;
}
header .right nav ul .lang {
  cursor: pointer;
  position: relative;
}
header .right nav ul .lang .icon {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  vertical-align: top;
  background: url(../images/language_icon_2.gif) center no-repeat rgba(0, 85, 185, 0);
  background-size: cover !important;
  border-radius: 50%;
}
header .right nav ul .lang ul {
  width: 3vw;
}
header .right nav ul .lang ul li.active a {
  color: #0055B9;
}
header .right nav ul .search {
  cursor: pointer;
  position: relative;
  color: white;
  display: none;
}
header .right nav ul .search .serachInput {
  position: absolute;
  display: flex;
}
header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: white;
  transition: 0.5s all;
}
header.active {
  background: white;
}
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 li ul {
  opacity: 1;
  pointer-events: all;
}
header.active .right nav ul li ul li {
  opacity: 1;
  transform: translateY(0);
}
header.active .right nav ul li ul li:nth-child(1) {
  transition-delay: 0.1s;
}
header.active .right nav ul li ul li:nth-child(2) {
  transition-delay: 0.2s;
}
header.active .right nav ul li ul li:nth-child(3) {
  transition-delay: 0.3s;
}
header.active .right nav ul li ul li:nth-child(4) {
  transition-delay: 0.4s;
}
header.active .right nav ul li ul li:nth-child(5) {
  transition-delay: 0.5s;
}
header.active .right nav ul li ul li:nth-child(6) {
  transition-delay: 0.6s;
}
header.active .right nav ul li ul li:nth-child(7) {
  transition-delay: 0.7s;
}
header.active .right nav ul a:hover {
  color: #0055B9;
}
header.active .right nav ul .lang {
  color: #333333;
}
header.active .right nav ul .lang .icon {
  background: url(../images/language_icon_2.gif) center no-repeat #0055b9;
}
header.active .right nav ul .search {
  color: #333333;
}
header.active2 {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header.active2 .logo img:nth-child(1) {
  display: none;
}
header.active2 .logo img:nth-child(2) {
  display: block;
}
header.active2 .right nav ul li a {
  color: #333333;
}
header.active2 .right nav ul a:hover {
  color: #0055B9;
}
header.active2 .right nav ul .lang {
  color: #333333;
}
header.active2 .right nav ul .lang .icon {
  background: url(../images/language_icon_2.gif) center no-repeat #0055b9;
}
header.active2 .right nav ul .search {
  color: #333333;
}
header.active::before {
  height: 16rem;
}
footer {
  width: 100%;
  height: auto;
  z-index: 10;
  background: url('../images/footer.jpg') center no-repeat;
  background-size: cover !important;
  position: relative;
  padding: 1vw 8vw 2vw 8vw;
  margin-top: 7vw;
}
footer .footerBg {
  width: 100%;
  height: 7vw;
  position: absolute;
  top: -6vw;
  left: 0;
  overflow: hidden;
}
footer .footerBg .anm{
  animation: wave 12s linear infinite;
  background: url('../images/footerBg2.png') repeat-x;
  background-position-y: 0;
  background-size: auto 100%;
  width: 350%;
  height: 7vw;
}
@keyframes wave {
  0% {
    background-position-x: 0;
    transform: scaleX(100%);
  }
  50% {
    transform: scaleX(110%);
  }
  to {
    background-position-x: 100%;
    transform: scaleX(100%);
  }
}
footer.active {
  transform: translateY(0);
  opacity: 1;
}
footer .logo {
  width: 27vw;
}
footer .footerNav {
  width: 100%;
  margin: 3vw 0 0 0;
}
footer .footerNav ul {
  display: flex;
  justify-content: space-between;
}
footer .footerNav ul li a {
  font-size: 1vw;
  font-family: Medium;
  color: white;
}
footer .footerNav ul li ul {
  display: block;
  margin-top: 2vw;
}
footer .footerNav ul li ul li {
  margin-bottom: 0.5vw;
  text-align: left;
  position: relative;
}
footer .footerNav ul li ul li a {
  font-size: 0.8vw;
  font-family: Regular;
  position: relative;
  opacity: 0.8;
  color: white;
}
footer .footerNav ul li 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 .footerNav ul li ul li a:hover {
  opacity: 1;
}
footer .footerNav ul li ul li a:hover::after {
  width: 100%;
  left: 0;
}
footer .footerNav ul li:last-child {
  margin-right: 0;
}
footer .linkBox {
  text-align: right;
  color: white;
  font-size: 1vw;
  display: flex;
  justify-content: right;
  align-items: end;
}
footer .linkBox .link {
  margin-left: .5vw;
  display: flex;
}
footer .linkBox .link a {
  color: white;
  font-size: 1.5vw;
  margin-left: 1vw;
  text-align: center;
}
footer .linkBox .link a p{
  font-size: .8vw;
}
footer .footerInfo {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2vw 0 0 0;
  margin-top: 2vw;
  color: white;
  font-size: 0.9vw;
  display: flex;
  justify-content: space-between;
}
footer .footerInfo a {
  color: white;
  opacity: .6;
}
footer .niu {
  width: 8vw;
  position: absolute;
  bottom: 0;
  right: 0;
}
.more {
  color: #666666;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
  transition: 0.3s all;
}
.more .icon {
  width: 1.5vw;
  height: 1.5vw;
  background: #0055B9;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5vw;
  font-size: 0.7vw;
  margin-left: 1vw;
}
.more:hover {
  letter-spacing: 3px;
}
.backBoxs {
  position: absolute;
  right: 1vw;
  display: block;
  bottom: 50px;
  background: rgba(0, 84, 184, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  border-radius: 3vw;
  padding: 8px;
  z-index: 50;
}
.backBoxs .tianmao {
  width: 45px;
  margin: 0 auto;
  color: #666666;
  font-size: 14px;
  text-align: center;
  border: 1px solid rgba(0, 84, 184, 0.5);
  border-radius: 3vw;
  padding: 8px  5px;
  background: white;
  margin-bottom: 5px;
  display: block;
}
.backBoxs .backTops {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
.backBoxs .backTops:hover {
  background-color: #0055B9;
  color: #fff;
}
.backBoxs.active {
  bottom: 50px;
}
.bannerBox {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}
.productBanner{
  height: 100vh;
}
.bannerBox .banner {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transform: scale(1.1);
  animation: bannerAnm 1s ease-in-out forwards;
}
@keyframes bannerAnm {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bannerBox .text {
  position: absolute;
  left: 8vw;
  bottom: 6vw;
  color: white;
}
.bannerBox .text .cn {
  font-size: 3vw;
  font-weight: 500;
}
.bannerBox .text .en {
  font-size: 1.5vw;
  text-transform: uppercase;
  font-weight: 300;
}
.bannerBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 10vw;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(41, 118, 190, 0.5) 0%, rgba(41, 118, 190, 0) 100%);
}
.titBox {
  text-align: center;
}
.titBox .tit {
  font-size: 2vw;
  font-weight: 500;
}
.titBox .des {
  font-size: 1vw;
  margin-top: 1vw;
}
.index {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.index .f1 .f1Link {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.index .f1 .f1Link .link {
  position: absolute;
  display: block;
}
.index .f1 .f1Link .link .mc_a1t_dian {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  position: relative;
  border: 7px solid #e62129;
  border-radius: 50%;
}

.index .f1 .f1Link .link .mc_a1t_dian::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(230, 33, 41, 0.2);
  animation: boderM 3s 0.75s infinite;
}

.index .f1 .f1Link .link .mc_a1t_dian::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(230, 33, 41, 0.2);
  animation: boderM 3s infinite;
}

@keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes bordershow {
  50% {
    box-shadow: 0 0 10px 0 rgba(230, 33, 41, 1);
  }
}
.index .f1 .f1Link .link .mask {
  opacity: 0;
  display: grid;
  grid-auto-flow: column;
  z-index: 5;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-radius: 5vw;
  transition: background 0.7s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: relative;
  padding: 0 2vw;
  height: 3vw;
  color: white;
  margin-top: -2vw;
  margin-left: 1.5vw;
  border: 3px solid transparent;
  transition: .5s all;
}
.index .f1 .f1Link .link .mask .cir {
  position: relative;
  background: transparent;
  border-radius: 50%;
  margin-right: 0.5vw;
  transition: border-color 0.6s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.index .f1 .f1Link .link .mask .cir img {
  position: relative;
  width: 1vw;
  height: 1vw;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  animation: cirImg 1.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) infinite;
}
@keyframes cirImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.index .f1 .f1Link .link .mask .cir::before {
  content: '';
  position: absolute;
  width: 1vw;
  height: 1vw;
  top: 0;
  left: 0;
  border: 3px  solid white;
  border-radius: 50%;
  animation: cirImg2 1.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) infinite;
}
@keyframes cirImg2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.index .f1 .f1Link .link .mask small {
  line-height: 3vw;
  text-shadow: 0 2px 2px #378cee;
  font-size: 1vw;
  transition: all 0.7s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  white-space: nowrap;
  position: relative;
}
.index .f1 .f1Link .link .mask:hover {
  border: 3px solid #378CEE;
  background: #fff;
}
.index .f1 .f1Link .link .mask:hover .cir {
  border-color: transparent;
}
.index .f1 .f1Link .link .mask:hover .cir img {
  opacity: 1;
}
.index .f1 .f1Link .link .mask:hover small {
  color: #0055B9;
  text-shadow: none;
}
.index .f1 .f1Link .link:hover .mask{
  opacity: 1;
}
.index .f1 .f1Link .mask:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 5vw;
  z-index: 0;
  background: linear-gradient(180deg, rgba(99, 229, 242, 0.8), rgba(0, 84, 184, 0.8));
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
}
.index .f1 .f1Link .mask:hover::before{
  background: white;
}
.index .f1 .f1Link .mask:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3px;
  right: 0;
  margin: auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 5vw;
  border: 3px solid white;
  mask-image: linear-gradient(120deg, #000, rgba(0, 84, 184, 0.8) 50%, #000);
}
.index .f1 .f1Link .link:nth-child(1) {
  top: 60%;
  left: 13%;
}
.index .f1 .f1Link .link:nth-child(2) {
  top: 62%;
  left: 30%;
}
.index .f1 .f1Link .link:nth-child(3) {
  top: 22%;
  left: 48%;
}
.index .f1 .f1Link .link:nth-child(4) {
  top: 45%;
  left: 42%;
}
.index .f1 .f1Link .link:nth-child(5) {
  top: 70%;
  left: 60%;
}
.index .f1 .f1Link .link:nth-child(6) {
  top: 44%;
  left: 77%;
}
.index .f1 .f1Link .link:nth-child(7) {
  top: 69%;
  left: 83.5%;
}
.index .f1 .f1Bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover !important;
}
.index .f1 .f1Bg video{
  width: 100%;
  height: 103.5%;
  object-fit: cover !important;
}
.index .f1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 10vw;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(41, 118, 190, 0) 100%);
}
.index .f2 {
  width: 100%;
  height: auto;
  position: relative;
  background: url('../images/img2.jpg') center no-repeat;
  background-size: cover !important;
  padding: 8vw;
}
.index .f2 .f2Box {
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2vw;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px 0 #f0f0f0;
  padding: 1vw 5vw;
}
.index .f2 .f2Box .text {
  width: 50%;
}
.index .f2 .f2Box .text .icon {
  width: 4vw;
}
.index .f2 .f2Box .text .txt {
  font-size: 1.2vw;
  line-height: 2;
  color: #5E6A71;
  margin: 4vw 0;
}
.index .f2 .f2Box .text .info {
  color: #434343;
  font-size: 1.3vw;
}
.index .f3 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 5vw;
  background: #EBF5FF;
}
.index .f3 .tit {
  font-size: 2vw;
  font-weight: 500;
  text-align: center;
}
.index .f3 .f3Swiper {
  width: 70%;
  margin: 3vw auto;
  position: relative;
  border-radius: 5vw;
  box-shadow: 0 0 10px 0 #f0f0f0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5vw;
}
.index .f3 .f3Swiper .swiper-slide {
  text-align: center;
  padding: 0.5vw 0;
  cursor: pointer;
}
.index .f3 .f3Swiper .swiper-slide .t {
  font-size: 1.1vw;
  line-height: 1.5;
}
.index .f3 .f3Swiper .swiper-slide .des {
  color: #999999;
  font-size: 0.9vw;
}
.index .f3 .f3Swiper .swiper-slide-thumb-active {
  background: #378CEE;
  border-radius: 5vw;
  box-shadow: 0 0 10px 0 #f0f0f0;
  color: white;
}
.index .f3 .f3Swiper .swiper-slide-thumb-active .des{
  color: white;
}
.index .f3 .f3Swiper2 {
  width: 80%;
  padding: 0 10vw;
  position: relative;
  margin: 3vw auto 0 auto;
}
.index .f3 .f3Swiper2 .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f3 .f3Swiper2 .swiper-slide .text {
  width: 50%;
}
.index .f3 .f3Swiper2 .swiper-slide .text .textAnm p,
.index .f3 .f3Swiper2 .swiper-slide .text .textAnm div {
  transform: translate(0px, 53px);
  transition: 1s 0.5s all;
}
.index .f3 .f3Swiper2 .swiper-slide .text .textAnm.open p {
  transform: translate(0, 0);
}
.index .f3 .f3Swiper2 .swiper-slide .text .textAnm.open div {
  transform: translate(0, 0);
}
.index .f3 .f3Swiper2 .swiper-slide .text .t {
  font-size: 2.2vw;
  font-weight: 500;
  overflow: hidden;
}
.index .f3 .f3Swiper2 .swiper-slide .text .d {
  font-size: 1vw;
  color: #666666;
  margin: 1vw 0;
  overflow: hidden;
}
.index .f3 .f3Swiper2 .swiper-slide .text .more {
  margin-top: 3vw;
  overflow: hidden;
}
.index .f3 .f3Swiper2 .swiper-slide .imgBox {
  width: 50%;
  position: relative;
}
.index .f3 .f3Swiper2 .swiper-slide .imgBox .img {
  width: 30vw;
  float: right;
  transform: scale(0);
  transition: 0.5s 0.6s all;
}
.index .f3 .f3Swiper2 .swiper-slide .imgBox::before {
  content: '';
  position: absolute;
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
  background: #84BDFF;
  z-index: -1;
  left: 25%;
  transform: scale(0);
  transition: 0.5s 0.3s all;
}
.index .f3 .f3Swiper2 .swiper-slide .imgBox.open .img {
  transform: scale(1);
}
.index .f3 .f3Swiper2 .swiper-slide .imgBox.open::before {
  transform: scale(1);
}
.index .f3 .swiper-button-next {
  right: 0;
  opacity: 0;
}
.index .f3 .swiper-button-prev {
  left: 0;
  opacity: 0;
}
.index .f3 .swiper-button-next:after,
.index .f3 .swiper-button-prev:after {
  color: #A4A4A4;
  font-weight: 100;
}
.index .f3 .swiper-pagination {
  width: auto;
  position: absolute;
  left: 20vw;
  bottom: inherit;
  text-align: center;
  z-index: 10;
  margin-top: -3vw;
}
.index .f3 .swiper-pagination .current {
  font-size: 0.9vw;
  font-weight: 500;
}
.index .f3 .swiper-pagination .separator {
  font-size: 0.9vw;
  color: #666;
  margin: 0 0.5vw;
}
.index .f3 .swiper-pagination .total {
  font-size: 0.9vw;
  color: #666;
}
.index .f3 .f3Bg {
  width: 100%;
}
.index .f4 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.index .f4 .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding: 0 10%;
}
.index .f4 .text-content {
  color: white;
  max-width: 50%;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
}
.index .f4 .text-content .textAnm p,
.index .f4 .text-content .textAnm div {
  transform: translate(0px, 100px);
  transition: 1.2s all;
}
.index .f4 .text-content .tit {
  overflow: hidden;
}
.index .f4 .text-content .tit .cn {
  font-size: 2.5vw;
  font-weight: 500;
}
.index .f4 .text-content .tit .en {
  font-size: 0.9vw;
}
.index .f4 .text-content .tit p {
  font-size: 1vw;
  margin-top: 1vw;
}
.index .f4 .text-content .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 3vw;
}
.index .f4 .text-content .more {
  color: white;
  margin-top: 2vw;
}
.index .f4 .text-content.active {
  pointer-events: auto;
  opacity: 1;
}
.index .f4 .text-content.active .textAnm p {
  transform: translate(0, 0);
}
.index .f4 .text-content.active .textAnm div {
  transform: translate(0, 0);
}
.index .f4 .thumbnail-carousel {
  width: 55%;
  position: absolute;
  top: 35%;
  right: 0;
  z-index: 8;
  overflow: hidden;
}
.index .f4 .slider-background-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: perspective(1px);
}
.index .f4 .slider_background.is-active {
  z-index: 10;
  background-image: linear-gradient(143deg, #0055B9, #ffffff 21%, #ffffff 41%, #0055B9 60%, #ffffff 78%, #0055B9);
  position: absolute;
  inset: 0%;
  opacity: 0;
  transition: 1s all;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(148deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.index .f4 .thumbnail-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.index .f4 .thumbnail-slide {
  position: relative;
  height: 20vw;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  z-index: 10;
  background: transparent;
}
.index .f4 .thumbnail-slide:hover .slider_background {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.index .f4 .thumbnail-slide.stagger-animation {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.index .f4 .swiper-slide-active {
  z-index: 3;
  /* border: 2px solid white; */
}
.index .f4 .thumbnail-slide.active {
  border: 2px solid white;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.index .f4 .thumbnail-slide.zooming {
  position: absolute;
  z-index: 6;
  opacity: 1 !important;
  transition: 0.7s ease;
  /* transition: .5s cubic-bezier(0.25, 0.46, 0.45, .5); */
  transform-origin: center center;
}
.index .f4 .thumbnail-slide.zoomed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  border: none;
  opacity: 1 !important;
  box-shadow: none;
  transform: translate(0, 0) scale(1);
  transition: all 0.8s ease-in;
  border-radius: 0;
  padding: 0;
  transform-origin: center center;
  overflow: hidden;
}
.index .f4 .thumbnail-slide.zoomed img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  border-radius: 0;
}
.index .f4 .thumbnail-slide img {
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 8px;
  position: relative;
  z-index: 5;
  object-fit: cover;
}
.index .f4 .thumbnail-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2vw;
  z-index: 5;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  text-align: left;
}
.index .f4 .thumbnail-content .number {
  font-size: 2vw;
  font-weight: 400;
}
.index .f4 .thumbnail-content .title {
  font-size: 1.1vw;
}
.index .f4 .carousel-controls {
  position: absolute;
  top: 80%;
  right: 10%;
  z-index: 9;
  display: flex;
  gap: 10px;
}
.index .f4 .carousel-controls .nums {
  width: 40vw;
  line-height: 40px;
  font-size: 1.1vw;
  text-align: right;
  color: white;
}
.index .f4 .carousel-controls .nums::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  left: 6vw;
  top: 1vw;
  background: white;
}
.index .f4 .control-btn {
  width: 2vw;
  height: 2vw;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 0.75vw;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.index .f4 .control-btn.prev {
  transform: rotate(180deg);
}
.index .f4 .control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.index .f5 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #2976BE;
}
.index .f5 .cloudBox {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.index .f5 .cloudBox .cloud1 {
  width: 60vw;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 1s ease;
}
.index .f5 .cloudBox .cloud2 {
  width: 50vw;
  position: absolute;
  left: 0;
  top: 5%;
  transition: all 1s ease;
}
.index .f5 .cloudBox .cloud3 {
  width: 60vw;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 1s ease;
}
.index .f5 .cloudBox .cloud4 {
  width: 70vw;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 1s ease;
}
.index .f5 .cloudBox .cloud5 {
  width: 70vw;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 1s ease;
}
.index .f5 .cloudBox.active .cloud1 {
  width: 30vw;
}
.index .f5 .cloudBox.active .cloud2 {
  width: 20vw;
  top: 25%;
}
.index .f5 .cloudBox.active .cloud3 {
  width: 30vw;
}
.index .f5 .cloudBox.active .cloud4 {
  width: 30vw;
}
.index .f5 .cloudBox.active .cloud5 {
  width: 30vw;
}
.index .f5 .f5Box {
  width: 100%;
  text-align: center;
  color: white;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 110%;
  left: 50%;
}
.index .f5 .f5Box .tit {
  font-size: 2.2vw;
  font-weight: 400;
  margin-bottom: 2vw;
}
.index .f5 .f5Box .up {
  font-size: 0.9vw;
}
.index .f5 .f5Box .f5Item {
  width: 100%;
  position: absolute;
  margin-top: 1vw;
}
.index .f5 .f5Box .f5Item .bgImg {
  width: 45%;
  position: absolute;
  left: 29%;
}
.index .f5 .f5Box .f5Item .yearItem {
  width: 50vw;
  position: relative;
  margin: 0 auto;
  clear: both;
}
.index .f5 .f5Box .f5Item .yearItem .year {
  color: white;
  font-size: 1.2vw;
}
.index .f5 .f5Box .f5Item .yearItem .t {
  font-size: 1vw;
  margin-top: 1vw;
}
.index .f5 .f5Box .f5Item .yearItem .img {
  width: auto;
  height: 12vw;
  margin-top: 1vw;
}
.index .f5 .f5Box .f5Item .yearItem .img img{
  width: auto;
  height: 100%;
}
.index .f5 .f5Box .f5Item .yearItem::before {
  content: '';
  position: absolute;
  width: 0.8vw;
  height: 0.8vw;
  background: white;
  border-radius: 50%;
  top: 0.4vw;
  margin-left: -2vw;
}

/* 直接用循环公式覆盖所有项，无需单独写2-5项 */
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+2) {
    text-align: left;
    left: 25.7vw;
    margin-top: 5vw;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+3) {
    text-align: right;
    left: -4.9vw;
    margin-top: 6vw;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+3) .img {
    float: right;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+3)::before {
    margin-left: 2vw;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+4) {
    text-align: left;
    left: 17.5vw;
    margin-top: 20vw;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+5) {
    text-align: right;
    left: -6.2vw;
    margin: 7vw auto 8vw auto;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+5) .img {
    display: flex;
    justify-content: end;
}
.index .f5 .f5Box .f5Item .yearItem:nth-child(4n+5)::before {
    margin-left: 2vw;
}
.index .f6 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 3vw 8vw;
}
.index .f6 .titBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f6 .titBox .tit {
  font-size: 2.2vw;
  font-weight: 500;
}
.index .f6 .f6Top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
  overflow: hidden;
}
.index .f6 .f6Top .item {
  width: 66%;
  height: 26vw;
  border-radius: 1vw;
  display: block;
  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: white;
  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;
  color: white;
}
.index .f6 .f6Top .item .text .more .icon {
  background: transparent;
}
.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: 26vw;
  position: relative;
  border-radius: 1vw;
  display: block;
  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: white;
  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;
  color: white;
}
.index .f6 .f6Top .item2 .text .more .icon {
  background: transparent;
}
.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;
  border-radius: 1vw;
  padding: 1.5vw 2vw;
  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: #0055B9;
  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;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.index .f6 .f6Box .item .more {
  padding: 0;
  margin-top: 2vw;
  background: transparent;
  color: #0055B9;
}
.index .f6 .f6Box .item .more .icon {
  display: none;
}
.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);
}
.quality {
  width: 100%;
  position: relative;
}
.quality .f1 {
  width: 90%;
  position: relative;
  border-radius: 2vw;
  background: url('../images/img9.jpg') center no-repeat;
  background-size: cover !important;
  margin: 5vw auto 0 auto;
  overflow: hidden;
  padding: 10vw 0;
}
.quality .f1 .titBox {
  color: white;
}
.quality .f1 .f1Box {
  display: flex;
  justify-content: space-between;
  color: white;
  margin-top: 8vw;
}
.quality .f1 .f1Box .item {
  width: 50%;
  text-align: center;
}
.quality .f1 .f1Box .item .icon {
  width: 1.5vw;
  margin: 0 auto;
}
.quality .f1 .f1Box .item .t {
  font-size: 1.5vw;
  margin: 1vw 0;
}
.quality .f1 .f1Box .item .d {
  font-size: 1vw;
  line-height: 1.7;
}
.quality .f1 .f1Box .item .its {
  display: flex;
  justify-content: space-between;
  padding: 0 11vw;
}
.quality .f1 .f1Box .item .its .it {
  margin: 0 1vw;
}
.quality .f1 .f1Box .item .its .it .num {
  font-size: 1.2vw;
}
.quality .f1 .f1Box .item .its .it .d2 {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.quality .f1 .f1Box .item:first-child {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
.quality .f2 {
  width: 100%;
  padding: 5vw 8vw;
}
.quality .f2 .f2Tab {
  width: 100%;
  margin: 2vw auto;
  display: flex;
  justify-content: center;
}
.quality .f2 .f2Tab .tab {
  border: 1px solid #999999;
  color: #666666;
  font-size: 1vw;
  padding: 0.5vw 1.8vw;
  border-radius: 5vw;
  margin: 0 1vw;
}
.quality .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.quality .f2 .f2Box .item {
  width: 32%;
  height: 33vw;
  border-radius: 1vw;
  position: relative;
  transition: 0.5s all;
  overflow: hidden;
}
.quality .f2 .f2Box .item .imgBox {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
  overflow: hidden;
}
.quality .f2 .f2Box .item .text {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 2vw;
  color: white;
}
.quality .f2 .f2Box .item .text .icon {
  width: 2vw;
  margin: 0 auto;
}
.quality .f2 .f2Box .item .text .t {
  font-size: 1.5vw;
  margin: 1vw 0;
  position: relative;
}
.quality .f2 .f2Box .item .text .t::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 2vw;
  background: white;
  left: 50%;
  margin-top: 3vw;
}
.quality .f2 .f2Box .item .text .d {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 4vw;
}
.quality .f2 .f2Box .item:hover .imgBox {
  transform: scale(1.1);
}
.quality .f3 {
  width: 100%;
  position: relative;
  padding: 2vw 8vw 5vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: linear-gradient(180deg, #ffffff 0%, #EBF5FF 100%);
  overflow: hidden;
}
.quality .f3 .left {
  width: 40%;
}
.quality .f3 .left .titBox {
  text-align: left;
}
.quality .f3 .left .f3Box {
  margin-top: 4vw;
}
.quality .f3 .left .f3Box .item {
  border-radius: 0.5vw;
  overflow: hidden;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  padding: 2vw;
  background: white;
  margin-top: 1vw;
  position: relative;
  cursor: pointer;
}
.quality .f3 .left .f3Box .item .icon::before {
  content: '+';
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 1.8vw;
}
.quality .f3 .left .f3Box .item .t {
  color: #0055B9;
  font-size: 1.2vw;
}
.quality .f3 .left .f3Box .item .d {
  font-size: 0.9vw;
  color: #666666;
  height: 0;
  opacity: 0;
  transition: 0.3s all;
}
.quality .f3 .left .f3Box .active .icon::before {
  content: '—';
  font-size: 1vw;
  font-weight: bold;
}
.quality .f3 .left .f3Box .active .d {
  margin-top: 1vw;
  height: auto;
  opacity: 1;
}
.quality .f3 .right {
  width: 55%;
  height: 33vw;
  border-radius: 1vw;
  overflow: hidden;
}
.quality .f3 .right .imgBox {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
  overflow: hidden;
}
.quality .f3 .right:hover .imgBox {
  transform: scale(1.1);
}
.quality .f4 {
  width: 90%;
  height: auto;
  position: relative;
  background: url('../images/img2.jpg') center no-repeat;
  background-size: cover !important;
  overflow: hidden;
  padding: 4vw;
  display: flex;
  margin: 3vw auto;
  border-radius: 1vw;
  justify-content: space-between;
}
.quality .f4 .titBox {
  padding-top: 2vw;
}
.quality .f4 .f4Swiper {
  width: 85%;
  margin: 0;
  padding: 1vw;
}
.quality .f4 .f4Swiper .swiper-slide {
  background: linear-gradient(180deg, #ffffff 0%, #EBF5FF 100%);
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  padding: 1vw;
  border-radius: 0.5vw;
  display: block;
  cursor: pointer;
}
.quality .f4 .f4Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 12vw;
  overflow: hidden;
  border-radius: 0.5vw;
}
.quality .f4 .f4Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.quality .f4 .f4Swiper .swiper-slide .text {
  padding: 1vw 0;
}
.quality .f4 .f4Swiper .swiper-slide .text .time {
  font-size: 0.85vw;
  color: #999999;
}
.quality .f4 .f4Swiper .swiper-slide .text .name {
  font-size: 1vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.5vw 0 1vw 0;
}
.quality .f4 .f4Swiper .swiper-slide .text .more {
  color: #378CEE;
  font-size: 0.85vw;
}
.quality .f4 .f4Swiper .swiper-slide .text .more i {
  font-size: 0.75vw;
}
.quality .f4 .f4Swiper .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.quality .f4 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: inherit;
  left: 8vw;
  bottom: 5vw;
  top: inherit;
}
.quality .f4 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 4vw;
  bottom: 5vw;
  top: inherit;
}
.quality .f4 .swiper-button-next:after,
.quality .f4 .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.quality .f5 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 2vw 8vw 6vw 8vw;
}
.quality .f5 .titBox {
  text-align: left;
}
.quality .f5 .f4Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quality .f5 .more{
  position: relative;
  top: -3vw;
}
.quality .f5 .f4Box .item {
  width: 15vw;
  height: 22vw;
  border-radius: 1vw;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.quality .f5 .f4Box .item .imgBox {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.quality .f5 .f4Box .item .text {
  width: 100%;
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  left: 0;
  color: white;
  text-align: center;
  padding: 0 1vw;
  transition: 0.5s all;
}
.quality .f5 .f4Box .item .text .t {
  font-size: 1.2vw;
}
.quality .f5 .f4Box .item .text .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 1vw;
  height: 0;
  opacity: 0;
  transition: 0.5s all;
}
.quality .f5 .f4Box .item:nth-child(1) {
  margin-top: 8vw;
}
.quality .f5 .f4Box .itemBox {
  margin-top: -6vw;
}
.quality .f5 .f4Box .itemBox .item {
  height: 15vw;
  margin-bottom: 2vw;
}
.quality .f5 .f4Box .item:nth-child(4) {
  margin-top: 4vw;
}
.quality .f5 .f4Box .item:nth-child(5) {
  margin-top: 1vw;
}
.quality .f5 .f4Box .item:hover .imgBox {
  transform: scale(1.1);
  background-blend-mode: multiply;
}
.quality .f5 .f4Box .item:hover .text {
  top: 50%;
  transform: translateY(-50%);
}
.quality .f5 .f4Box .item:hover .text .d {
  height: auto;
  opacity: 1;
}
.quality .f5::before {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  right: -20vw;
  bottom: -20vw;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, #c4ddfa 0%, rgba(132, 189, 255, 0) 100%);
}
.quality .f6 {
  width: 100%;
  height: 40vw;
  position: relative;
  background: url('../images/img22.jpg') center no-repeat;
  background-size: cover !important;
  padding: 8vw;
}
.quality .f6 .text {
  width: 30vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 0.5vw;
  padding: 4vw 3vw;
  overflow: hidden;
}
.quality .f6 .text i {
  font-size: 1.5vw;
}
.quality .f6 .text .t {
  font-size: 2vw;
  font-weight: 500;
  color: #0055B9;
  margin: 0.5vw 0 1.5vw 0;
}
.quality .f6 .text .d {
  font-size: 1vw;
}
.quality .f7 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 2vw 8vw 6vw 8vw;
}
.quality .f7 .titBox {
  display: flex;
  justify-content: space-between;
}
.quality .f7 .titBox .des {
  width: 70%;
  text-align: left;
  line-height: 1.7;
  margin-top: 0;
}
.quality .f7 .titBox .des .t {
  font-weight: bold;
}
.quality .f7 .titBox .des .d {
  font-size: 0.9vw;
}
.quality .f7 .img {
  width: 100%;
  position: relative;
}
.quality .f8 {
  width: 100%;
  position: relative;
  padding: 0 5vw 5vw 5vw;
}
.quality .f8 .f8Box {
  width: 100%;
  height: 45vw;
  background: url('../images/img25.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1.5vw;
  overflow: hidden;
  padding: 5vw;
  color: white;
}
.quality .f8 .f8Box .f8Swiper {
  width: 100%;
  margin-top: 5vw;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid white;
  border-radius: 1vw;
  overflow: hidden;
  padding: 2vw;
  text-align: center;
}
.quality .f8 .f8Box .f8Swiper .img {
  width: 100%;
  height: 15vw;
  position: relative;
}
.quality .f8 .f8Box .f8Swiper .img img {
  width: auto;
  position: absolute;
  height: 15vw;
}
.quality .f8 .f8Box .f8Swiper .text {
  margin-top: 1vw;
  font-size: 0.9vw;
  position: relative;
  padding: 0 1.2vw;
}
.quality .f8 .f8Box .f8Swiper .text::before {
  width: 1.5vw;
  height: 3vw;
  content: '';
  position: absolute;
  left: 0;
  top: -0.3vw;
  background: url('../images/icon7.png') center no-repeat;
  background-size: contain !important;
}
.quality .f8 .f8Box .f8Swiper .text::after {
  width: 1.5vw;
  height: 3vw;
  content: '';
  position: absolute;
  right: 0;
  top: -0.3vw;
  background: url('../images/icon8.png') center no-repeat;
  background-size: contain !important;
}
.quality .f8 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: white;
  right: inherit;
  right: 6vw;
}
.quality .f8 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: white;
  left: 6vw;
}
.quality .f8 .swiper-button-next:after,
.quality .f8 .swiper-button-prev:after {
  color: #333333;
  font-size: 0.75vw;
}
.quality footer {
  margin-top: 0;
}
.news {
  width: 100%;
  position: relative;
}
.news .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 0;
  background: linear-gradient(180deg, #ffffff 0%, #EBF5FF 100%);
}
.news .f1 .titBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8vw;
}
.news .f1 .titBox .tit {
  font-size: 2vw;
  font-weight: 500;
}
.news .f1 .f1Swiper {
  width: 84%;
  margin: 3vw auto;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: flex;
}
.news .f1 .f1Swiper .swiper-slide .imgBox {
  width: 55%;
  height: 26vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  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: 3vw;
}
.news .f1 .f1Swiper .swiper-slide .text .time {
  font-size: 0.8vw;
}
.news .f1 .f1Swiper .swiper-slide .text .name {
  font-size: 1.5vw;
  font-weight: 400;
  margin: 1vw 0;
  line-height: 1.7;
  text-align: justify;
}
.news .f1 .f1Swiper .swiper-slide .text .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
  text-align: justify;
}
.news .f1 .f1Swiper .swiper-slide .text .more {
  font-size: 0.9vw;
  color: #0055B9;
  margin-top: 2vw;
  display: block;
}
.news .f1 .f1Swiper .swiper-slide .text .more i {
  font-size: 0.8vw;
}
.news .f1 .f1Swiper .swiper-slide::before {
  content: '';
  position: absolute;
  width: 55%;
  height: 24vw;
  left: 1%;
  border-radius: 0.5vw;
  z-index: -1;
  top: 5%;
  background: rgba(0, 85, 185, 0.3);
}
.news .f1 .f1Swiper .swiper-button-next {
  color: #0055B9;
  font-size: 2vw;
  right: inherit;
  top: inherit;
  bottom: 0;
  left: 63%;
}
.news .f1 .f1Swiper .swiper-button-prev {
  color: #0055B9;
  font-size: 2vw;
  left: 59%;
  top: inherit;
  bottom: 0;
}
.news .f1 .f1Swiper .swiper-button-next:after,
.news .f1 .f1Swiper .swiper-button-prev:after {
  content: inherit;
}
.news .f1 .f2Swiper {
  width: 100%;
  margin-top: 4vw;
  padding-left: 8vw;
  overflow: hidden;
}
.news .f1 .f2Swiper .swiper-slide {
  border: 1px solid #E5E5E5;
  border-radius: 0.5vw;
}
.news .f1 .f2Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 10vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.news .f1 .f2Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.news .f1 .f2Swiper .swiper-slide .text {
  width: 100%;
  padding: 1vw;
  background: linear-gradient(180deg, #ffffff 0%, #EBF5FF 100%);
  color: #666666;
}
.news .f1 .f2Swiper .swiper-slide .text .time {
  font-size: 0.8vw;
}
.news .f1 .f2Swiper .swiper-slide .text .name {
  font-size: 1vw;
  font-weight: 400;
  margin-top: 0.5vw;
  line-height: 1.7;
  text-align: justify;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .f1 .f2Swiper .swiper-slide:hover .img {
  transform: scale(1.1);
}
.news .f1 .f2Swiper .swiper-slide:hover .text .name {
  color: #0055B9;
}
.news .f1 .next {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: #0055B9;
  right: inherit;
  bottom: 13vw;
  top: inherit;
  right: 7.8%;
}
.news .f1 .prev {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: #0055B9;
  left: 7%;
  top: inherit;
  bottom: 13vw;
}
.news .f1 .swiper-button-next:after,
.news .f1 .swiper-button-prev:after {
  color: white;
  font-size: 0.8vw;
}
.news .f1B {
  padding: 5vw 0 10vw 0;
}
.news footer {
  margin-top: 0;
}
.newsList {
  width: 100%;
}
.newsList .f1 {
  position: relative;
  padding: 5vw 0 10vw 0;
  background: linear-gradient(180deg, #ffffff 0%, #EBF5FF 100%);
}
.newsList .f1 .titBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8vw;
}
.newsList .f1 .titBox .tit {
  font-size: 2vw;
  font-weight: 500;
}
.newsList .f1 .item {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: space-between;
  padding: 3vw 8vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
}
.newsList .f1 .item .time {
  font-weight: bold;
  padding-top: 2vw;
}
.newsList .f1 .item .time .day {
  font-size: 1.2vw;
}
.newsList .f1 .item .time .year {
  font-size: 0.9vw;
}
.newsList .f1 .item .imgBox {
  width: 25vw;
  height: 15vw;
  position: relative;
  overflow: hidden;
  border-radius: 1vw;
}
.newsList .f1 .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.newsList .f1 .item .text {
  width: 45vw;
  padding: 2vw 10vw 2vw 2vw;
}
.newsList .f1 .item .text .name {
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .f1 .item .text .des {
  font-size: 0.9vw;
  margin-top: 2vw;
  line-height: 1.7;
  text-align: justify;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #5E6A71;
}
.newsList .f1 .item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #0055B9;
  transition: 1s all;
}
.newsList .f1 .item:hover .imgBox .img {
  transform: scale(1.05);
}
.newsList .f1 .item:hover .text .name {
  color: #0055B9;
}
.newsList .f1 .item:hover::before {
  width: 100%;
}
.newsList footer {
  margin-top: 0;
}
.about {
  width: 100%;
  position: relative;
}
.about .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.about .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.about .f1 .f1Box .videoBoxs {
  width: 45%;
  height: 21vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.about .f1 .f1Box .videoBoxs video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.about .f1 .f1Box .videoBoxs .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.about .f1 .f1Box .videoBoxs .play p {
  color: white;
  text-align: center;
  position: relative;
  top: 0.5vw;
  font-size: 1vw;
}
.about .f1 .f1Box .videoBoxs .play .playImg {
  width: 5vw;
  height: 5vw;
  background-size: cover !important;
  animation: playImgAnm 2s linear infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about .f1 .f1Box .videoBoxs .play i {
  font-size: 1.1vw;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #666666;
}
.about .f1 .f1Box .text {
  width: 50%;
  height: 21vw;
  overflow-y: scroll;
  color: #5E6A71;
  font-size: 0.9vw;
  line-height: 2;
  text-align: justify;
}
.about .f1 .f1Item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.about .f1 .f1Item .item {
  width: 23%;
  height: auto;
  text-align: center;
  background: url('../images/img27.jpg') center no-repeat;
  background-size: cover !important;
  border: 1px solid rgba(0, 84, 184, 0.15);
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 1.5vw;
}
.about .f1 .f1Item .item .t {
  font-size: 1.2vw;
  color: #0054B8;
}
.about .f1 .f1Item .item .t2 {
  margin: 1vw 0 0.5vw 0;
  font-size: 1vw;
  font-weight: bold;
}
.about .f1 .f1Item .item .d {
  font-size: 0.85vw;
  line-height: 1.7;
}
.about .f2 {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover !important;
  color: white;
}
.about .f2 .titBox {
  position: absolute;
  top: 10vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.about .f2 .itemBox {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.about .f2 .itemBox .item {
  width: 33.33%;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s all;
}
.about .f2 .itemBox .item .txt {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about .f2 .itemBox .item .txt .t {
  font-size: 1.6vw;
}
.about .f2 .itemBox .item .txt .d {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.about .f2 .itemBox .item:hover {
  backdrop-filter: blur(5px);
}
.about .f2 .itemBox .item:last-child {
  border-right: transparent;
}
.about .f3 {
  width: 100%;
  padding: 5vw 6vw;
  position: relative;
}
.about .f3 .f3Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1vw;
  margin-top: 3vw;
}
.about .f3 .f3Swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.about .f3 .f3Swiper .swiper-slide .text {
  width: 40%;
  border-radius: 1vw;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
  padding: 5vw;
}
.about .f3 .f3Swiper .swiper-slide .text .name {
  font-size: 1.5vw;
}
.about .f3 .f3Swiper .swiper-slide .text .des {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 2vw;
  color: #666666;
}
.about .f3 .f3Swiper .swiper-slide .imgBox {
  width: 58%;
  height: 28vw;
  overflow: hidden;
  border-radius: 1vw;
}
.about .f3 .f3Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.about .f3 .f3Swiper .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: inherit;
  left: 10vw;
  bottom: 3vw;
  top: inherit;
}
.about .f3 .f3Swiper .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 6vw;
  bottom: 3vw;
  top: inherit;
}
.about .f3 .f3Swiper .swiper-button-next:after,
.about .f3 .f3Swiper .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.about .f4 {
  width: 86%;
  height: 40vw;
  position: relative;
  margin: 0 auto;
  padding: 0 5vw;
  border-radius: 1vw;
  overflow: hidden;
  background-size: cover !important;
  color: white;
  padding-top: 10vw;
}
.about .f4 .titBox {
  text-align: left;
}
.about .f4 .des {
  width: 60%;
  margin-top: 2vw;
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
}
.about .f5 {
  width: 100%;
  position: relative;
  padding: 8vw 5vw 5vw 5vw;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.about .f5 .text {
  width: 30%;
  height: 38.5vw;
}
.about .f5 .text .titBox {
  text-align: left;
}
.about .f5 .text .name {
  font-size: 1.2vw;
  color: #0054B8;
  margin-top: 1vw;
}
.about .f5 .text .trip {
  font-size: 1vw;
  color: #0054B8;
  margin-top: 0.5vw;
}
.about .f5 .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  color: #666666;
  margin-top: 1vw;
}
.about .f5 .img {
  width: 30%;
  position: relative;
  z-index: 1;
}
.about .f5 .img img {
  width: 100%;
}
.about .f5 .ry {
  width: 30%;
  height: 38.5vw;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
  border-radius: 1vw;
  overflow: hidden;
  padding-top: 2vw;
}
.about .f5 .ry .tit {
  color: #0054B8;
  font-size: 1.2vw;
  position: relative;
  text-align: center;
}
.about .f5 .ry .tit::before {
  content: '';
  position: absolute;
  width: 1.2vw;
  height: 2.3vw;
  left: 7vw;
  margin-top: -0.2vw;
  background: url('../images/icon9.png') center no-repeat;
  background-size: contain !important;
}
.about .f5 .ry .tit::after {
  content: '';
  position: absolute;
  width: 1.2vw;
  height: 2.3vw;
  right: 6.5vw;
  margin-top: -0.2vw;
  background: url('../images/icon10.png') center no-repeat;
  background-size: contain !important;
}
.about .f5 .ry .ryBox {
  width: 100%;
  height: 20vw;
  overflow-y: scroll;
  margin: 1vw auto;
  color: #5E6A71;
  font-size: 0.85vw;
  line-height: 2;
  padding: 0 2vw;
}
.about .f5 .ry .f5Swiper {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 1vw;
  padding: 2vw;
}
.about .f5 .ry .f5Swiper .swiper-slide img {
  width: auto;
  max-width: inherit;
  height: 9vw;
}
.about .f5::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  right: -35vw;
  top: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, #84BDFF 0%, rgba(132, 189, 255, 0) 100%);
}
.about .f6 {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 1vw;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}
.about .f6 .f6Left {
  width: 45%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 1vw;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
  padding: 2vw;
}
.about .f6 .f6Left .tit {
  color: #0054B8;
  font-size: 1.2vw;
}
.about .f6 .f6Left .f6SwiperL {
  width: 100%;
  height: 27vw;
  position: relative;
  margin-top: 2vw;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide {
  height: 12vw;
  display: flex;
  background: url('../images/img2.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  justify-content: space-between;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .imgBox {
  width: 55%;
  height: 12vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .text {
  width: 50%;
  padding: 2vw;
  position: relative;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .text .time {
  color: #999999;
  font-size: 0.85vw;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .text .name {
  font-size: 1vw;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0.5vw 0 1vw 0;
  line-height: 1.7;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .text .more {
  color: #378CEE;
  font-size: 0.85vw;
  position: absolute;
  bottom: 2vw;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide .text .more i {
  font-size: 0.75vw;
}
.about .f6 .f6Left .f6SwiperL .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.about .f6 .f6Left .swiper-button-next {
  top: 3vw;
  right: 2vw;
}
.about .f6 .f6Left .swiper-button-prev {
  top: 3vw;
  right: 4vw;
  left: inherit;
}
.about .f6 .f6Left .swiper-button-next:after,
.about .f6 .f6Left .swiper-button-prev:after {
  font-size: 0.9vw;
}
.about .f6 .f6Right {
  width: 55%;
  padding: 2vw;
}
.about .f6 .f6Right .tit {
  color: #0054B8;
  font-size: 1.2vw;
}
.about .f6 .f6Right .f6SwiperR {
  width: 100%;
  height: 27vw;
  position: relative;
  margin-top: 2vw;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide {
  background: white;
  border-radius: 1vw;
  overflow: hidden;
  justify-content: space-between;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide .imgBox {
  width: 100%;
  height: 23vw;
  border-radius: 0.5vw;
  overflow: hidden;
  cursor: pointer;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all;
  position: relative;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide .imgBox .img .play {
  position: absolute;
  z-index: 1;
  font-size: 2.5vw;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide .text {
  padding: 0.5vw;
  position: relative;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide .text .name {
  font-size: 0.9vw;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.about .f6 .f6Right .f6SwiperR .swiper-slide:hover .imgBox .play {
  transform: translate(-50%, -50%) scale(1.1);
}
.about .f6 .f6Right .swiper-button-next {
  top: 3vw;
  right: 2vw;
}
.about .f6 .f6Right .swiper-button-prev {
  top: 3vw;
  right: 4vw;
  left: inherit;
}
.about .f6 .f6Right .swiper-button-next:after,
.about .f6 .f6Right .swiper-button-prev:after {
  font-size: 0.9vw;
}
.about .f7 {
  width: 100%;
  height: 50vw;
  background-size: cover !important;
  position: relative;
  margin-top: 5vw;
}
.about .f7 .f7SwiperBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5vw 5vw 0 5vw;
}
.about .f7 .f7SwiperBox .titBox {
  text-align: left;
  padding-left: 2vw;
}
.about .f7 .f7SwiperBox .f7Img {
  width: 20%;
}
.about .f7 .f7SwiperBox .f7Img .img {
  margin-top: 3vw;
}
.about .f7 .f7SwiperBox .f7Swiper {
  width: 70%;
  margin-top: 6vw;
  margin-right: 3%;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide {
  width: 100%;
  height: 22vw;
  background: url('../images/img42.png') center no-repeat;
  background-size: contain !important;
  padding: 2.5vw;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 13vw;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide .text {
  text-align: center;
  color: white;
  margin-top: 1.8vw;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide .text .name {
  font-size: 1vw;
}
.about .f7 .f7SwiperBox .f7Swiper .swiper-slide .text .year {
  font-size: 0.9vw;
}
.about .f7 .f7SwiperBox .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid white;
  right: 8vw;
  top: 7vw;
  background: rgba(0, 0, 0, 0.1);
}
.about .f7 .f7SwiperBox .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid white;
  right: 12vw;
  left: inherit;
  top: 7vw;
  background: rgba(0, 0, 0, 0.1);
}
.about .f7 .f7SwiperBox .swiper-button-next:after,
.about .f7 .f7SwiperBox .swiper-button-prev:after {
  color: white;
  font-size: 0.75vw;
}
.about .f7 .f7Box {
  width: 100%;
  height: 12vw;
  background: url('../images/img41.png') center no-repeat;
  background-size: cover !important;
  margin-top: -5vw;
  position: relative;
  z-index: 2;
  padding: 2vw 8vw;
  display: flex;
  justify-content: space-between;
}
.about .f7 .f7Box .item {
  text-align: center;
}
.about .f7 .f7Box .item .txt {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.about .f7 .f7Box .item .num {
  font-size: 1vw;
  position: relative;
}
.about .f7 .f7Box .item .num span {
  font-size: 2.5vw;
}
.about .f7 .f7Box .item .num::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 2vw;
  background: rgba(0, 0, 0, 0.2);
  top: 1.5vw;
  right: -9vw;
}
.about .f7 .f7Box .item .t {
  font-size: 1vw;
}
.about footer {
  margin-top: 0;
}
.project {
  width: 100%;
  position: relative;
}
.project .f1 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
  overflow: hidden;
}
.project .f1 .textBox {
  width: 45%;
}
.project .f1 .textBox .logoIcon {
  width: 8vw;
}
.project .f1 .textBox .t {
  font-size: 1.6vw;
  margin-top: 1vw;
}
.project .f1 .textBox .d {
  font-size: 1vw;
  margin-top: 0.5vw;
}
.project .f1 .textBox .itemBox {
  margin: 2vw 0;
  display: flex;
}
.project .f1 .textBox .itemBox .item {
  width: 45%;
  height: auto;
  text-align: left;
  background: url('../images/img27.jpg') center no-repeat;
  background-size: cover !important;
  border: 1px solid rgba(0, 84, 184, 0.15);
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 1vw;
  margin-right: 2vw;
}
.project .f1 .textBox .itemBox .item .tt {
  font-size: 1.2vw;
  color: #0054B8;
}
.project .f1 .textBox .itemBox .item .dd {
  font-size: 0.9vw;
  line-height: 1.5;
  color: #666666;
  margin-top: 0.5vw;
}
.project .f1 .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  color: #5E6A71;
}
.project .f1 .videoBoxs {
  width: 50%;
  height: 23vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.project .f1 .videoBoxs video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.project .f1 .videoBoxs .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.project .f1 .videoBoxs .play p {
  color: white;
  text-align: center;
  position: relative;
  top: 0.5vw;
  font-size: 1vw;
}
.project .f1 .videoBoxs .play .playImg {
  width: 5vw;
  height: 5vw;
  background-size: cover !important;
  animation: playImgAnm 2s linear infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.project .f1 .videoBoxs .play i {
  font-size: 1.1vw;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #666666;
}
.project .f1::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  right: -35vw;
  top: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, #bcd9fa 0%, rgba(132, 189, 255, 0) 100%);
}
.project .f2 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.project .f2 .f2Head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project .f2 .f2Head .titBox {
  text-align: left;
}
.project .f2 .f2Head .tabBox {
  display: flex;
  background: white;
  border: 1px solid rgba(0, 84, 184, 0.15);
  border-radius: 5vw;
  padding: 0.2vw;
}
.project .f2 .f2Head .tabBox .tab {
  padding: 0.6vw 1.5vw;
  cursor: pointer;
  font-size: 0.9vw;
}
.project .f2 .f2Head .tabBox .active {
  background: #378CEE;
  border-radius: 5vw;
  color: white;
}
.project .f2 .f2Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
}
.project .f2 .f2Swiper .swiper-slide {
  width: 100%;
  height: 25vw;
  background-size: cover !important;
  border-radius: 0.5vw;
  position: relative;
  cursor: pointer;
}
.project .f2 .f2Swiper .swiper-slide .img {
  width: auto;
  height: 13vw;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}
.project .f2 .f2Swiper .swiper-slide .text {
  width: 100%;
  position: absolute;
  bottom: -1vw;
  text-align: center;
  transition: 0.3s all;
}
.project .f2 .f2Swiper .swiper-slide .text .name {
  color: #0054B8;
  font-size: 1vw;
  transition: 0.3s all;
}
.project .f2 .f2Swiper .swiper-slide .text .mores {
  display: inline-block;
  background: white;
  border-radius: 5vw;
  color: #0054B8;
  padding: 0.4vw 3vw;
  margin-top: 1vw;
  opacity: 0;
  transition: 0.3s all;
  font-size: .9vw;
}
.project .f2 .f2Swiper .swiper-slide:hover .img {
  transform: translate(-50%, -50%) scale(1.2);
}
.project .f2 .f2Swiper .swiper-slide:hover .text {
  bottom: 2vw;
}
.project .f2 .f2Swiper .swiper-slide:hover .text .name {
  opacity: 0;
}
.project .f2 .f2Swiper .swiper-slide:hover .text .mores {
  opacity: 1;
}
.project .f2 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: 3vw;
}
.project .f2 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 3vw;
}
.project .f2 .swiper-button-next:after,
.project .f2 .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.project .f3 {
  width: 100%;
  position: relative;
  background: url('../images/img44.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw 8vw;
}
.project .f3 .f3Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
}
.project .f3 .f3Swiper .swiper-slide .img {
  width: 100%;
  height: 15vw;
  background-size: cover !important;
  border-radius: 0.5vw;
  background-blend-mode: multiply;
  overflow: hidden;
}
.project .f3 .f3Swiper .swiper-slide .play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.project .f3 .f3Swiper .swiper-slide .play p {
  color: white;
  text-align: center;
  position: relative;
  top: 0.5vw;
  font-size: 1vw;
}
.project .f3 .f3Swiper .swiper-slide .play .playImg {
  width: 5vw;
  height: 5vw;
  background-size: cover !important;
  animation: playImgAnm 2s linear infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.project .f3 .f3Swiper .swiper-slide .play i {
  font-size: 1.1vw;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #666666;
}
.project .f3 .f3Swiper .swiper-slide .text {
  text-align: center;
}
.project .f3 .f3Swiper .swiper-slide .text .name {
  font-size: 1.1vw;
  margin: 1vw 0 0.5vw;
}
.project .f3 .f3Swiper .swiper-slide .text .des {
  font-size: 0.9vw;
}
.project .f3 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: 3vw;
}
.project .f3 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 3vw;
}
.project .f3 .swiper-button-next:after,
.project .f3 .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.project .f33 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.project .f33 .f33Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
}
.project .f33 .f33Box .item {
  flex: 1;
  margin-right: 1vw;
  height: 30vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.project .f33 .f33Box .item:last-child{
  margin-right: 0;
}
.project .f33 .f33Box .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f33 .f33Box .item .name {
  width: 100%;
  position: absolute;
  bottom: 2vw;
  text-align: center;
  color: white;
  font-size: 1vw;
}
.project .f33 .f33Box .item:hover .img {
  transform: scale(1.1);
}
.project .f4 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
}
.project .f4 .itemBoxLeft {
  width: 32%;
  position: relative;
}
.project .f4 .itemBoxLeft .item {
  width: 100%;
  height: 20vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-bottom: 1.8vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
}
.project .f4 .itemBoxLeft .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f4 .itemBoxLeft .item .txt {
  position: absolute;
  color: white;
  font-size: 1.2vw;
  padding: 1vw;
  bottom: 0;
  transition: 0.5s all;
}
.project .f4 .itemBoxLeft .item .txt .d{
  font-size: .9vw;
  opacity: 0;
  height: 0;
  line-height: 1.7;
  transition: .3s all;
}
.project .f4 .itemBoxLeft .item:hover .txt{
  bottom: 0;
}
.project .f4 .itemBoxLeft .item:hover .img {
  transform: scale(1.1);
}
.project .f4 .itemBoxLeft .item:hover .txt .d{
  height: auto;
  opacity: 1;
  margin-top: .8vw;
}
.project .f4 .itemBoxCenter {
  width: 32%;
  position: relative;
}
.project .f4 .itemBoxCenter .item {
  width: 100%;
  height: 12.75vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-bottom: 1.8vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
}
.project .f4 .itemBoxCenter .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f4 .itemBoxCenter .item .titBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project .f4 .itemBoxCenter .item .txt {
  position: absolute;
  color: white;
  font-size: 1.2vw;
  padding: 1vw;
  bottom: 0;
  transition: .5s all;
}
.project .f4 .itemBoxCenter .item:hover .txt{
  bottom: 0;
}
.project .f4 .itemBoxCenter .item:hover .img {
  transform: scale(1.1);
}
.project .f4 .itemBoxCenter .item:hover .txt .d{
  height: auto;
  opacity: 1;
  margin-top: .8vw;
}
.project .f4 .itemBoxCenter .item .txt .d{
  font-size: .9vw;
  opacity: 0;
  height: 0;
  line-height: 1.7;
  transition: .3s all;
}
.project .f4 .itemBoxRight {
  width: 32%;
  position: relative;
}
.project .f4 .itemBoxRight .item {
  width: 100%;
  height: 12.75vw;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-bottom: 1.8vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
}
.project .f4 .itemBoxRight .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f4 .itemBoxRight .item .txt {
  position: absolute;
  color: white;
  font-size: 1.2vw;
  padding: 1vw;
  bottom: 0;
  transition: .5s all;
}
.project .f4 .itemBoxRight .item:hover .txt{
  bottom: 0;
}
.project .f4 .itemBoxRight .item:hover .img {
  transform: scale(1.1);
}
.project .f4 .itemBoxRight .item:hover .txt .d{
  height: auto;
  opacity: 1;
  line-height: 1.7;
  margin-top: .8vw;
}
.project .f4 .itemBoxRight .item .txt .d{
  font-size: .9vw;
  opacity: 0;
  height: 0;
  transition: .3s all;
}
.project .f5 {
  width: 100%;
  position: relative;
  padding: 0 8vw 5vw 8vw;
}
.project .f5 .titBox {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project .f5 .f5Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.project .f5 .f5Box .left {
  width: 55%;
}
.project .f5 .f5Box .left .item {
  width: 100%;
  height: 26vw;
  border-radius: 0.5vw;
  display: block;
  position: relative;
  overflow: hidden;
}
.project .f5 .f5Box .left .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f5 .f5Box .left .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;
}
.project .f5 .f5Box .left .item .text .time {
  font-size: 0.9vw;
  position: relative;
  padding-left: 1vw;
}
.project .f5 .f5Box .left .item .text .time::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0.9vw;
  background: white;
  left: 0.2vw;
  top: 51%;
  transform: translateY(-50%) rotate(10deg);
}
.project .f5 .f5Box .left .item .text .name {
  font-size: 1.2vw;
  margin-top: 0.5vw;
}
.project .f5 .f5Box .left .item .text .more {
  opacity: 0;
  margin-top: 2vw;
  color: white;
  font-size: 0.85vw;
}
.project .f5 .f5Box .left .item .text .more .icon {
  background: transparent;
  margin-left: 0;
}
.project .f5 .f5Box .left .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.project .f5 .f5Box .left .item:hover .img {
  transform: scale(1.05);
}
.project .f5 .f5Box .left .item:hover .text {
  transform: translateY(0);
}
.project .f5 .f5Box .left .item:hover .text .more {
  opacity: 1;
}
.project .f5 .f5Box .right {
  width: 42%;
}
.project .f5 .f5Box .right .item {
  width: 100%;
  height: 12vw;
  border-radius: 0.5vw;
  display: flex;
  background: url('../images/img2.jpg') center no-repeat;
  background-size: cover !important;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.project .f5 .f5Box .right .item .img {
  width: 50%;
  height: 100%;
  border-radius: 0.5vw;
  overflow: hidden;
  background-size: cover !important;
  transition: 0.5s all;
}
.project .f5 .f5Box .right .item .text {
  width: 50%;
  padding: 2vw;
  transition: 0.5s all;
}
.project .f5 .f5Box .right .item .text .time {
  font-size: 0.9vw;
  position: relative;
}
.project .f5 .f5Box .right .item .text .name {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project .f5 .f5Box .right .item .text .more {
  margin-top: 2vw;
  color: #0054B8;
  font-size: 0.85vw;
}
.project .f5 .f5Box .right .item .text .more .icon {
  color: #0054B8;
  margin-left: 0;
  background: transparent;
}
.project .f5 .f5Box .right .item:hover .img {
  transform: scale(1.05);
}
.project .f5 .f5Box .right .item:hover .text {
  transform: translateY(0);
}
.project .f5 .f5Box .right .item:hover .text .more {
  opacity: 1;
}
.project .f5 .f5Box .right .item:last-child {
  margin-bottom: 0;
}
.project .f6 {
  width: 100%;
  position: relative;
  padding: 0 8vw 10vw 8vw;
}
.project .f6 .f6Box {
  width: 100%;
  padding: 2vw 5vw 0 5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 1vw;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
}
.project .f6 .f6Box .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.project .f6 .f6Box .text .d {
  font-size: .9vw;
  color: #666666;
  line-height: 2;
  margin-top: 0.5vw;
}
.project .f6 .f6Box .qrcodeBox {
  /*width: 73%;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.project .f6 .f6Box .qrcodeBox .qrcode {
  width: 5vw;
  text-align: center;
  margin-left: 2vw;
  margin-bottom: 2vw;
}
.project .f6 .f6Box .qrcodeBox .qrcode img {
  width: 100%;
  border-radius: 0.5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.project .f6 .f6Box .qrcodeBox .qrcode p {
  font-size: 0.8vw;
  margin-top: .5vw;
}
.project footer {
  margin-top: 0;
}
.milk {
  width: 100%;
  position: relative;
}
.milk .f1 {
  width: 100%;
  padding: 5vw 15vw;
}
.milk .f1 .des {
  margin: 3vw 0;
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
}
.milk .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.milk .f1 .f1Box .item .num {
  color: #0055B9;
  font-size: 3.5vw;
  font-weight: bold;
  font-family: 'Noto Sans SC';
}
.milk .f1 .f1Box .item .num span {
  font-weight: normal;
  font-size: 0.9vw;
  border: 1px solid #0054B8;
  border-radius: 5vw;
  box-shadow: 0 0 15px rgba(0, 85, 185, 0.5);
  padding: 0.1vw 0.5vw;
  position: relative;
  top: -1.5vw;
}
.milk .f1 .f1Box .item .t {
  font-size: 1vw;
}
.milk .f2 {
  width: 100%;
  position: relative;
  padding: 0 8vw 5vw 8vw;
}
.milk .f2 .titBox {
  position: absolute;
  z-index: 2;
  color: white;
  top: 8vw;
  left: 50%;
  transform: translateX(-50%);
}
.milk .f2 .videoBoxs {
  width: 100%;
  height: 40vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
}
.milk .f2 .videoBoxs video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.milk .f2 .videoBoxs .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.milk .f2 .videoBoxs .play p {
  color: white;
  text-align: center;
  position: relative;
  top: 0.5vw;
  font-size: 1vw;
}
.milk .f2 .videoBoxs .play .playImg {
  width: 5vw;
  height: 5vw;
  background-size: cover !important;
  animation: playImgAnm 2s linear infinite;
}
@keyframes playImgAnm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.milk .f2 .videoBoxs .play i {
  font-size: 1.1vw;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #666666;
}
.milk .f2 .videoBoxs .imgBox {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 5vw;
}
.milk .f2 .videoBoxs .imgBox .imgs {
  width: 9vw;
  height: 5vw;
  margin: 0 1vw;
  cursor: pointer;
}
.milk .f2 .videoBoxs .imgBox .imgs .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  border-radius: 0.5vw;
}
.milk .f2 .videoBoxs .imgBox .imgs .t {
  text-align: center;
  font-size: 0.9vw;
  color: white;
  margin-top: 0.5vw;
}
.milk .f2 .videoBoxs::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.milk .f3 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.milk .f3 .f3Box {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  color: white;
  padding: 8vw;
  transition: 0.5s all;
}
.milk .f3 .f3Box .titBox {
  text-align: left;
}
.milk .f3 .f3Box .textBox .text {
  display: none;
}
.milk .f3 .f3Box .textBox .text .t {
  height: 5vw;
  font-size: 4vw;
  margin-top: 2vw;
}
.milk .f3 .f3Box .textBox .text .icon {
  width: 5vw;
  height: 5vw;
  margin-top: 2vw;
  position: relative;
}
.milk .f3 .f3Box .textBox .text .icon img {
  position: relative;
  top: 1vw;
}
.milk .f3 .f3Box .textBox .text .d {
  font-size: 1.2vw;
  margin-bottom: 2vw;
}
.milk .f3 .f3Box .textBox .text .item {
  font-size: 1vw;
  margin: 2vw 0;
}
.milk .f3 .f3Box .textBox .text .item .dd {
  opacity: 0.9;
  font-size: .9vw;
  margin-top: 0.5vw;
}
.milk .f3 .f3Box .textBox .text.active {
  display: block;
}
.milk .f3 .f3Box .tabBox {
  display: flex;
  font-size: 1vw;
  margin-top: 5vw;
}
.milk .f3 .f3Box .tabBox .tab {
  width: 10vw;
  text-align: left;
  cursor: pointer;
  padding-bottom: 1vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.milk .f3 .f3Box .tabBox .active {
  border-bottom: 2px solid #ffffff;
}
.milk .f4 {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 3vw;
}
.milk .f4 .f4Box {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  color: white;
  border-radius: 1vw;
  overflow: hidden;
  padding-top: 3vw;
  transition: 0.5s all;
}
.milk .f4 .f4Box .itemBox {
  margin-top: 3vw;
}
.milk .f4 .f4Box .itemBox .item {
  display: none;
  transition: .5s all;
}
.milk .f4 .f4Box .itemBox .item .img {
  width: 25vw;
  height: 15vw;
  background-size: cover !important;
  border-radius: 1vw;
  border: 0.5vw solid rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}
.milk .f4 .f4Box .itemBox .item .txt {
  text-align: center;
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.milk .f4 .f4Box .itemBox .active {
  display: block;
}
.milk .f4 .f4Box .tabBox {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 3vw;
  justify-content: center;
  margin-top: 4vw;
}
.milk .f4 .f4Box .tabBox .tab {
  width: 5vw;
  height: 5vw;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-size: 1.1vw;
  text-align: center;
  line-height: 5vw;
  border-radius: 50%;
  margin: 0 8vw;
  transition: 0.3s all;
  cursor: pointer;
}
.milk .f4 .f4Box .tabBox .tab::before {
  content: '';
  position: absolute;
  width: 7vw;
  height: 7vw;
  top: -1vw;
  left: -1vw;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: 0.3s all;
}
.milk .f4 .f4Box .tabBox .active {
  background: white;
  color: #0055B9;
}
.milk .f4 .f4Box .tabBox .active::before {
  transform: scale(1);
}
.milk .f4 .f4Box .tabBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 15vw;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50% 50% 50% 50%;
  top: 50%;
  left: 0;
}
.milk .f5 {
  width: 100%;
  background: url('../images/img66.jpg') center no-repeat;
  background-size: cover !important;
  position: relative;
  padding: 5vw 8vw;
}
.milk .f5 .titBox .des {
  font-size: 1vw;
  margin-top: 1vw;
}
.milk .f5 .f5Img {
  width: 100%;
}
.milk footer {
  margin-top: 0;
}
.service {
  width: 100%;
  position: relative;
}
.service .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.service .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.service .f1 .f1Box .item {
  position: relative;
}
.service .f1 .f1Box .item .icon {
  width: 3vw;
  margin: 0 auto;
}
.service .f1 .f1Box .item .t {
  font-size: 0.9vw;
  text-align: center;
  margin-top: 1vw;
}
.service .f1 .f1Box .item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 2.5vw;
  background: rgba(0, 85, 185, 0.2);
  top: 2vw;
  left: 11.5vw;
}
.service .f1 .f1Box .item:last-child::before {
  content: inherit;
}
.service .f2 {
  width: 100%;
  position: relative;
  padding: 0 0 5vw 8vw;
  display: flex;
  justify-content: space-between;
}
.service .f2 .left {
  width: 20vw;
}
.service .f2 .left .titBox {
  text-align: left;
}
.service .f2 .left .txt {
  margin-top: 2vw;
}
.service .f2 .left .txt .t {
  font-size: 1.5vw;
}
.service .f2 .left .txt .d {
  font-size: 0.9vw;
  margin-top: 1vw;
  line-height: 1.7;
}
.service .f2 .right {
  width: 65vw;
}
.service .f2 .right .f2Swiper {
  width: 100%;
  position: relative;
}
.service .f2 .right .f2Swiper .swiper-slide {
  position: relative;
}
.service .f2 .right .f2Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 20vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.service .f2 .right .f2Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.service .f2 .right .f2Swiper .swiper-slide .name {
  position: absolute;
  bottom: 0;
  color: white;
  font-size: 1vw;
  padding: 1vw;
}
.service .f2 .right .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: inherit;
  left: 12vw;
  top: 75%;
}
.service .f2 .right .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 8vw;
  top: 75%;
}
.service .f2 .right .swiper-button-next:after,
.service .f2 .right .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.service .f3 {
  width: 100%;
  position: relative;
  padding: 0 3vw 3vw 3vw;
}
.service .f3 .f3Box {
  background: url('../images/img77.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw 8vw 8vw 8vw;
  border-radius: 1vw;
}
.service .f3 .f3Box .titBox {
  color: white;
}
.service .f3 .f3Box .titBox .des {
  width: 70%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: center;
  margin: 1vw auto;
}
.service .f3 .f3Box .f3Img {
  width: 100%;
  margin-top: 5vw;
}
.service .f4 {
  width: 100%;
  position: relative;
  padding: 0 8vw;
  background: linear-gradient(180deg, rgba(235, 245, 255, 0) 0%, rgba(235, 245, 255, 0.8) 100%);
}
.service .f4 .titBox {
  position: absolute;
  top: 8vw;
  left: 50%;
  transform: translateX(-50%);
}
.service .f4 .f4Img {
  width: 100%;
  margin: 0 auto;
}
.service .f4 .f4Box {
  position: absolute;
  top: 0;
}
.service .f4 .f4Box .item {
  width: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 2vw;
  border: 1px solid white;
  border-radius: 0.5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.service .f4 .f4Box .item .t {
  font-size: 1.1vw;
  color: #0054B8;
}
.service .f4 .f4Box .item .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
  line-height: 1.7;
}
.service .f4 .f4Box .item .d span {
  font-size: 1vw;
  color: #0054B8;
}
.service .f4 .f4Box .item:nth-child(1) {
  top: 20vw;
  left: 5vw;
}
.service .f4 .f4Box .item:nth-child(2) {
  top: 5vw;
  left: 60vw;
}
.service .f5 {
  width: 100%;
  position: relative;
  padding: 5vw 0;
  overflow: hidden;
}
.service .f5 .titBox .des {
  font-size: 1vw;
  margin-top: 1vw;
}
.service .f5 .f5Box {
  width: 100%;
  margin: 3vw auto;
}
.service .f5 .f5Box .itemBox {
  display: flex;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.service .f5 .f5Box .itemBox .item {
  width: 12vw;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #E5E5E5;
  margin: 0.5vw;
  border-radius: 0.5vw;
  position: relative;
}
.service .f5 .f5Box .itemBox .item img {
  display: block;
}
.service .f5 .f5Box .itemBox:nth-child(1),
.service .f5 .f5Box .itemBox:nth-child(3) {
  animation-name: scrollRight;
}
.service .f5 .f5Box .itemBox:nth-child(2) {
  animation-name: scrollLeft;
}
@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-30%);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.service .f5 .info {
  font-size: 0.8vw;
  color: #999999;
  text-align: center;
}
.join {
  width: 100%;
  position: relative;
}
.join .f1 {
  padding: 5vw 8vw;
}
.join .f1 .titBox {
  text-align: left;
}
.join .f1 .f1Box {
  width: 100%;
  display: flex;
  margin-top: 3vw;
}
.join .f1 .f1Box .item {
  flex: 1;
  height: 25vw;
  background-size: cover !important;
  margin-right: 1vw;
  border-radius: 0.5vw;
  position: relative;
  overflow: hidden;
  transition: 0.5s all;
  cursor: pointer;
}
.join .f1 .f1Box .item .txt {
  width: 100%;
  position: absolute;
  bottom: -1vw;
  padding: 1.5vw;
  color: white;
  transition: 0.5s all;
}
.join .f1 .f1Box .item .txt .t {
  font-size: 1vw;
  line-height: 1.7;
  text-align: justify;
  transition: 0.5s all;
}
.join .f1 .f1Box .item .txt .d {
  width: 31vw;
  font-size: 0.9vw;
  line-height: 1.7;
  position: relative;
  margin-top: 1vw;
  height: 0;
  opacity: 0;
  transition: 0.5s all;
}
.join .f1 .f1Box .item:last-child {
  margin-right: 0;
}
.join .f1 .f1Box .item.active {
  flex: 3;
}
.join .f1 .f1Box .item.active .txt {
  bottom: 0;
}
.join .f1 .f1Box .item.active .txt .t {
  text-align: center;
  font-size: 1.2vw;
}
.join .f1 .f1Box .item.active .txt .d {
  height: auto;
  opacity: 0.9;
}
.join .f2 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background-size: cover !important;
  display: flex;
  justify-content: space-between;
}
.join .f2 .titBox {
  text-align: left;
  color: white;
}
.join .f2 .f2Box {
  width: 30vw;
}
.join .f2 .f2Box .item {
  backdrop-filter: blur(10px);
  padding: 2vw;
  position: relative;
  border: 1px solid white;
  border-radius: 0.5vw;
  margin-bottom: 2vw;
  color: white;
}
.join .f2 .f2Box .item .icon {
  width: 2vw;
  height: 2vw;
  position: absolute;
  right: 2vw;
  top: 2vw;
}
.join .f2 .f2Box .item .t {
  font-size: 1.2vw;
}
.join .f2 .f2Box .item .d {
  font-size: 0.9vw;
  line-height: 2;
  margin-top: 2vw;
}
.join .f2 .f2Box .item:last-child {
  margin-bottom: 0;
}
.join .f3 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  background: linear-gradient(180deg, rgba(235, 245, 255, 0) 0%, rgba(235, 245, 255, 0.8) 100%);
}
.join .f3 .titBox {
  text-align: left;
}
.join .f3 .f3List{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.join .f3 .f3Item{
  width: 22%;
  background: white;
  box-shadow: 5px 0 50px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 0.5vw;
  overflow: hidden;
  margin-top: 2vw;
  padding: 1vw;
}
.join .f3 .f3Item .it{
  margin-bottom: 3vw;
}
.join .f3 .f3Item .it:last-child{
  margin-bottom: 0;
}
.join .f3 .f3Item .it .t{
  font-size: 1.2vw;
}
.join .f3 .f3Item .it .d{
  font-size: .9vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.join .f3 .f3Item .it .info{
  font-size: .8vw;
  opacity: .9;
  line-height: 2;
}
.join .f3 .f3Item .it .d img{
  width: 8vw;
  margin-top: 1vw;
}
.join .f3 .f3Box {
  width: 75%;
  height: 37vw;
  padding-bottom: 2vw;
  margin: 0;
}
.join .f3 .f3Box .item {
  width: 48.5%;
  height: 15vw;
  box-shadow: 5px 0 50px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  background: white;
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 2vw;
  margin-top: 2vw;
}
.join .f3 .f3Box .item .itemHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1vw;
}
.join .f3 .f3Box .item .itemHead .text {
  display: flex;
  align-items: center;
}
.join .f3 .f3Box .item .itemHead .text .icon {
  width: 3vw;
}
.join .f3 .f3Box .item .itemHead .text .txt {
  margin-left: 1vw;
}
.join .f3 .f3Box .item .itemHead .text .txt .t {
  font-size: 1vw;
}
.join .f3 .f3Box .item .itemHead .text .txt .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.join .f3 .f3Box .item .itemHead .btn {
  display: inline-block;
  background: #0054B8;
  color: white;
  font-size: 0.9vw;
  border-radius: 0.5vw;
  padding: 0.6vw 1vw;
  box-shadow: 0 9px 15.5px 0 rgba(0, 85, 185, 0.45);
}
.join .f3 .f3Box .item .itemHead .btn i {
  margin-left: 0.5vw;
}
.join .f3 .f3Box .item .des {
  padding-top: 1vw;
  font-size: 0.85vw;
  line-height: 1.7;
}
.join .f3 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  top: 7vw;
  left: 68vw;
}
.join .f3 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  top: 7vw;
  left: 64.5vw;
}
.join .f3 .swiper-button-next:after,
.join .f3 .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.join .f4 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.join .f4 .titBox {
  text-align: left;
}
.join .f4 .f4Swiper {
  width: 100%;
  position: relative;
}
.join .f4 .f4Swiper .swiper-slide {
  margin-top: 3vw;
  position: relative;
}
.join .f4 .f4Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 26vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.join .f4 .f4Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.join .f4 .f4Swiper .swiper-slide .name {
  font-size: 1vw;
  padding: 1vw 0;
  text-align: center;
}
.join .f4 .swiper-button-next {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  right: 3vw;
}
.join .f4 .swiper-button-prev {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  border: 1px solid #999999;
  left: 3vw;
}
.join .f4 .swiper-button-next:after,
.join .f4 .swiper-button-prev:after {
  color: #999999;
  font-size: 0.75vw;
}
.contactUs {
  width: 100%;
  position: relative;
}
.contactUs .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.contactUs .f1 .titBox {
  text-align: left;
}
.contactUs .f1 .f1Img {
  width: 80%;
  margin: -3vw auto 0 auto;
  position: relative;
}
.contactUs .f1 .f1Box {
  position: absolute;
  top: 0;
}
.contactUs .f1 .f1Box .itemBox {
  width: 20vw;
  position: absolute;
  border-radius: 0.5vw;
  border: 1px solid #0055B9;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 5px 0 50px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2.5px);
  padding: 1.5vw;
  transition: 0.3s all;
}
.contactUs .f1 .f1Box .itemBox .icon {
  width: 5vw;
  position: absolute;
  cursor: pointer;
}
.contactUs .f1 .f1Box .itemBox .item {
  position: relative;
}
.contactUs .f1 .f1Box .itemBox .item .its {
  margin-bottom: 1vw;
}
.contactUs .f1 .f1Box .itemBox .item .its .t {
  color: #0055B9;
  font-size: 1vw;
}
.contactUs .f1 .f1Box .itemBox .item .its .d {
  font-size: 0.85vw;
  margin-top: 0.5vw;
  line-height: 1.7;
}
.contactUs .f1 .f1Box .itemBox .item .its:last-child {
  margin-bottom: 0;
}
.contactUs .f1 .f1Box .ningxia {
  top: 26vw;
  left: 23vw;
}
.contactUs .f1 .f1Box .ningxia .icon {
  right: -4vw;
  top: 0vw;
}
.contactUs .f1 .f1Box .nengmenggu {
  top: 9vw;
  left: 60vw;
}
.contactUs .f1 .f1Box .nengmenggu .icon {
  left: -4vw;
  top: 0vw;
}
.contactUs .f1 .f1Box .beijing {
  top: 23.5vw;
  left: 56vw;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: inherit;
  box-shadow: inherit;
}
.contactUs .f1 .f1Box .beijing .icon {
  left: -4vw;
  top: 0vw;
  animation: iconAnm 2s linear infinite;
}
.contactUs .f1 .f1Box .beijing .item {
  opacity: 0;
}
.contactUs .f1 .f1Box .shanghai {
  top: 27.5vw;
  left: 61.5vw;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: inherit;
  box-shadow: inherit;
}
.contactUs .f1 .f1Box .shanghai .icon {
  left: -4vw;
  top: 0vw;
  animation: iconAnm 2s linear infinite;
}
.contactUs .f1 .f1Box .shanghai .item {
  opacity: 0;
}
.contactUs .f1 .f1Box .chengdu {
  top: 34.5vw;
  left: 46vw;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: inherit;
  box-shadow: inherit;
}
.contactUs .f1 .f1Box .chengdu .icon {
  left: -4vw;
  top: 0vw;
  animation: iconAnm 2s linear infinite;
}
.contactUs .f1 .f1Box .chengdu .item {
  opacity: 0;
}
.contactUs .f1 .f1Box .wuhan {
  top: 36vw;
  left: 54vw;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: inherit;
  box-shadow: inherit;
}
.contactUs .f1 .f1Box .wuhan .icon {
  left: -4vw;
  top: 0;
  animation: iconAnm 2s linear infinite;
}
.contactUs .f1 .f1Box .wuhan .item {
  opacity: 0;
}
.contactUs .f1 .f1Box .shenzhen {
  top: 44vw;
  left: 54vw;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: inherit;
  box-shadow: inherit;
}
.contactUs .f1 .f1Box .shenzhen .icon {
  left: -4vw;
  top: 0;
  animation: iconAnm 2s linear infinite;
}
.contactUs .f1 .f1Box .shenzhen .item {
  opacity: 0;
}
.contactUs .f1 .f1Box .itemBox.show {
  border: 1px solid #0055B9;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 5px 0 50px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2.5px);
  z-index: 2;
}
.contactUs .f1 .f1Box .itemBox.show .item {
  opacity: 1;
}
@keyframes iconAnm {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}
.contactUs .f2 {
  width: 100%;
  position: relative;
  background-size: cover !important;
  padding: 5vw 8vw 12vw 8vw;
  display: flex;
  justify-content: space-between;
}
.contactUs .f2 .titBox {
  text-align: left;
}
.contactUs .f2 .form {
  width: 55vw;
}
.contactUs .f2 .form form{
  width: 100%;
}
.contactUs .f2 .form .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5vw;
}
.contactUs .f2 .form .inputBox .input {
  flex: 1;
  border-radius: 0.5vw;
  padding: 0.8vw 1vw;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  margin-right: 1.5vw;
}
.contactUs .f2 .form .inputBox .input input {
  width: 100%;
  font-size: 0.9vw;
  outline: none;
  background: transparent;
  border: transparent;
  font-family: inherit;
}
.contactUs .f2 .form .inputBox .input input::placeholder {
  color: #333333;
}
.contactUs .f2 .form .inputBox .input select {
  width: 100%;
  font-size: 0.9vw;
  outline: none;
  background: transparent;
  border: transparent;
  font-family: inherit;
}
.contactUs .f2 .form .inputBox .input:last-child {
  margin-right: 0;
}
.contactUs .f2 .form .textarea {
  width: 100%;
  border-radius: 0.5vw;
  padding: 0.8vw 1vw;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  margin-right: 1.5vw;
}
.contactUs .f2 .form .textarea textarea {
  width: 100%;
  height: 5vw;
  font-size: 0.9vw;
  outline: none;
  background: transparent;
  border: transparent;
  font-family: inherit;
  resize: none;
}
.contactUs .f2 .form .textarea textarea::placeholder {
  color: #333333;
}
.contactUs .f2 .form .submit {
  display: inline-block;
  background: #0054B8;
  color: white;
  font-size: 0.9vw;
  border-radius: 0.5vw;
  padding: 0.6vw 1.5vw;
  margin-top: 1.5vw;
  cursor: pointer;
  box-shadow: 0 9px 15.5px 0 rgba(0, 85, 185, 0.45);
}
.contactUs footer {
  margin-top: 0;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1660px) {
  .index .f1 .f1Link .link:nth-child(1) {
    top: 60%;
    left: 9%;
  }
  .index .f1 .f1Link .link:nth-child(2) {
    top: 62%;
    left: 28%;
  }
  .index .f1 .f1Link .link:nth-child(6) {
    top: 44%;
    left: 80%;
  }
  .index .f1 .f1Link .link:nth-child(7) {
    top: 69%;
    left: 86.5%;
  }
  header{
    padding: 15px 5vw;
  }
  header .right {
    width: 78vw;
  }
  .milk .f4 .f4Box .itemBox{
    margin-top: 6vw;
  }
}
@media screen and (max-width: 1440px) {
  header .right nav ul li a {
    font-size: 16px;
  }
  header .right nav ul li ul li a {
    font-size: 14px;
  }
}
@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: 10px;
    float: left;
  }

  .sp_logo img {

    margin: auto;

    width: 110px;

    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: #378CEE;

    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;
  }
  .loading img{
    width: 50vw;
  }
  .index .f1{
    height: 50vw;
  }
  .index .f2{
    padding: 5vw;
  }
  .index .f2 .f2Box{
    display: block;
    padding: 5vw;
  }
  .index .f2 .f2Box .text{
    width: 100%;
  }
  .index .f2 .f2Box .text .icon{
    width: 8vw;
  }
  .index .f2 .f2Box .text .txt{
    font-size: 14px;
  }
  .index .f2 .f2Box .text .info{
    font-size: 14px;
    text-align: right;
  }
  .backBoxs{
    position: fixed;
    bottom: 20vw;
    padding: 3px;
  }
  .backBoxs .tianmao{
    width: 40px;
    font-size: 12px;
    padding: 5px;
  }
  .backBoxs .backTops{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    margin: 0 auto;
  }
  .more{
    font-size: 14px;
  }
  .index .f3{
    padding-top: 10vw;
  }
  .index .f3 .tit{
    font-size: 20px;
  }
  .index .f3 .f3Swiper{
    width: 95%;
    margin: 5vw auto;
    padding: 1vw;
  }
  .index .f3 .f3Swiper .swiper-slide .t{
    font-size: 14px;
  }
  .index .f3 .f3Swiper .swiper-slide .des{
    font-size: 12px;
  }
  .index .f3 .f3Swiper2{
    width: 100%;
    padding: 0 5vw;
    margin: 5vw auto;
  }
  .index .f3 .f3Swiper2 .swiper-slide .text .t{
    font-size: 18px;
  }
  .index .f3 .f3Swiper2 .swiper-slide .text .d{
    font-size: 12px;
    margin: 3vw 0;
  }
  .more .icon{
    width: 5vw;
    height: 5vw;
    line-height: 5vw;
    font-size: 8px;
  }
  .index .f3 .f3Swiper2 .swiper-slide .imgBox .img{
    width: 50vw;
  }
  .index .f3 .f3Swiper2 .swiper-slide .imgBox::before{
    width: 35vw;
    height: 35vw;
    left: 10%;
  }
  .index .f3 .swiper-pagination{
    left: 5vw;
    margin-top: -5vw;
  }
  .index .f3 .swiper-pagination .current{
    font-size: 12px;
  }
  .index .f3 .swiper-pagination .separator{
    font-size: 12px;
  }
  .index .f3 .swiper-pagination .total{
    font-size: 12px;
  }
  .index .f3 .swiper-button-next,.index .f3 .swiper-button-prev{
    display: none;
  }
  .index .f4{
    height: 70vh;
  }
  .index .f4 .content-overlay{
    padding: 0 5vw;
  }
  .index .f4 .text-content{
    width: 90%;
    top: 50%;
    max-width: inherit;
  }
  .index .f4 .text-content .tit .cn{
    font-size: 18px;
  }
  .index .f4 .text-content .tit .en{
    font-size: 12px;
  }
  .index .f4 .text-content .tit p{
    font-size: 14px;
    margin-top: 5vw;
  }
  .index .f4 .text-content .des{
    font-size: 14px;
    line-height: 1.7;
  }
  .index .f4 .carousel-controls .nums{
    font-size: 12px;
    position: relative;
    width: 70%;
    line-height: 3vw;
    right: 0;
  }
  .index .f4 .control-btn{
    width: 6vw;
    height: 6vw;
    font-size: 10px;
  }
  .index .f4 .carousel-controls{
    width: 100%;
    bottom: 5vw;
    top: inherit;
    right: inherit;
    left: 5vw;
    align-items: center;
  }
  .index .f4 .thumbnail-carousel{
    opacity: 0;
  }
  .index .f5 .f5Box .tit{
    font-size: 18px;
  }
  .index .f5 .f5Box .up{
    font-size: 12px;
  }
  .index .f5 .f5Box .f5Item{
    margin-top: 10vw;
    position: relative;
  }
  .index .f5 .f5Box .f5Item .bgImg{
    width: 80%;
    left: 10%;
    display: none;
  }
  .index .f5 .f5Box .f5Item .yearItem{
    margin-bottom: 5vw;
  }
  .index .f5 .f5Box .f5Item .yearItem .year{
    font-size: 16px;
  }
  .index .f5 .f5Box .f5Item .yearItem .t{
    font-size: 14px;
  }
  .index .f5 .f5Box .f5Item .yearItem::before{
    width: 1.5vw;
    height: 1.5vw;
    top: 2.4vw;
    margin-left: -3.55vw !important;
  }
  .index .f5 .f5Box .f5Item .yearItem .img{
    position: relative !important;
    width: 100%;
      height: 25vw;
    float: inherit !important;
    margin: 1vw 0 !important;
      display: block !important;
  }
  .index .f5 .f5Box .f5Item .yearItem{
    width: 80%;
    text-align: left !important;
    left: inherit !important;
    margin-top: inherit !important;
  }
  .index .f5 .f5Box .f5Item:before{
    content: '';
    width: 1px;
    height: 100%;
    background: white;
    position: absolute;
    top: 3vw;
    left: 7vw;
  }
  .index .f6{
    padding: 10vw 5vw;
  }
  .index .f6 .titBox .tit{
    font-size: 20px;
  }
  .index .f6 .f6Top{
    margin-top: inherit;
    display: block;
  }
  .index .f6 .f6Top .item{
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
    display: block;
  }
  .index .f6 .f6Top .item2{
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
    display: block;
  }
  .index .f6 .f6Top .item .text{
    bottom: 0;
    transform: inherit;
    padding: 3vw;
  }
  .index .f6 .f6Top .item .text .time{
    font-size: 12px;
    padding-left: 0;
  }
  .index .f6 .f6Top .item .text .time::before{
    content: inherit;
  }
  .index .f6 .f6Top .item .text .name{
    font-size: 14px;
  }
  .index .f6 .f6Top .item .text .more{
    display: none;
  }
  .index .f6 .f6Top .item2 .text{
    padding: 3vw;
  }
  .index .f6 .f6Top .item2 .text .time{
    font-size: 12px;
    padding-left: 0;
  }
  .index .f6 .f6Top .item2 .text .time::before{
    content: inherit;
  }
  .index .f6 .f6Top .item2 .text .name{
    font-size: 14px;
  }
  .index .f6 .f6Top .item2 .text{
    height: auto;
    top: inherit;
    bottom: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  }
  .index .f6 .f6Top .item2 .text .more{
    display: none;
  }
  .index .f6 .f6Box{
    display: block;
    margin-top: 0;
  }
  .index .f6 .f6Box .item{
    margin-top: 5vw;
    width: 100%;
    padding: 3vw;
  }
  .index .f6 .f6Box .item .time{
    font-size: 14px;
    padding-left: 0;
  }
  .index .f6 .f6Box .item .time::before{
    content: inherit;
  }
  .index .f6 .f6Box .item .name{
    font-size: 14px;
    margin-top: 2vw;
  }
  .index .f6 .f6Box .item .more{
    display: none;
  }
  footer .footerBg{
    display: none;
  }
  footer{
    padding: 10vw 5vw 5vw 5vw;
  }
  footer .logo{
    width: 70%;
    margin: 0 auto;
  }
  footer .footerNav{
    display: none;
  }
  footer .linkBox{
    justify-content: center;
    font-size: 14px;
    margin-top: 5vw;
  }
  footer .linkBox .link a{
    font-size: 18px;
    margin-left: 3vw;
  }
  footer .footerInfo{
    font-size: 12px;
    line-height: 2;
    display: block;
  }
  footer .niu{
    width: 15vw;
  }
  .bannerBox{
    height: 50vw;
  }
  .bannerBox .text .cn{
    font-size: 20px;
  }
  .bannerBox .text .en{
    font-size: 12px;
  }
  .about .f1{
    padding: 10vw 5vw;
  }
  .titBox .tit{
    font-size: 20px;
  }
  .about .f1 .f1Box{
    display: block;
  }
  .about .f1 .f1Box .videoBoxs{
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .about .f1 .f1Box .text{
    width: 100%;
    height: auto;
    overflow-y: inherit;
    line-height: 1.7;
    font-size: 14px;
    margin-top: 5vw;
  }
  .videoBoxs .play .playImg{
    width: 13vw !important;
    height: 13vw !important;
  }
  .videoBoxs .play i{
    font-size: 12px !important;
    top: 40% !important;
  }
  .videoBoxs .play p{
    font-size: 12px !important;
  }
  .about .f1 .f1Item{
    display: block;
    margin-top: 0;
  }
  .about .f1 .f1Item .item{
    width: 100%;
    padding: 3vw;
    margin-top: 3vw;
  }
  .about .f1 .f1Item .item .t{
    font-size: 16px;
  }
  .about .f1 .f1Item .item .t2{
    font-size: 14px;
    margin: 3vw 0;
  }
  .about .f1 .f1Item .item .d{
    font-size: 14px;
  }
  .about .f2{
    height: auto;
    padding: 10vw 5vw;
  }
  .about .f2 .titBox{
    position: relative;
    transform: inherit;
    top: inherit;
    left: inherit;
  }
  .about .f2 .itemBox{
    height: auto;
    display: block;
    margin-top: 5vw;
  }
  .about .f2 .itemBox .item{
    width: 100%;
    padding: 5vw;
    border-right: indianred;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .about .f2 .itemBox .item:last-child{
    border-bottom: transparent;
  }
  .about .f2 .itemBox .item .txt{
    position: relative;
    transform: inherit;
    top: inherit;
    left: inherit;
  }
  .about .f2 .itemBox .item .txt .t{
    font-size: 18px;
  }
  .about .f2 .itemBox .item .txt .d{
    font-size: 14px;
    margin-top: 3vw;
  }
  .about .f3 .f3Swiper .swiper-slide{
    display: block;
  }
  .about .f3 .f3Swiper .swiper-slide .imgBox{
    width: 100%;
    height: 50vw;
  }
  .about .f3 .f3Swiper .swiper-slide .text{
    width: 100%;
  }
  .about .f3 .f3Swiper .swiper-slide .text .name{
    font-size: 14px;
  }
  .about .f3 .f3Swiper .swiper-slide .text .des{
    display: none;
  }
  .about .f4{
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 10vw 5vw;
  }
  .about .f4 .des{
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 3vw;
  }
  .about .f5{
    display: block;
    padding: 10vw 5vw;
  }
  .about .f5 .text{
    width: 100%;
    height: auto;
  }
  .about .f5 .text .name{
    font-size: 16px;
  }
  .about .f5 .text .trip{
    font-size: 16px;
  }
  .about .f5 .text .des{
    font-size: 14px;
  }
  .about .f5 .img{
    width: 100%;
  }
  .about .f5 .ry{
    width: 100%;
    height: auto;
    overflow-y: inherit;
  }
  .about .f5 .ry .tit{
    font-size: 16px;
    padding: 5vw;
  }
  .about .f5 .ry .ryBox{
    font-size: 14px;
    height: 100vw;
    padding: 0 5vw;
  }
  .about .f5 .ry .tit::before {
    width: 4.2vw;
    height: 6.3vw;
    left: 25vw;
  }
  .about .f5 .ry .tit::after {
    width: 4.2vw;
    height: 6.3vw;
    right: 25vw;
  }
  .about .f5 .ry .f5Swiper{
    padding: 5vw;
  }
  .about .f5 .ry .f5Swiper .swiper-slide img{
    height: 28vw;
  }
  .about .f6{
    width: 100%;
    display: block;
    box-shadow: inherit;
    border-radius: inherit;
  }
  .about .f6 .f6Left{
    width: 100%;
    padding: 0 5vw;
    box-shadow: inherit;
    border-radius: inherit;
  }
  .about .f6 .f6Right{
    width: 100%;
    padding: 10vw 5vw 5vw 5vw;
    box-shadow: inherit;
    border-radius: inherit;
  }
  .about .f6 .f6Left .tit{
    font-size: 18px;
  }
  .about .f6 .f6Right .tit{
    font-size: 18px;
  }
  .about .f6 .f6Left .f6SwiperL{
    height: 70vw;
    margin-top: 0;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide{
    margin-top: 5vw !important;
    height: auto;
    align-items: center;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide .imgBox{
    height: 30vw;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide .text{
    width: 50%;
    padding: 2vw 3vw;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide .text .time{
    font-size: 12px;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide .text .name {
    font-size: 14px;
  }
  .about .f6 .f6Left .f6SwiperL .swiper-slide .text .more{
    display: none;
  }
  .about .f6 .f6Right .swiper-button-next:after, .about .f6 .f6Right .swiper-button-prev:after{
    font-size: 14px;
  }
  .about .f6 .f6Left .swiper-button-next:after, .about .f6 .f6Left .swiper-button-prev:after{
    font-size: 14px;
  }
  .about .f6 .f6Right .swiper-button-prev{
    right: 10vw;
  }
  .about .f6 .f6Left .swiper-button-prev{
    right: 10vw;
  }
  .about .f6 .f6Right .f6SwiperR{
    margin-top: 5vw;
    height: 55vw;
  }
  .about .f6 .f6Right .f6SwiperR .swiper-slide .imgBox{
    height: 45vw;
  }
  .about .f6 .f6Right .f6SwiperR .swiper-slide .text .name{
    font-size: 14px;
  }
  .about .f6 .f6Right .swiper-button-next{
    top: 90vw;
  }
  .about .f6 .f6Right .swiper-button-prev{
    top: 90vw;
  }
  .about .f7{
    height: auto;
  }
  .about .f7 .f7SwiperBox{
    padding: 10vw 5vw;
  }
  .about .f7 .f7SwiperBox .f7Img{
    width: 35vw;
  }
  .about .f7 .f7SwiperBox .f7Swiper{
    margin-right: 0;
    margin-top: 2vw;
  }
  .about .f7 .f7SwiperBox .f7Swiper .swiper-slide{
    height: 42vw;
    background: transparent;
  }
  .about .f7 .f7SwiperBox .f7Swiper .swiper-slide .imgBox{
    height: 32vw;
  }
  .about .f7 .f7SwiperBox .f7Swiper .swiper-slide .text .name{
    font-size: 12px;
  }
  .about .f7 .f7SwiperBox .f7Swiper .swiper-slide .text .year{
    font-size: 12px;
  }
  .about .f7 .f7Box{
    height: 50vw;
    padding: 22vw 5vw 5vw 5vw;
    margin-top: -20vw;
  }
  .about .f7 .f7Box .item .txt{
    font-size: 14px;
  }
  .about .f7 .f7Box .item .num{
    font-size: 14px;
  }
  .about .f7 .f7Box .item .num span{
    font-size: 22px;
  }
  .about .f7 .f7Box .item .t{
    font-size: 14px;
  }
  .about .f7 .f7Box .item:nth-child(1) {
    width: 90%;
    text-align: center;
    top: 5vw;
    position: absolute;
  }
  .about .f7 .f7Box .item .num::before {
    width: 1px;
    height: 7vw;
    top: 3.5vw;
    right: -6vw;
  }
  .about .f7 .f7SwiperBox .swiper-button-next{
    width: 6vw;
    height: 6vw;
    top: 16vw;
    right: 5vw;
    display: none;
  }
  .about .f7 .f7SwiperBox .swiper-button-prev{
    width: 6vw;
    height: 6vw;
    top: 16vw;
    right: 15vw;
    display: none;
  }
  .about .f7 .f7SwiperBox .swiper-button-next:after, .about .f7 .f7SwiperBox .swiper-button-prev:after{
    font-size: 10px;
  }
  .project .f1{
    padding: 10vw 5vw;
    display: block;
  }
  .project .f1 .textBox{
    width: 100%;
  }
  .project .f1 .textBox .logoIcon{
    width: 25vw;
    margin: 0 auto;
  }
  .project .f1 .textBox .t{
    font-size: 18px;
    text-align: center;
    margin-top: 3vw;
  }
  .project .f1 .textBox .d{
    font-size: 14px;
    text-align: center;
  }
  .project .f1 .textBox .itemBox{
    margin: 3vw 0;
    justify-content: space-between;
  }
  .project .f1 .textBox .itemBox .item{
    width: 49%;
    padding: 5vw;
    margin-right: 0;
  }
  .project .f1 .textBox .itemBox .item .tt{
    font-size: 16px;
  }
  .project .f1 .textBox .itemBox .item .dd{
    font-size: 14px;
    margin-top: 1vw;
  }
  .project .f1 .textBox .des{
    font-size: 14px;
  }
  .project .f1 .videoBoxs{
    width: 100%;
    height: 50vw;
    margin-top: 3vw;
  }
  .project .f2{
    padding: 10vw 5vw;
  }
  .project .f2 .f2Head .tabBox{
    width: 70%;
    display: -webkit-box;
    overflow-x: scroll;
    padding: 1vw;
  }
  .project .f2 .f2Head .tabBox .tab{
    font-size: 12px;
    padding: 1vw 2vw;
  }
  .project .f2 .f2Swiper .swiper-slide{
    height: 60vw;
  }
  .project .f2 .f2Swiper .swiper-slide .img{
    height: 37vw;
  }
  .project .f2 .f2Swiper .swiper-slide .text .name{
    font-size: 14px;
  }
  .project .f2 .f2Swiper .swiper-slide .text .mores{
    font-size: 12px;
  }
  .project .f2 .swiper-button-next,.project .f2 .swiper-button-prev{
    display: none;
  }
  .project .f3 .f3Swiper{
    margin-top: 5vw;
  }
  .project .f3 .f3Swiper .swiper-slide .img{
    height: 50vw;
  }
  .project .f3 .f3Swiper .swiper-slide .play .playImg{
    width: 13vw !important;
    height: 13vw !important;
  }
  .project .f3 .f3Swiper .swiper-slide .play i{
    font-size: 12px !important;
    top: 40% !important;
  }
  .project .f3 .f3Swiper .swiper-slide .play p{
    font-size: 12px !important;
  }
  .project .f3 .f3Swiper .swiper-slide .text .name{
    font-size: 16px;
    margin-top: 1vw;
  }
  .project .f3 .f3Swiper .swiper-slide .text .des{
    font-size: 14px;
  }
  .project .f3 .swiper-button-next,.project .f3 .swiper-button-prev{
    display: none;
  }
  .project .f33{
    padding: 10vw 5vw;
  }
  .project .f33 .f33Box{
    margin-top: 2vw;
    flex-wrap: wrap;
  }
  .project .f33 .f33Box .item{
    width: 48%;
    height: 55vw;
    margin-top: 3vw;
    flex: inherit;
  }
  .project .f33 .f33Box .item .name{
    font-size: 16px;
  }
  .project .f3{
    padding: 10vw 5vw;
  }
  .project .f4{
    padding: 10vw 5vw;
    display: block;
  }
  .project .f4 .itemBoxLeft{
    width: 100%;
  }
  .project .f4 .itemBoxLeft .item{
    height: 50vw;
    margin-top: 3vw;
  }
  .project .f4 .itemBoxLeft .item .txt{
    width: 100%;
    font-size: 16px;
    padding: 5vw;
    text-align: center;
  }
  .project .f5{
    padding: 10vw 5vw;
  }
  .project .f5 .f5Box{
    display: block;
  }
  .project .f5 .f5Box .left{
    width: 100%;
  }
  .project .f5 .f5Box .left .item{
    height: 50vw;
  }
  .project .f5 .f5Box .right{
    width: 100%;
  }
  .project .f5 .f5Box .left .item .text{
    transform: inherit;
  }
  .project .f5 .f5Box .left .item .text .time{
    font-size: 14px;
    padding-left: 0;
  }
  .project .f5 .f5Box .left .item .text .time::before{
    content: inherit;
  }
  .project .f5 .f5Box .left .item .text .name{
    font-size: 14px;
    margin-top: 1vw;
  }
  .project .f5 .f5Box .left .item .text .more{
    display: none;
  }
  .project .f5 .f5Box .right .item{
    margin-top: 3vw;
    height: 25vw;
  }
  .project .f5 .f5Box .right .item .text .time{
    font-size: 12px;
  }
  .project .f5 .f5Box .right .item .text .name{
    font-size: 14px;
  }
  .project .f5 .f5Box .right .item .text .more{
    display: none;
  }
  .project .f6{
    padding: 0 5vw 10vw 5vw;
  }
  .project .f6 .f6Box{
    padding: 5vw;
    display: block;
  }
  .project .f6 .f6Box .text .t{
    font-size: 16px;
  }
  .project .f6 .f6Box .text .d{
    font-size: 14px;
    margin-top: 1vw;
  }
  .project .f6 .f6Box .qrcodeBox{
    width: 100%;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .project .f6 .f6Box .qrcodeBox .qrcode{
    width: 22vw;
    margin-top: 5vw;
    margin-right: 4vw;
    margin-left: 0;
  }
  .project .f6 .f6Box .qrcodeBox .qrcode p{
    font-size: 12px;
  }
  .milk .f1{
    padding: 10vw 5vw;
  }
  .milk .f1 .des{
    font-size: 14px;
    line-height: 1.7;
  }
  .milk .f1 .f1Box .item .num{
    font-size: 25px;
  }
  .milk .f1 .f1Box .item .num span{
    font-size: 12px;
  }
  .milk .f1 .f1Box .item .t{
    font-size: 14px;
  }
  .milk .f2{
    padding: 0;
  }
  .milk .f2 .titBox{
    top: 5vw;
  }
  .milk .f2 .videoBoxs{
    height: 100vw;
    border-radius: inherit;
  }
  .milk .f2 .videoBoxs .imgBox{
    bottom: 10vw;
  }
  .milk .f2 .videoBoxs .imgBox .imgs {
    width: 22vw;
    height: 12vw;
    margin: 0 2vw;
  }
  .milk .f2 .videoBoxs .imgBox .imgs .t{
    font-size: 12px;
  }
  .milk .f3{
    height: auto;
  }
  .milk .f3 .f3Box .textBox .text{
    margin-top: 5vw;
  }
  .milk .f3 .f3Box .textBox .text .t{
    height: auto;
    font-size: 36px;
  }
  .milk .f3 .f3Box .textBox .text .d{
    font-size: 16px;
  }
  .milk .f3 .f3Box .textBox .text .item{
    font-size: 14px;
    margin: 5vw 0;
  }
  .milk .f3 .f3Box .textBox .text .item .dd{
    font-size: 14px;
  }
  .milk .f3 .f3Box .tabBox .tab{
    width: 30vw;
  }
  .milk .f3 .f3Box .tabBox{
    font-size: 14px;
    margin-top: 20vw;
  }
  .milk .f3 .f3Box .textBox .text .icon{
    width: 15vw;
    height: 10vw;
    margin-top: 5vw;
  }
  .milk .f4{
    height: 120vw;
    position: relative;
    padding: 5vw;
  }
  .milk .f4 .f4Box{
    padding-top: 5vw;
  }
  .milk .f4 .f4Box .itemBox{
    margin-top: 10vw;
  }
  .milk .f4 .f4Box .itemBox .item .img{
    width: 40vw;
    height: 25vw;
  }
  .milk .f4 .f4Box .itemBox .item .txt{
    font-size: 14px;
  }
  .milk .f4 .f4Box .tabBox .tab{
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
    font-size: 14px;
  }
  .milk .f4 .f4Box .tabBox .tab::before{
    content: inherit;
  }
  .milk .f4 .f4Box .tabBox::before{
    height: 22vw;
  }
  .milk .f5{
    padding: 10vw 5vw;
  }
  .milk .f5 .titBox .des{
    font-size: 14px;
    margin-top: 3vw;
  }
  .titBox .des{
    font-size: 14px;
  }
  .quality .f1 .f1Box{
    display: block;
  }
  .quality .f1 .f1Box .item{
    width: 90%;
    margin: 0 auto;
    padding: 5vw 0;
  }
  .quality .f1 .f1Box .item:first-child{
    border-right: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .quality .f1 .f1Box .item .icon{
    width: 5.5vw;
  }
  .quality .f1 .f1Box .item .t{
    font-size: 15px;
    margin: 2vw 0;
  }
  .quality .f1 .f1Box .item .d{
    font-size: 14px;
  }
  .quality .f1 .f1Box .item .its{
    padding: 0;
  }
  .quality .f1 .f1Box .item .its .it .num{
    font-size: 16px;
  }
  .quality .f1 .f1Box .item .its .it .d2{
    font-size: 14px;
  }
  .quality .f2{
    padding: 10vw 5vw;
  }
  .quality .f2 .f2Tab{
    margin: 3vw 0;
    flex-wrap: wrap;
  }
  .quality .f2 .f2Tab .tab{
    font-size: 14px;
    margin: 1vw 3vw;
    padding: 1vw 2vw;
  }
  .quality .f2 .f2Box{
    display: block;
  }
  .quality .f2 .f2Box .item{
    width: 100%;
    height: 70vw;
    margin-bottom: 3vw;
  }
  .quality .f2 .f2Box .item .text .icon{
    width: 5vw;
  }
  .quality .f2 .f2Box .item .text .t{
    font-size: 16px;
    margin: 3vw 0;
  }
  .quality .f2 .f2Box .item .text .d{
    font-size: 14px;
    margin-top: 10vw;
  }
  .quality .f2 .f2Box .item .text .t::before {
    height: 6vw;
    margin-top: 8vw;
  }
  .quality .f7{
    padding: 0 5vw;
  }
  .quality .f7 .titBox{
    display: block;
  }
  .quality .f7 .titBox .des{
    width: 100%;
    margin-top: 3vw;
  }
  .quality .f7 .titBox .des .d{
    font-size: 14px;
  }
  .quality .f7 .img{
    margin-top: 3vw;
  }
  .quality .f8{
    padding: 10vw 5vw;
  }
  .quality .f8 .f8Box{
    height: auto;
  }
  .quality .f8 .f8Box .f8Swiper{
    padding: 5vw;
  }
  .quality .f8 .f8Box .f8Swiper .text{
    font-size: 12px;
    padding: 0 3.3vw;
  }
  .quality .f3{
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .quality .f3 .left{
    width: 100%;
  }
  .quality .f3 .left .f3Box{
    margin-top: 3vw;
  }
  .quality .f3 .left .f3Box .item{
    margin-top: 3vw;
    padding: 5vw;
  }
  .quality .f3 .left .f3Box .item .t{
    font-size: 16px;
  }
  .quality .f3 .left .f3Box .item .d{
    font-size: 14px;
  }
  .quality .f3 .left .f3Box .item .icon::before{
    font-size: 18px;
    right: 3vw;
  }
  .quality .f3 .left .f3Box .active .icon::before{
    font-size: 10px;
  }
  .quality .f3 .right{
    width: 100%;
    height: 60vw;
    margin-top: 5vw;
  }
  .quality .f4{
    margin: 10vw auto;
    display: block;
  }
  .quality .f4 .titBox{
    padding-top: 0;
  }
  .quality .f4 .f4Swiper{
    width: 100%;
    padding: 0;
    margin-top: 5vw;
  }
  .quality .f4 .f4Swiper .swiper-slide .text .time{
    font-size: 12px;
  }
  .quality .f4 .f4Swiper .swiper-slide .text .name{
    font-size: 14px;
  }
  .quality .f4 .f4Swiper .swiper-slide .text .more{
    display: none;
  }
  .quality .f4 .swiper-button-next{
    display: none;
  }
  .quality .f4 .swiper-button-prev{
    display: none;
  }
  .quality .f5{
    padding: 0 5vw;
  }
  .quality .f5 .f4Box{
    flex-wrap: wrap;
  }
  .quality .f5 .f4Box .item {
    width: 47%;
    height: 50vw;
    margin-top: 3vw !important;
  }
  .quality .f5 .f4Box .item:nth-child(2n) {
    margin-right: 0;
  }
  .quality .f5 .f4Box .itemBox{
    width: 100%;
    display: flex;
    margin-top: 3vw;
    justify-content: space-between;
  }
  .quality .f5 .f4Box .itemBox .item{
    height: 50vw;
  }
  .quality .f5 .f4Box .item .text .t{
    font-size: 14px;
  }
  .quality .f6{
    margin-top: 10vw;
    height: auto;
    padding: 10vw 5vw;
  }
  .quality .f6 .text{
    width: 50vw;
    padding: 5vw;
  }
  .quality .f6 .text i{
    font-size: 20px;
  }
  .quality .f6 .text .t{
    font-size: 18px;
    margin: 3vw 0;
  }
  .quality .f6 .text .d{
    font-size: 14px;
  }
  .service .f1{
    padding: 10vw 5vw;
  }
  .service .f1 .f1Box{
    margin-top: 0;
    flex-wrap: wrap;
  }
  .service .f1 .f1Box .item{
    width: 33%;
    margin-top: 5vw;
  }
  .service .f1 .f1Box .item .icon{
    width: 10vw;
  }
  .service .f1 .f1Box .item .t{
    font-size: 14px;
  }
  .service .f1 .f1Box .item::before{
    content: inherit;
  }
  .service .f2{
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .service .f2 .left{
    width: 100%;
  }
  .service .f2 .left .txt .t{
    font-size: 15px;
  }
  .service .f2 .left .txt .d{
    font-size: 14px;
  }
  .service .f2 .right{
    width: 100%;
    margin-top: 5vw;
  }
  .service .f2 .right .f2Swiper .swiper-slide .name{
    font-size: 14px;
    padding: 3vw;
  }
  .service .f2 .right .swiper-button-next,.service .f2 .right .swiper-button-prev{
    display: none;
  }
  .service .f3 .f3Box{
    padding: 10vw 5vw;
  }
  .service .f3 .f3Box .titBox .des{
    width: 100%;
    font-size: 14px;
    margin: 3vw auto;
  }
  .service .f4{
    padding: 5vw;
  }
  .service .f4 .f4Box .item{
    padding: 5vw;
  }
  .service .f4 .f4Box .item .t{
    font-size: 16px;
  }
  .service .f4 .f4Box .item .d{
    font-size: 14px;
  }
  .service .f4 .f4Box .item .d span{
    font-size: 14px;
  }
  .service .f4 .titBox{
    position: relative;
    transform: inherit;
    top: inherit;
    left: inherit;
  }
  .service .f4 .f4Box{
    position: relative;
    top: 0;
    margin-top: 5vw;
  }
  .service .f4 .f4Img{
    display: none;
  }
  .service .f4 .f4Box .item{
    top: inherit !important;
    left: inherit !important;
    margin-top: 5vw;
  }
  .service .f5{
    padding: 10vw 0;
  }
  .service .f5 .titBox .des{
    width: 90%;
    margin: 3vw auto;
    font-size: 14px;
  }
  .service .f5 .f5Box .itemBox .item{
    width: 25vw;
  }
  .service .f5 .info{
    font-size: 12px;
  }
  .news .f1{
    padding: 10vw 0;
  }
  .news .f1 .titBox .tit{
    font-size: 20px;
  }
  .news .f1 .titBox{
    padding: 0 5vw;
  }
  .news .f1 .f1Swiper{
    width: 90%;
    margin: 5vw auto;
  }
  .news .f1 .f1Swiper .swiper-slide{
    display: block;
  }
  .news .f1 .f1Swiper .swiper-slide .imgBox{
    width: 100%;
    height: 50vw;
  }
  .news .f1 .f1Swiper .swiper-slide::before{
    content: inherit;
  }
  .news .f1 .f1Swiper .swiper-slide .text{
    width: 100%;
    padding: 3vw 0;
  }
  .news .f1 .f1Swiper .swiper-slide .text .time{
    font-size: 12px;
  }
  .news .f1 .f1Swiper .swiper-slide .text .name{
    font-size: 14px;
  }
  .news .f1 .f1Swiper .swiper-slide .text .des{
    display: none;
  }
  .news .f1 .f1Swiper .swiper-slide .text .more{
    display: none;
  }
  .news .f1 .f1Swiper .swiper-button-prev{
    display: none;
  }
  .news .f1 .f1Swiper .swiper-button-next{
    display: none;
  }
  .news .f1 .f2Swiper{
    margin-top: 0;
    padding-left: 5vw;
    display: none;
  }
  .news .f1 .f2Swiper .swiper-slide .text{
    padding: 3vw;
  }
  .news .f1 .f2Swiper .swiper-slide .text .time{
    font-size: 12px;
  }
  .news .f1 .f2Swiper .swiper-slide .text .name{
    font-size: 14px;
    margin-top: 1vw;
  }
  .news .f1 .next,.news .f1 .prev{
    display: none;
  }
  .join .f1{
    padding: 10vw 5vw;
  }
  .join .f1 .f1Box{
    display: block;
    margin-top: 0;
  }
  .join .f1 .f1Box .item{
    width: 100%;
    height: 50vw;
    margin-right: 0;
    margin-top: 5vw;
    background-blend-mode: multiply;
  }
  .join .f1 .f1Box .item .txt{
    padding: 5vw;
  }
  .join .f1 .f1Box .item .txt .t{
    font-size: 16px;
  }
  .join .f1 .f1Box .item .txt .d{
    width: 100%;
    font-size: 14px;
    margin-top: 3vw;
    height: auto;
    opacity: 0.9;
  }
  .join .f2{
    padding: 10vw 5vw;
    display: block;
  }
  .join .f2 .f2Box{
    width: 100%;
  }
  .join .f2 .f2Box .item{
    padding: 5vw;
    margin-top: 5vw;
    margin-bottom: 0;
  }
  .join .f2 .f2Box .item .t{
    font-size: 16px;
  }
  .join .f2 .f2Box .item .d{
    font-size: 14px;
  }
  .join .f2 .f2Box .item .icon{
    width: 7vw;
    height: 7vw;
    right: 5vw;
    top: 5vw;
  }
  .join .f3{
    padding: 10vw 5vw;
  }
  .join .f3 .f3List{
    display: block;
  }
  .join .f3 .f3Box{
    width: 100%;
    height: auto;
    margin-top: 0;
    display: block;
    padding-bottom: 10vw;
  }
  .join .f3 .f3Item{
    width: 100%;
    margin-top: 5vw;
    padding: 5vw;
  }
  .join .f3 .f3Item .it .t{
    font-size: 16px;
  }
  .join .f3 .f3Item .it .d{
    font-size: 14px;
  }
  .join .f3 .f3Item .it .info{
    font-size: 12px;
  }
  .join .f3 .f3Item .it .d img{
    width: 35vw;
  }
  .join .f3 .f3Box .item{
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-top: 5vw;
    box-shadow: inherit;
  }
  .join .f3 .f3Box .item .itemHead{
    padding-bottom: 3vw;
  }
  .join .f3 .f3Box .item .itemHead .text .icon{
    width: 7vw;
  }
  .join .f3 .f3Box .item .itemHead .text .txt{
    margin-left: 3vw;
  }
  .join .f3 .f3Box .item .itemHead .text .txt .t{
    font-size: 14px;
  }
  .join .f3 .f3Box .item .itemHead .text .txt .d{
    font-size: 12px;
  }
  .join .f3 .f3Box .item .itemHead .btn{
    font-size: 12px;
    padding: 1.5vw 2vw;
  }
  .join .f3 .f3Box .item .des{
    padding-top: 3vw;
    font-size: 12px;
  }
  .join .f4{
    padding: 10vw 5vw;
  }
  .join .f4 .f4Swiper .swiper-slide .name{
    font-size: 14px;
  }
  .contactUs .f1{
    padding: 10vw 5vw;
  }
  .contactUs .f1 .f1Img{
    display: none;
  }
  .contactUs .f1 .f1Box{
    position: relative;
    top: inherit;
  }
  .contactUs .f1 .f1Box .itemBox{
    width: 100%;
    position: relative;
    top: inherit !important;
    left: inherit !important;
    padding: 3vw;
    border-radius: 5px;
    margin-top: 3vw;
    border: 1px solid #0055B9;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 5px 0 50px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2.5px);
  }
  .contactUs .f1 .f1Box .itemBox .icon{
    display: none;
  }
  .contactUs .f1 .f1Box .itemBox .item{
    opacity: 1;
  }
  .contactUs .f1 .f1Box .itemBox .item .its{
    margin-bottom: 3vw;
  }
  .contactUs .f1 .f1Box .itemBox .item .its .t{
    font-size: 16px;
  }
  .contactUs .f1 .f1Box .itemBox .item .its .d{
    font-size: 14px;
  }
  .contactUs .f2{
    padding: 10vw 5vw;
    display: block;
  }
  .contactUs .f2 .form{
    width: 100%;
    margin-top: 5vw;
  }
  .contactUs .f2 .form .inputBox{
    margin-bottom: 3vw;
    display: block;
  }
  .contactUs .f2 .form .inputBox .input{
    margin-right: 0;
    margin-top: 3vw;
    padding: 3vw;
  }
  .contactUs .f2 .form .inputBox .input input{
    font-size: 14px;
  }
  .contactUs .f2 .form .inputBox .input select{
    font-size: 14px;
  }
  .contactUs .f2 .form .textarea{
    padding: 3vw;
    margin-right: 0;
  }
  .contactUs .f2 .form .textarea textarea{
    height: 15vw;
    font-size: 14px;
  }
  .contactUs .f2 .form .submit{
    display: table;
    font-size: 14px;
    margin: 5vw auto 0 auto;
    padding: 2vw 8vw;
  }
  .newsList .f1{
    padding: 10vw 0;
  }
  .newsList .f1 .titBox{
    padding: 0 5vw 3vw 5vw;
  }
  .newsList .f1 .titBox .tit{
    font-size: 18px;
  }
  .newsList .f1 .item{
    padding: 5vw;
  }
  .newsList .f1 .item .imgBox{
    width: 40vw;
    height: 20vw;
  }
  .newsList .f1 .item .time .day{
    font-size: 14px;
  }
  .newsList .f1 .item .time .year{
    font-size: 14px;
  }
  .newsList .f1 .item .text{
    width: 50vw;
    padding: 0 3vw;
  }
  .newsList .f1 .item .time{
    font-weight: normal;
    padding-top: 0;
  }
  .newsList .f1 .item .text .name{
    font-size: 14px;
  }
  .newsList .f1 .item .text .des{
    display: none;
  }
  .about .f3{
    padding: 10vw 5vw;
  }
  .about .f3 .f3Swiper .swiper-button-next,.about .f3 .f3Swiper .swiper-button-prev{
    display: none;
  }
  .bannerBox::before{
    content: inherit;
  }
  .service .f2 .right .f2Swiper .swiper-slide .imgBox{
    height: 50vw;
  }
  .quality .f4 .f4Swiper .swiper-slide .imgBox{
    height: 50vw;
  }
  .quality .f8 .f8Box .f8Swiper .img{
    height: 50vw;
  }
  .quality .f8 .f8Box .f8Swiper .img img{
    height: auto;
  }
  .quality .f8 .f8Box .f8Swiper .text::before{
    width: 5.5vw;
    height: 9vw;
  }
  .quality .f8 .f8Box .f8Swiper .text::after{
    width: 5.5vw;
    height: 9vw;
  }
  .quality .f8 .swiper-button-next,.quality .f8 .swiper-button-prev{
    display: none;
  }
  .quality .f5 .more{
    top: inherit;
    margin: 5vw 0 0 0;
  }
  .index .f1 .f1Link{
    display: none;
  }
  .join .f4 .f4Swiper{
    margin-top: 5vw;
  }
  .join .f4 .f4Swiper .swiper-slide .imgBox{
    height: 50vw;
  }
  .join .f4 .swiper-button-next,.join .f4 .swiper-button-prev{
    display: none;
  }
  .project .f4 .itemBoxLeft .item .txt{
    bottom: 0;
    font-size: 18px;
  }
  .project .f4 .itemBoxLeft .item .txt .d{
    opacity: 1;
    font-size: 14px;
    text-align: left;
  }
  .join .f3 .swiper-button-next,.join .f3 .swiper-button-prev{
    display: none;
  }
    .index .f5{
        height: auto;
    }
    .index .f5 .f5Box{
        position: relative;
        transform: inherit;
        top: inherit;
        left: inherit;
        padding-top: 10vw;
    }
}
