@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/Roboto-Regular.ttf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  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%;
}
.w100p3 {
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
}
.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;
  line-height: 1.75;
}
.font16 p,
.font16 li {
  font-size: 1.6rem;
  line-height: 1.75;
}
.font14 p {
  font-size: 1.4rem;
}

html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  --height: 90px;
  --height2: 70px;
  --color: #494e61;
  font-family: "myfont", sans-serif, serif;
}

/* 导航 Strat */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  height: var(--height);
  background: #fff;
  padding: 0 3%;
  font-family: Garamond, Baskerville, Caslon, serif;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: none;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header.scroll {
  height: var(--height2);
}
header .navBox {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
header .logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
header .logo img {
  width: auto;
  height: 54px;
}
header .nav {
  position: relative;
  height: 100%;
}
header .nav ul {
  display: flex;
  gap: 0 72px;
  height: 100%;
}
header .nav ul li {
  position: relative;
  height: 100%;
}
header .nav ul li a {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .nav ul li > a {
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: #494e61;
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .nav ul li:hover > a {
  color: #000;
}
header i {
  display: block;
  color: #494e61;
  font-style: normal;
}
header .nav ul li a i {
  font-size: 2.4rem;
  font-weight: 400;
  margin-left: 8px;
  margin-top: 2px;
}
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.7rem;
  color: #494e61;
  white-space: nowrap;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 8px 8px 5px;
}
header .nav ul li:hover .sMenu {
  opacity: 1;
  visibility: visible;
}
header .nav .sMenu a:hover {
  color: #000;
}
header .other {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
header .language a {
  font-size: 1.8rem;
  color: #494e61;
  display: flex;
  align-items: center;
}
header .language a i {
  font-size: 2.4rem;
  margin-right: 8px;
}
.navBtn {
  position: relative;
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 2rem;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px auto;
}
.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 */
.part {
  position: relative;
  width: 100%;
}
.part .box {
  position: relative;
  width: 100%;
}
.part .con {
  width: 100%;
  position: relative;
  margin-top: 5%;
}
.nyPage {
  width: 100%;
  position: relative;
  margin-bottom: 6%;
  padding-top: var(--height);
}
.nyPage .part {
  margin-top: 6%;
}
.title {
  padding-bottom: 28px;
  position: relative;
}
.title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #000;
}
.title h2 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.title h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #454545;
  text-align: center;
  font-family: Garamond, Baskerville, Caslon, serif;
  margin-top: 15px;
}
.more3 a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: lighter;
  color: #342b2b;
  padding: 8px 28px 8px 32px;
  border: 1px solid #342b2b;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.more3 a i {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
  transform: rotate(-180deg);
  margin-left: 8px;
  color: #342b2b;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more3 a:hover {
  background: #000;
  border: 1px solid transparent;
  color: #fff;
}
.more3 a:hover i {
  color: #fff;
}
.hisNav {
  display: flex;
  align-items: center;
}
.hisNav a {
  font-size: 1.6rem;
  color: #454545;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.hisNav i {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
  transform: rotate(-180deg);
  margin: 0 10px;
}
/* 公共 End*/

/* Banner Strat */
.banner {
  font-family: Garamond, Baskerville, Caslon, serif;
}
.banner .box {
  width: 100%;
  position: relative;
  height: 100%;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-wrapper,
.banner .swiper .swiper-slide,
.banner .swiper .swiper-slide .imgBox,
.banner .swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-slide .imgBox img {
  object-fit: cover;
}
.banner .txtBox {
  position: absolute;
  left: 10%;
  top: 45%;
  z-index: 2;
}
.banner .txtBox h2 {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 24px;
}
.banner .more2 a {
  display: inline-block;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 2px;
}
.banner .more2 a i {
  font-size: 1.8rem;
  color: #fff;
  font-style: normal;
  margin-left: 8px;
}
/* Banner End*/

/* 首页--产品 Strat */
.i_part1 .box {
  padding: 0 30px;
}
.i_part1 .con {
  margin-top: 32px;
}
.i_part1 .tit {
  display: flex;
  justify-content: center;
}
.i_part1 .tit a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  color: #000;
  font-family: Garamond, Baskerville, Caslon, serif;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part1 .tit i {
  display: block;
  font-style: normal;
  font-size: 2.4rem;
  color: #000;
  transform: rotate(-180deg);
  margin-left: 8px;
}
.i_part1 .tit a:hover {
  opacity: 0.55;
}
.i_part1 .swiper {
  width: 100%;
  position: relative;
}
.i_part1 .imgBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.i_part1 .imgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part1 .imgBox img:last-of-type {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.i_part1 a:hover .imgBox img:first-of-type {
  opacity: 0;
  visibility: hidden;
}
.i_part1 a:hover .imgBox img:last-of-type {
  opacity: 1;
  visibility: visible;
}
/* .i_part1 .swiper a h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #454545;
  margin-top: 18px;
  text-align: center;
} */

/* 首页--产品 End*/

/* 首页--关于 Strat */
.i_part2 .box {
  display: flex;
  justify-content: space-between;
}
.i_part2 .aa,
.i_part2 .bb {
  width: 50%;
  position: relative;
}
.i_part2 .aa {
  background: #e3d8c8;
  padding: 5% 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.i_part2 .bb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_part2 .aa h2 {
  font-size: 3.6rem;
  font-weight: 400;
  color: #342b2b;
  line-height: 1.2;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.i_part2 .aa .text {
  margin: 42px 0 36px;
}
.i_part2 .aa p {
  color: #000;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.i_part4 .box {
  flex-direction: row-reverse;
}
.i_part4 .aa {
  background: #797451;
}
.i_part4 .aa h2 {
  color: #fff;
}
.i_part4 .aa p {
  color: #fff;
}
.i_part4 .aa .more3 a {
  color: #fff;
  border-color: #fff;
}
.i_part4 .aa .more3 a i {
  color: #fff;
}
.i_part4 .aa .more3 a:hover {
  color: #333;
  background: #fff;
}
.i_part4 .aa .more3 a:hover i {
  color: #333;
}

/* 首页--关于 End*/

/* 首页-- 新闻 Strat */
.i_part3 .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.i_part3 .tit h2 {
  font-size: 3.2rem;
  color: #000;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.i_part3 .tit h3 {
  font-size: 1.4rem;
  color: #454545;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
  margin: 12px 0 32px;
}
.i_part3 ul {
  display: flex;
  justify-content: space-between;
}
.i_part3 li {
  width: 48.8%;
  position: relative;
}
.i_part3 li a {
  width: 100%;
  position: relative;
}
.i_part3 li .imgBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.i_part3 li .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part3 li .txtBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
.i_part3 li .txtBox span {
  font-size: 1.4rem;
  color: #666;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.i_part3 li .txtBox h2 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
  color: #454545;
  text-align: center;
  margin-top: 12px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part3 li a:hover img {
  transform: scale(1.1);
}
.i_part3 li a:hover .txtBox h2 {
  color: #000;
}
/* 首页-- 新闻 End*/

/* 底部栏 Strat */
.footer .top {
  width: 100%;
  position: relative;
  padding: 3% 5%;
  background: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .top h2 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.footer .top h3 {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
  margin: 18px 0 32px;
}
.footer .top form {
  display: flex;
  gap: 0 12px;
  align-items: center;
}
.footer .top input {
  width: 312px;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0px 0px 0px 16px;
  height: 38px;
  text-align: left;
  color: rgb(0, 0, 0);
  font-size: 1.6rem;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(148, 149, 150);
}
.footer .top button {
  border-radius: 2px;
  border-style: none;
  border-color: rgb(0, 0, 0);
  border-width: 0px;
  color: rgb(255, 255, 255);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  white-space: normal;
  padding: 11px 32px;
  text-align: center;
  word-break: break-word;
  align-self: flex-end;
  cursor: pointer;
  pointer-events: auto;
  height: auto;
  background: #000;
}
.footer .bot {
  width: 100%;
  position: relative;
  padding-top: 24px;
  padding-bottom: 5%;
}
.footer .bot ul {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer .bot .logo img {
  width: auto;
  height: 54px;
}
.footer .bot li:not(.logo) {
  margin-top: 10px;
}
.footer .bot li h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.footer .bot li dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .bot li.fotNav a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  margin: 5px 0;
}
.footer .bot li.way span,
.footer .bot li.way a {
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
}
.footer .bot li.way a.tel {
  border-top: 1px solid #000;
  display: inline-block;
  margin: 24px 0 5px;
  padding-top: 3px;
}
.footer .bot li .link {
  display: flex;
  align-items: center;
  margin-top: 64px;
  gap: 0 8px;
}
.footer .bot li .link img {
  width: 22px;
  height: 22px;
  object-fit: cover;
}
.footer .copyRight {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}
.footer .copyRight .topBack {
  width: 100%;
  position: relative;
  padding-top: 28px;
  margin-bottom: 42px;
  border-top: 1px solid #cccccc;
  display: flex;
  justify-content: flex-end;
}
.footer .copyRight .topBack span {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 1.4rem;
  color: #000;
  cursor: pointer;
}
.footer .copyRight .topBack i {
  display: block;
  font-style: normal;
  transform: rotate(90deg);
  font-size: 1.8rem;
  color: #000;
  margin-left: 10px;
}
.footer .copyRight dl {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer .copyRight dl span {
  font-size: 1.6rem;
  font-family: Garamond, Baskerville, Caslon, serif;
  color: #454545;
}

/* 底部栏 End*/

/* 关于我们 Strat */
.about .itro {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about .itro .title {
  padding-bottom: 0 !important;
}
.about .itro .title::before {
  display: none;
}

.about .itro .text {
  margin-top: 42px;
}
.about .itro .text p {
  color: #626262;
  margin: 10px 0;
}
.about .itro .videoBox {
  width: 100%;
  position: relative;
  margin-top: 5%;
  z-index: 1;
}
.about .itro .videoBox video {
  width: 100%;
  position: relative;
  object-fit: cover;
}
.about .itro .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  opacity: 1;
}
.about .itro .play img {
  width: 54px;
  height: auto;
  object-fit: cover;
}
.about .itro .play.hide {
  opacity: 0;
}

.about .culture ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about .culture ul li {
  width: 100%;
  background: #f9f9f9;
  position: relative;
  height: 100%;
}
.about .culture ul li::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.about .culture ul li dd {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about .culture ul li h2 {
  font-size: 2.4rem;
  color: #454545;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.about .honor .swiper-slide {
  padding: 10px;
}
.about .honor .shadow {
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.about .honor .imgBox {
  width: 100%;
  position: relative;
}
.about .honor .imgBox img {
  width: 100%;
  height: auto;
}
.about .honor .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1); /* 半透明黑色背景 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.about .his {
  overflow: hidden;
}
.about .his .item {
  width: 100%;
  position: relative;
  margin-bottom: 6%;
}
.about .his .item:last-of-type {
  margin-bottom: 0;
}
.about .his .tit {
  width: 100%;
  position: relative;
}
.about .his .tit h2 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  text-align: center;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.about .his .txtBox {
  width: 100%;
  position: relative;
  margin: 3% 0;
}
.about .his .txtBox p {
  text-align: left;
  margin: 10px 0;
  line-height: 1.75;
}
.about .his .imgBox {
  width: 100%;
  position: relative;
}
.about .his .imgBox ul {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about .his .i_part2 .aa {
  background: #a88062;
}
.about .his .item:nth-child(even) .i_part2 .box {
  flex-direction: row-reverse;
}
.about .his .item:nth-child(even) .i_part2 .aa {
  background: #d1b79d;
}

/* 弹窗中的图片样式 */
.about .honor .popup .scale {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .honor .popup .popup-img {
  width: auto;
  max-height: 90%;
  display: block;
  margin: auto;
}

.about .honor .popup .close {
  position: absolute;
  top: 32px;
  right: 54px;
  cursor: pointer;
  background-image: url("../images/iconClose.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
}
.about .honor .swiper-button-next,
.about .honor .swiper-button-prev {
  width: 42px;
  height: 42px;
  border: 1px solid #ccc;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.about .honor .swiper-button-next {
  right: -64px;
}
.about .honor .swiper-button-prev {
  left: -64px;
}
.about .honor .swiper-button-next:after,
.about .honor .swiper-button-prev:after {
  font-size: 1.6rem;
  color: #000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.about .honor .swiper-button-next:hover,
.about .honor .swiper-button-prev:hover {
  background: var(--color);
}
.about .honor .swiper-button-next:hover:after,
.about .honor .swiper-button-prev:hover:after {
  color: #fff;
}
/* 关于我们 End*/

/* 产品分类 Strat */
.products .tit {
  margin-top: 24px;
}
.products .tit h2 {
  font-size: 2.6rem;
  font-weight: 400;
  color: #000;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.products .tit .text {
  margin-top: 28px;
}
.products .tit p {
  color: #666;
}
.products .con {
  margin-top: 3% !important;
}
.products ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 20px;
}
.products .imgBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.products .imgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.products .imgBox img:last-of-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.products a:hover .imgBox img:first-of-type {
  opacity: 0;
  visibility: hidden;
}
.products a:hover .imgBox img:last-of-type {
  opacity: 1;
  visibility: visible;
}
.proAll a h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #454545;
  margin: 24px 0 8px;
  text-align: center;
}
.proAll a h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  text-align: center;
}

/* 产品分类 End*/

/* 产品详情 Strat */
.productsd .proSku {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 42px !important;
}
.productsd .proSku .aa {
  width: 48%;
  position: relative;
}
.productsd .proSku .aa ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 20px;
  margin-top: 15px;
}
.productsd .proSku .aa ul li {
  width: calc(20% - 16px);
}
.productsd .proSku .aa .bigPic {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsd .proSku .aa span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.productsd .proSku .aa .bigPic:hover span {
  opacity: 1;
}
.productsd .proSku .aa span.next {
  left: auto;
  right: 10px;
}
.productsd .proSku .aa span i {
  display: block;
  font-style: normal;
  font-size: 2.4rem;
  color: #000;
}
.productsd .proSku .aa span.next i {
  transform: rotate(180deg);
}
.productsd .proSku .zoom-lens {
  position: absolute;
  cursor: zoom-in;
  display: none;
  transition: all 0.1s ease; /* 平滑过渡效果 */
}
.productsd .proSku .zoom-img {
  width: 100%;
  height: auto;
  transition: transform 0.1s ease; /* 平滑缩放效果 */
}

.productsd .proSku .bb {
  width: 48%;
  position: relative;
  margin-top: 5%;
}
.productsd .proSku .bb .tit h2 {
  font-size: 2.4rem;
  color: #000;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.productsd .proSku .bb .tit h3 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
  color: #454545;
  margin-top: 10px;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.productsd .proSku .bb .text {
  margin-top: 42px;
}
.productsd .proSku .bb .text p,
.productsd .proSku .bb .text li {
  color: #454545;
  margin: 5px 0;
}
.productsd .proSku .bb ul {
  list-style: disc outside;
  margin-left: 28px;
  list-style: disc outside;
}
.productsd .proSku .bb ul li {
  list-style: disc outside;
}
.productsd .related .tit h2 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #000;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.productsd .related .swiper-button-next,
.productsd .related .swiper-button-prev {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}
.productsd .related .swiper-button-next:after,
.productsd .related .swiper-button-prev:after {
  font-size: 1.8rem;
  color: #000;
}
/* 产品详情 End*/

/* 新闻中心 Strat */
.news .title2 h2 {
  font-size: 3.2rem;
  color: #000;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
}
.news .list .con ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news .list li {
  width: 100%;
  position: relative;
}
.news .list li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #d3d3d3;
  box-shadow: 0 2px 3px #d3d3d31a, 0 0 0 1px #d3d3d31a;
}
.news .list .txtBox {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news .list .txtBox h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  font-family: Garamond, Baskerville, Caslon, serif;
  margin-bottom: 12px;
  line-height: 1.5;
}
.news .list .txtBox .date span {
  font-size: 1.2rem;
  color: #000;
  margin-right: 5px;
}
.news .list .txtBox .date span:last-of-type {
  margin-right: 0;
  margin-left: 5px;
}
.news .list .txtBox .more4 {
  margin-top: 24px;
}
.news .list .txtBox .more4 span {
  font-size: 1.5rem;
  color: #000;
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
  font-family: Garamond, Baskerville, Caslon, serif;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.news .list .txtBox .more4 span:hover {
  opacity: 0.55;
}

.pages ul {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
.pages ul li {
  width: 38px;
  height: 38px;
  margin: 5px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #0003;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.pages ul li.disabled {
  pointer-events: none;
  cursor: default; /* 可选，为不可点击的li设置默认鼠标指针样式 */
  background: #fff !important;
}
.pages ul li.disabled span {
  color: #666 !important;
}
.pages a,
.pages span {
  display: block;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #333;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages li.active {
  background: #454545;
  border-color: #454545;
}
.pages li:hover {
  border-color: #000;
}
.pages li.active span {
  color: #fff;
}
.pages li img {
  width: 20px;
  height: 20px;
}
.pages li:last-of-type {
  width: 72px;
}

/* 新闻中心 End*/

/* 新闻详情 Strat */
.newsd .content .tt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.newsd .content .tt .turn {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.newsd .content .tt .turn a {
  font-size: 1.6rem;
  color: #454545;
}
.newsd .content .date {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-top: 32px;
}
.newsd .content .date span {
  font-size: 1.2rem;
  color: #000;
}
.newsd .content .tit {
  margin: 36px 0;
}
.newsd .content .tit h2 {
  font-size: 3rem;
  color: #000;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
  text-align: center;
}
.newsd .content .text p {
  color: #454545;
  margin: 24px 0;
  font-family: Garamond, Baskerville, Caslon, serif;
  text-align: center;
}
.newsd .content .text p img {
  width: 80%;
  margin: 0 auto;
}
.newsd .list .con ul {
  grid-template-columns: repeat(3, 1fr);
}
/* 新闻详情 End*/

/* 联系我们 Strat */
.contact .way .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact .way .aa,
.contact .way .bb {
  width: 45%;
  position: relative;
}

.contact .way .info {
  margin-top: 42px;
}
.contact .way ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.contact .way h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000;
  font-weight: 400;
  font-family: Garamond, Baskerville, Caslon, serif;
  margin-bottom: 24px;
}
.contact .way b {
  display: block;
  font-style: normal;
  width: 100%;
  color: #999;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.contact .way span {
  display: block;
  color: #454545;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.6rem;
  line-height: 1.75;
}
.contact .way li.tel a {
  margin-right: 24px;
}
.contact .way li.tel span {
  display: inline-block;
}
/* 联系我们 End*/

/* 实验室介绍 Strat */
.about2 {
  width: 100%;
  position: relative;
}
/* 实验室介绍 End*/
html[lang="en"] *{
    letter-spacing: 0 !important;
}
html[lang="en"] header{
    letter-spacing: 0 !important;
}