@font-face {
  font-family: 'iconfont';  /* Project id 5047930 */
  src: url('//at.alicdn.com/t/c/font_5047930_9k88ka2yj1c.woff2?t=1761728885819') format('woff2'),
  url('//at.alicdn.com/t/c/font_5047930_9k88ka2yj1c.woff?t=1761728885819') format('woff'),
  url('//at.alicdn.com/t/c/font_5047930_9k88ka2yj1c.ttf?t=1761728885819') format('truetype');
}
@font-face {
  font-family: Regular;
  /*src: url('../fonts/SourceHanSerifCN-Regular.otf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSerifCN-Regular.otf');
}
@font-face {
  font-family: SourceHanSerifCNBold;
  /*src: url('../fonts/SourceHanSerifCN-SemiBold.otf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSerifCN-SemiBold.otf');
}
@font-face {
    font-family: OldSon;
    src: url('../fonts/OldSon.ttf');
    /*src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSerifCN-SemiBold.otf');*/
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Regular;
}
input,
textarea {
  font-family: Regular;
}
.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: #016145;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.cpthActive.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}
.cpth {
  -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}
.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;
}
.st_fadeUp2 {
  -webkit-transition: all 1s ease 0.5s;
  -webkit-transform: translateY(50px);
  opacity: 0;
}
.st_fadeUp2.is-inview {
  -webkit-transform: translateY(0px);
  opacity: 1;
}
.st_fadeUp3 {
  -webkit-transition: all 1s ease 0.7s;
  -webkit-transform: translateY(50px);
  opacity: 0;
}
.st_fadeUp3.is-inview {
  -webkit-transform: translateY(0px);
  opacity: 1;
}
.st_fadeUp4 {
  -webkit-transition: all 1s ease 0.9s;
  -webkit-transform: translateY(50px);
  opacity: 0;
}
.st_fadeUp4.is-inview {
  -webkit-transform: translateY(0px);
  opacity: 1;
}
img.lazy {
  display: block; /* 避免inline元素间隙问题 */
  width: 100%;    /* 按需求设置 */
  height: auto;   /* 保持比例 */
}
.scrollContainer{
  overflow: visible; /* 避免隐藏未加载的图片 */
  height: auto;
}
header {
  width: 100%;
  position: absolute;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 1.5vw 8vw;
  align-items: center;
  -webkit-transition: all 0.5s;
}
header .logo {
  width: 6vw;
}
header .logo img:nth-child(1) {
  display: block;
}
header .logo img:nth-child(2) {
  display: none;
}
header .right {
  display: flex;
}
header .right nav ul {
  display: flex;
  align-items: center;
}
header .right nav ul li {
  margin-right: 3vw;
}
header .right nav ul li a {
  color: #000000;
  font-size: 1vw;
  padding: 1.55vw 0;
  font-family: SourceHanSerifCNBold;
  position: relative;
}
header .right nav ul li a img {
  position: absolute;
  width: 0.75vw;
  margin-left: -1vw;
  margin-top: 0.35vw;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
header .right nav ul li .phone {
  height: 2.5vw;
  background-color: #ffffff;
  border-radius: 5vw;
  color: #000000;
  padding: 0.3vw 1.5vw;
  font-size: 1vw;
  display: flex;
  align-items: center;
  font-family: SourceHanSerifCNBold;
  margin-left: 2vw;
  -webkit-transition: all 0.5s;
}
header .right nav ul li:last-child {
  margin: 0;
}
header .right nav ul li:hover a img {
  opacity: 1;
}
header .right nav ul .active a img {
  opacity: 1;
}
header.active {
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  padding: 1vw 8vw;
}
header.active .right nav ul li .phone {
  background: #000000;
  color: white;
}
.more {
  display: inline-flex;
  padding: 0.4vw 1.2vw;
  border-radius: 3vw;
  border: 0.001vw solid #000000;
  box-sizing: border-box;
  background: #ffffff;
  font-family: SourceHanSerifCNBold;
  font-size: 0.9vw;
  position: relative;
}
.more .iconmore {
  width: 1.2vw;
  margin-right: 0.5vw;
  transition: 0.5s all ease;
}
.more .kzicon {
  width: 2.5vw;
  position: absolute;
  right: -1.3vw;
  margin-top: -0.7vw;
  transition: 0.5s all ease;
}
.more:hover .iconmore {
  transform: scale(0.8);
}
.more:hover .kzicon {
  transform: rotate(15deg);
}
.formBox {
  width: 100%;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  padding: 5vw 8vw;
  display: flex;
  justify-content: space-between;
}
.formBox .formText {
  width: 32vw;
}
.formBox .formText .t {
  font-weight: 300;
  font-size: 3vw;
    font-family: OldSon;
    color: #132C68;
}
.formBox .formText .qrcodeBox {
  display: flex;
  margin: 3vw 0;
}
.formBox .formText .qrcodeBox .qrcode {
  width: 10vw;
  margin-right: 3vw;
}
.formBox .formText .phoneBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
    font-family: OldSon;
}
.formBox .formText .phoneBox .phone .tit {
  font-size: 1.2vw;
  font-weight: 400;
}
.formBox .formText .phoneBox .phone .tel {
  font-size: 2vw;
  font-weight: 600;
}
.formBox .formText .phoneBox .dy {
  width: 15vw;
}
.formBox .form {
  width: 40vw;
  color: #000000;
}
.formBox .form .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.formBox .form .inputBox .input {
  width: 47%;
  border: 1px solid #132C68;
  background: white;
  border-radius: 0.3vw;
}
.formBox .form .inputBox .input input {
  width: 100%;
  outline: none;
  border: transparent;
  background: transparent;
  padding: 1vw;
  font-size: 0.9vw;
}
.formBox .form .double {
  width: 100%;
  position: relative;
  margin: 2vw 0;
}
.formBox .form .double #distpicker {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.formBox .form .double #distpicker select {
  width: 30%;
  height: 3vw;
  box-sizing: border-box;
  border: 1px solid #132C68;
  padding: 0 1vw;
  cursor: pointer;
  box-shadow: 0vw 4vw 3vw 0vw rgba(0, 0, 0, 0.02);
  border-radius: 0.3vw;
  font-size: 0.9vw;
  background: white;
  outline: none;
}
.formBox .form .textarea {
  width: 100%;
  border: 1px solid #132C68;
  background: white;
  border-radius: 0.3vw;
}
.formBox .form .textarea textarea {
  width: 100%;
  height: 12vw;
  outline: none;
  border: transparent;
  background: transparent;
  padding: 1vw;
  font-size: 0.9vw;
}
.formBox .form .submit {
  background: #6B9D3A;
  color: white;
  font-size: 0.9vw;
  padding: 0.6vw 5vw;
  display: inline-block;
  border-radius: 0.3vw;
  cursor: pointer;
  margin-top: 2vw;
}
.formBox .form .submit.active {
  pointer-events: none;
}
footer {
  width: 100%;
  position: relative;
  background: url('../images/footer.jpg') center no-repeat;
  background-size: cover !important;
  border-radius: 1vw 1vw 0 0;
  padding: 3vw 8vw;
  margin-top: -1vw;
}
footer .iconfontBox {
  text-align: right;
}
footer .iconfontBox a {
  margin-left: 1.3vw;
  display: inline-block;
    cursor: pointer;
}
footer .iconfontBox a img{
  position: absolute;
  width: 8vw;
  margin-top: -10vw;
  margin-left: -3.5vw;
  opacity: 0;
  transform: translateY(1vw);
  transition: .5s all ease;
  pointer-events: none;
}
footer .iconfontBox a:hover img{
  transform: translateY(0);
  opacity: 1;
}
footer .iconfontBox a i {
  color: white;
  font-size: 1.3vw;
}
footer .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3vw 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
footer .footer .logo {
  width: 8vw;
}
footer .footer .footerNav ul {
  display: flex;
  align-items: center;
}
footer .footer .footerNav ul li {
  margin-right: 5vw;
}
footer .footer .footerNav ul li a {
  color: white;
  font-size: 1vw;
  padding: 1.55vw 0;
  font-family: SourceHanSerifCNBold;
  position: relative;
}
footer .footer .footerNav ul li:last-child {
  margin: 0;
}
footer .footerInfo {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.8vw;
  opacity: 0.7;
  margin-top: 3vw;
}
footer .footerInfo a {
  color: white;
}
.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-family: OldSon;
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 8vw;
}
.bannerBox .text .cn{
  font-size: 4vw;
  letter-spacing: 2px;
}
.bannerBox .text .en{
  font-size: 2vw;
  letter-spacing: 5px;
}
.index {
  width: 100%;
}
.index .f1 {
  width: 100%;
  position: relative;
}
.index .f1 .f1Banner {
  width: 100%;
}
.index .f1 .f1Box {
  position: absolute;
  left: 8vw;
  margin-top: 8vw;
}
.index .f1 .f1Box .textBox .text {
  display: flex;
  align-items: center;
}
.index .f1 .f1Box .textBox .text img {
  width: 6vw;
  margin-right: 1vw;
  opacity: 0;
}
.index .f1 .f1Box .textBox .textImg {
  width: 13vw;
  position: absolute;
  left: 10.5vw;
  margin-top: -1vw;
}
.index .f1 .f1Box .f1Img {
  width: 16vw;
  margin-top: 10vw;
}
.index .f1 .f1Box .f1Img2 {
  width: 12vw;
  margin-top: 9vw;
}
.index .f2 {
  width: 100%;
  background: url('../images/img1.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw 8vw;
  position: relative;
  z-index: 1;
}
.index .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f2 .f2Box .img {
  width: 25vw;
}
.index .f2 .f2Box .text {
  width: 47vw;
}
.index .f2 .f2Box .text .t {
  font-family: OldSon;
  font-weight: 700;
  font-size: 3vw;
  color: #132C68;
}
.index .f2 .f2Box .text .d {
  font-size: 2vw;
  margin: 2vw 0 1vw 0;
    font-weight: 550;
  color: #132C68;
}
.index .f2 .f2Box .text .dd {
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
}
.index .f2 .f2Box .text .more {
  margin-top: 5vw;
}
.index .f2 .f2info {
  font-size: 3vw;
  font-family: OldSon;
  margin-top: 3vw;
  margin-left: 2vw;
  color: #132C68;
}
.index .f2 .f2Img {
  width: 35vw;
  position: absolute;
  right: 3vw;
  margin-top: -14vw;
}
.index .f3 {
  width: 100%;
  position: relative;
}
.index .f3 .f3Img {
  width: 100%;
  height: 35vw;
  background-size: cover !important;
  padding: 16vw 8vw 0 8vw;
}
.index .f3 .f3Img .t {
  font-size: 3vw;
  font-family: OldSon;
  color: white;
  text-align: right;
}
.index .f3 .f3Box {
  width: 84vw;
  height: 25vw;
  background: url('../images/img3.jpg') center no-repeat;
  background-size: cover !important;
  margin: -8vw auto 0 auto;
  border-radius: 0.5vw;
  color: #f5ede3;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
}
.index .f3 .f3Box .item {
  text-align: center;
}
.index .f3 .f3Box .item .t {
  font-size: 1.6vw;
}
.index .f3 .f3Box .item .d {
  font-size: 1.5vw;
  display: flex;
  align-items: end;
}
.index .f3 .f3Box .item .d p {
  width: 7vw;
  font-size: 6vw;
  font-family: SourceHanSerifCNBold;
  line-height: 1;
}
.index .f3 .f3Box .item:nth-child(2) .d p {
  width: 14vw;
}
.index .f3 .f3Box .item:nth-child(3) .d p {
  width: 14vw;
}
.index .f3 .f3marquee {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: -6vw;
}
.index .f3 .f3marquee .marquee {
  display: flex;
  width: max-content;
  animation: scroll2 40s linear infinite;
}
.index .f3 .f3marquee .marquee img {
  display: block;
  height: 3vw;
}
@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.index .f4 {
  width: 100%;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  margin-top: -14vw;
}
.index .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 25vw 13vw 5vw 8vw;
}
.index .f4 .f4Box .f4Tit {
  width: 30vw;
}
.index .f4 .f4Box .f4Tit .t {
  font-size: 3vw;
  font-family: OldSon;
  font-weight: 700;
  color: #132C68
}
.index .f4 .f4Box .f4Tit .d {
  font-size: 2vw;
  margin-top: 1vw;
  color: #132C68
}
.index .f4 .f4Box .f4Tit .more {
  margin-top: 3vw;
}
.index .f4 .f4Box .f4Item {
  width: 40vw;
  height: 32vw;
}
.index .f4 .f4Box .f4Item .item {
  border-bottom: 1px solid;
  padding: 2vw 0;
  cursor: pointer;
  transition: 0.3s all ease;
}
.index .f4 .f4Box .f4Item .item .tit {
  display: flex;
  align-items: center;
}
.index .f4 .f4Box .f4Item .item .tit .icon {
  width: 1.2vw;
}
.index .f4 .f4Box .f4Item .item .tit .t {
  font-size: 1.8vw;
  font-family: SourceHanSerifCNBold;
  margin-left: 1vw;
}
.index .f4 .f4Box .f4Item .item .des {
  font-size: 1vw;
  line-height: 2;
  height: 0;
  opacity: 0;
  transition: 0.3s all ease;
}
.index .f4 .f4Box .f4Item .active {
  border-bottom: 2px solid;
}
.index .f4 .f4Box .f4Item .active .des {
  opacity: 1;
  height: auto;
  padding-top: 1vw;
}
.index .f4 .f4Img {
  width: 20vw;
  position: absolute;
  left: 0;
  margin-top: -12vw;
}
.index .f4 .f4Info {
  width: 100%;
}
.index .f5 {
  width: 100%;
  height: auto;
  background: url('../images/img3.jpg') center;
  background-size: contain !important;
  padding: 5vw 0 2vw 0;
}
.index .f5 .f5Box {
  width: 100%;
}
.index .f5 .f5Box .titBox {
  text-align: center;
  color: white;
}
.index .f5 .f5Box .titBox .tit {
  font-size: 3vw;
  font-weight: 400;
    font-family: OldSon;
  color: #CFC4B0;
}
.index .f5 .f5Box .titBox .des {
  font-size: 1vw;
  margin-top: 1vw;
}
.index .f5 .f5Box .f5Swiper {
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
  margin-top: 2vw;
}
.index .f5 .f5Box .f5Swiper .swiper-slide {
  width: 25vw;
  height: 25vw;
  background-size: contain !important;
  transition: 0.5s all ease;
}
.index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2 {
  width: 80%;
  margin: 6vw auto 0 auto;
}
.index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2 .swiper-slide img {
  width: auto;
  height: 13vw;
  margin: 0 auto;
}
.index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2 .swiper-slide::before {
  content: inherit;
}
.index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2 .swiper-slide-active {
  margin-top: 0;
}
.index .f5 .f5Box .f5Swiper .swiper-slide .f5SwiperBefore {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain !important;
  animation: rotate 25s infinite linear;
}
.index .f5 .f5Box .f5Swiper .swiper-slide-active {
  margin-top: 5vw;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.index .f5 .f5Box .f5Swiper .swiper-button-next {
  width: 4vw;
  right: 25vw;
  top: 25vw;
}
.index .f5 .f5Box .f5Swiper .swiper-button-prev {
  width: 4vw;
  left: 25vw;
  top: 25vw;
}
.index .f5 .f5Box .f5Swiper .swiper-button-next:after,
.index .f5 .f5Box .f5Swiper .swiper-button-prev:after {
  content: inherit;
}
.index .f5 .f5Item {
  width: 84vw;
  height: 35vw;
  background-size: cover !important;
  margin: 0 auto;
  border-radius: 0 0 .5vw .5vw;
  overflow: hidden;
  padding: 3vw 8vw 3vw 3vw;
}
.index .f5 .f5TextBox {
  width: 84vw;
  margin: 5vw auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #CFC4B0;
  border-radius: .5vw .5vw 0 0;
  padding: 3vw;
}
.index .f5 .f5TextBox .f5TabBox {
  display: flex;
}
.index .f5 .f5TextBox .f5TabBox .tab {
  border: 1px solid;
  font-size: 0.9vw;
  padding: 0.2vw 1vw;
  border-radius: 3vw;
  margin-right: 1vw;
  cursor: pointer;
  transition: 0.3s all ease;
}
.index .f5 .f5TextBox .f5TabBox .active {
  background: white;
}
.index .f5 .f5TextBox .f5text .t {
  font-size: 1.2vw;
    font-family: OldSon;
    font-weight: 700;
}
.index .f5 .f5TextBox .f5text .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.index .f5 .f5Img {
  width: 84vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.index .f5 .f5Img img {
  width: auto;
  height: 12vw;
}
.about {
  width: 100%;
}
.about .f1 {
  width: 100%;
  background: url('../images/img1.jpg') center no-repeat;
  background-size: cover !important;
  display: flex;
  justify-content: space-between;
  padding: 5vw 8vw;
}
.about .f1 .titBox .tit {
  font-size: 3vw;
  font-family: OldSon;
    color: #132C68;
    font-weight: 700;
}
.about .f1 .titBox .des {
  font-size: 2vw;
  margin-top: 0.5vw;
    color: #132C68;
}
.about .f1 .f1des {
  width: 47vw;
  font-size: 1vw;
  line-height: 2.5;
  text-align: justify;
}
.about .f2 {
  width: 100%;
}
.about .f2 .f2marquee {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.about .f2 .f2marquee .marquee {
  display: flex;
  width: max-content;
  animation: scroll2 40s linear infinite;
}
.about .f2 .f2marquee .marquee img {
  display: block;
  height: 3vw;
}
@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about .f4 {
  width: 100%;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
}
.about .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5vw 13vw 5vw 8vw;
}
.about .f4 .f4Box .f4Tit {
  width: 30vw;
}
.about .f4 .f4Box .f4Tit .t {
  font-size: 3vw;
    font-family: OldSon;
    color: #132C68;
    font-weight: 700;
}
.about .f4 .f4Box .f4Tit .d {
  font-size: 2vw;
  margin-top: 1vw;
    color: #132C68;
}
.about .f4 .f4Box .f4Tit .more {
  margin-top: 3vw;
}
.about .f4 .f4Box .f4Item {
  width: 40vw;
  height: 32vw;
}
.about .f4 .f4Box .f4Item .item {
  border-bottom: 1px solid;
  padding: 2vw 0;
  cursor: pointer;
  transition: 0.3s all ease;
}
.about .f4 .f4Box .f4Item .item .tit {
  display: flex;
  align-items: center;
}
.about .f4 .f4Box .f4Item .item .tit .icon {
  width: 1.2vw;
}
.about .f4 .f4Box .f4Item .item .tit .t {
  font-size: 1.8vw;
  font-family: SourceHanSerifCNBold;
  margin-left: 1vw;
}
.about .f4 .f4Box .f4Item .item .des {
  font-size: 1vw;
  line-height: 2;
  height: 0;
  opacity: 0;
  transition: 0.3s all ease;
}
.about .f4 .f4Box .f4Item .active {
  border-bottom: 2px solid;
}
.about .f4 .f4Box .f4Item .active .des {
  opacity: 1;
  height: auto;
  padding-top: 1vw;
}
.about .f4 .f4Img {
  width: 20vw;
  position: absolute;
  left: 0;
  margin-top: -12vw;
}
.about .f4 .f4Info {
  width: 100%;
}
.product {
  width: 100%;
}
.product .f1 {
  width: 100%;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  display: flex;
  justify-content: space-between;
  padding: 6vw 8vw;
}
.product .f1 .f1Text {
  width: 12vw;
}
.product .f1 .f1Text .tit {
    font-family: OldSon;
    color: #132C68;
  font-size: 3vw;
    font-weight: 700;
}
.product .f1 .f1Text .tabBox {
  width: 100%;
  margin-top: 3vw;
}
.product .f1 .f1Text .tabBox .tab {
  font-size: 1.2vw;
  cursor: pointer;
  padding: 0.7vw 0;
  font-weight: 300;
  display: block;
}
.product .f1 .f1Text .tabBox .active {
  color: #132C68;
  font-family: SourceHanSerifCNBold;
}
.product .f1 .f1Text .tabBox .tab:hover {
  color: #132C68;
  font-family: SourceHanSerifCNBold;
}
.product .f1 .f1Box {
  width: 60vw;
  display: flex;
  flex-wrap: wrap;
}
.product .f1 .f1Box .item {
  width: 18vw;
  height: 24vw;
  position: relative;
  overflow: hidden;
  margin-right: 2vw;
  margin-bottom: 2vw;
  border-radius: 0.5vw;
}
.product .f1 .f1Box .item .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.product .f1 .f1Box .item .img img{
  position: absolute;
  bottom: 0;
  transition: 0.5s all ease;
}
.product .f1 .f1Box .item .img::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url('../images/foodBg1.png') center no-repeat;
  background-size: cover !important;
  z-index: 9;
}
.product .f1 .f1Box .item .img.white::before{
  background: url('../images/foodBg2.png') center no-repeat;
}
.product .f1 .f1Box .item .name {
    font-size: 1.3vw;
    font-family: SourceHanSerifCNBold;
    position: absolute;
    left: 1vw;
    top: 2vw;
    text-align: left;
    writing-mode: vertical-lr;
    line-height: 1.2;
    color: #3C2811;
    letter-spacing: 2px;
    transition: 0.5s all ease;
}
.product .f1 .f1Box .item .name.white{
  color: white;
}
.product .f1 .f1Box .item:hover .img img{
  transform: scale(1.1);
}
.product .f1 .f1Box .item:hover .name {
  transform: translateY(0);
}
.product .f1 .f1Box .item:nth-child(3n) {
  margin-right: 0;
}
.store {
  width: 100%;
}
.store .f1 {
  width: 100%;
  position: relative;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  padding-bottom: 6vw;
}
.store .f1 .f1Box {
  width: 100%;
  padding: 6vw 5vw;
}
.store .f1 .f1Box .tit {
  text-align: center;
  font-size: 3vw;
    font-family: OldSon;
    color: #132C68;
    font-weight: 700;
}
.store .f1 .f1Box .f1Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 3vw;
  padding-bottom: 3vw;
}
.store .f1 .f1Box .f1Swiper .swiper-slide {
  width: 45vw;
  transform: scale(0.7);
  transition: 0.5s all ease;
  overflow: hidden;
  opacity: 0.6;
}
.store .f1 .f1Box .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 18vw;
  border-radius: 0.5vw;
  background-size: cover !important;
}
.store .f1 .f1Box .f1Swiper .swiper-slide .name {
  text-align: center;
  font-size: 1vw;
  margin-top: 1vw;
  opacity: 0;
}
.store .f1 .f1Box .f1Swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.store .f1 .f1Box .f1Swiper .swiper-slide-active .imgBox {
  background: url('../images/img3.jpg');
  border-radius: 0.5vw;
  padding: 1vw;
}
.store .f1 .f1Box .f1Swiper .swiper-slide-active .imgBox .img {
  border: 2px solid white;
}
.store .f1 .f1Box .f1Swiper .swiper-slide-active .name {
  opacity: 1;
}
.store .f1 .f1Box .f1Swiper .swiper-button-next {
  width: 4vw;
  right: 24vw;
  top: 10vw;
}
.store .f1 .f1Box .f1Swiper .swiper-button-prev {
  width: 4vw;
  left: 24vw;
  top: 10vw;
}
.store .f1 .f1Box .f1Swiper .swiper-button-next:after,
.store .f1 .f1Box .f1Swiper .swiper-button-prev:after {
  content: inherit;
}
.store .f1 .f1Box .f1Swiper .swiper-pagination {
  bottom: 0;
}
.store .f1 .f1Box .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  background: url('../images/icon12.png') center no-repeat;
  background-size: contain !important;
  opacity: 1;
  margin: 0 0.5vw;
}
.store .f1 .f1Box .f1Swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: url('../images/icon11.png') center no-repeat;
}
.store .f1 .f1Item {
  width: 84vw;
  margin: 0 auto;
}
.store .f1 .f1Item .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store .f1 .f1Item .item .num {
  width: 23vw;
  height: 23vw;
  position: relative;
}
.store .f1 .f1Item .item .num .text {
  width: 18vw;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.store .f1 .f1Item .item .num .text .t {
  font-size: 1.5vw;
}
.store .f1 .f1Item .item .num .text .d {
  font-size: 3vw;
    font-family: OldSon;
    font-weight: 700;
}
.store .f1 .f1Item .item .num::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/h2_1.png') center no-repeat;
  background-size: cover !important;
  animation: rotate 25s infinite linear;
  left: 1.5vw;
}
.store .f1 .f1Item .item .img {
  width: 80%;
}
.store .f1 .f1Item .item2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5vw;
}
.store .f1 .f1Item .item2 .num {
  width: 23vw;
  height: 23vw;
  position: relative;
}
.store .f1 .f1Item .item2 .num .text {
  width: 18vw;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.store .f1 .f1Item .item2 .num .text .t {
  font-size: 1.5vw;
}
.store .f1 .f1Item .item2 .num .text .d {
  font-size: 3vw;
    font-family: OldSon;
    font-weight: 700;
}
.store .f1 .f1Item .item2 .num::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/h3_1.png') center no-repeat;
  background-size: cover !important;
  animation: rotate 25s infinite linear;
  right: 2vw;
}
.store .f1 .f1Item .item2 .img {
  width: 80%;
}
.store .f2 {
  width: 100%;
  padding: 6vw 5vw;
}
.store .f2 .tit {
  text-align: center;
  font-size: 3vw;
    font-family: OldSon;
    color: #132C68;
    font-weight: 700;
}
.store .f2 .f2Swiper {
  width: 84%;
  overflow: hidden;
  margin: 3vw auto 0 auto;
  padding-bottom: 3vw;
}
.store .f2 .f2Swiper .swiper-slide .imgBox {
  width: 14vw;
  position: relative;
  padding-top: 2vw;
}
.store .f2 .f2Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 25vw;
  background-size: cover !important;
}
.store .f2 .f2Swiper .swiper-slide .imgBox::before {
  content: '';
  width: 8vw;
  height: 1.8vw;
  position: absolute;
  background: url('../images/icon5.png') center no-repeat;
  background-size: cover !important;
  left: 3vw;
  margin-top: -1vw;
}
.store .f2 .f2Swiper .swiper-pagination {
  bottom: 0;
}
.store .f2 .f2Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  background: url('../images/icon12.png') center no-repeat;
  background-size: contain !important;
  opacity: 1;
  margin: 0 0.5vw;
}
.store .f2 .f2Swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: url('../images/icon11.png') center no-repeat;
}
.cooperation {
  width: 100%;
}
.cooperation .f1 {
  width: 100%;
  position: relative;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  padding: 6vw 8vw;
}
.cooperation .f1 .f1TitBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.cooperation .f1 .f1TitBox .tit {
    font-family: OldSon;
    color: #132C68;
    font-weight: 700;
  font-size: 3vw;
}
.cooperation .f1 .f1TitBox .tabBox {
  display: flex;
}
.cooperation .f1 .f1TitBox .tabBox .tab {
  display: flex;
  font-size: 1.2vw;
  margin-left: 1vw;
  cursor: pointer;
}
.cooperation .f1 .f1TitBox .tabBox .tab img {
  width: 1vw;
  margin-right: 0.5vw;
  opacity: 0;
}
.cooperation .f1 .f1TitBox .tabBox .tab.active img {
  opacity: 1;
}
.cooperation .f1 .f1TitBox .tabBox .tab:hover img {
  opacity: 1;
}
.cooperation .f1 .f1Box {
  width: 100%;
  overflow: hidden;
  margin-top: 3vw;
  display: none;
}
.cooperation .f1 .f1Box .text {
  position: absolute;
  left: 44vw;
  margin-top: 3vw;
}
.cooperation .f1 .f1Box .text .t {
  font-size: 1.3vw;
    font-family: OldSon;
  font-weight: 600;
}
.cooperation .f1 .f1Box .text .d {
  font-size: 1vw;
  margin-top: 0.5vw;
}
.cooperation .f1 .f1Box .f1Swiper {
  width: 100%;
  height: 20vw;
  overflow: hidden;
}
.cooperation .f1 .f1Box .f1Swiper .swiper-wrapper {
  align-items: end;
}
.cooperation .f1 .f1Box .f1Swiper .swiper-wrapper .swiper-slide {
  width: 12vw;
  height: 6vw;
  border-radius: 0.5vw;
  overflow: hidden;
  transition: 0.5s all ease;
  margin-right: 2vw;
}
.cooperation .f1 .f1Box .f1Swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.cooperation .f1 .f1Box .f1Swiper .swiper-wrapper .swiper-slide-active {
  width: 42vw;
  height: 20vw;
}
.cooperation .f1 .f1Box.active {
  display: block;
}
.cooperation .f2 {
  width: 100%;
  background-size: cover !important;
  padding: 6vw 8vw;
  position: relative;
}
.cooperation .f2 .tit {
    font-family: OldSon;
    font-weight: 700;
  font-size: 3vw;
  text-align: center;
  color: white;
}
.cooperation .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cooperation .f2 .f2Box .item {
  width: 18vw;
  border: 1px solid #F5EDE3;
  padding: 3vw 1vw;
  color: white;
  text-align: center;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-top: 3vw;
}
.cooperation .f2 .f2Box .item .icon img {
  width: auto;
  height: 5vw;
  margin: 0 auto;
}
.cooperation .f2 .f2Box .item .t {
  font-size: 1.5vw;
  font-weight: 600;
  margin: 2vw 0;
}
.cooperation .f2 .f2Box .item .d {
  font-size: 0.8vw;
  line-height: 2;
  margin-top: 0.5vw;
}
.cooperation .f3 {
  width: 100%;
  position: relative;
  padding: 6vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cooperation .f3 .f3Img {
  width: 36vw;
}
.cooperation .f3 .f3Box {
  width: 45vw;
}
.cooperation .f3 .f3Box .tit {
    font-family: OldSon;
    font-weight: 700;
    color: #132C68;
  font-size: 3vw;
}
.cooperation .f3 .f3Box .item {
  display: flex;
  align-items: center;
  margin-top: 2vw;
}
.cooperation .f3 .f3Box .item .num {
  font-size: 3vw;
  margin-right: 2vw;
  font-family: Inter;
  -webkit-text-stroke: 1px #999999;
  color: transparent;
}
.cooperation .f3 .f3Box .item .text .t {
  font-size: 1.2vw;
  font-weight: 600;
}
.cooperation .f3 .f3Box .item .text .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.cooperation .f4 {
  width: 100%;
  padding: 0 5vw 6vw 5vw;
}
.cooperation .f4 .tit {
  text-align: center;
  font-size: 3vw;
    font-family: OldSon;
    font-weight: 700;
    color: #132C68;
}
.cooperation .f4 .f4Swiper {
  width: 84%;
  overflow: hidden;
  margin: 3vw auto 0 auto;
  padding-bottom: 3vw;
}
.cooperation .f4 .f4Swiper .swiper-slide .imgBox {
  width: 14vw;
  position: relative;
  padding-top: 2vw;
}
.cooperation .f4 .f4Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 25vw;
  background-size: cover !important;
}
.cooperation .f4 .f4Swiper .swiper-slide .imgBox::before {
  content: '';
  width: 8vw;
  height: 1.8vw;
  position: absolute;
  background: url('../images/icon5.png') center no-repeat;
  background-size: cover !important;
  left: 3vw;
  margin-top: -1vw;
}
.cooperation .f4 .f4Swiper .swiper-pagination {
  bottom: 0;
}
.cooperation .f4 .f4Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  background: url('../images/icon12.png') center no-repeat;
  background-size: contain !important;
  opacity: 1;
  margin: 0 0.5vw;
}
.cooperation .f4 .f4Swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: url('../images/icon11.png') center no-repeat;
}
.contactUs {
  width: 100%;
}
.contactUs .f1 {
  width: 100%;
  background: url('../images/img1.jpg') center;
  background-size: cover !important;
  padding: 3vw 2vw;
  position: relative;
}
.contactUs .f1 .f1Box {
  width: 100%;
  height: 45vw;
  background-size: cover !important;
  border-radius: 0.5vw;
  padding: 8vw;
  position: relative;
}
.contactUs .f1 .f1Box .text .tit {
  font-size: 3vw;
    font-family: OldSon;
    font-weight: 700;
  color: white;
  margin-bottom: 3vw;
}
.contactUs .f1 .f1Box .text .item {
  margin-top: 2vw;
}
.contactUs .f1 .f1Box .text .item .t {
  font-size: 1vw;
  color: white;
}
.contactUs .f1 .f1Box .text .item .d {
  font-size: 1.5vw;
  color: white;
}
.contactUs .f1 .f1Box .mapIcon {
  width: 8vw;
  position: absolute;
  right: 35vw;
  top: 18vw;
}
.newsList {
  width: 100%;
  position: relative;
  background: url(../images/img1.jpg) center;
  background-size: cover !important;
}
.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: #132C68;
  transition: 1s all;
}
.newsList .f1 .item:hover .imgBox .img {
  transform: scale(1.05);
}
.newsList .f1 .item:hover .text .name {
  color: #132C68;
}
.newsList .f1 .item:hover::before {
  width: 100%;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .bannerBox {
    height: 36vw;
  }
  .bannerBox .text {
    font-size: 26px;
  }
  .about .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .about .f1 .titBox .tit {
    font-size: 20px;
  }
  .about .f1 .titBox .des {
    font-size: 16px;
  }
  .about .f1 .f1des {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 3vw;
  }
  .about .f2 .f2marquee .marquee img {
    height: 10vw;
  }
  .about .f4 .f4Box {
    padding: 10vw 5vw;
    display: block;
  }
  .about .f4 .f4Box .f4Tit {
    width: 100%;
    text-align: center;
  }
  .about .f4 .f4Box .f4Tit .t {
    font-size: 20px;
  }
  .about .f4 .f4Box .f4Tit .d {
    font-size: 16px;
  }
  .about .f4 .f4Box .f4Item {
    width: 100%;
    height: auto;
  }
  .about .f4 .f4Box .f4Item .item {
    padding: 5vw 0;
  }
  .about .f4 .f4Box .f4Item .item .tit .icon {
    width: 4vw;
  }
  .about .f4 .f4Box .f4Item .item .tit .t {
    font-size: 16px;
  }
  .about .f4 .f4Box .f4Item .item .des {
    font-size: 14px;
    line-height: 1.7;
  }
  .about .f4 .f4Box .f4Item .active {
    border-bottom: 1px solid;
  }
  .about .f4 .f4Img {
    margin-top: -3vw;
  }
  .product .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .product .f1 .f1Text {
    width: 100%;
  }
  .product .f1 .f1Text .tit {
    font-size: 20px;
    text-align: center;
  }
  .product .f1 .f1Text .tabBox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .product .f1 .f1Text .tabBox .tab {
    font-size: 14px;
    margin-right: 7vw;
  }
  .product .f1 .f1Text .tabBox .tab:nth-child(4n) {
    margin-right: 0;
  }
  .product .f1 .f1Box {
    width: 100%;
    margin-top: 5vw;
  }
  .product .f1 .f1Box .item {
    width: 47%;
    height: 60vw;
    margin-right: 5vw;
    margin-top: 3vw;
  }
  .product .f1 .f1Box .item:nth-child(2n) {
    margin-right: 0;
  }
  .product .f1 .f1Box .item:nth-child(2n + 1) {
    margin-right: 5vw;
  }
  .product .f1 .f1Box .item .name {
    transform: translateY(0);
    font-size: 14px;
    bottom: inherit;
    top: 5vw;
  }
  .cooperation .f1 {
    padding: 10vw 5vw;
  }
  .cooperation .f1 .f1TitBox .tit {
    font-size: 20px;
  }
  .cooperation .f1 .f1TitBox .tabBox .tab {
    font-size: 14px;
    margin-left: 3vw;
  }
  .cooperation .f1 .f1TitBox .tabBox .tab img {
    width: 3vw;
  }
  .cooperation .f1 .f1Box {
    margin-top: 5vw;
  }
  .cooperation .f1 .f1Box .text {
    position: relative;
    left: inherit;
    margin-top: 0;
  }
  .cooperation .f1 .f1Box .f1Swiper {
    height: auto;
    margin-top: 5vw;
  }
  .cooperation .f1 .f1Box .f1Swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 40vw;
  }
  .cooperation .f1 .f1Box .text .t {
    font-size: 16px;
  }
  .cooperation .f1 .f1Box .text .d {
    font-size: 14px;
    margin-top: 2vw;
  }
  .cooperation .f2 {
    padding: 10vw 5vw;
  }
  .cooperation .f2 .tit {
    font-size: 20px;
  }
  .cooperation .f2 .f2Box {
    flex-wrap: wrap;
  }
  .cooperation .f2 .f2Box .item {
    width: 47%;
    margin-right: 5%;
    margin-top: 5vw;
    padding: 5vw 4vw;
  }
  .cooperation .f2 .f2Box .item:nth-child(2n) {
    margin-right: 0;
  }
  .cooperation .f2 .f2Box .item .icon img {
    height: 10vw;
  }
  .cooperation .f2 .f2Box .item .t {
    font-size: 18px;
    margin: 5vw 0;
  }
  .cooperation .f2 .f2Box .item .d {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
  .cooperation .f3 {
    padding: 10vw 5vw;
    display: block;
  }
  .cooperation .f3 .f3Img {
    display: none;
  }
  .cooperation .f3 .f3Box {
    width: 100%;
  }
  .cooperation .f3 .f3Box .tit {
    font-size: 20px;
    text-align: center;
  }
  .cooperation .f3 .f3Box .item {
    margin-top: 5vw;
  }
  .cooperation .f3 .f3Box .item .num {
    font-size: 38px;
    margin-right: 5vw;
  }
  .cooperation .f3 .f3Box .item .text .t {
    font-size: 16px;
  }
  .cooperation .f3 .f3Box .item .text .d {
    font-size: 14px;
  }
  .cooperation .f4 {
    padding: 0 5vw 10vw 5vw;
  }
  .cooperation .f4 .tit {
    font-size: 20px;
  }
  .cooperation .f4 .f4Swiper {
    width: 100%;
    margin: 5vw auto 0 auto;
    padding-bottom: 8vw;
  }
  .cooperation .f4 .f4Swiper .swiper-slide .imgBox {
    width: 90%;
  }
  .cooperation .f4 .f4Swiper .swiper-slide .imgBox .img {
    height: 48vw;
  }
  .cooperation .f4 .f4Swiper .swiper-slide .imgBox::before {
    width: 21vw;
    height: 4.8vw;
    margin-top: -2vw;
  }
  .cooperation .f4 .f4Swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2.5vw;
    height: 2.5vw;
  }
  .formBox {
    padding: 10vw 5vw;
    display: block;
  }
  .formBox .formText {
    width: 100%;
  }
  .formBox .formText .t {
    font-size: 20px;
    text-align: center;
  }
  .formBox .formText .qrcodeBox {
    margin: 5vw 0;
    justify-content: center;
  }
  .formBox .formText .qrcodeBox .qrcode {
    width: 30vw;
    margin-right: 10vw;
  }
  .formBox .formText .qrcodeBox .qrcode:last-child {
    margin-right: 0;
  }
  .formBox .formText .phoneBox {
    display: block;
    text-align: center;
  }
  .formBox .formText .phoneBox .phone .tit {
    font-size: 16px;
  }
  .formBox .formText .phoneBox .phone .tel {
    font-size: 24px;
  }
  .formBox .formText .phoneBox .dy {
    width: 60vw;
    margin: 5vw auto;
  }
  .formBox .form {
    width: 100%;
  }
  .formBox .form .inputBox .input {
    width: 48%;
  }
  .formBox .form .inputBox .input input {
    padding: 2.5vw;
    font-size: 14px;
  }
  .formBox .form .double {
    margin: 3vw 0;
  }
  .formBox .form .double #distpicker select {
    width: 31%;
    height: 10vw;
    font-size: 14px;
  }
  .formBox .form .textarea textarea {
    height: 20vw;
    padding: 2.5vw;
    font-size: 14px;
  }
  .formBox .form .submit {
    font-size: 14px;
    padding: 2.5vw 10vw;
    display: table;
    margin: 3vw auto 0 auto;
  }
  footer {
    padding: 10vw 5vw;
  }
  footer .iconfontBox{
    text-align: center;
  }
  footer .iconfontBox a {
    margin-left: 5vw;
  }
  footer .iconfontBox a i {
    font-size: 18px;
  }
  footer .iconfontBox a img {
    width: 32vw;
    margin-top: -37vw;
    margin-left: -14vw;
  }
  footer .footer {
    display: none;
  }
  .contactUs .f1 {
    padding: 5vw;
  }
  .contactUs .f1 .f1Box {
    height: auto;
    padding: 25vw 5vw;
  }
  .contactUs .f1 .f1Box .text .tit {
    font-size: 20px;
  }
  .contactUs .f1 .f1Box .text .item .t {
    font-size: 14px;
  }
  .contactUs .f1 .f1Box .text .item .d {
    font-size: 14px;
  }
  .index .f2 {
    padding: 10vw 5vw;
  }
  .index .f2 .f2Box {
    display: block;
  }
  .index .f2 .f2Box .img {
    display: none;
  }
  .index .f2 .f2Box .text {
    width: 100%;
  }
  .index .f2 .f2Box .text .t {
    font-size: 20px;
  }
  .index .f2 .f2Box .text .d {
    font-size: 16px;
  }
  .index .f2 .f2Box .text .dd {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 3vw;
  }
  .more {
    padding: 1vw 4vw;
    font-size: 14px;
    border-radius: 5vw;
  }
  .more .iconmore {
    width: 4vw;
    margin-right: 2vw;
  }
  .more .kzicon {
    width: 8vw;
    right: -4.3vw;
    margin-top: -2.7vw;
  }
  .index .f2 .f2info {
    font-size: 20px;
    margin-top: 5vw;
    margin-left: 0;
  }
  .index .f2 .f2Img {
    width: 50vw;
    right: 0;
    margin-top: -18vw;
  }
  .index .f3 .f3Img {
    height: 50vw;
    padding: 22vw 5vw 0 5vw;
  }
  .index .f3 .f3Img .t {
    font-size: 20px;
  }
  .index .f3 .f3Box {
    width: 90%;
    height: auto;
    padding: 8vw 5vw;
  }
  .index .f3 .f3Box .item .t {
    font-size: 14px;
  }
  .index .f3 .f3Box .item .d {
    font-size: 12px;
    margin-top: 3vw;
  }
  .index .f3 .f3Box .item .d p {
    font-size: 20px;
  }
  .index .f3 .f3marquee {
    margin-top: 5vw;
  }
  .index .f3 .f3marquee .marquee img {
    height: 10vw;
  }
  .index .f4 {
    margin-top: -38vw;
  }
  .index .f4 .f4Box {
    padding: 45vw 5vw 10vw 5vw;
    display: block;
  }
  .index .f4 .f4Box .f4Tit {
    width: 100%;
    text-align: center;
  }
  .index .f4 .f4Box .f4Tit .t {
    font-size: 20px;
  }
  .index .f4 .f4Box .f4Tit .d {
    font-size: 16px;
  }
  .index .f4 .f4Box .f4Item {
    width: 100%;
    height: auto;
  }
  .index .f4 .f4Box .f4Item .item {
    padding: 5vw 0;
  }
  .index .f4 .f4Box .f4Item .active {
    border-bottom: 1px solid;
  }
  .index .f4 .f4Box .f4Item {
    width: 100%;
    height: auto;
  }
  .index .f4 .f4Box .f4Item .item {
    padding: 5vw 0;
  }
  .index .f4 .f4Box .f4Item .item .tit .icon {
    width: 4vw;
  }
  .index .f4 .f4Box .f4Item .item .tit .t {
    font-size: 16px;
  }
  .index .f4 .f4Box .f4Item .item .des {
    font-size: 14px;
    line-height: 1.7;
  }
  .index .f4 .f4Img {
    margin-top: -3vw;
  }
  .index .f5 {
    padding: 10vw 0;
  }
  .index .f5 .f5Box .titBox .tit {
    font-size: 20px;
  }
  .index .f5 .f5Box .titBox .des {
    font-size: 14px;
    padding: 0 5vw;
    margin-top: 3vw;
  }
  .index .f5 .f5Box .f5Swiper {
    height: auto;
    margin-top: 5vw;
  }
  .index .f5 .f5Box .f5Swiper .swiper-slide {
    height: 55vw;
  }
  .index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2 .swiper-slide img {
    height: 35vw;
  }
  .index .f5 .f5Box .f5Swiper .swiper-slide .f5Swiper2{
    margin: 10vw auto 0 auto;
  }
  .index .f5 .f5Box .f5Swiper .swiper-slide-active {
    margin-top: 0;
  }
  .index .f5 .f5Box .f5Swiper .swiper-button-next {
    width: 10vw;
    right: 12vw;
    top: 28vw;
  }
  .index .f5 .f5Box .f5Swiper .swiper-button-prev {
    width: 10vw;
    left: 12vw;
    top: 28vw;
  }
  .index .f5 .f5TextBox{
    width: 90%;
    display: block;
  }
  .index .f5 .f5Item {
    width: 90%;
    height: 45vw;
    margin: 0 auto 5vw auto;
  }
  .index .f5 .f5TextBox .f5TabBox .tab {
    font-size: 14px;
    padding: 0.3vw 2vw;
    margin-right: 3vw;
  }
  .index .f5 .f5TextBox .f5text {
    margin-top: 3vw;
  }
  .index .f5 .f5TextBox .f5text .t{
    font-size: 14px;
  }
  .index .f5 .f5TextBox .f5text .d{
    font-size: 12px;
    margin-top: 1vw;
  }
  .index .f5 .f5Img img {
    height: 18vw;
  }
  footer .footerInfo {
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 2;
  }
  .store .f1 .f1Box {
    padding: 10vw 0;
  }
  .store .f1 .f1Box .tit {
    font-size: 20px;
  }
  .store .f1 .f1Box .f1Swiper {
    margin-top: 5vw;
    padding-bottom: 8vw;
  }
  .store .f1 .f1Box .f1Swiper .swiper-slide {
    transform: scale(1);
  }
  .store .f1 .f1Box .f1Swiper .swiper-slide .imgBox .img {
    height: 45vw;
  }
  .store .f1 .f1Box .f1Swiper .swiper-button-next {
    display: none;
  }
  .store .f1 .f1Box .f1Swiper .swiper-button-prev {
    display: none;
  }
  .store .f1 .f1Box .f1Swiper .swiper-slide .name {
    font-size: 14px;
    margin-top: 1vw;
  }
  .store .f1 .f1Box .f1Swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2.5vw;
    height: 2.5vw;
  }
  .store .f2 {
    padding: 10vw 5vw;
  }
  .store .f2 .tit {
    font-size: 20px;
  }
  .store .f2 .f2Swiper {
    width: 100%;
    margin: 5vw auto 0 auto;
    padding-bottom: 8vw;
  }
  .store .f2 .f2Swiper .swiper-slide .imgBox {
    width: 90%;
  }
  .store .f2 .f2Swiper .swiper-slide .imgBox .img {
    height: 48vw;
  }
  .store .f2 .f2Swiper .swiper-slide .imgBox::before {
    width: 21vw;
    height: 4.8vw;
    margin-top: -2vw;
  }
  .store .f2 .f2Swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2.5vw;
    height: 2.5vw;
  }
  .store .f1 .f1Item {
    width: 90%;
  }
  .store .f1 .f1Item .item .num {
    width: 35vw;
    height: 35vw;
  }
  .store .f1 .f1Item .item .num .text {
    width: 30vw;
    left: 46%;
  }
  .store .f1 .f1Item .item .num .text .t {
    font-size: 14px;
  }
  .store .f1 .f1Item .item .num .text .d {
    font-size: 16px;
  }
  .store .f1 .f1Item .item .img {
    width: 65%;
  }
  .store .f1 .f1Item .item .num::before {
    left: -2vw;
  }
  .store .f1 .f1Item .item2 .num {
    width: 35vw;
    height: 35vw;
  }
  .store .f1 .f1Item .item2 .num .text {
    width: 30vw;
    left: 56%;
  }
  .store .f1 .f1Item .item2 .num .text .t {
    font-size: 14px;
  }
  .store .f1 .f1Item .item2 .num .text .d {
    font-size: 16px;
  }
  .store .f1 .f1Item .item2 .img {
    width: 65%;
  }
  .store .f1 .f1Item .item2 .num::before {
    left: 2vw;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: #05234F;
    backdrop-filter: blur(25px);

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

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

  .sp_logo img {

    margin: auto;

    width: 80px;

    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;
    font-family: SourceHanSerifCNBold;
  }
  .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: flex;
    align-items: center;
    font-size: 16px;

    padding-left: 25px;

  }
  .sjj_nav ul li a img{
    width: 12px;
    height: 12px;
    position: relative;
    margin-right: 5px;
    opacity: 0;
  }
  .sjj_nav ul li.active a img{
    opacity: 1;
  }
  .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;
  }
  main{
    margin-top: 50px;
  }
  .index .f1 .f1Box{
    left: inherit;
    margin-top: 12vw;
  }
  .index .f1 .f1Box .textBox .text{
    margin-left: 10vw;
  }
  .index .f1 .f1Box .textBox .text img{
    width: 13vw;
    margin-right: 3vw;
  }
  .index .f1 .f1Box .textBox .textImg{
    width: 25vw;
    left: inherit;
    right: 4vw;
  }
  .index .f1 .f1Box .f1Img{
    width: 35vw;
    margin-left: 35%;
  }
  .index .f1 .f1Box .f1Img2{
    width: 30vw;
    margin-top: 80vw;
    margin-left: 70%;
  }
    .store .f1 .f1Item .item2{
        margin-top: 0;
    }
  .store .f1 .f1Item .item2 .f11Swiper{
      width: 65%;
      overflow: hidden;
      padding: 8vw 0;
  }
    .store .f1 .f1Item .item2 .f11Swiper img{
        border-radius: 5px;
    }
    .store .f1 .f1Item .item2 .f11Swiper .swiper-pagination-bullet-active {
        background: #05234F;
    }
  .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;
  }
}
