@font-face {
  font-family: 'iconfont';
  /* Project id 4959180 */
  src: url('//at.alicdn.com/t/c/font_4959180_z1l4zsnqigd.woff2?t=1750923139711') format('woff2'), url('//at.alicdn.com/t/c/font_4959180_z1l4zsnqigd.woff?t=1750923139711') format('woff'), url('//at.alicdn.com/t/c/font_4959180_z1l4zsnqigd.ttf?t=1750923139711') format('truetype');
}
@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Manrope;
}
input,
textarea {
  font-family: Manrope;
}
.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: #06133f;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.cp_th {
  -webkit-clip-path: polygon(10% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: all 1s ease 0.3s;
}
.cp_th.is-inview {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%);
}
.st_fadeUp {
  -webkit-transition: all 1s ease 0.3s;
  -webkit-transform: translateY(50px);
  opacity: 0;
}
.st_fadeUp.is-inview {
  -webkit-transform: translateY(0px);
  opacity: 1;
}
header {
  width: 100%;
  height: 0;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 3vw 8vw;
  transition: 0.4s all ease-in-out;
}
header .logo {
  width: 9vw;
}
header .right {
  display: flex;
}
header .right nav ul {
  display: flex;
}
header .right nav ul li {
  width: 8vw;
  color: white;
  text-align: center;
}
header .right nav ul li a {
  color: white;
  font-size: 20px;
  font-family: Manrope;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.5vw;
  display: inline-block;
  cursor: pointer;
}
header .right nav ul li ul {
  width: 110%;
  display: block;
  position: relative;
  padding: 0.5vw 0.5vw;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all ease-in-out;
  background: white;
  border-radius: 3px;
  margin-left: -0.5vw;
}
header .right nav ul li ul li {
  height: auto;
  padding: 0 0 0.2vw 0;
  margin-right: 0;
}
header .right nav ul li ul li a {
  font-size: 15px;
  color: #666666;
  margin-bottom: 0;
  padding-bottom: 0;
}
header .right nav ul li ul li a::before {
  content: '';
  position: absolute;
  width: 0%;
  right: 0%;
  left: auto;
  height: 2px;
  background: #001eb4;
  bottom: -5px;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .right nav ul li ul li a:hover::before {
  width: 100%;
  left: 0%;
  right: auto;
}
header .right nav ul li:hover ul {
  opacity: 1;
  pointer-events: all;
}
header .right nav ul li:last-child {
  margin-right: 0;
}
header .right .lang {
  width: 5vw;
  margin-left: 2vw;
}
header.active {
  height: 15rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
header.active .right nav ul li ul {
  opacity: 1;
  pointer-events: all;
}
header::after {
  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%, transparent 100%);
}
footer {
  width: 100%;
  background: #15255d;
  padding: 6vw 5vw;
  position: relative;
}
footer .footer {
  width: 100%;
  height: auto;
  background: url('../images/img6.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw;
  display: flex;
  justify-content: space-between;
  padding: 5vw 3vw;
}
footer .footer .left .t {
  color: #ffffff;
  font-size: 2vw;
  font-weight: 200;
}
footer .footer .left .t span {
  font-weight: bold;
}
footer .footer .left .formCheck {
  width: 18vw;
  display: flex;
  justify-content: space-between;
  background: white;
  font-size: 1vw;
  align-items: center;
  padding: 1vw 2vw;
  border-radius: 0.5vw;
  cursor: pointer;
  margin-top: 3vw;
}
footer .footer .left .formCheck i {
  transform: rotate(-45deg);
  font-size: 1.5vw;
  transition: 0.3s all ease-in-out;
}
footer .footer .left .formCheck:hover i {
  transform: rotate(0);
}
footer .footer .right {
  width: 44vw;
  color: white;
  font-size: 0.9vw;
  line-height: 2;
}
footer .footer .right .des2 {
  margin: 2vw 0;
}
footer .footerInfo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: white;
  margin-top: 5vw;
}
footer .footerInfo .item .t {
  opacity: 0.8;
  font-size: 0.9vw;
  font-weight: bold;
}
footer .footerInfo .item .d {
  font-size: 0.85vw;
  opacity: 0.5;
  margin-top: 0.5vw;
  color: white;
  display: block;
}
.formModal {
  width: 100%;
  height: 200vh;
  overflow-y: scroll;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.formModal .mengban {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.formModal .modalBox {
  width: 65vw;
  background-color: #ffffff;
  border-radius: 1vw;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2vw 8vw;
}
.formModal .modalBox .close {
  position: absolute;
  right: 2vw;
  top: 2vw;
  font-size: 1.2vw;
  color: #999999;
  cursor: pointer;
}
.formModal .modalBox .tit {
  font-weight: bold;
  font-size: 1.2vw;
}
.formModal .modalBox .inputBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formModal .modalBox .inputBox .input {
  width: 24vw;
}
.formModal .modalBox .input {
  width: 100%;
  height: 3vw;
  background-color: #f1f1f1;
  border-radius: 0.5vw;
  margin-top: 1vw;
  padding: 0 1vw;
}
.formModal .modalBox .input input {
  width: 100%;
  height: 100%;
  font-size: 0.9vw;
  border: transparent;
  background: transparent;
  outline: none;
}
.formModal .modalBox .textarea {
  width: 100%;
  height: 10vw;
  background-color: #f1f1f1;
  border-radius: 0.5vw;
  margin-top: 1vw;
  padding: 1vw;
}
.formModal .modalBox .textarea textarea {
  width: 100%;
  height: 100%;
  font-size: 0.9vw;
  border: transparent;
  background: transparent;
  outline: none;
}
.formModal .modalBox .check {
  font-size: 0.9vw;
  margin-top: 2vw;
  display: flex;
  align-items: center;
}
.formModal .modalBox .check input {
  width: 1vw;
  height: 1vw;
  -webkit-appearance: auto;
  margin: 0 0.5vw;
}
.formModal .modalBox .check span {
  font-weight: bold;
}
.formModal .modalBox .submit {
  width: 15vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.5vw;
  font-size: 1vw;
  align-items: center;
  margin-top: 2vw;
  cursor: pointer;
}
.formModal .modalBox .submit i {
  transform: rotate(-45deg);
  font-size: 1.5vw;
  transition: 0.3s all ease-in-out;
}
.formModal .modalBox .submit:hover i {
  transform: rotate(0);
}
.formModal.active {
  display: block;
}
.serachModal {
  width: 100%;
  height: 200vh;
  overflow-y: scroll;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.serachModal .mengban {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.serachModal .modalBox {
  width: 45vw;
  height: auto;
  background-color: #ffffff;
  border-radius: 1vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2vw;
}
.serachModal .modalBox .close {
  position: absolute;
  right: 2vw;
  top: 2vw;
  font-size: 1.2vw;
  color: #999999;
  cursor: pointer;
}
.serachModal .modalBox .tit {
  font-weight: bold;
  font-size: 1.5vw;
}
.serachModal .modalBox .input {
  color: #999999;
  padding: 1vw 0;
  margin-top: 2vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.serachModal .modalBox .input input {
  width: 100%;
  font-size: 1vw;
  border: transparent;
  background: transparent;
  outline: none;
}
.serachModal .modalBox .submit {
  width: 8vw;
  padding: 0.7vw 2vw;
  background-color: #06133f;
  border-radius: 3vw;
  display: flex;
  justify-content: space-between;
  font-size: 1vw;
  align-items: center;
  cursor: pointer;
  color: white;
  margin-top: 2vw;
}
.serachModal .modalBox .submit i {
  transform: rotate(-45deg);
  font-size: 1.2vw;
  margin-left: 0.5vw;
  transition: 0.3s all ease-in-out;
}
.serachModal .modalBox .submit:hover i {
  transform: rotate(0);
}
.serachModal.active {
  display: block;
}
.bannerBox {
  width: 100%;
  height: 35vw;
  position: relative;
  overflow: hidden;
}
.bannerBox .banner {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s allease-in-out;
  animation: bannerBoxidentifier 2s forwards;
}
@keyframes bannerBoxidentifier {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bannerBox .text {
  color: white;
  font-weight: bold;
  font-size: 2vw;
  line-height: 1.2;
  position: absolute;
  left: 8vw;
  bottom: 8vw;
}
.titBox {
  color: white;
  font-weight: bold;
  font-size: 3vw;
}
.more {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 0.5vw;
  font-size: 1vw;
  align-items: center;
  color: white;
}
.more i {
  transform: rotate(-45deg);
  font-size: 1.5vw;
  transition: 0.3s all ease-in-out;
}
.more:hover i {
  transform: rotate(0);
}
.index {
  width: 100%;
  position: relative;
}
.index .videoBanner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index .videoBanner .text {
  position: absolute;
  color: white;
  z-index: 9;
  font-size: 2.5vw;
  top: 20vw;
  left: 8vw;
  line-height: 1.7;
  font-style: italic;
  text-transform: uppercase;
}
.index .videoBanner .text span {
  font-weight: bold;
  font-style: normal;
}
.index .videoBanner video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.index .videoBanner .iconDown {
  width: 7vw;
  height: 7vw;
  position: absolute;
  left: 8vw;
  bottom: 4vw;
}
.index .videoBanner .iconDown .iconImg {
  width: 7vw;
  height: 7vw;
  background: url('../images/icon.png') center no-repeat;
  background-size: cover !important;
  animation: spin 15s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.index .videoBanner .iconDown .jiantou {
  color: white;
  width: 4vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index .f1 {
  width: 100%;
  height: auto;
  position: relative;
  background: url('../images/img2.jpg') center no-repeat;
  background-size: cover !important;
  padding: 7vw 8vw 12vw 8vw;
  color: white;
}
.index .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f1 .f1Box .text {
  width: 47vw;
}
.index .f1 .f1Box .text .t {
  font-weight: bold;
  font-size: 1vw;
}
.index .f1 .f1Box .text .des {
  font-weight: 200;
  font-size: 1.4vw;
  margin-top: 4vw;
  line-height: 2;
}
.index .f1 .f1Box .text .des strong {
  font-size: 2vw;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.index .f1 .f1Box .imgBox {
  width: 32vw;
  height: auto;
  box-shadow: 0vw 1vw 5vw 0vw rgba(11, 17, 36, 0.43);
  border-radius: 1vw;
  border: 1px solid #778bcf;
  padding: 4vw 3vw;
  overflow: hidden;
}
.index .f1 .f1Box .imgBox .img {
  width: 100%;
  margin: 2vw 0;
  display: block;
}
.index .f1 .f1Box .cursor-box {
  position: absolute;
  top: -4vw;
  left: -4vw;
  z-index: 999;
  pointer-events: none;
}
.index .f1 .f1Box .cursor-box .circle-default {
  width: 9vw;
  height: 9vw;
  border-radius: 50%;
  background-color: rgba(48, 70, 145, 0.8);
  transform: scale(0) rotate(-45deg);
  transition: 0.5s all ease-in-out;
  text-align: center;
  line-height: 9vw;
}
.index .f1 .f1Box .cursor-box .circle-default i {
  color: white;
  font-size: 3.5vw;
}
.index .f1 .f1Box .cursor-box.active .circle-default {
  transform: scale(1) rotate(-45deg);
}
.index .f2 {
  width: 100%;
  background: white;
  position: relative;
}
.index .f2 .itemBox {
  width: 100%;
  padding: 0 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: -5vw;
}
.index .f2 .itemBox .imgBox {
  width: 48vw;
  height: 37vw;
  box-shadow: 0vw 1vw 5vw 0vw rgba(0, 0, 0, 0.1);
  border-radius: 1vw;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.index .f2 .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all ease-in-out;
}
.index .f2 .itemBox .imgBox:hover .img {
  transform: scale(1.1);
}
.index .f2 .itemBox .textBox {
  width: 30vw;
  color: #333333;
}
.index .f2 .itemBox .textBox .t {
  font-size: 2vw;
  font-weight: bold;
}
.index .f2 .itemBox .textBox .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 3vw;
}
.index .f2 .itemBox .textBox .des p {
  position: relative;
}
.index .f3 {
  width: 100%;
  background: white;
  position: relative;
  padding-bottom: 6vw;
}
.index .f3 .itemBox {
  width: 100%;
  padding: 7vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f3 .itemBox .imgBox {
  width: 48vw;
  height: 37vw;
  box-shadow: 0vw 1vw 5vw 0vw rgba(0, 0, 0, 0.1);
  border-radius: 1vw;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.index .f3 .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all ease-in-out;
}
.index .f3 .itemBox .imgBox:hover .img {
  transform: scale(1.1);
}
.index .f3 .itemBox .textBox {
  width: 32vw;
  color: #333333;
}
.index .f3 .itemBox .textBox .t {
  font-size: 2vw;
  font-weight: bold;
}
.index .f3 .itemBox .textBox .desBox {
  font-size: 1vw;
  line-height: 2;
  margin-top: 3vw;
  font-weight: bold;
}
.index .f3 .itemBox .textBox .desBox a {
  text-decoration: underline;
  display: block;
  color: #737373;
}
.index .f3 .itemBox .textBox .desBox .des {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all ease-in-out;
  font-size: 0.85vw;
  font-weight: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index .f3 .itemBox .textBox .desBox .des p {
  width: 50%;
}
.index .f3 .itemBox .textBox .desBox.active .des {
  height: auto;
  opacity: 1;
  color: #737373;
  pointer-events: all;
  margin-bottom: 0.5vw;
}
.index .f3 .itemBox .textBox .more {
  width: 10vw;
  color: #06133f;
  border-bottom: 1px solid #06133f;
  margin-top: 3vw;
  cursor: pointer;
}
.index .f3 .f3Text {
  text-align: center;
  font-size: 2vw;
  font-weight: 200;
}
.index .f3 .f3Text span {
  color: #06133f;
  font-style: italic;
  font-weight: bold;
}
.DoGoodWork {
  width: 100%;
  position: relative;
}
.DoGoodWork .f1 {
  width: 100%;
  position: relative;
  padding: 3vw;
}
.DoGoodWork .f1 .f1Box {
  width: 100%;
  height: auto;
  background: url('../images/img7.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  padding: 5vw;
}
.DoGoodWork .f1 .f1Box .t {
  font-size: 2vw;
  font-weight: bold;
}
.DoGoodWork .f1 .f1Box .f1Swiper {
  width: 100%;
  padding: 4vw 0 5vw 0;
  margin-top: 2vw;
  position: relative;
  overflow: hidden;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide {
  height: auto;
  background: rgba(50, 72, 148, 0.35);
  border-radius: 1vw;
  overflow: hidden;
  padding: 1vw 2vw 2vw 2vw;
  backdrop-filter: blur(8px);
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .num {
  font-size: 3vw;
  text-align: right;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text {
  margin-top: 7vw;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text .icon {
  width: 3.5vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text .des {
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 1vw;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-next {
  width: 5vw;
  height: 2vw;
  border-radius: 1vw;
  border: 1px solid #ffffff;
  right: inherit;
  left: 6vw;
  bottom: 0;
  top: inherit;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-next i {
  color: white;
  font-size: 2vw;
  transform: rotate(-90deg);
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-prev {
  width: 5vw;
  height: 2vw;
  border-radius: 1vw;
  border: 1px solid #ffffff;
  left: 0;
  bottom: 0;
  top: inherit;
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-prev i {
  color: white;
  font-size: 2vw;
  transform: rotate(90deg);
}
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-next:after,
.DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-prev:after {
  content: inherit;
}
.DoGoodWork .f2 {
  width: 100%;
  padding: 6vw 8vw;
  position: relative;
}
.DoGoodWork .f2 .t {
  font-size: 2vw;
  font-weight: bold;
}
.DoGoodWork .f2 .f2Box {
  width: 100%;
  position: relative;
}
.DoGoodWork .f2 .f2Box .itemBox {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5vw;
}
.DoGoodWork .f2 .f2Box .itemBox .imgBox {
  width: 41vw;
  height: 23vw;
  box-shadow: 0vw 1vw 5vw 0vw rgba(0, 0, 0, 0.1);
  border-radius: 1vw;
  overflow: hidden;
}
.DoGoodWork .f2 .f2Box .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.DoGoodWork .f2 .f2Box .itemBox .imgBox:hover .img {
  transform: scale(1.1);
}
.DoGoodWork .f2 .f2Box .itemBox .textBox {
  width: 37vw;
}
.DoGoodWork .f2 .f2Box .itemBox .textBox .tit {
  font-size: 1.2vw;
  font-weight: bold;
}
.DoGoodWork .f2 .f2Box .itemBox .textBox .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 2vw;
}
.projects {
  width: 100%;
  position: relative;
}
.projects .f1 {
  width: 100%;
  position: relative;
  padding: 3vw 3vw 0 3vw;
}
.projects .f1 .f1Box {
  width: 100%;
  height: auto;
  background: url('../images/img11.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  padding: 0 6vw 6vw 6vw;
}
.projects .f1 .f1Box .f1Img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .f1 .f1Box .f1Img .img {
  width: 35vw;
  height: 35vw;
  position: relative;
}
.projects .f1 .f1Box .f1Img .img img {
  width: 100%;
  position: absolute;
  top: 0;
  transition: 0.5s all ease-in-out;
}
.projects .f1 .f1Box .f1Img .img img:nth-child(2) {
  opacity: 0;
}
.projects .f1 .f1Box .f1Img .img:hover img:nth-child(1) {
  opacity: 0;
}
.projects .f1 .f1Box .f1Img .img:hover img:nth-child(2) {
  opacity: 1;
}
.projects .f1 .f1Box .f1Img .text {
  width: 35vw;
}
.projects .f1 .f1Box .f1Img .text .tit {
  font-size: 1.5vw;
  font-weight: bold;
}
.projects .f1 .f1Box .f1Img .text .des {
  font-size: 1vw;
  line-height: 2;
  margin-top: 2vw;
}
.projects .f1 .f1Box .f1Item {
  width: 100%;
  position: relative;
  margin-top: 5vw;
}
.projects .f1 .f1Box .f1Item .tit {
  font-size: 1.5vw;
  font-weight: bold;
}
.projects .f1 .f1Box .f1Item .f1Swiper {
  width: 100%;
  margin-top: 4vw;
  position: relative;
  overflow: hidden;
}
.projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide {
  height: auto;
  border: 1px solid white;
  border-radius: 1vw;
  overflow: hidden;
  padding: 1vw;
}
.projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .num {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.5vw;
  font-size: 1.2vw;
  background-color: #ffffff;
  color: #324894;
  font-weight: bold;
  text-align: center;
  line-height: 2.5vw;
}
.projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .text .t {
  font-size: 1vw;
  font-weight: bold;
  margin: 0.5vw 0;
}
.projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
}
.projects .f1 .f1Box .f1Item .swiper-button-next {
  width: 5vw;
  height: 2vw;
  border-radius: 1vw;
  border: 1px solid #ffffff;
  right: inherit;
  right: 0;
  top: 2vw;
}
.projects .f1 .f1Box .f1Item .swiper-button-next i {
  color: white;
  font-size: 2vw;
  transform: rotate(-90deg);
}
.projects .f1 .f1Box .f1Item .swiper-button-prev {
  width: 5vw;
  height: 2vw;
  border-radius: 1vw;
  border: 1px solid #ffffff;
  left: inherit;
  right: 6vw;
  top: 2vw;
}
.projects .f1 .f1Box .f1Item .swiper-button-prev i {
  color: white;
  font-size: 2vw;
  transform: rotate(90deg);
}
.projects .f1 .f1Box .f1Item .swiper-button-next:after,
.projects .f1 .f1Box .f1Item .swiper-button-prev:after {
  content: inherit;
}
.projects .f2 {
  width: 100%;
  background: url('../images/img13.png') center no-repeat;
  background-size: cover !important;
  position: relative;
  padding: 8vw 8vw 5vw 8vw;
  display: flex;
  justify-content: space-between;
}
.projects .f2 .tit {
  font-size: 2vw;
  font-weight: bold;
}
.projects .f2 .text {
  width: 45vw;
}
.projects .f2 .text .its {
  padding: 1.2vw 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.projects .f2 .text .its .t {
  font-size: 1.2vw;
  position: relative;
  font-weight: bold;
}
.projects .f2 .text .its .t .icon {
  position: absolute;
  right: 0;
  font-size: 1.2vw;
  font-family: inherit;
  margin-top: -1.6vw;
}
.projects .f2 .text .its .t .icon p:nth-child(2) {
  display: none;
}
.projects .f2 .text .its .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  height: 0;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  pointer-events: none;
}
.projects .f2 .text .active .t .icon p:nth-child(1) {
  display: none;
}
.projects .f2 .text .active .t .icon p:nth-child(2) {
  display: block;
}
.projects .f2 .text .active .d {
  opacity: 1;
  height: 11vw;
  margin-top: 1vw;
  pointer-events: all;
}
.projects .f3 {
  width: 100%;
  position: relative;
  padding: 0 8vw;
}
.projects .f3 .tit {
  font-size: 2vw;
  font-weight: bold;
}
.projects .f3 .f3Item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 4vw;
}
.projects .f3 .f3Item .item {
  width: 41vw;
  height: 23vw;
  background-color: #000000;
  box-shadow: 0vw 1vw 5vw 0vw rgba(0, 0, 0, 0.1);
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.projects .f3 .f3Item .item .imgBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.projects .f3 .f3Item .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.projects .f3 .f3Item .item .text {
  width: 100%;
  position: absolute;
  color: white;
  bottom: -2.5vw;
  padding: 2vw;
  transition: 0.3s all ease-in-out;
}
.projects .f3 .f3Item .item .text .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.projects .f3 .f3Item .item .text .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.projects .f3 .f3Item .item:hover .imgBox .img {
  transform: scale(1.1);
}
.projects .f3 .f3Item .item:hover .text {
  bottom: 0;
}
.projects .f3 .f3Item .item:hover .text .d {
  opacity: 1;
}
.projects .f3 .f3Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 6vw 0;
}
.projects .f3 .f3Box .item {
  width: 26vw;
  display: block;
  border-radius: 0.5vw;
  overflow: hidden;
}
.projects .f3 .f3Box .item .img {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
  background-size: cover !important;
}
.projects .f3 .f3Box .item .text {
  background-color: #f9f9f9;
  font-size: 1vw;
  font-weight: bold;
  padding: 2vw;
}
.projects .f3 .f3Box .item:hover .text {
  color: #001eb4;
}
.projects .detailBox {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.projects .detailBox .detail {
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 1vw;
  position: relative;
  padding: 0 4vw;
}
.projects .detailBox .detail .titBox {
  display: flex;
  justify-content: space-between;
  padding: 2vw 0;
  align-items: center;
}
.projects .detailBox .detail .titBox .tit {
  font-weight: bold;
  font-size: 1.5vw;
  color: #333333;
}
.projects .detailBox .detail .titBox .back {
  background-color: #1f3379;
  border-radius: 5vw;
  color: white;
  font-size: 1vw;
  font-weight: normal;
  padding: 0.2vw 0.8vw;
}
.projects .detailBox .detail .detailContent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2vw 0 3vw 0;
}
.projects .detailBox .detail .detailContent .img {
  width: 26vw;
  height: 16vw;
  border-radius: 1vw;
  background-size: cover !important;
}
.projects .detailBox .detail .detailContent .textBox {
  width: 46vw;
}
.projects .detailBox .detail .detailContent .textBox .its{
  font-size: 0.9vw;
  margin-top: 0.5vw;
  line-height: 2;
}
.projects .detailBox .detail .detailContent .textBox .its .it {
  margin-bottom: 3vw;
}
.projects .detailBox .detail .detailContent .textBox .its strong {
  font-weight: bold;
  font-size: 1.2vw;
}
.projects .detailBox .detail .detailContent .textBox .its .it .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox {
  width: 100%;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .tit {
  font-size: 1.2vw;
  font-weight: bold;
  padding-bottom: 2vw;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2vw;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table {
  border-collapse: collapse;
  width: 100%;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table colgroup{
  display: none;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table tbody tr{
  margin-top: 2vw;
  font-size: .9vw;
  display: flex;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table tbody tr td{
  width: 50%;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table tbody tr:nth-child(odd) {
  color: #999999;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table tbody tr:nth-child(even) {
  font-weight: bold;
  margin-top: 0.5vw;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu .item {
  width: 45%;
  font-size: 0.9vw;
  margin-top: 2vw;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu .item .t {
  color: #999999;
}
.projects .detailBox .detail .detailContent .textBox .canshuBox .canshu .item .d {
  font-weight: bold;
  margin-top: 0.5vw;
}
.projects .detailBox .detail .detailContent .textBox .pnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous {
  width: 22vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5vw 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous .icon {
  transform: rotate(180deg);
  transition: 0.3s all ease-in-out;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous .icon i {
  background-color: #000000;
  border-radius: 50%;
  padding: 0.4vw;
  color: white;
  font-size: 1rem;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous .text {
  width: 80%;
  font-size: 1vw;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous .text .t {
  font-weight: bold;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .previous .text .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.5;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next {
  width: 22vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5vw 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next .icon {
  transition: 0.3s all ease-in-out;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next .icon i {
  background-color: #000000;
  border-radius: 50%;
  padding: 0.4vw;
  color: white;
  font-size: 1rem;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next .text {
  width: 80%;
  font-size: 1vw;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next .text .t {
  font-weight: bold;
}
.projects .detailBox .detail .detailContent .textBox .pnBox .next .text .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.5;
}
.Flexibility {
  width: 100%;
  position: relative;
}
.Flexibility .f1 {
  width: 100%;
  position: relative;
  padding: 7vw 8vw;
  display: flex;
  justify-content: space-between;
}
.Flexibility .f1 .img {
  width: 36vw;
  height: 28vw;
  background-size: cover !important;
  overflow: hidden;
  border-radius: 1vw;
}
.Flexibility .f1 .text {
  width: 44vw;
  padding: 2vw 0 0 0;
}
.Flexibility .f1 .text .name {
  font-size: 2vw;
  margin-bottom: 2vw;
  position: relative;
  font-weight: bold;
}
.Flexibility .f1 .text .its {
  padding: 1.2vw 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.Flexibility .f1 .text .its .t {
  font-size: 1.2vw;
  position: relative;
}
.Flexibility .f1 .text .its .t .icon {
  position: absolute;
  right: 0;
  font-size: 1.2vw;
  font-family: inherit;
  margin-top: -1.6vw;
}
.Flexibility .f1 .text .its .t .icon p:nth-child(2) {
  display: none;
}
.Flexibility .f1 .text .its .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  height: 0;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.Flexibility .f1 .text .active .t .icon p:nth-child(1) {
  display: none;
}
.Flexibility .f1 .text .active .t .icon p:nth-child(2) {
  display: block;
}
.Flexibility .f1 .text .active .d {
  opacity: 1;
  height: 5vw;
  margin-top: 1vw;
}
.Flexibility .f2 {
  width: 100%;
  position: relative;
  padding: 0 8vw 6vw 8vw;
}
.Flexibility .f2 .f2Box {
  display: flex;
  justify-content: space-between;
}
.Flexibility .f2 .f2Box .left {
  width: 30vw;
}
.Flexibility .f2 .f2Box .left .info {
  border-radius: 3vw;
  border: 1px solid #999999;
  font-size: 1vw;
  text-align: center;
  padding: 0.2vw 0;
}
.Flexibility .f2 .f2Box .left .tit {
  font-weight: bold;
  font-size: 2vw;
  margin-top: 2vw;
}
.Flexibility .f2 .f2Box .right {
  width: 47vw;
  margin-top: 4vw;
}
.Flexibility .f2 .f2Box .right p {
  color: #666666;
  font-size: 0.9vw;
  line-height: 2;
  margin-bottom: 2vw;
}
.Flexibility .f2 .f2Img {
  width: 100%;
  margin-top: 5vw;
}
.Flexibility .f3 {
  width: 100%;
  position: relative;
  background: url('../images/img18.jpg') center no-repeat;
  background-size: cover !important;
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  color: white;
}
.Flexibility .f3 .text {
  width: 30vw;
}
.Flexibility .f3 .text .tit {
  font-weight: bold;
  font-size: 2vw;
}
.Flexibility .f3 .text .des {
  font-size: 0.9vw;
  line-height: 2;
  margin-top: 2vw;
}
.Flexibility .f3 .f3Box {
  width: 48vw;
  display: flex;
  justify-content: space-between;
}
.Flexibility .f3 .f3Box .item {
  width: 23vw;
}
.Flexibility .f3 .f3Box .item .imgBox {
  width: 100%;
  height: 15vw;
  overflow: hidden;
}
.Flexibility .f3 .f3Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  background-size: cover !important;
}
.Flexibility .f3 .f3Box .item .text {
  font-size: 0.9vw;
  padding: 1vw;
  line-height: 1.7;
}
.Flexibility .f3 .f3Box .item:hover .imgBox .img {
  transform: scale(1.1);
}
.Flexibility .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
}
.Flexibility .f4 .tit {
  text-align: center;
  font-size: 2vw;
  font-weight: bold;
}
.Flexibility .f4 .f4Img {
  width: 60vw;
  margin: 5vw auto 0 auto;
}
.Flexibility2 {
  width: 100%;
}
.Flexibility2 .f1 {
  width: 100%;
  position: relative;
  padding: 3vw;
}
.Flexibility2 .f1 .f1Box {
  width: 100%;
  height: auto;
  background: url('../images/img22.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw;
  overflow: hidden;
  color: white;
  padding: 6vw;
  display: flex;
  justify-content: space-between;
}
.Flexibility2 .f1 .f1Box .tit {
  font-weight: bold;
  font-size: 2vw;
}
.Flexibility2 .f1 .f1Box .des {
  width: 50vw;
  font-size: 0.9vw;
  line-height: 2;
}
.Flexibility2 .f1 .f1Box .des p {
  margin-bottom: 1vw;
}
.Flexibility2 .f2 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
  display: flex;
  justify-content: space-between;
}
.Flexibility2 .f2 .tit {
  font-weight: bold;
  font-size: 2vw;
}
.Flexibility2 .f2 .f2Box {
  width: 60vw;
}
.Flexibility2 .f2 .f2Box .item {
  display: flex;
  align-items: center;
  padding: 1.5vw 0;
  color: #999999;
  font-size: 1vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.Flexibility2 .f2 .f2Box .item .t:nth-child(1) {
  flex: 1;
}
.Flexibility2 .f2 .f2Box .item .t:nth-child(2) {
  flex: 1;
}
.Flexibility2 .f2 .f2Box .item .t:nth-child(3) {
  flex: 2;
}
.Flexibility2 .f2 .f2Box .items {
  display: flex;
  align-items: center;
  padding: 1.5vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9vw;
}
.Flexibility2 .f2 .f2Box .items .t:nth-child(1) {
  flex: 1;
}
.Flexibility2 .f2 .f2Box .items .t:nth-child(2) {
  flex: 1;
}
.Flexibility2 .f2 .f2Box .items .grade:nth-child(3) {
  flex: 2;
  display: flex;
}
.Flexibility2 .f2 .f2Box .items .grade:nth-child(3) .it {
  background-image: linear-gradient(90deg, #15255d 1%, #1e368a 100%), linear-gradient(#1b4692, #1b4692);
  background-blend-mode: normal, 
                            normal;
  border-radius: 3vw;
  color: white;
  padding: 0.5vw 1.5vw;
  margin-right: 1vw;
}
.Flexibility2 .f3 {
  width: 100%;
}
.Flexibility2 .f3 img {
  width: 95%;
  margin: 0 auto 3vw auto;
}
.Scenarios {
  width: 100%;
  position: relative;
}
.Scenarios .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.Scenarios .f1 .f1Box {
  width: 100%;
  position: relative;
}
.Scenarios .f1 .f1Box .item {
  width: 100%;
  display: block;
  height: 28vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  margin-bottom: 3vw;
}
.Scenarios .f1 .f1Box .item .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.Scenarios .f1 .f1Box .item .text {
  font-size: 2vw;
  position: absolute;
  top: 50%;
  left: 5vw;
  color: white;
  font-weight: bold;
  transform: translate(0, -50%);
}
.Scenarios .f1 .f1Box .item .text::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: white;
  bottom: 0;
  transition: 0.3s all ease-in-out;
}
.Scenarios .f1 .f1Box .item:hover .img {
  transform: scale(1.1);
}
.Scenarios .f1 .f1Box .item:hover .text::before {
  width: 100%;
}
.Scenarios .f2 {
  width: 100%;
  position: relative;
  display: inline-block;
  justify-content: space-between;
  padding: 0 8vw 5vw 8vw;
}
.Scenarios .f2 .left {
  position: sticky;
  top: 8vw;
  display: inline-block;
  float: left;
}
.Scenarios .f2 .left .t {
  font-weight: bold;
  font-size: 2vw;
}
.Scenarios .f2 .left .d {
  width: 23vw;
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.Scenarios .f2 .right {
  width: 49vw;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  left: 5vw;
}
.Scenarios .f2 .right .item {
  width: 23vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  margin-bottom: 3vw;
}
.Scenarios .f2 .right .item .imgBox {
  width: 100%;
  height: 15vw;
  overflow: hidden;
}
.Scenarios .f2 .right .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.Scenarios .f2 .right .item .text {
  background-color: #f7f7f7;
  padding: 1vw;
  border-radius: 0 0 1vw 1vw;
}
.Scenarios .f2 .right .item .text .t {
  font-size: 1vw;
  font-weight: bold;
}
.Scenarios .f2 .right .item .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.Scenarios .f2 .right .item:nth-child(2n) {
  top: 5vw;
}
.Scenarios .f2 .right .item:hover .img {
  transform: scale(1.1);
}
.food {
  width: 100%;
  position: relative;
}
.food .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.food .f1 .f1Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.food .f1 .f1Box .item {
  width: 26vw;
  height: 23vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  margin-bottom: 3vw;
}
.food .f1 .f1Box .item .imgBox {
  width: 100%;
  height: 16vw;
  position: relative;
  overflow: hidden;
}
.food .f1 .f1Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.food .f1 .f1Box .item .name {
  font-size: 1vw;
  position: absolute;
  color: white;
  bottom: 0.5vw;
  padding: 1.5vw;
  font-weight: bold;
  z-index: 1;
}
.food .f1 .f1Box .item .text {
  padding: 2vw;
  font-size: 1vw;
}
.food .f1 .f1Box .item:hover .img {
  transform: scale(1.1);
}
.food .detailBox {
  width: 100%;
  position: relative;
  padding: 5vw 8vw;
}
.food .detailBox .detail {
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 1vw;
  position: relative;
  padding: 0 4vw;
}
.food .detailBox .detail .titBox {
  display: flex;
  justify-content: space-between;
  padding: 2vw 0;
  align-items: center;
}
.food .detailBox .detail .titBox .tit {
  font-weight: bold;
  font-size: 1.5vw;
  color: #333333;
}
.food .detailBox .detail .titBox .back {
  background-color: #1f3379;
  border-radius: 5vw;
  color: white;
  font-size: 1vw;
  font-weight: normal;
  padding: 0.2vw 0.8vw;
}
.food .detailBox .detail .detailContent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2vw 0 3vw 0;
}
.food .detailBox .detail .detailContent .img {
  width: 26vw;
  height: 16vw;
  border-radius: 1vw;
  background-size: cover !important;
}
.food .detailBox .detail .detailContent .textBox {
  width: 46vw;
}
.food .detailBox .detail .detailContent .textBox .its {
  padding-bottom: 3vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.food .detailBox .detail .detailContent .textBox .its .it {
  margin-bottom: 2vw;
}
.food .detailBox .detail .detailContent .textBox .its .it .t {
  font-weight: bold;
  font-size: 1vw;
  margin-top: 0.5vw;
}
.food .detailBox .detail .detailContent .textBox .its .it .d {
  font-size: 0.9vw;
}
.food .detailBox .detail .detailContent .textBox .its .des {
  line-height: 2;
  font-size: 0.9vw;
}
.food .detailBox .detail .detailContent .textBox .its .des span {
  font-weight: bold;
}
.food .detailBox .detail .detailContent .textBox .its .Download {
  font-weight: bold;
  font-size: 1vw;
  text-decoration: underline;
  margin-top: 3vw;
  display: block;
}
.food .detailBox .detail .detailContent .textBox .its .Download i {
  font-size: 1.2vw;
}
.food .detailBox .detail .detailContent .textBox .pnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous {
  width: 22vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5vw 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous .icon {
  transform: rotate(180deg);
  transition: 0.3s all ease-in-out;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous .icon i {
  background-color: #000000;
  border-radius: 50%;
  padding: 0.4vw;
  color: white;
  font-size: 1rem;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous .text {
  width: 80%;
  font-size: 1vw;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous .text .t {
  font-weight: bold;
}
.food .detailBox .detail .detailContent .textBox .pnBox .previous .text .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.5;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next {
  width: 22vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5vw 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next .icon {
  transition: 0.3s all ease-in-out;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next .icon i {
  background-color: #000000;
  border-radius: 50%;
  padding: 0.4vw;
  color: white;
  font-size: 1rem;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next .text {
  width: 80%;
  font-size: 1vw;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next .text .t {
  font-weight: bold;
}
.food .detailBox .detail .detailContent .textBox .pnBox .next .text .d {
  color: #666666;
  font-size: 0.9vw;
  line-height: 1.5;
}
.Search {
  width: 100%;
  position: relative;
}
.Search .f1 {
  width: 100%;
  padding: 5vw 8vw;
}
.Search .f1 .tit {
  font-size: 2vw;
  font-weight: bold;
}
.Search .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Search .f1 .f1Box .item {
  width: 40vw;
  display: block;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-top: 3vw;
}
.Search .f1 .f1Box .item .img {
  width: 100%;
  height: 25vw;
  border-radius: 0.5vw;
  overflow: hidden;
  background-size: cover !important;
}
.Search .f1 .f1Box .item .text {
  background-color: #f9f9f9;
  font-size: 1vw;
  font-weight: bold;
  padding: 2vw;
}
.Search .f1 .f1Box .item:hover .text {
  color: #001eb4;
}
.Search .f2 {
  width: 100%;
  padding: 0 8vw 5vw 8vw;
}
.Search .f2 .tit {
  font-size: 2vw;
  font-weight: bold;
}
.Search .f2 .f2Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.Search .f2 .f2Box .item {
  width: 20vw;
  display: block;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-top: 3vw;
  margin-right: 2%;
}
.Search .f2 .f2Box .item:nth-child(4n) {
  margin-right: 0;
}
.Search .f2 .f2Box .item .img {
  width: 100%;
  height: 12vw;
  border-radius: 0.5vw;
  overflow: hidden;
  background-size: cover !important;
}
.Search .f2 .f2Box .item .text {
  background-color: #f9f9f9;
  font-size: 1vw;
  font-weight: bold;
  padding: 2vw;
}
.Search .f2 .f2Box .item:hover .text {
  color: #001eb4;
}
.Contact {
  width: 100%;
  position: relative;
}
.Contact .f1 {
  width: 100%;
  position: relative;
  padding: 8vw;
  display: flex;
  justify-content: space-between;
}
.Contact .f1 .tit {
  font-weight: bold;
  font-size: 2vw;
}
.Contact .f1 .right {
  width: 55vw;
}
.Contact .f1 .right .text {
  display: flex;
  justify-content: space-between;
}
.Contact .f1 .right .text .item .t {
  font-size: 1vw;
  font-weight: bold;
}
.Contact .f1 .right .text .item .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
  display: block;
}
.Contact .f1 .right form {
  width: 100%;
  margin-top: 5vw;
}
.Contact .f1 .right form .t {
  font-size: 1.2vw;
  font-weight: bold;
}
.Contact .f1 .right form .d {
  font-size: 0.9vw;
  color: #999999;
  margin-top: 0.5vw;
}
.Contact .f1 .right form .inputBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Contact .f1 .right form .inputBox .input {
  width: 23vw;
  height: 3vw;
  background-color: #f1f1f1;
  border-radius: 0.5vw;
  margin-top: 2vw;
  padding: 0 1vw;
}
.Contact .f1 .right form .inputBox .input input {
  width: 100%;
  height: 100%;
  font-size: 0.9vw;
  border: transparent;
  background: transparent;
  outline: none;
}
.Contact .f1 .right form .textarea {
  width: 100%;
  height: 10vw;
  background-color: #f1f1f1;
  border-radius: 0.5vw;
  margin-top: 2vw;
  padding: 1vw;
}
.Contact .f1 .right form .textarea textarea {
  width: 100%;
  height: 100%;
  font-size: 0.9vw;
  border: transparent;
  background: transparent;
  outline: none;
}
.Contact .f1 .right form .submit {
  width: 15vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.5vw;
  font-size: 1vw;
  align-items: center;
  margin-top: 3vw;
  cursor: pointer;
}
.Contact .f1 .right form .submit i {
  transform: rotate(-45deg);
  font-size: 1.5vw;
  transition: 0.3s all ease-in-out;
}
.Contact .f1 .right form .submit:hover i {
  transform: rotate(0);
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1660px) {
  header .right nav ul li {
    width: 9vw;
  }
}
@media screen and (max-width: 1440px) {
  header .right nav ul li {
    width: 10vw;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .index .videoBanner {
    height: 80vw;
  }
  .index .videoBanner .text {
    left: 5vw;
    font-size: 20px;
    top: 30vw;
  }
  .index .videoBanner .iconDown {
    display: none;
  }
  .index .f1 {
    padding: 15vw 5vw;
  }
  .index .f1 .f1Box {
    display: block;
  }
  .index .f1 .f1Box .text {
    width: 100%;
  }
  .index .f1 .f1Box .text .t {
    font-size: 20px;
  }
  .index .f1 .f1Box .text .des {
    font-size: 14px;
  }
  .index .f1 .f1Box .text .des span {
    font-size: 16px;
  }
  .index .f1 .f1Box .imgBox {
    width: 100%;
    margin-top: 10vw;
    padding: 5vw;
  }
  .more {
    font-size: 14px;
    padding-bottom: 2vw;
  }
  .more i {
    font-size: 16px;
  }
  .index .f1 .f1Box .imgBox .img {
    margin: 5vw 0;
  }
  .index .f2 {
    padding: 10vw 0;
  }
  .index .f2 .itemBox {
    top: inherit;
    padding: 0 5vw;
    display: block;
  }
  .index .f2 .itemBox .imgBox {
    width: 100%;
    height: 60vw;
    margin-top: 5vw;
  }
  .index .f2 .itemBox .textBox {
    width: 100%;
  }
  .index .f2 .itemBox .textBox .t {
    font-size: 20px;
  }
  .index .f2 .itemBox .textBox .des {
    font-size: 14px;
  }
  .index .f3 {
    padding-bottom: 10vw;
  }
  .index .f3 .itemBox {
    padding: 0 5vw;
    display: block;
  }
  .index .f3 .itemBox .textBox {
    width: 100%;
  }
  .index .f3 .itemBox .textBox .t {
    font-size: 20px;
  }
  .index .f3 .itemBox .textBox .desBox {
    font-size: 14px;
  }
  .index .f3 .itemBox .textBox .more {
    width: 35vw;
  }
  .index .f3 .itemBox .textBox .desBox.active .des {
    font-size: 14px;
    margin-bottom: 5vw;
  }
  .index .f3 .itemBox .imgBox {
    width: 100%;
    height: 60vw;
    margin-top: 5vw;
  }
  .index .f3 .f3Text {
    font-size: 16px;
    margin-top: 10vw;
  }
  footer {
    padding: 10vw 5vw;
  }
  footer .footer {
    display: block;
    padding: 5vw;
  }
  footer .footer .left .t {
    font-size: 20px;
  }
  footer .footer .left .formCheck {
    width: 35vw;
    font-size: 14px;
  }
  footer .footer .left .formCheck i {
    font-size: 16px;
  }
  footer .footer .right {
    width: 100%;
    margin-top: 10vw;
    font-size: 14px;
  }
  footer .footerInfo {
    display: block;
  }
  footer .footerInfo .item {
    margin-top: 5vw;
  }
  footer .footerInfo .item .t {
    font-size: 14px;
  }
  footer .footerInfo .item .d {
    font-size: 14px;
  }
  .formModal .modalBox {
    width: 95%;
    padding: 5vw;
    top: 50%;
  }
  .formModal .modalBox .close {
    font-size: 14px;
    right: 5vw;
    top: 5vw;
  }
  .formModal .modalBox .tit {
    font-size: 18px;
  }
  .formModal .modalBox .inputBox {
    display: block;
  }
  .formModal .modalBox .inputBox .input {
    width: 100%;
  }
  .formModal .modalBox .input {
    height: 10vw;
    padding: 0 3vw;
    margin-top: 3vw;
  }
  .formModal .modalBox .input input {
    font-size: 14px;
  }
  .formModal .modalBox .textarea {
    height: 20vw;
    padding: 3vw;
    margin-top: 3vw;
  }
  .formModal .modalBox .textarea textarea {
    font-size: 14px;
  }
  .formModal .modalBox .submit {
    width: 35vw;
    font-size: 14px;
    margin: 5vw 0 0 0;
  }
  .formModal .modalBox .submit i {
    font-size: 16px;
  }
  .serachModal .modalBox {
    width: 90%;
    padding: 5vw;
  }
  .serachModal .modalBox .close {
    font-size: 14px;
    top: 5vw;
    right: 5vw;
  }
  .serachModal .modalBox .tit {
    font-size: 18px;
  }
  .serachModal .modalBox .input {
    padding: 3vw 0;
    margin-top: 5vw;
  }
  .serachModal .modalBox .input input {
    font-size: 14px;
  }
  .serachModal .modalBox .submit {
    width: 35vw;
    font-size: 14px;
    padding: 1vw 3vw;
    margin-top: 5vw;
    border-radius: 5vw;
  }
  .serachModal .modalBox .submit i {
    font-size: 16px;
  }
  .bannerBox {
    height: 60vw;
  }
  .bannerBox .text {
    font-size: 20px;
    left: 5vw;
  }
  .projects .f1 {
    padding: 5vw;
  }
  .projects .f1 .f1Box {
    padding: 0 5vw 15vw 5vw;
  }
  .projects .f1 .f1Box .f1Img {
    display: block;
  }
  .projects .f1 .f1Box .f1Img .img {
    width: 100%;
    height: 50vw;
  }
  .projects .f1 .f1Box .f1Img .img img {
    width: 60%;
    left: 20%;
  }
  .projects .f1 .f1Box .f1Img .img img:nth-child(2) {
    opacity: 1;
  }
  .projects .f1 .f1Box .f1Img .text {
    width: 100%;
  }
  .projects .f1 .f1Box .f1Img .text .tit {
    font-size: 20px;
  }
  .projects .f1 .f1Box .f1Img .text .des {
    font-size: 14px;
  }
  .projects .f1 .f1Box .f1Img .text .tit {
    margin-top: 10vw;
  }
  .projects .f1 .f1Box .f1Item .tit {
    font-size: 18px;
  }
  .projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide {
    padding: 3vw;
  }
  .projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .num {
    width: 8vw;
    height: 8vw;
    font-size: 14px;
    line-height: 8vw;
  }
  .projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .text .t {
    font-size: 16px;
    margin-top: 3vw;
  }
  .projects .f1 .f1Box .f1Item .f1Swiper .swiper-slide .text .des {
    font-size: 14px;
  }
  .projects .f1 .f1Box .f1Item .swiper-button-next {
    width: 12vw;
    height: 6vw;
    top: inherit;
    bottom: -10vw;
    right: inherit;
    left: 15vw;
  }
  .projects .f1 .f1Box .f1Item .swiper-button-next i {
    font-size: 14px;
  }
  .projects .f1 .f1Box .f1Item .swiper-button-prev {
    width: 12vw;
    height: 6vw;
    top: inherit;
    bottom: -10vw;
    right: inherit;
    left: 0;
  }
  .projects .f1 .f1Box .f1Item .swiper-button-prev i {
    font-size: 14px;
  }
  .projects .f2 {
    padding: 10vw 5vw;
    display: block;
  }
  .projects .f2 .tit {
    font-size: 20px;
  }
  .projects .f2 .text {
    width: 100%;
    margin-top: 5vw;
  }
  .projects .f2 .text .its {
    padding: 3vw 0;
  }
  .projects .f2 .text .its .t {
    font-size: 16px;
  }
  .projects .f2 .text .its .d {
    font-size: 14px;
    text-align: left;
  }
  .projects .f2 .text .active .d {
    height: auto;
  }
  .projects .f2 .text .its .t .icon {
    font-size: 20px;
    margin-top: -6.6vw;
  }
  .projects .f3 {
    padding: 0 5vw;
  }
  .projects .f3 .tit {
    font-size: 20px;
  }
  .projects .f3 .f3Item {
    display: block;
    margin-top: 0;
  }
  .projects .f3 .f3Item .item {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .projects .f3 .f3Item .item .text {
    padding: 5vw;
    bottom: 0;
  }
  .projects .f3 .f3Item .item .text .t {
    font-size: 16px;
  }
  .projects .f3 .f3Item .item .text .d {
    font-size: 14px;
    opacity: 1;
  }
  .projects .f3 .f3Box {
    display: block;
    padding: 0;
  }
  .projects .f3 .f3Box .item {
    width: 100%;
    margin-top: 5vw;
  }
  .projects .f3 .f3Box .item .img {
    height: 50vw;
  }
  .projects .f3 .f3Box .item .text {
    padding: 5vw;
    font-size: 16px;
  }
  .projects .detailBox {
    padding: 10vw 5vw;
  }
  .projects .detailBox .detail {
    padding: 0 5vw;
  }
  .projects .detailBox .detail .titBox {
    padding: 3vw 0;
  }
  .projects .detailBox .detail .titBox .tit {
    width: 75%;
    font-size: 18px;
  }
  .projects .detailBox .detail .titBox .back {
    font-size: 14px;
    padding: 1vw 3vw;
  }
  .projects .detailBox .detail .detailContent {
    padding: 5vw 0;
    display: block;
  }
  .projects .detailBox .detail .detailContent .img {
    width: 100%;
    height: 50vw;
  }
  .projects .detailBox .detail .detailContent .textBox {
    width: 100%;
    margin-top: 5vw;
  }
  .projects .detailBox .detail .detailContent .textBox .its .it .t {
    font-size: 16px;
  }
  .projects .detailBox .detail .detailContent .textBox .its .it .d {
    font-size: 14px;
  }
  .projects .detailBox .detail .detailContent .textBox .canshuBox {
    margin-top: 5vw;
  }
  .projects .detailBox .detail .detailContent .textBox .canshuBox .tit {
    font-size: 16px;
  }
  .projects .detailBox .detail .detailContent .textBox .canshuBox .canshu {
    padding-bottom: 5vw;
  }
  .projects .detailBox .detail .detailContent .textBox .canshuBox .canshu .item {
    font-size: 14px;
    margin-top: 5vw;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .previous {
    width: 48%;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .previous .text {
    font-size: 14px;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .previous .text .d {
    font-size: 12px;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .next {
    width: 48%;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .next .text {
    font-size: 14px;
  }
  .projects .detailBox .detail .detailContent .textBox .pnBox .next .text .d {
    font-size: 12px;
  }
  .DoGoodWork .f1 {
    padding: 5vw;
  }
  .DoGoodWork .f1 .f1Box .t {
    font-size: 20px;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper {
    padding: 5vw 0 10vw 0;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide {
    padding: 5vw;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .num {
    font-size: 20px;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text {
    margin-top: 0;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text .icon {
    width: 8vw;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-slide .text .des {
    font-size: 14px;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-next {
    width: 12vw;
    height: 6vw;
    left: 15vw;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-next i {
    font-size: 14px;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-prev {
    width: 12vw;
    height: 6vw;
  }
  .DoGoodWork .f1 .f1Box .f1Swiper .swiper-button-prev i {
    font-size: 14px;
  }
  .DoGoodWork .f2 {
    padding: 10vw 5vw;
  }
  .DoGoodWork .f2 .t {
    font-size: 20px;
  }
  .DoGoodWork .f2 .f2Box .itemBox {
    display: block;
    margin-top: 10vw;
  }
  .DoGoodWork .f2 .f2Box .itemBox .imgBox {
    width: 100%;
    height: 50vw;
  }
  .DoGoodWork .f2 .f2Box .itemBox .textBox {
    width: 100%;
    margin-top: 5vw;
  }
  .DoGoodWork .f2 .f2Box .itemBox .textBox .tit {
    font-size: 16px;
  }
  .DoGoodWork .f2 .f2Box .itemBox .textBox .des {
    font-size: 14px;
  }
  .Flexibility .f1 {
    padding: 5vw;
    display: block;
  }
  .Flexibility .f1 .img {
    width: 100%;
    height: 70vw;
  }
  .Flexibility .f1 .text {
    width: 100%;
    padding: 5vw 0 0 0;
  }
  .Flexibility .f1 .text .name {
    font-size: 20px;
  }
  .Flexibility .f1 .text .its {
    padding: 3vw 0;
  }
  .Flexibility .f1 .text .its .t {
    font-size: 16px;
  }
  .Flexibility .f1 .text .its .d {
    font-size: 14px;
    text-align: left;
    height: auto;
    opacity: 1;
    margin-top: 3vw;
  }
  .Flexibility .f1 .text .active .d {
    height: auto;
  }
  .Flexibility .f1 .text .its .t .icon {
    font-size: 20px;
    margin-top: -6vw;
    display: none;
  }
  .Flexibility .f2 {
    padding: 10vw 5vw;
  }
  .Flexibility .f2 .f2Box {
    display: block;
  }
  .Flexibility .f2 .f2Box .left {
    width: 100%;
  }
  .Flexibility .f2 .f2Box .left .info {
    font-size: 14px;
    padding: 1vw 2vw;
    border-radius: 10vw;
  }
  .Flexibility .f2 .f2Box .left .tit {
    font-size: 20px;
    margin-top: 5vw;
  }
  .Flexibility .f2 .f2Box .right {
    width: 100%;
    margin-top: 5vw;
  }
  .Flexibility .f2 .f2Box .right p {
    font-size: 14px;
  }
  .Flexibility .f3 {
    padding: 10vw 5vw;
    display: block;
  }
  .Flexibility .f3 .text {
    width: 100%;
  }
  .Flexibility .f3 .text .tit {
    font-size: 20px;
  }
  .Flexibility .f3 .text .des {
    font-size: 14px;
  }
  .Flexibility .f3 .f3Box {
    width: 100%;
    display: block;
  }
  .Flexibility .f3 .f3Box .item {
    width: 100%;
    margin-top: 5vw;
  }
  .Flexibility .f3 .f3Box .item .imgBox {
    height: 50vw;
  }
  .Flexibility .f3 .f3Box .item .text {
    padding: 3vw;
    font-size: 14px;
  }
  .Flexibility .f4 {
    padding: 10vw 5vw;
  }
  .Flexibility .f4 .tit {
    font-size: 20px;
  }
  .Flexibility .f4 .f4Img {
    width: 100%;
  }
  .Flexibility2 .f1 {
    padding: 5vw;
  }
  .Flexibility2 .f1 .f1Box {
    padding: 5vw;
    display: block;
  }
  .Flexibility2 .f1 .f1Box .tit {
    font-size: 20px;
  }
  .Flexibility2 .f1 .f1Box .des {
    width: 100%;
    margin-top: 5vw;
    font-size: 14px;
  }
  .Flexibility2 .f2 {
    padding: 5vw;
    display: block;
  }
  .Flexibility2 .f2 .tit {
    font-size: 20px;
  }
  .Flexibility2 .f2 .f2Box {
    width: 100%;
    margin-top: 5vw;
  }
  .Flexibility2 .f2 .f2Box .item {
    font-size: 14px;
  }
  .Flexibility2 .f2 .f2Box .items {
    font-size: 12px;
  }
  .Flexibility2 .f2 .f2Box .items .grade:nth-child(3) {
    display: block;
  }
  .Flexibility2 .f2 .f2Box .items .grade:nth-child(3) .it {
    padding: 1vw 2vw;
    margin: 1vw 0;
  }
  .Scenarios .f1 {
    padding: 10vw 5vw 5vw 5vw;
  }
  .Scenarios .f1 .f1Box .item {
    height: 35vw;
    margin-bottom: 5vw;
  }
  .Scenarios .f1 .f1Box .item .text {
    font-size: 20px;
  }
  .Scenarios .f2 {
    padding: 0 5vw 5vw 5vw;
    display: block;
  }
  .Scenarios .f2 .left {
    position: relative;
    top: inherit;
    display: block;
    float: inherit;
  }
  .Scenarios .f2 .right {
    width: 100%;
    display: block;
    left: inherit;
  }
  .Scenarios .f2 .left .t {
    font-size: 20px;
  }
  .Scenarios .f2 .left .d {
    width: 100%;
    font-size: 14px;
  }
  .Scenarios .f2 .right .item {
    width: 100%;
    margin-top: 5vw;
    margin-bottom: 0;
  }
  .Scenarios .f2 .right .item:nth-child(2n) {
    top: inherit;
  }
  .Scenarios .f2 .right .item .imgBox {
    height: 50vw;
  }
  .Scenarios .f2 .right .item .text {
    padding: 5vw;
  }
  .Scenarios .f2 .right .item .text .t {
    font-size: 16px;
  }
  .Scenarios .f2 .right .item .text .des {
    font-size: 14px;
  }
  .food .f1 {
    padding: 5vw 5vw 10vw 5vw;
    display: block;
  }
  .food .f1 .f1Box .item {
    width: 100%;
    height: auto;
    margin-top: 5vw;
    margin-bottom: 0;
  }
  .food .f1 .f1Box .item .imgBox {
    height: 50vw;
  }
  .food .f1 .f1Box .item .text {
    padding: 5vw;
    font-size: 16px;
  }
  .food .f1 .f1Box .item .name {
    font-size: 18px;
    bottom: 0;
    padding: 5vw;
  }
  .food .detailBox {
    padding: 5vw;
  }
  .food .detailBox .detail {
    padding: 0 5vw;
  }
  .food .detailBox .detail .titBox {
    padding: 3vw 0;
  }
  .food .detailBox .detail .titBox .tit {
    width: 75%;
    font-size: 18px;
  }
  .food .detailBox .detail .titBox .back {
    font-size: 14px;
    padding: 1vw 3vw;
  }
  .food .detailBox .detail .detailContent {
    padding: 5vw 0;
    display: block;
  }
  .food .detailBox .detail .detailContent .img {
    width: 100%;
    height: 50vw;
  }
  .food .detailBox .detail .detailContent .textBox {
    width: 100%;
    margin-top: 5vw;
  }
  .food .detailBox .detail .detailContent .textBox .its .it .d {
    font-size: 16px;
  }
  .food .detailBox .detail .detailContent .textBox .its .it .t {
    font-size: 14px;
  }
  .food .detailBox .detail .detailContent .textBox .its .des {
    font-size: 14px;
  }
  .food .detailBox .detail .detailContent .textBox .its .Download {
    font-size: 14px;
  }
  .food .detailBox .detail .detailContent .textBox .its .Download i {
    font-size: 16px;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .previous {
    width: 48%;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .previous .text {
    font-size: 14px;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .previous .text .d {
    font-size: 12px;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .next {
    width: 48%;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .next .text {
    font-size: 14px;
  }
  .food .detailBox .detail .detailContent .textBox .pnBox .next .text .d {
    font-size: 12px;
  }
  .Search .f1 {
    padding: 10vw 5vw;
  }
  .Search .f1 .tit {
    font-size: 20px;
  }
  .Search .f1 .f1Box .item {
    width: 48%;
  }
  .Search .f1 .f1Box .item .text {
    padding: 3vw;
    font-size: 14px;
  }
  .Search .f2 {
    padding: 0 5vw 5vw 5vw;
  }
  .Search .f2 .tit {
    font-size: 20px;
  }
  .Search .f2 .f2Box .item {
    width: 48%;
  }
  .Search .f2 .f2Box .item .img {
    height: 25vw;
  }
  .Search .f2 .f2Box .item .text {
    padding: 3vw;
    font-size: 14px;
  }
  .Contact .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .Contact .f1 .tit {
    font-size: 20px;
  }
  .Contact .f1 .right {
    width: 100%;
    margin-top: 5vw;
  }
  .Contact .f1 .right .text {
    display: block;
  }
  .Contact .f1 .right .text .item {
    margin-top: 3vw;
  }
  .Contact .f1 .right .text .item .t {
    font-size: 14px;
  }
  .Contact .f1 .right .text .item .d {
    font-size: 14px;
  }
  .Contact .f1 .right form {
    margin-top: 10vw;
  }
  .Contact .f1 .right form .t {
    font-size: 18px;
  }
  .Contact .f1 .right form .d {
    font-size: 14px;
  }
  .Contact .f1 .right form .inputBox {
    display: block;
  }
  .Contact .f1 .right form .inputBox .input {
    width: 100%;
    height: 10vw;
    margin-top: 3vw;
    padding: 0 5vw;
  }
  .Contact .f1 .right form .inputBox .input input {
    font-size: 14px;
  }
  .Contact .f1 .right form .textarea {
    height: 20vw;
    margin-top: 3vw;
    padding: 5vw;
  }
  .Contact .f1 .right form .textarea textarea {
    font-size: 14px;
  }
  .Contact .f1 .right form .submit {
    width: 35vw;
    font-size: 14px;
    margin: 5vw 0 0 0;
  }
  .Contact .f1 .right form .submit i {
    font-size: 16px;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

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

  .sp_logo img {

    margin: auto;

    width: 100px;

    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: #ffffff;

    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: #333333;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #333333;

  }

  .sjj_nav ul li ul li > ul {

    margin-left: 10px

  }
  .sjj_nav .iconBox{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15vw;
  }
  .sjj_nav .iconBox .icon{
    width: 50px;
    margin: 0 3vw;
    display: inline-block;
  }
  .sp_flex .sjj_nav .close{
    position: absolute;
    right: 4vw;
    top: 1vw;
    font-size: 22px;
    color: #333333;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  .projects .detailBox .detail .detailContent .textBox .canshuBox .canshu table tbody tr{
    font-size: 12px;
  }
  .index .videoBanner .img{
    width: 100%;
    height: 100%;
    background-size: cover !important;
  }
  .Flexibility2 .f2 .f2Box .item .t:nth-child(3){
    flex: 2.5;
  }
  .Flexibility2 .f2 .f2Box .items .grade:nth-child(3){
    flex: 2.5;
  }
}
