@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/HarmonyOS_Sans_SC.woff2");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/HarmonyOS_Sans_SC_Medium.woff2");
  font-family: "title";
}
@font-face {
  src: url("../fonts/Poppins-Regular.woff2");
  font-family: "en";
}
@font-face {
  src: url("../fonts/Poppins-Medium.woff2");
  font-family: "en2";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "en", "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%;
}
.w100p5 {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.webPage {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pt5 {
  padding-top: 5%;
  padding-bottom: 5%;
}
.pt8 {
  padding-top: 8%;
  padding-bottom: 8%;
}
.font26 p {
  font-size: 2.6rem;
  line-height: 1.75;
}
.font24 p {
  font-size: 2.4rem;
  line-height: 1.75;
}
.font20 p {
  font-size: 2rem;
  line-height: 1.75;
}
.font18 p {
  font-size: 1.8rem;
  line-height: 1.75;
}
.font17 p {
  font-size: 1.7rem;
  line-height: 1.75;
}
.font16 p {
  font-size: 1.6rem;
  line-height: 1.75;
}
.font14 p {
  font-size: 1.4rem;
  line-height: 1.75;
}
.webPage {
  width: 100%;
  position: relative;
}
.animateds {
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.8s ease-out 0.5s;
}
.actives {
  transform: translateY(0px);
  opacity: 1;
}
html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  --color: #00ae41;
  --height: 90px;
  --height2: 80px;
  --headerHeight: 29rem;
  background: #fff;
}

/* 导航 Strat */
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  border-bottom: 1px solid transparent;
  height: var(--height);
}
header.scroll {
  height: var(--height2);
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  z-index: 98;
  opacity: 0;
  transition: height 0.3s ease-in-out, opacity 0.2s ease-in-out;
  z-index: 0;
}
header.open::before {
  height: var(--headerHeight);
  opacity: 1;
}
header.scroll::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.header2 {
  position: absolute;
}
header .navBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 3;
}
header .logo a {
  position: relative;
  z-index: 999;
}
header .logo a img {
  width: auto;
  height: 38px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .logo a img.logoB {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
header.scroll .logo a img.logoB {
  opacity: 1;
}
header.scroll .logo a img.logoW {
  opacity: 0;
}
header.open .logo a img.logoB {
  opacity: 0;
}
header.open .logo a img.logoW {
  opacity: 1;
}
header .nav {
  position: relative;
  height: 100%;
}
header .nav ul {
  display: flex;
  align-items: center;
  height: 100%;
}
header .nav ul li {
  height: 100%;
  position: relative;
  padding: 0 2rem;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
header .nav.active ul li.ls {
  padding: 0 5rem;
}
header .nav ul li > a {
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
  cursor: pointer;
  justify-content: center;
}
header .nav.active ul li a {
  color: #fff;
}
header .nav .sMenu {
  position: absolute;
  top: var(--height);
  left: 0px;
  z-index: 99;
  width: 100%;
  text-align: center;
  opacity: 0;
  filter: Alpha(opacity=0);
  height: 0;
  transition: all 0.2s 0s;
  transition-delay: 0s;
  visibility: hidden;
}

header .nav ul li .sMenu.on {
  opacity: 1;
  height: auto;
  visibility: visible;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}
header .nav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--color);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1;
}
header .nav ul li.hover:before {
  opacity: 1;
  height: var(--headerHeight);
}
header .nav .spMenu {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 99;
  width: 100%;
  text-align: center;
  filter: Alpha(opacity=0);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  display: none !important;
}
header .nav ul li .spMenu .spbox {
  display: flex;
  justify-content: space-between;
  padding: var(--height) 0 3%;
  opacity: 0;
  transform: translateY(50px);
}
header .nav ul li .spMenu .spbox.on {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease-in-out 0.3s;
}
header .nav ul li .spMenu .spbox dl {
  width: 100%;
  box-sizing: border-box;
}
header .nav ul li .spMenu .spbox dl dd a {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  margin: 2rem 0;
  transition: all 0.3s linear;
}
header .nav ul li .spMenu .srbox {
  width: 48%;
  display: none;
}
header .nav ul li .spMenu .sr {
  display: none;
  padding-top: 1.2rem;
}
header .nav ul li .spMenu .sr:first-of-type {
  display: block;
}
header .nav ul li .spMenu .sr a {
  color: rgba(255, 255, 255, 1);
  font-size: 1.5rem;
  text-align: left;
  display: block;
  margin: 1rem 0;
  transition: all 0.3s linear;
}
header .nav ul li .spMenu .sr a:hover {
  color: rgba(255, 255, 255, 0.6);
}
header .search .input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  position: fixed;
  left: 0;
  right: auto;
  top: var(--height);
  display: block;
  padding-top: 28px;
  padding-bottom: 28px;
  width: 100%;
}

header .search.on .input {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  z-index: 100;
  display: block;
  width: 100%;
}
header .nav .sMenu a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7) !important;
  display: block;
  font-weight: lighter;
  margin: 1.3rem 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .nav li .sMenu a:hover {
  color: #fff !important;
}
header .other {
  display: flex;
  align-items: center;
  gap: 0 36px;
  height: 100%;
  position: relative;
  z-index: 999;
}

header .other .language a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
}
header .other .language i {
  margin-right: 10px;
}
header .other .language i {
  display: block;
  font-size: 2.5rem;
  color: #fff;
}
header .other .search {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  cursor: pointer;
}
header .other .search i {
  display: block;
  font-size: 2.2rem;
  color: #fff;
}
header .search .input {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .search form {
  position: relative;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-left: 48px;
}
header .search form i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  color: #fff !important;
  margin-bottom: 0 !important;
}
header .search form input {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 50px;
  height: 50px;
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}
header .search form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
header.scroll .nav a,
header.scroll .other .language a,
header.scroll .other .language i,
header.scroll .other .search i {
  color: #333;
}
header.open .nav a,
header.open .other .language a,
header.open .other .language i,
header.open .other .search i {
  color: #fff;
}
.navBtn {
  position: relative;
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 0rem;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}
header.active .navBtn span {
  background: var(--color);
}
.header2 .navBtn span {
  background: var(--color);
}
.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn_active span:nth-of-type(3) {
  margin-top: -58%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 导航 End*/

/* 公共 Strat */
.section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section .box {
  position: relative;
  width: 100%;
}
.part {
  width: 100%;
  position: relative;
}
.part .box {
  position: relative;
  width: 100%;
}
.part .con {
  width: 100%;
  position: relative;
  margin-top: 3%;
}
.fullSwiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
  transform: translate3d(0, 0, 0);
}
.fullSwiper > .swiper-wrapper {
  display: block;
}
.full_pagination {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.full_pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 8px 0;
  background: #fff;
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.full_pagination .swiper-pagination-bullet:last-of-type {
  display: none;
}
.full_pagination .swiper-paginatio n-bullet:hover {
  width: 8px;
  height: 8px;
}
.full_pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
}
.full_pagination .swiper-pagination-bullet.active {
  background: var(--color);
}
.section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.more a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color);
  padding: 16px 52px;
  border: 2px solid var(--color);
  border-radius: 30px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more a:hover {
  background-color: var(--color);
  color: #fff;
}
.more2 a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color);
  padding: 16px 52px;
  background: #fff;
  border-radius: 30px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more2 a:hover {
  background: var(--color);

  color: #fff;
}
/* 公共 End*/

/* 首页banner Strat */
.banner {
  width: 100%;
  height: 100vh !important;
  position: relative;
}
.banner .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-slide,
.banner .swiper .swiper-slide .aa {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.banner .swiper .swiper-slide .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .swiper .swiper-slide .imgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
}
.banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  left: 50%;
  bottom: 5%;
  transform: translate3d(-50%, 0, 0);
}
.banner .txtBox {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.banner .txtBox h2 {
  font-size: 6.4rem;
  color: #fff;
  transform: translateY(50px);
  font-family: "en2";
  opacity: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
.banner .txtBox p {
  font-size: 2rem;
  color: #fff;
  font-weight: normal;
  margin-top: 2rem;
  transform: translateY(50px);
  opacity: 0;
}
.banner .txtBox p strong {
  display: block;
}
.banner .swiper-slide-active .txtBox h2 {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.banner .swiper-slide-active .txtBox p {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}
.bullet-svg {
  width: 20px;
  height: 20px;
}
.custom-bullet {
  position: relative;
  margin: 0 0.4rem;
}
.custom-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  transition: all 0.3s linear;
}
.custom-bullet.active::before {
  opacity: 1;
}
.custom-bullet circle {
  fill: none;
  stroke: #ffffff; /* 线条颜色 */
  stroke-width: 2; /* 线条宽度 */
  stroke-linecap: round; /* 线头样式 */
  stroke-dasharray: 62.8; /* 圆周长（2πr，r=100时，2*π*100 ≈ 628） */
  stroke-dashoffset: 62.8; /* 初始状态：隐藏线 */
}
.custom-bullet.active circle {
  animation: draw 2s linear forwards;
}

/* 动画关键帧 */
@keyframes draw {
  from {
    stroke-dashoffset: 62.8; /* 初始隐藏 */
  }
  to {
    stroke-dashoffset: 0; /* 绘出完整圈 */
  }
}
/* 首页banner End*/

/* 首页--关于我们 Strat */
.i_part1 .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.i_part1 .tit h2 {
  font-size: 13rem;
  color: #1b1b1b;
  opacity: 0.15;
}
.i_part1 .txt {
  margin-top: -8rem;
  margin-left: 13rem;
}
.i_part1 .txt h3 {
  font-size: 10rem;
  font-family: "en2";
  font-weight: bolder;
  color: #1b1b1b;
  text-transform: uppercase;
}
.i_part1 .txt h3 span {
  color: var(--color);
}
.i_part1 .txt h4 {
  font-size: 2.8rem;
  font-weight: lighter;
  color: #000;
  margin-bottom: 42px;
}
.i_part1 .txt p {
  width: 56%;
  color: #666;
  font-size: 200;
  font-weight: lighter;
}
.i_part1 .more {
  margin-top: 5%;
}
/* 首页--关于我们 End*/

/* 首页--产品分类 Strat */

.i_part2 .items {
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 2;
}
.i_part2 .items .proSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.i_part2 .items .swiper-slide {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.i_part2 .items .inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.i_part2 .items .inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.i_part2 .items .txtBox {
  position: relative;
  z-index: 2;
}

.i_part2 .items h2 {
  font-size: 9rem;
  color: #fff;
  line-height: 1.75;
  transform: translateY(20px);
  transition: all 0.4s linear 0.5s;
  opacity: 0;
}
.i_part2 .items p {
  position: relative;
  color: #fff;
  padding-left: 15px;
  margin: 5px 0;
}
.i_part2 .items .more2 {
  margin: 5% auto 0;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.4s linear 1s;
  opacity: 0;
}
.i_part2 .items .swiper-slide-active h2,
.i_part2 .items .swiper-slide-active .more2 {
  transform: translateY(0);
  opacity: 1;
}
.i_part2 .swiper-button-next,
.i_part2 .swiper-button-prev {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  top: 55%;
}
.i_part2 .swiper-button-prev {
  left: 5%;
}
.i_part2 .swiper-button-next {
  right: 5%;
}
.i_part2 .swiper-button-next:after,
.i_part2 .swiper-button-prev:after {
  font-size: 2rem;
  font-weight: bolder;
  color: var(--color);
}

/* 首页--产品分类 End*/
/* 首页--最新产品 Strat */
.i_part4 .box {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.i_part4 .inner {
  width: 100%;
}
.i_part4 .box .con {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}
.i_part4 .tit h2 {
  font-size: 13rem;
  color: #1b1b1b;
  opacity: 0.15 !important;
  width: max-content;
}
.i_part4 .tit h3 {
  font-size: 10rem;
  font-family: "en2";
  font-weight: bolder;
  color: var(--color);
  text-transform: uppercase;
  margin-top: -8rem;
  margin-left: 13rem;
  width: max-content;
}
.i_part4 .box ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 8% 8% 0 8%;
  box-sizing: border-box;
  position: relative;
}
.i_part4 .box ul::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #f8f8f8;
  width: 71%;
  height: 73%;
  border-radius: 0 200px 0 0;
  z-index: 1;
}
.i_part4 .box ul::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #ededed;
  width: 62.5%;
  height: 45%;
  z-index: 2;
  border-radius: 0 200px 0 0;
}
.i_part4 .box ul li img {
  width: 100%;
  position: relative;
  z-index: 6;
}
.i_part4 .box ul .li1 {
  width: 35%;
}
.i_part4 .box ul .li2 {
  width: 65%;
  position: relative;
}
.i_part4 .box ul .li2 b {
  display: block;
  max-height: 60vh;
  overflow: hidden;
}
.i_part4 .box ul .li2::before {
  content: "";
  position: absolute;
  left: -15.5%;
  top: 0%;
  background: #ededed;
  width: 15.5%;
  height: 73%;
  border-radius: 0;
  z-index: 2;
}
.i_part4 .box ul .li2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10%;
  background: #fff;
  width: 50%;
  height: 30%;
  z-index: 10;
  border-radius: 0 500px 0 0;
}
/* 首页--最新产品 End*/
/* 首页--证书 Strat */
.i_part3 {
  background: rgba(0, 92, 161, 0.1);
}
.i_part3 .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.title h2 {
  font-size: 8rem;
}
.title2 h2 {
  color: #000;
  font-size: 4.2rem;
  font-weight: 700;
  padding: 0 0 4rem 0;
  text-align: center;
  border-bottom: 2px solid #000;
  margin-bottom: 5rem;
}
.i_part3 .title h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.i_part3 .contain {
  width: 100%;
  cursor: move;
  margin: 0 auto;
  overflow: hidden;
}
.i_part3 .swiper-slide {
  transition: all 0.3s linear;
  transform: scale(0.8);
}
.i_part3 .swiper-slide-active {
  transform: scale(1);
}
/* 首页--证书 End*/

/* 底部栏 Strat */

.footer {
  width: 100%;
  overflow: hidden;
  height: auto !important;
  background-color: #eee;
}
.footer .box {
  width: 100%;
  position: relative;
  padding: 6rem 0 2rem;
}
.footer .box .stage img {
  height: 4.5rem;
  width: auto;
}
.footer dl {
  display: flex;
  margin: 4rem 0;
  justify-content: space-between;
  align-items: center;
}
.footer dl dd {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-right: 5rem;
}
.footer dl dd p {
  color: #333;
  opacity: 0.6;
}
.footer dl dd a {
  color: #333;
}
.footer .copyRight {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .copyRight span {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s linear;
}
.footer .copyRight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .copyRight .rr a {
  margin-left: 2rem;
}
.footer .copyRight .rr a:hover span {
  color: #333 !important;
}
.footer .rr {
  display: flex;
  align-items: center;
}
.footer .ll {
  display: flex;
  align-items: center;
}

.footer .ll .ls {
  margin-left: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 0.8rem;
  transition: all 0.3s linear;
}
.footer .ll .ls img {
  width: 100%;
  height: auto;
  transition: all 0.3s linear;
}
.footer .ll .ls:hover {
  background: var(--color);
}
.footer .ll .ls:hover img {
  filter: brightness(0) invert(1);
}
/* 底部栏 End*/

/* 内页Banner Strat */
.nyBanner {
  overflow: hidden;
}
.nyBanner .box {
  padding: 10vh 0;
}
.nyBanner .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.nyBanner .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1, 1.1);
  transition: transform 5s linear;
}
.nyBanner.active .imgBox img {
  transform: scale(1, 1) rotate(0.002deg);
}
.nyBanner .txtBox {
  position: relative;
  z-index: 3;
  margin-top: 20px;
  display: none;
}
.nyBanner h2 {
  font-size: 6rem;
  font-family: "en2";
  color: #fff;
  font-weight: bolder;
  margin-bottom: 1rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.nyBanner .txtBox ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
}
.nyBanner .txtBox ul li img {
  width: 2.4rem;
}
.nyBanner .txtBox ul li a,
.nyBanner .txtBox ul li i {
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin: 0 1.5rem;
}
.nyBanner .txtBox ul li.on {
  max-width: 40%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.nyBanner .hisNav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0 10px;
  font-size: 1.8rem;
  color: #fff;
}
.nyBanner .hisNav a,
.nyBanner .hisNav span {
  font-size: 1.8rem;
  color: #fff;
}
.nyBanner2 .txtBox {
  width: 80%;
}
.nyBanner2 h2 {
  text-align: left;
}
.nyBanner2 .text p {
  color: #fff;
  line-height: 1.5;
}
/* 内页Banner End*/

/* 关于我们 Strat */
.about .itro .content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.about .itro .content .aa {
  width: 28rem;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 5%;
  box-sizing: border-box;
}
.about .itro .content .aa h2 {
  font-size: 1.8rem;
  border-radius: 85px;
  padding: 5% 10%;
  margin: 0 0 2rem 0;
  box-sizing: border-box;
  color: #666;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about .itro .content .aa h2.active {
  color: #fff !important;
  background: var(--color);
}
.about .itro .content .aa h2:hover {
  color: var(--color);
}
.about .itro .content .bb {
  width: calc(100% - 38rem);
  padding: 0;
}
.about .itro .content .bb .ttb {
  display: none;
}
.about .itro .content .bb .ttb:first-of-type {
  display: block;
}
.about .itro .content .bb .bgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  min-height: 45vh;
  overflow: hidden;
  position: relative;
}
.about .itro .content .bb .bgs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.about .itro .content .bb .text {
  position: relative;
  z-index: 6;
}
.about .itro .content .bb h4 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin: 1rem 0 3rem;
}
.about .itro .content .bb p {
  color: #fff;
  width: 80%;
  margin: 0.6rem auto;
  line-height: 1.8;
  text-align: center;
}
.about .itro .content .bb p strong {
  color: #fff;
  display: block;
  margin-top: 2rem;
}
.about .itro .box2 {
  padding: 0 8%;
  margin: 10% auto;
}
.about .itro .bg {
  padding: 16rem 5rem;
  border-radius: 2rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.title3 {
  text-align: center;
  padding-bottom: 5.3rem;
}
.title3 h3 {
  font-size: 4.2rem;
  color: #1a1a1a;
  font-family: "en2";
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about .itro .box2 .title3 h3 {
  color: #fff;
}
.about .itro .box2 p {
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.63;
}
.about .culture {
  margin-top: 5%;
}
.about .culture ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}
.about .culture ul li {
  position: relative;
  width: calc(25% - 4rem);
  min-height: 50vh;
  border-radius: 3rem;
  box-shadow: 1rem 1rem 3.5rem rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.about .culture ul li:nth-child(2n) {
  top: 10rem;
}
.about .culture ul li:before {
  opacity: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 3rem;
  background: rgba(2, 160, 79, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  z-index: 11;
}
.about .culture ul li:hover:before {
  opacity: 1;
}
.about .culture ul li .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  border-radius: 3rem;
  width: 100%;
  height: 100%;
  padding: 0 3rem 8rem;
  box-sizing: border-box;
  z-index: 10;
}
.about .culture ul li:hover .inner {
  justify-content: center;
  padding: 0 3rem;
}
.about .culture ul li .inner span {
  position: absolute;
  width: 10rem;
  height: 10rem;
  line-height: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .culture ul li .inner i {
  font-size: 2rem;
  color: #fff;
  display: block;
}
.about .culture ul li h6 {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.about .culture ul li .tt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 19;
  text-align: center;
  opacity: 0;
  height: 0;
  padding: 5%;
  width: 100%;
}
.about .culture ul li .tt h6 {
  padding-bottom: 2rem;
}
.about .culture ul li p {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.44;
}
.about .culture ul li:hover .tt {
  opacity: 1;
  height: auto;
}
.about .culture .box {
  background: #eee;
  margin-top: -17rem;
  padding: 35rem 0 20rem;
  text-align: center;
}
.about .culture .box p:first-of-type {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "en2";
  color: #111111;
  letter-spacing: -0.1rem;
  line-height: 1.5;
  padding-bottom: 2rem;
}
.about .culture .box p {
  font-size: 1.7rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.76;
  padding: 0 15%;
}
.about .teama dl dd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}
.about .teama dl dd .ll {
  width: 28%;
  position: relative;
  overflow: hidden;
}
.about .teama dl dd .ll img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.about .teama dl dd .rr {
  width: 68%;
}
.about .teama dl dd .rr h6 {
  font-size: 2.2rem;
}
.about .teama dl dd .rr h6 strong {
  display: block;
  margin: 0rem 0 1.2rem;
  font-size: 1.6rem;
  color: #333;
}
.about .itro .content .bb .teama dl dd .rr p {
  color: #666;
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 4px 0;
}
.about .honor .swiper_zs {
  width: 100%;
  overflow: hidden;
}
.about .honor img {
  border-radius: 10px;
  border: 2px solid #ccc;
}
.about .honor .swiper-slide {
  transform: scale(0.8);
  transition: all 0.5s linear;
}
.about .honor .swiper-slide-active,
.about .honor .swiper-slide-duplicate-active {
  transform: scale(1);
}
.about .team {
  overflow: hidden;
}
.about .team .title3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .team .title3 h3 {
  padding: 0;
}
.about .team .title3 .text {
  width: 60%;
}
.about .team .title3 p {
  color: #555;
  line-height: 1.6;
  text-align: left;
}
.about .team ul li img {
  width: 100%;
}
.about .team ul li {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.about .team ul li .imgBox {
  width: 50%;
}
.about .team ul li .tt {
  width: 40%;
}
.about .team ul li h3 {
  font-size: 2.6rem;
  color: #333;
}
.about .team ul li .tt2 {
  margin-top: 4rem;
}
.about .team ul li p {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0.5rem 0 0;
  color: #666;
  position: relative;
  padding-left: 1.6rem;
}
.about .team ul li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color);
}
.about .title3 h3 {
  color: var(--color);
  text-align: center;
  padding-bottom: 1rem;
}
.about .history .title3 p {
  color: #666;
}
.about .history .listBox {
  position: relative;
  margin-top: 2%;
}
.about .history .listBox::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 5px solid var(--color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
}
.about .history .listBox::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
}
.about .history .listBox .lineon {
  display: block;
  width: 2px;
  height: 0;
  background: var(--color);
  position: absolute;
  top: 0;
  left: 50%;
}
.about .history .dls {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .history dl {
  width: 50%;
  position: relative;
  margin: -3% 0 0;
  padding: 0 10rem;
  box-sizing: border-box;
}
.about .history dl:nth-of-type(2n) {
  margin-top: 12%;
}
.about .history dl:first-of-type {
  margin-top: 5%;
}
.about .history dl:nth-of-type(2) {
  margin-top: 14%;
}

.about .history dl .ll {
  position: absolute;
  right: 10%;
  top: 0;
  margin-top: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color);
  z-index: 9;
}
.about .history dl dt {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
}
.about .history dl:nth-of-type(2n) .ll {
  right: inherit;
  left: 10%;
}
.about .history dl .rr {
  object-fit: cover;
}
.about .history dl .rr img {
  width: 100%;
  margin-bottom: 3rem;
}
.about .history dl p {
  color: #333;
  font-weight: 100;
  font-size: 1.8rem;
  text-align: right;
  margin: 0.5rem 0;
  line-height: 1.6;
}
.about .history dl:nth-of-type(2n) p {
  text-align: left;
}
.partner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
  min-height: 20vh;
}
.partner ul li img {
  height: 5.6rem;
  width: auto;
}
/* 关于我们 End*/

/* 内页导航 Strat */
.nyNav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.nyNav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nyNav ul li a {
  display: block;
  font-size: 2rem;
  color: #fff;
  padding: 28px 32px;
  min-width: 180px;
  text-align: center;
  box-sizing: content-box;
}
.nyNav ul li.active a {
  background: #fff;
  color: #000;
}
/* 内页导航 End*/

/* 联系我们 Strat */
.contact .way .box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.contact .way .aa,
.contact .way .bb {
  width: 47%;
  position: relative;
}
.contact .way .aa {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .way .aa h2 {
  font-size: 3rem;
  font-family: "en2";
  font-weight: bolder;
  color: #1b1b1b;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.contact .way .aa .top p {
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
}
.contact .way .aa .bottom {
  width: 100%;
  position: relative;
  border: 3px solid #f2f2f2;
  border-radius: 2rem;
  padding: 5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.contact .way .aa ul {
  margin-bottom: 3rem;
}
.contact .way .aa ul li {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
}
.contact .way .aa ul i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.contact .way .aa ul h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 8px;
}
.contact .way .aa ul span {
  font-size: 1.6rem;
  color: #4b5563;
  margin-right: 15px;
  transition: all 0.3s linear;
}
.contact .way .aa ul a:hover span {
  color: var(--color);
}
.contact .way .aa dl {
  display: flex;
}
.contact .way .aa dl dd {
  width: 4rem;
  margin-right: 2rem;
  transition: all 0.3s linear;
}
.contact .bb img {
  border-radius: 20px;
}
.contact .way .aa dl dd {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  padding: 0.8rem;
  transition: all 0.3s linear;
}
.contact .way .aa dl dd img {
  filter: invert(1) brightness(10000);
}
.contact .way .aa dl dd:hover {
  background: var(--color);
  transform: scale(1.06);
}
/* 联系我们 End*/

/* 新闻分类 Strat */
.news {
  background: #f9fafb;
}
.news .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}
.news .box ul a {
  display: block;
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.news .box ul .imgBox {
  width: 100%;
  position: relative;
  padding: 27% 0;
}
.news .box ul .imgBox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .box ul .txtBox {
  width: 100%;
  position: relative;
  padding: 5%;
}
.news .box ul .txtBox h2 {
  font-size: 2rem;
  color: #111827;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "en2";
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.news .box ul .txtBox span {
  display: block;
  font-size: 1.4rem;
  color: #6b7280;
  margin: 0px 0 10px;
}
.news .box ul a:hover h2 {
  color: var(--color);
}
.news .box ul a:hover {
  transform: translateY(-10px);
}
.more3 {
  color: #333;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-top: 3rem;
}
.more3::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #dd351b;
  border-radius: 50%;
  margin: 2px 1rem 0 0;
}
.pages ul {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
.pages ul li {
  width: 38px;
  height: 38px;
  margin: 5px;
  cursor: pointer;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pages ul li.disabled {
  pointer-events: none;
  cursor: default; /* 可选，为不可点击的li设置默认鼠标指针样式 */
  background: #eaeaea !important;
}
.pages ul li.disabled span {
  color: #666 !important;
}
.pages a,
.pages span {
  display: block;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #333;
  font-weight: 600;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages li:hover,
.pages li.active {
  background: var(--color);
  border-color: var(--color);
}
.pages li:hover a,
.pages li.active span,
.pages li:hover span {
  color: #fff;
}
.pages ul li:last-of-type {
  transform: rotate(180deg);
}
/* 新闻分类 End*/

/* 新闻详情 Strat */
.newsd {
  width: 58%;
  margin: 0 auto;
}
.newsd .tit h2 {
  font-size: 2.8rem;
  font-weight: 400;
  font-family: "en2";
  color: #111827;
  text-align: center;
}
.newsd .date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin-top: 20px;
}
.newsd .date span {
  font-size: 1.4rem;
  color: #666;
  display: flex;
  align-items: center;
}
.newsd .date i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.newsd .box .text {
  margin-top: 32px;
}
.newsd .box .text p {
  color: #333;
  margin: 32px 0;
}
.newsd .text img {
  border-radius: 15px;
}
.newsd .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 3rem;
  margin-top: 5rem;
}
.newsd .ll {
  width: 80%;
}
.newsd .ll p {
  font-size: 1.5rem;
  color: #666;
  margin: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.4s linear;
}
.newsd .ll p:hover {
  color: var(--color);
}
.newsd .rr a {
  display: block;
  padding: 10px 32px;
  border-radius: 30px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-size: 1.5rem;
  color: #333;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsd .rr a:hover {
  background: var(--color);
  color: #fff;
  border-color: transparent;
}
.newsd .rr a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  margin-right: 1rem;
}
.newsd .rr a:hover::before {
  background: #fff;
}
/* 新闻详情 End*/

/* 产品分类 Strat */
.pro0 .box .title3 {
  margin: 0;
  padding-bottom: 2rem;
}
.pro0 .box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.pro0 .box ul li {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 3.25rem;
  overflow: hidden;
  background: #f3f3f3;
  transition: all 0.4s ease-in-out;
}
.pro0 .box ul li a {
  display: block;
  position: relative;
}
.pro0 .box ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 2;
}
.pro0 .box ul li:hover {
  background: var(--color);
}
.pro0 .box ul li .imgBox {
  position: relative;
  width: 100%;
  height: 30vh;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  overflow: hidden;
}
.pro0 .box ul li .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.pro0 .box ul li .tt {
  padding: 5%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.pro0 .box ul li h3 {
  font-size: 2.6rem;
  color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  margin-bottom: 1rem;
}
.pro0 .box ul li p {
  color: #fff;
  font-size: 1.6rem;
}
.pro0 .box ul li .tt i {
  font-size: 2.2rem;
  color: #1b1b1b;
  margin-top: 5rem;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transform: rotate(180deg);
  display: block;
  background: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro0 .box ul li:hover i {
  color: var(--color);
}
.pro0 .box ul li:hover .imgBox img {
  transform: scale(1.05);
}
.pro0 .box2 ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5rem;
  position: relative;
}
.pro0 .box2 ul li {
  position: relative;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 2rem solid rgba(0, 174, 65, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.3;
  background: #fff;
  z-index: 3;
}
.pro0 .box2 ul li:nth-of-type(2) {
  border-color: rgba(0, 174, 65, 0.6);
}
.pro0 .box2 ul li:nth-of-type(3) {
  border-color: rgba(0, 174, 65, 1);
}
.pro0 .box2 ul li:nth-of-type(4) {
  border-color: rgba(0, 0, 0, 0.3);
}
.pro0 .box2 ul li:nth-of-type(5) {
  border-color: rgba(0, 0, 0, 0.6);
}
.pro0 .box2 ul li:nth-of-type(6) {
  border-color: rgba(0, 0, 0, 1);
}
.pro0 .box2 ul::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 90%;
  height: 2px;
  border-bottom: 2px dashed #ccc;
  z-index: 2;
}
.pro0 .box2 .tt2 p {
  font-size: 1.6rem;
  text-align: center;
  margin: 1rem 0;
  color: #666;
}
.pro0 .box2 .tt2 p strong {
  display: block;
  font-size: 3rem;
  color: var(--color);
  font-family: "en2";
  margin-bottom: 2rem;
}
/* 产品 */
.pro {
  background: #f9fafb;
}
.pro .bb {
  position: relative;
}
.pro .bb ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.pro .bb ul li {
  width: 100%;
  position: relative;
  border: 4px solid #ededed;
  border-radius: 2rem;
  padding: 0rem 3rem;
  transition: all 0.4s ease-in-out;
}
.pro .bb ul li:hover {
  border-color: var(--color);
  box-shadow: 1rem 1rem 4rem rgba(0, 0, 0, 0.18);
}
.pro .bb ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pro .bb ul li .imgBox {
  position: relative;
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  overflow: hidden;
}
.pro .bb ul li .imgBox img {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.pro .bb ul li .tt {
  text-align: center;
  padding: 0 0 4rem;
}
.pro .bb ul li h3 {
  font-size: 2.4rem;
  color: #1b1b1b;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.pro .bb ul li .tt i {
  font-size: 3rem;
  color: #1b1b1b;
  margin-top: 20px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transform: rotate(180deg);
  display: block;
}
.pro .bb ul li:hover i {
  color: var(--color);
}
.pro .bb ul li:hover .imgBox img {
  transform: scale(1.05);
}
.pro .search,
.apply .search {
  display: flex;
  justify-content: flex-end;
}
.pro .search form,
.apply .search form {
  width: 40%;
  position: relative;
  display: flex;
  align-items: center;
}
.pro .search form i,
.apply .search form i {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 8px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  color: #1b1b1b;
  z-index: 2;
}
.pro .search form input,
.apply .search form input {
  position: relative;
  color: #1b1b1b;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 50px;
  height: 50px;
  border: none;
  background-color: #efefef;
  width: 100%;
  padding-left: 72px;
  border-radius: 30px;
}
.pro .search form input::placeholder,
.apply .search form input::placeholder {
  color: #666;
}
/* 产品分类 End*/

/* 产品详情 Strat */
.prod .itro .title3 {
  text-align: left;
}
.prod .itro .title3 h3 {
  font-size: 3.2rem;
}
.prod .itro .title3 dl {
  display: flex;
  align-items: center;
}
.prod .itro .title3 dl dd {
  display: flex;
  align-items: center;
  margin-right: 4rem;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #666;
  position: relative;
  padding-bottom: 0.5rem;
  transition: all 0.3s linear;
}
.prod .itro .title3 dl dd::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  background: var(--color);
}
.prod .itro .title3 dl dd.active,
.prod .itro .title3 dl dd:hover {
  color: var(--color);
}
.prod .itro .title3 dl dd.active::before {
  opacity: 1;
}
.prod .itro .bar1 {
  position: relative;
}
.prod .itro .bar1:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60%;
  background: #f3f3f3 url(../images/pdBg.png) no-repeat center/ cover;
  z-index: 0;
}

.prod .itro .top {
  text-align: center;
}
.prod .itro .top h3 {
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: center;
}
.prod .itro .top p {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  color: #000000;
  text-align: center;
  padding-top: 1.5rem;
}
.prod .itro .btnss {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 8rem 0 5rem;
  align-items: center;
}
.prod .itro .btnss .bb {
  position: relative;
  z-index: 4;
  cursor: pointer;
}
.prod .itro .btnss .bs {
  margin: 0 3rem;
}
.prod .itro .btnss .bb i {
  display: block;
  font-size: 2.6rem;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s linear;
}
.prod .itro .btnss .bb:hover i {
  color: rgba(0, 0, 0, 1);
}
.prod .itro .btnss .bb.bl {
  margin-top: 2px;
}
.prod .itro .btnss .bb.br i {
  transform: rotate(180deg);
}
.prod .itro .swiper-pagination {
  position: static;
}
.prod .itro .swiper-pagination span {
  position: relative;
  transition: all 0.3s linear;
  width: 5px;
  height: 5px;
  background: #000;
  opacity: 0.3;
  margin: 0 8px;
}
.prod .itro .swiper-pagination-bullet:before {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
  opacity: 0;
}
.prod .itro .swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.prod .itro .swiper-pagination-bullet-active:before {
  opacity: 1;
}
.prod .itro .swiper-slide {
  transform: scale(0.6);
  transition: all 0.5s ease;
}
.prod .itro .swiper-slide img {
  width: 100%;
}

.prod .itro .swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}
.prod .itro .tt2 p {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #444444;
  line-height: 1.64em;
  padding-top: 2rem;
  text-align: center;
}
.prod .itro .tt2 p:first-of-type {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
  line-height: 1.3em;
  text-align: center;
}
.prod .itro .tt2 p strong {
  color: var(--color);
}
.prod .deploy {
}
.prod .deploy .box {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1a1a1a;
  padding: 10rem 0;
}
.prod .deploy .table {
  width: 60%;
  position: relative;
}
.prod .deploy .table table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}

.prod .deploy table tr:first-of-type {
  background: #f2f7fa;
  font-weight: 600;
}
.prod .deploy table tr td {
  font-size: 1.6rem;
  color: #000;
  padding: 1.8rem 5rem;
  border-bottom: 1px solid rgb(229, 231, 235);
  border-left: 1px solid rgb(229, 231, 235);
}
.prod .deploy table tr td:first-of-type {
  width: 40%;
}
/* 产品详情 End*/
