@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/MiSans-Light.woff2");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/NotoSerif-Regular.ttf");
  font-family: "NotoSerif";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", sans-serif;
  box-sizing: border-box;
}
@font-face {
  font-family: "iconfont";
  src: url("../icons/iconfont.eot");
  src: url("../icons/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../icons/iconfont.woff") format("woff"),
    url("../icons/iconfont.ttf") format("truetype"),
    url("../icons/iconfont.svg#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
input,
button {
  background: none;
  border: none;
  box-shadow: none;
}
/*index*/
.w_all {
  width: 80%;
  margin: 0 auto;
}
.w_all2 {
  width: 90%;
  margin: 0 auto;
}
.w_all3 {
  width: 100%;
  margin: auto;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.w100p15 {
  width: 100%;
  padding-left: 15%;
  padding-right: 15%;
}
.w100p12 {
  width: 100%;
  padding-left: 12%;
  padding-right: 12%;
}
.w100p10 {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
.w100p8 {
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}
.w100p5 {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.wp30 {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.webPage {
  width: 100%;
  position: relative;
}
.pt5 {
  padding-top: 5%;
  padding-bottom: 5%;
}
.pt8 {
  padding-top: 8%;
  padding-bottom: 8%;
}
.font26 p {
  font-size: 2.6rem;
}
.font24 p {
  font-size: 2.4rem;
}
.font20 p {
  font-size: 2rem;
}
.font18 p {
  font-size: 1.8rem;
}
.font17 p {
  font-size: 1.7rem;
}
.font16 p {
  font-size: 1.6rem;
}
.font14 p {
  font-size: 1.4rem;
}
.webPage {
  width: 100%;
  position: relative;
}
.part {
  width: 100%;
  position: relative;
}
.part .box {
  width: 100%;
  position: relative;
}
.part .con {
  position: relative;
  width: 100%;
  margin-top: 3%;
}

html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  --color: #bdc6cc;
  --color2: #e6e9ed;
  --height: 72px;
  --height2: 60px;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

/* 导航 Strat */
.home{
  width: 100%;
  position: relative;
  overflow: hidden;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  background: #fff;
  height: var(--height);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  border-bottom: 1px solid var(--color2);
}
header.scroll {
  height: var(--height2);
}
header .navBox {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo a {
  display: block;
}
header .logo a img {
  width: auto;
  height: 48px;
}
header .nav {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 42px;
}
header .nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  gap: 0 42px;
}
header .nav ul li {
  position: relative;
  height: 100%;
}
header .nav ul li a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #222;
}
header .nav ul li > a::before {
  content: "";
  height: 2px;
  position: absolute;
  display: block;
  background: #222;
  bottom: 5px;
  left: 50%;
  right: 50%;
  transition: all 0.3s linear;
}
header .nav ul li:hover > a::before {
  left: 0;
  right: 0;
}
header .language a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #222;
}
header .language a i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

header .nav .sMenu {
  position: absolute;
  top: var(--height);
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  padding: 15px 18px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  box-shadow: 0 8px 8px #0a0a0a1a;
  background: #fff;
}
header.scroll .nav .sMenu {
  top: var(--height2);
}
header .nav .sMenu a {
  display: block;
  font-size: 1.6rem;
  color: #494e61;
  white-space: nowrap;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 8px 8px 5px;
  text-align: center;
}
header .nav ul li:hover .sMenu {
  opacity: 1;
  visibility: visible;
}
header .nav .sMenu a:hover {
  color: #000;
}

/* 导航 End*/

/* Banner Strat */
.banner {
  height: 100vh;
  padding-top: var(--height);
  overflow: hidden;
}
.banner .box {
  height: 100%;
}
.banner .swiper,
.banner .swiper-wrapper,
.banner .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.banner .swiper .swiper-pagination {
  bottom: 5%;
}
.banner .swiper .swiper-pagination span {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #fff;
  margin: 0 10px;
  opacity: 1;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.about .banner {
  height: calc(100vh - var(--height));
  padding-top: 0 !important;
}

/* Banner End*/

/* 公共 Strat */
.title h2 {
  font-size: 3.2rem;
  font-weight: lighter;
  font-family: "NotoSerif";
  color: #333;
  text-align: center;
}
.more a {
  display: inline-block;
  font-size: 1.6rem;
  color: #494949;
  background: var(--color2);
  font-weight: lighter;
  padding: 15px 42px;
  border-radius: 30px;
  transition: all 0.4s;
}
.more a:hover {
  background: var(--color);
  color: #fff;
}

.more3 span {
  display: block;
  font-size: 1.6rem;
  color: #494949;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 54px;
  border-radius: 30px;
  font-weight: lighter;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more3 span:hover {
  background: #494949;
  color: #fff;
}

/* 公共 End*/

/* 首页--产品中心 Strat */
.i_part1 {
  background: var(--color2);
}
.i_part1 .swiper,
.i_part1 .swiper-wrapper,
.i_part1 .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.i_part1 .swiper-slide {
  height: auto;
}
.i_part1 .swiper a {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: max-content auto max-content max-content;
  padding: 5%;
}
.i_part1 .swiper a .txtBox {
  width: 100%;
  text-align: center;
  position: relative;
}
.i_part1 .txtBox h2 {
  font-size: 2.4rem;
  color: #333;
  font-weight: 400;
  font-family: "NotoSerif";
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part1 .txtBox h3 {
  font-size: 1.4rem;
  color: #999;
  font-weight: lighter;
  margin-top: 10px;
}
.i_part1 .more2 {
  width: 100%;
  position: relative;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.i_part1 .more2 span {
  display: block;
  font-size: 1.4rem;
  color: #999;
  display: flex;
  align-items: center;
}
.i_part1 .imgBox {
  width: 100%;
  position: relative;
}
.i_part1 .imgBox img {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part1 a:hover img {
  transform: scale(1.06);
}
.i_part1 a:hover .txtBox h2 {
  color: var(--color);
}




/* 首页--产品中心 End*/

/* 首页--关于我们 Strat */
.i_part2 {
  overflow: hidden;
}
.i_part2 .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i_part2 .aa {
  width: 42%;
  position: relative;
}
.i_part2 .bb {
  width: 50%;
  position: relative;
  padding-left: 5%;
  padding-right: 18%;
}
.i_part2 .bb h2 {
  text-align: left;
  color: #494949;
}
.i_part2 .bb .text {
  margin-top: 42px;
}
.i_part2 .bb .text p {
  color: #494949;
  line-height: 1.75;
}
.i_part2 .bb .more {
  margin-top: 24px;
}
/* 首页--关于我们 End*/

/* 首页--生产工艺 Strat */
.i_part3 {
  background: var(--color2);
}
.i_part3 .box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.i_part3 .item{
  width: 100%;
}
.i_part3 .item a {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: span 6;
  width: 100%;
  min-height: 500px;
  aspect-ratio: 765 / 620;
  border-radius: 10px;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}
.i_part3 .item .imgBox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform linear 0.5s;
  width: 100%;
}
.i_part3 .item .imgBox img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_part3 .item .more3 {
  position: relative;
  z-index: 2;
}
.i_part3 .item a:hover {
  border-radius: 30px;
}
.i_part3 .item a:hover .imgBox {
  transform: scale(1.1);
  transition: transform linear 3s;
}

/* 首页--生产工艺 End*/

/* 首页--定制与案例 Strat */
.i_part4 {
  background: var(--color2);
  padding-top: 0 !important;
}
.i_part4 .box {
  height: calc(100vh - var(--height));
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.i_part4 .box .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.i_part4 .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_part4 .box .txtBox {
  position: relative;
  z-index: 3;
  text-align: center;
}
.i_part4 .box .txtBox h2 {
  color: #fff;
  font-weight: 600;
}
.i_part4 .box .txtBox h3 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: lighter;
  margin-top: 12px;
}
.i_part4 .box .txtBox .more3 {
  margin-top: 48px;
  display: inline-block;
}
/* 首页--定制与案例 End*/

/* 首页--常见问题 Strat */
.i_part5 {
  background: var(--color2);
  padding-top: 0 !important;
}
.i_part5 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.i_part5 h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: lighter;
  font-family: "NotoSerif";
  margin-top: 20px;
  margin-bottom: 42px;
  text-align: center;
}
.i_part5 .more a {
  background: #fff;
}
.i_part5 .more a:hover {
  background: #333;
  color: #fff;
}

/* 首页--常见问题 End*/

/* 底部栏 Strat */
.footer {
  /* background: #f8f8f8; */
  background: var(--color2);
  border-top: 1px solid #fff;
}
.footer .top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3% 0;
  gap: 0 10px;
}
.footer .top h2 {
  font-size: 1.5rem;
  color: #000;
  padding-bottom: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.footer .top span {
  font-size: 1.4rem;
  white-space: nowrap;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .top .way {
  display: flex;
  flex-direction: column;
  margin-right: 5%;
}
.footer .top .way span {
  color: #333;
}
html[lang="en"] .footer .top .way span{
  white-space: normal;
}
.footer .top .way .btt {
  display: flex;
  margin: 28px 0 20px;
}
.footer .top .way .btt a {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #000;
  padding: 8px 24px;
  background: var(--color);
  border-radius: 8px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .top .way .btt i {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.footer .top .way .btt a:hover {
  background: #fff;
}
.footer .top .way .tel {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.footer .top .way .tel i {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.footer .top .way .tel a {
  display: inline-block;
}
.footer .top .way .tel span {
  color: #999;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .top .way .tel a:hover span {
  color: #333;
}
.footer .top .fotNav ul {
  display: flex;
  justify-content: space-between;
}
.footer .top .fotNav span {
  color: #999;
}
.footer .top .fotNav a {
  display: inline-block;
  margin-bottom: 10px;
}
.footer .top .fotNav a:hover span {
  color: #000;
}
.footer .top .link {
  width: 100%;
  position: relative;
  margin-top: 24px;
}
.footer .top .link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .top .link ul li {
  position: relative;
}
.footer .top .link ul li a img {
  width: 20px;
  height: 20px;
  opacity: 0.35;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .top .link .code {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .top .link .code img {
  width: 100px;
  height: 100px;
}
.footer .top .link ul li a:hover ~ .code {
  opacity: 1;
}
.footer .top .link ul li a:hover img {
  opacity: 1;
}
.footer .copyRight {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #eee;
}
.footer .copyRight span,.footer .copyRight a {
  color: #999;
}
/* 底部栏 End*/

/* 关于--介绍 Strat */
.webpage {
  position: relative;
  width: 100%;
  margin-top: var(--height);
}
.about .itro .box {
  display: flex;
  justify-content: flex-end;
  /* padding-top: 5%; */
  padding: 0 8%;
}
.about .itro .txtBox {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border-top-left-radius: 10px; */
}
.about .itro .txtBox h2 {
  font-size: 3.6rem;
  color: #1a1a1a;
  font-weight: 600;
  font-family: "NotoSerif";
}
.about .itro .txtBox h2 strong {
  font-weight: 600;
  color: #8f7147;
  font-family: "NotoSerif";
}
.about .itro .txtBox h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 400;
  margin-top: 10px;
}
.about .itro .txtBox span {
  display: block;
  width: 2px;
  height: 60px;
  background: var(--color2);
  margin: 32px 0 15px;
}
.about .itro .txtBox .text p {
  color: #333;
  line-height: 2;
  margin: 10px 0;
}
.about .itro .txtBox .abtText1 {
  position: absolute;
  right: 5%;
  top: 25%;
  width: 120px;
  height: auto;
}
.about .itro .txtBox .abtText2 {
  width: 60px;
  margin-bottom: 5px;
}
/* 关于--介绍 End*/

/* 关于--数据 Strat */
.about .data {
  width: 95%;
  position: relative;
  background: var(--color2);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 3% 0 3% 5%;
}
.about .data ul {
  display: flex;
}
.about .data ul li {
  flex: 1;
}
.about .data h4 {
  display: flex;
  align-items: last baseline;
  font-size: 1.8rem;
  color: rgb(88, 94, 99);
  font-family: "NotoSerif";
}
.about .data h4 span {
  display: block;
  font-size: 4.8rem;
  font-weight: 800;
  font-family: "NotoSerif";
  margin-right: 10px;
}
.about .data h5 {
  font-size: 1.8rem;
  color: rgb(123, 132, 139);
  font-weight: lighter;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.about .data h5 i {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
/* 关于--数据 End*/

/* 关于--理念 Strat */
.about .culture .con {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 2%; */
}
.about .culture .item {
  width: 30%;
}
.about .culture .item li {
  position: relative;
}
.about .culture .item li {
  margin-bottom: 160px;
}
.about .culture .item li:last-of-type {
  margin-bottom: 0;
}
.about .culture .item span {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #e4e4e4;
  font-size: 2.8rem;
  font-family: "NotoSerif";
  color: #96a7b3;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}
.about .culture .item span img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.about .culture .item span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c9c9;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  z-index: 2;
}
.about .culture .item span::after {
  content: "";
  width: 100px;
  height: 1px;
  border-bottom: 1px dashed #e4e4e4;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(100%, 100%);
}
.about .culture .item li:nth-of-type(2) {
  left: -100px;
}
.about .culture .item li:nth-of-type(1) span::after {
  transform: translate(100%, 100%) rotate(40deg);
  transform-origin: left;
}
.about .culture .item li:nth-child(3) span::after {
  width: 80px;
  transform: translate(100%, 100%) rotate(-40deg);
  transform-origin: left;
}

.about .culture .bb {
  width: 25%;
  padding-top: 27%;
  position: relative;
  z-index: 2;
}
.about .culture .bb span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/abtYs2.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
}
.about .culture .bb .ys {
  width: 92%;
  height: 92%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about .culture .bb .ys img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.48s;
}
.about .culture .bb i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/abtYs3.png");
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0.6;
  -webkit-animation: scaleWave 4s linear 0s infinite;
  animation: scaleWave 4s linear 0s infinite;
  transition: all 0.48s;
}
@-webkit-keyframes scaleWave {
  0% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }

  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
  }
}

@keyframes scaleWave {
  0% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }

  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
  }
}
.about .culture .bb .i1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.about .culture .bb .i2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.about .culture .bb .i3 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.about .culture .cc li {
  text-align: right;
}
.about .culture .cc li span {
  justify-content: flex-end;
}
.about .culture .cc span::after {
  right: initial;
  left: 0;
  transform: translate(-100%, 100%);
}
.about .culture .cc span::before {
  left: 0;
  transform: translate(-50%, 50%);
}
.about .culture .cc li:nth-of-type(2) {
  left: 100px;
}
.about .culture .cc li:nth-of-type(1) span::after {
  transform: translate(-100%, 100%) rotate(-40deg);
  transform-origin: right;
}
.about .culture .cc li:nth-child(3) span::after {
  width: 80px;
  transform: translate(-100%, 100%) rotate(40deg);
  transform-origin: right;
}
.about .culture .item .text p {
  color: #333;
}

/* 关于--理念 End*/

/* 关于--优势 Strat */
.about .advan {
  width: 100%;
  position: relative;
  background: var(--color2);
}
.about .advan ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.about .advan ul li {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8% 5%;
  text-align: center;
}
.about .advan ul li i {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--color);
  border-radius: 50%;
  padding: 5px;
  position: relative;
}
.about .advan ul li i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  padding: 8px;
  border-radius: 50%;
}
.about .advan ul li h2 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  font-family: "NotoSerif";
  margin: 15px 0 10px;
}
.about .advan ul li h3 {
  font-size: 1.6rem;
  color: #666;
  font-weight: lighter;
}
/* 关于--优势 End*/

/* 关于--合作 Strat */
.about .partner {
  background: var(--color2);
}
/* .about .partner .con {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about .partner ul {
  width: 100%;
  display: flex;
  position: relative;
}
.about .partner ul li {
  list-style: none;
  margin-right: 20px;
}
.about .partner ul li img {
  width: auto;
  height: 76px;
  background: #fff;
} */

.about .partner .con {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0 20px;
}
.about .partner .con ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: verticalScroll 58s infinite linear;
  gap: 0 20px;
}
@keyframes verticalScroll {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
.about .partner ul li img {
  width: auto;
  height: 76px;
  background: #fff;
} 

/* 关于--合作 End*/

/* 关于--荣誉 Strat */
.about .honor {
  width: 100%;
  position: relative;
  background-image: url("../images/abtHonorBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about .honor .swiper,
.about .honor .swiper-slide,
.about .honor .swiper-wrapper {
  width: 100%;
  position: relative;
}
.about .honor .swiper-slide {
  transform: scale(0.6);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.about .honor .swiper-slide-active {
  transform: scale(1) !important;
}
.about .honor .swiper-slide .imgBox {
  width: 100%;
  position: relative;
  margin-bottom: 120px;
}
.about .honor .swiper-slide h2 {
  font-size: 2rem;
  color: #1a1a1a;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.about .honor .swiper-slide-active h2 {
  opacity: 1;
}
.about .honor .ysB {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  width: 38%;
}
.about .honor .oth {
  width: 60%;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -32px;
}
.about .honor .oth .sButton {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  right: auto;
  width: 54px;
  height: 54px;
  padding: 10px;
  margin-top: 0 !important;
  border: 2px solid var(--color2);
  border-radius: 50%;
}
.about .honor .oth .swiper-button-next,
.about .honor .oth .swiper-button-prev {
  color: #1a1a1a;
}
.about .honor .oth .swiper-button-next::after,
.about .honor .oth .swiper-button-prev::after {
  font-size: 1.8rem;
  font-weight: 600;
}
/* 关于--荣誉 End*/

/* 内页Banner Strat */
.nyBanner {
  width: 100%;
  position: relative;
  margin-top: var(--height);
}
.nyBanner .box {
  position: relative;
  width: 100%;
  padding: 14% 0;
}
.nyBanner .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.nyBanner .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nyBanner h2 {
  position: relative;
  width: 100%;
  z-index: 2;
  font-size: 5.4rem;
  color: #fff;
  text-align: center;
  font-family: "NotoSerif";
}

/* 内页Banner End*/

/* 内页导航 Strat */
.nyNav {
  width: 100%;
  position: relative;
  background: #fff;
}
.nyNav .box {
  width: 100%;
  position: relative;
}
.nyNav .box ul {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--color2);
}
.nyNav .box ul li {
  margin: 0 28px;
}
.nyNav .box ul li a {
  position: relative;
  display: block;
  font-size: 2rem;
  color: var(--color);
  padding: 28px 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  text-align: center;
}
.nyNav .box ul li a::before {
  content: "";
  height: 2px;
  position: absolute;
  display: block;
  background: #1a1a1a;
  bottom: 0px;
  left: 50%;
  right: 50%;
  transition: all 0.3s linear;
}
.nyNav .box ul li a:hover,
.nyNav .box ul li.active a {
  color: #1a1a1a;
}
.nyNav .box ul li a:hover::before,
.nyNav .box ul li.active a::before {
  left: 0;
  right: 0;
}
/* 内页导航 End*/

/* 生产--技术 Strat */
.techA {
  width: 100%;
  position: relative;
  background: var(--color2);
}
.techA .itro {
  width: 100%;
  position: relative;
}
.techA .itro .box {
  width: 70%;
  margin: 0 auto;
}
.techA .itro .title h2 {
  font-weight: lighter;
  color: #494949;
}
.techA .itro .text p {
  font-weight: lighter;
  color: #666;
  text-align: center;
  line-height: 1.75;
}
.techA .img {
  width: 100%;
  position: relative;
  height: 100vh;
}
.techA .img .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.techA .img .swiper,
.techA .img .swiper-wrapper,
.techA .img .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.techA .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.techA .img .swiper .swiper-pagination {
  bottom: 5%;
}
.techA .img .swiper .swiper-pagination span {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #fff;
  margin: 0 10px;
  opacity: 1;
}
.techA .img .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* 生产--技术 End*/

/* 生产--生产 Strat */
.techB .items {
  padding-top: 0 !important;
}
.techB .items .item {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}
.techB .items .item:first-of-type {
  margin-top: 0;
}
.techB .items .item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.techB .item .imgBox {
  width: 45%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.techB .item .txtBox {
  width: 45%;
  position: relative;
  padding: 5% 6%;
}
.techB .item .txtBox span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  font-size: 3.6rem;
  color: #494949;
  background: #fff;
  border-radius: 50%;
  font-family: "NotoSerif";
  font-weight: 100;
  margin-left: -10px;
}
.techB .item .txtBox h2 {
  font-size: 2.8rem;
  color: #333;
  margin: 42px 0 28px;
  font-family: "NotoSerif";
  font-weight: 400;
}
.techB .item .txtBox p {
  color: #333;
  line-height: 1.75;
}
/* 生产--生产 End*/

/* 产品分类 Strat */
.pro .proNav {
  width: 100%;
  position: sticky;
  top: var(--height2);
  left: 0;
  border-bottom: 1px solid var(--color2);
  z-index: 3;
  background: #fff;
}
.pro .proNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 0;
  padding: 20px 0;
  align-items: stretch;
}
.pro .proNav ul li a {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  height: 100%;
}
.pro .proNav ul li i {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 35px;
}
.pro .proNav ul li h2 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 5px;
  text-align: center;
}
.pro .proNav ul li a.active,
.pro .proNav ul li a:hover {
  background: var(--color2);
  border-radius: 10px;
  opacity: 1;
}
.pro .series {
  position: relative;
  z-index: 1;
  /* background: var(--color2); */
}
.pro .series .box {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.pro .series ul {
  width: 100%;
  position: relative;
}
.pro .series ul li {
  width: 100%;
  position: relative;
  margin-bottom: 5%;
}
.pro .series ul li:last-of-type {
  margin-bottom: 0;
}
.pro .series ul li:nth-of-type(2n) a {
  flex-direction: row-reverse;
}
.pro .series a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pro .series a .txtBox {
  width: 38%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pro .series a .imgBox {
  width: 60%;
  position: relative;
}
.pro .series a .imgBox img {
  width: 100%;
  object-fit: cover;
}
.pro .series a h2 {
  font-size: 2.8rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  font-family: "NotoSerif";
}
.pro .series a .text {
  margin: 12px 0 24px;
}
.pro .series a .text p {
  color: #666;
  line-height: 1.75;
  text-align: center;
}
.pro .series a .more4 span {
  display: inline-block;
  font-size: 1.4rem;
  color: #666;
  padding: 8px 32px;
  border: 1px solid var(--color);
}
/* 产品分类 End*/

/* 产品列表 Strat */
.proL {
  width: 100%;
  position: relative;
  background: var(--color2);
}
.proL .itro {
  display: flex;
  /* background: var(--color2); */
  /* background: #fff; */
}
.proL .itro .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proL .itro .aa {
  width: 50%;
  position: relative;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.proL .itro .bb {
  width: 48%;
  position: relative;
  padding-left: 5%;
  padding-right: 18%;
}
.proL .itro .bb h2 {
  font-size: 2.6rem;
  color: #333;
  font-weight: 600;
  font-family: "NotoSerif";
}
.proL .itro .bb .text {
  margin-top: 42px;
}
.proL .itro .bb .text p {
  color: #494949;
  line-height: 1.75;
}
.proL .lists {
  width: 100%;
  position: relative;
}
.proL .lists ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
.proL .lists ul li {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.proL .lists ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 5% calc(5% + 32px);
}
.proL .lists ul li a .imgBox {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.proL .lists ul li a .imgBox img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.proL .lists ul li a h2 {
  font-size: 1.4rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 18px;
  text-align: center;
}
.proL .lists ul li a span {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  color: #1a1a1a;
  opacity: 0.5;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.proL .lists ul li a span i {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-right: 8px;
}
.proL .lists ul li a:hover .imgBox img {
  transform: scale(1.1);
}
.proL .lists ul li a:hover span {
  opacity: 1;
}
.proL .lists .list {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 5% 0 3%;
}
.proL .lists .list:first-of-type {
  padding-top: 0 !important;
}
/* 产品列表 End*/

/* 产品详情 Strat */
.prod {
  width: 100%;
  position: relative;
  background: #f5f5f5;
}
.prod .back {
  width: 70%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color2);
}
.prod .back a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #1a1a1a;
  opacity: 0.75;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.prod .back a i {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}
.prod .back a:hover {
  opacity: 1;
}
.prod .itro {
  width: 70%;
  margin: 0 auto;
  padding: 3% 0;
}
.prod .itro .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod .itro .aa {
  width: 50%;
  position: relative;
  padding: 0 5%;
}
.prod .itro .bb {
  width: 50%;
  position: relative;
  padding: 0 5%;
}
.prod .itro .bb h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  font-weight: 600;
  font-family: "NotoSerif";
}
.prod .itro .bb .text {
  color: #333;
  font-size: 1.6rem;
  margin: 42px 0;
}
.prod .itro .bb .text ul li {
  list-style-type: disc;
  margin-left: 20px;
  padding: 5px 0;
}
.prod .itro .bb .text p {
  padding: 5px 0;
}
.prod .itro .bb .iconPic {
  width: 90%;
  position: relative;
  margin-bottom: 48px;
}
.prod .itro .bb .iconPic ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 5px;
}
.prod .itro .bb .iconPic ul li {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod .itro .bb .more a {
  background: var(--color);
  color: #fff;
}
.prod .itro .bb .more a:hover {
  background: #494949;
}
.prod .poster {
  position: relative;
  width: 100%;
  background: #fff;
}
.prod .poster .box {
  width: 55%;
  margin: 0 auto;
}
.prod .poster .box img {
  margin: 6px 0;
}

/* 产品详情 End*/

/* 定制与案例 Strat */
.custom {
  width: 100%;
  position: relative;
}
.custom .lc {
  background: var(--color2);
}
.custom .lc .swiper,
.custom .lc .swiper-wrapper,
.custom .lc .swiper-slide {
  width: 100%;
  position: relative;
}
.custom .lc .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom .lc .imgBox {
  width: 50%;
  position: relative;
  padding-left: 5%;
}
.custom .lc .txtBox {
  width: 42%;
  position: relative;
  padding-right: 15%;
}
.custom .lc .txtBox h2 {
  font-size: 2.8rem;
  font-family: "NotoSerif";
  color: #1a1a1a;
  margin-bottom: 24px;
}
.custom .lc .txtBox .text p {
  color: #1a1a1a;
  line-height: 1.75;
}
.custom .lc .turn {
  width: 100%;
  position: relative;
  /* padding: 0 5%; */
  margin-top: 5%;
}
.custom .lc .turn ul {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}
.custom .lc .turn ul li {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  color: #999;
  flex: 1;
  cursor: pointer;
  opacity: 1;
  background: none;
  text-align: center;
  border-radius: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.custom .lc .turn ul li .icon {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom .lc .turn ul li .icon:before,
.custom .lc .turn ul li .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 45px);
  height: 1px;
  background: var(--color);
}
.custom .lc .turn ul li .icon:before {
  left: 0;
}
.custom .lc .turn ul li .icon::after {
  right: 0;
}
.custom .lc .turn ul li:first-of-type .icon:before,
.custom .lc .turn ul li:last-of-type .icon::after {
  display: none;
}
.custom .lc .turn ul li i {
  display: block;
  width: 60px;
  height: 60px;
  padding: 15px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.custom .lc .turn ul li i img {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.custom .lc .turn ul li.swiper-pagination-bullet-active {
  color: #000;
}
.custom .lc .turn ul li.swiper-pagination-bullet-active i {
  background: var(--color);
}
.custom .lc .turn ul li.swiper-pagination-bullet-active i img {
  filter: brightness(0) invert(1);
}
.custom .items ul {
  width: 100%;
  position: relative;
}
.custom .items ul li {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-bottom: 5%;
}
.custom .items ul li:last-of-type {
  margin-bottom: 0 !important;
}
.custom .items ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.custom .items .imgBox {
  position: relative;
  width: 55%;
  z-index: 3;
  overflow: hidden;
}
.custom .items .imgBox img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.custom .items .txtBox {
  width: 38%;
  position: relative;
  padding: 0 10%;
}
.custom .items .imgBox:hover img {
  transform: scale(1.1);
  transition: transform linear 3s;
}
.custom .items ul li:nth-child(odd) .txtBox {
  padding-left: 0;
}
.custom .items ul li:nth-child(even) .txtBox {
  padding-right: 0;
}
.custom .items .txtBox h2 {
  font-size: 3.2rem;
  color: #1a1a1a;
  font-family: "NotoSerif";
  position: relative;
  padding-bottom: 3%;
  margin-bottom: 5%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.custom .items .txtBox h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--color);
  z-index: 2;
}
.custom .items .txtBox h2::after {
  content: "";
  position: absolute;
  left: -30%;
  bottom: 1px;
  width: 200%;
  height: 1px;
  background: var(--color2);
}
.custom .items .txtBox .text p {
  line-height: 1.75;
  color: #494949;
}
/* 定制与案例 End*/

/* 常见问题 Strat */
.faq .title span,
.contact .title span {
  font-size: 1.6rem;
  font-family: "NotoSerif";
  color: #666;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.faq .title h2,
.contact .title h2 {
  font-weight: 600;
}
.faq .con,
.contact .way .con {
  margin-top: 5%;
}
.faq {
  background: var(--color2);
}
.faq .box {
  width: 65%;
  position: relative;
  margin: 0 auto;
}
.faq ul li {
  padding: 20px 0;
  border-top: 1px solid var(--color);
}
.faq ul li:last-of-type {
  border-bottom: 1px solid var(--color);
}
.faq ul li .qu {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.faq ul li .qu .tit{
  display: flex;
  align-items: center;
}
.faq ul li .qu h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #1a1a1a;
}
.faq ul li .button {
  width: 32px;
  height: 32px;
  padding: 8px;
  background: var(--color);
  border-radius: 50%;
}
.faq ul li .an {
  width: 100%;
  position: relative;
  padding-top: 20px;
  display: none;
}
.faq ul li .an p {
  color: #666;
}
/* 常见问题 End*/

/* 联系我们 Strat */
.contact {
  width: 100%;
  position: relative;
  padding: 0 15%;
  background: var(--color2);
}
.contact .way .con {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 15px;
}
.contact .way .aa {
  width: 55%;
  position: relative;
}
.contact .way .aa #mapDiv {
  height: 100%;
}
.contact .way .bb {
  width: 45%;
  position: relative;
  padding: 6%;
}
.contact .way .bb h2 {
  font-size: 2rem;
  color: #1a1a1a;
  font-family: "NotoSerif";
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}
.contact .way .bb ul {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact .way .bb li {
  display: flex;
  position: relative;
  width: 100%;
  margin-top: 15px;
}
.contact .way .bb li i {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.contact .way .bb li .del{
  width: calc(100% - 30px);
}
.contact .way .bb li h4 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  font-family: "NotoSerif";
  margin-bottom: 8px;
}
.contact .way .bb li span {
  display: block;
  font-size: 1.6rem;
  color: #494949;
  margin: 2px 0;
}

.contact .leaveMsg form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 6% 8%;
  border-radius: 15px;
}
.contact .leaveMsg p {
  font-size: 2.8rem;
  font-weight: lighter;
  color: #111;
  line-height: 1.5;
}
.contact .leaveMsg ul li span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}
.contact .leaveMsg ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 0;
}
.contact .leaveMsg ul li {
  width: 48.5%;
}
.contact .leaveMsg ul li:last-of-type {
  width: 100%;
}
.contact .leaveMsg input {
  width: 100%;
  transition: all 0.3s ease-out 0s;
}
.contact .leaveMsg textarea {
  width: 100%;
  border-radius: 0;
  resize: none;
  min-height: 120px;
}
.contact .leaveMsg input,
.contact .leaveMsg textarea {
  font-size: 1.5rem;
  color: #666;
  border-radius: 6px;
  background: var(--color2);
  padding: 12px;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #999;
  font-weight: normal;
  font-size: 1.4rem;
}

/* placeholder for chrome */
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 1.4rem;
  opacity: 1;
  color: #999;
  font-weight: normal;
}
.contact .leaveMsg .button {
  margin-top: 42px;
}
.contact .leaveMsg button {
  display: inline-block;
  padding: 14px 72px;
  font-size: 1.6rem;
  font-weight: normal;
  color: #fff;
  background: var(--color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.contact .leaveMsg button:hover {
  background: #494949;
}

/* 联系我们 End*/
