@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/NotoSans-Regular.ttf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/NotoSans-Bold.ttf");
  font-family: "title";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", Arial, 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;
}
.w100p10 {
  width: 100%;
  padding: 5% 10% 2%;
  position: relative;
}
.pt5 {
  padding-top: 5%;
  padding-bottom: 5%;
}
.font24 p {
  font-size: 2.4rem;
}

html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  --height: 80px;
  background-color: #fff;
}

/* 导航 Strat */
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header.run {
  top: -200px;
}
header .nav_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: var(--height);
  align-items: center;
  width: 100%;
  padding: 0 10%;
}
header .nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 100px;
}
header .logo {
  position: relative;
  z-index: 999;
}
header .logo img {
  width: auto;
  height: 42px;
}
header .nav ul {
  display: flex;
  align-items: center;
  gap: 0 42px;
  position: relative;
}
header .nav ul li > a {
  font-size: 2rem;
  color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  letter-spacing: 1px;
  font-weight: lighter;
}
header .other {
  display: flex;
  align-items: center;
  gap: 0 28px;
  position: relative;
  z-index: 9999999;
}
header .other .language a {
  display: flex;
  align-items: center;
}
header .other .language i {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
header .other .language i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
header .other .language span {
  font-size: 1.6rem;
  color: #fff;
}
header .nav .subMenu {
  position: fixed;
  z-index: 1;
  left: 0;
  top: var(--height);
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
  box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: all 0.6s;
  text-align: center;
}
header .nav ul li:hover .subMenu {
  transform: scaleY(1);
}
header .nav .subMenu dl {
  display: flex;
  justify-content: center;
  gap: 0 54px;
  padding: 20px 10%;
}
header .nav .subMenu dl dd a {
  font-size: 1.8rem;
  color: #1f1f1f;
  text-transform: capitalize;
}
header .nav ul li dl dd a:hover {
  color: #134d76;
}
header.active {
  background-color: #fff;
}
header.active .nav ul li > a {
  color: #1f1f1f;
}
header .nav ul li > a:hover {
  color: #134d76;
}
header.active .language i img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}
header.active .other .language span {
  color: #1f1f1f;
}
header.active .nav_btn span {
  background: #1f1f1f;
}

header .nav_btn {
  cursor: pointer;
  display: none;
}
header .nav_btn span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
  margin: 8px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header .nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}
header .nav_btn_active span:nth-of-type(3) {
  margin-top: -18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .mobileNav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
}

header .mobileNav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 100px;
  padding: 0 5%;
}
header .mobileNav ul li {
  border-bottom: 1px solid #eee;
  position: relative;
}
header .mobileNav ul li > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../images/rightIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
header .mobileNav ul li > a {
  font-size: 2.4rem;
  color: #1f1f1f;
  display: block;
  position: relative;
  padding: 20px 0 10px;
}
header .mobileNav ul li .subMenu {
  display: none;
  margin-top: 15px;
  margin-left: 10px;
}
header .mobileNav ul li .subMenu a {
  display: block;
  font-size: 1.6rem;
  color: #666;
  opacity: 0.85;
  margin: 8px 0;
  text-transform: capitalize;
}

header .mobileNav.open {
  display: block;
}
header.turn .nav_btn span {
  background: #1f1f1f;
}
header.turn .language i img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}
header.turn .other .language span {
  color: #1f1f1f;
}

/* 导航 End*/

/* banner Strat */
.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper-slide .imgBox {
  width: 100%;
  height: 100%;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.banner .txtBox {
  position: absolute;
  left: 10%;
  top: 50%;
  width: 45%;
  transform: translateY(-50%);
}
.banner .txtBox h2 {
  font-size: 5.4rem;
  font-weight: lighter;
  color: #fff;
  margin-top: 12px;
}
.banner .txtBox h3 {
  font-size: 1.8rem;
  font-weight: lighter;
  color: #fff;
}
.banner .swiper-pagination-bullet-active {
  background: #134d76;
}
/* banner End*/

/* 公共 Strat */
.more span {
  display: block;
  font-size: 1.8rem;
  color: #1f1f1f;
  padding: 10px 25px;
  border: 1px solid #666;
  border-radius: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.more {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.more span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #134d76;
  z-index: -1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more:hover span::before {
  height: 100%;
}
.more:hover span {
  border: 1px solid #134d76;
  color: #fff;
}
/* 公共 End*/

/* 首页--关于 Strat */
.home {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home .i_part1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .i_part1 .txtBox {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 54px;
}
.home .i_part1 .txtBox h1 {
  font-size: 5.4rem;
  font-family: "title";
  color: #000;
  text-align: center;
  line-height: 1.5;
}
.home .i_part1 .txtBox p {
  font-size: 5.4rem;
  font-family: "title";
  color: #000;
  text-align: center;
  line-height: 1.5;
}
.home .i_part1 .txtBox strong {
  font-style: normal;
  color: #eab446;
}
.home .i_part1 .imgBox {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-top: 64px;
}
.home .i_part1 .imgBox .img {
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}
.home .i_part1 .imgBox .img.big {
  grid-column: span 2;
  grid-row: span 2;
}
.home .i_part1 .imgBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 首页--关于 End*/

/* 首页--产品 Strat */
.home .i_part2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .i_part2:nth-of-type(2n-1){
  flex-direction: row-reverse;
}
.home .i_part2 .imgBox {
  width: 58%;
  border-radius: 12px;
  overflow: hidden;
}
.home .i_part2 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .i_part2 .txtBox {
  width: 36%;
}
.home .i_part2 .txtBox h2 {
  font-size: 5.4rem;
  font-family: "title";
  color: #000;
  display: flex;
  align-items: flex-end;
  margin-bottom: 24px;
}
.home .i_part2 .txtBox h3 {
  font-size: 2rem;
  color: #eab446;
  line-height: 1px;
  line-height: 1.25;
}

.home .i_part2 .txtBox p {
  font-size: 1.8rem;
  color: #000;
  font-weight: lighter;
  line-height: 1.75;
}
.home .i_part2 .txtBox .more {
  margin-top: 32px;
}
/* 首页--产品 End*/

/* 首页--新闻 Strat */
.home .i_part3 .tit h3 {
  font-size: 2rem;
  text-align: center;
  color: #eab446;
}
.home .i_part3 .tit h2 {
  font-size: 5.4rem;
  color: #000;
  text-align: center;
}
.home .i_part3 .box {
  width: 100%;
  position: relative;
  margin-top: 64px;
}
.home .i_part3 .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home .i_part3 .box ul li {
  width: 100%;
  display: block;
}
.home .i_part3 .box ul li a {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid transparent;
}
.home .i_part3 .box ul li a .imgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home .i_part3 .box .imgBox {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.home .i_part3 .box .imgBox img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.home .i_part3 .box .txtBox {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  display: flex;
  padding: 15px 18px;
  gap: 8px;
  flex-direction: column;
  border-radius: 8px;
  background: var(--transparent-w-10, rgba(255, 255, 255, 0.1));
  box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset,
    0px -1px 1px 0px rgba(255, 255, 255, 0.1) inset,
    4px 8px 6px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(128px);
  -webkit-backdrop-filter: blur(128px);
  z-index: 2;
}
.home .i_part3 .box .txtBox h3 {
  font-size: 2.4rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}
.home .i_part3 .box .txtBox span {
  font-size: 1.4rem;
  color: #fff;
}
.home .i_part3 .box .txtBox p {
  font-size: 1.8rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
}
.home .i_part3 .box ul li a:hover .imgBox img {
  transform: translate(-50%, -50%) scale(1.15);
}
.home .i_part3 .box ul li a:hover {
  border: 4px solid #134d76;
}
/* 首页--新闻 End*/

/* 首页--合作伙伴 Strat */
.home .i_part4 .txtBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .i_part4 .txtBox h1 {
  width: 160px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #000;
  font-weight: 400;
  text-align: center;
  padding: 0 10px;
  border: 1px solid #eab446;
  border-radius: 15px;
  margin-bottom: 24px;
}
.home .i_part4 .txtBox p {
  font-size: 5.4rem;
  font-family: "title";
  color: #000;
  width: 70%;
  text-align: center;
}
.home .i_part4 .txtBox strong {
  color: #eab446;
}
.home .i_part4 .imgBox {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 64px;
}
/* 首页--合作伙伴 End*/

/* 底部栏 Strat */
footer {
  position: relative;
  width: 100%;
}
footer .box {
  display: flex;
  flex-direction: column;
  padding: 5% 5% 28px;
}
footer .box .top {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
footer .box .top .item {
  background-color: #134d76;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 36px;
  border-radius: 16px;
}
footer .box .top .item span {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #fff;
  line-height: 1.8;
}
footer .box .top .item span img {
  width: 150px;
  margin-bottom: 32px;
}
footer .box .bottom {
  width: 100%;
  position: relative;
  margin-top: 15px;
  background-color: #134d76;
  border-radius: 16px;
  padding: 28px 36px;
}
footer .box .bottom .aa {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
footer .box .bottom .aa ul {
  display: flex;
  align-items: center;
}
footer .box .bottom .aa ul li a {
  display: block;
  font-size: 2rem;
  color: #fff;
  padding: 10px 20px;
  position: relative;
}
footer .box .bottom .aa ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}
footer .box .bottom .aa ul li:first-of-type a {
  padding-left: 0;
}
footer .box .bottom .aa ul li:last-of-type a {
  padding-right: 0;
}
footer .box .bottom .aa ul li:last-of-type a::before {
  display: none;
}
footer .box .bottom .aa ul li a img {
  width: 24px;
  height: 24px;
}
footer .box .bottom .bb {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .box .bottom .bb .logo img {
  width: auto;
  height: 42px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
footer .box .bottom .bb span {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}
footer .box .bottom .bb .copyRight {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
/* 底部栏 End*/

/* 内页banner Strat */
.nybanner {
  width: 100%;
  position: relative;
}
.nybanner .box {
  width: 100%;
  position: relative;
  padding: 15% 10%;
}
.nybanner .box .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.nybanner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nybanner .box .txtBox h2 {
  font-size: 5.4rem;
  color: #fff;
  text-align: center;
}
.nybanner .box .txtBox h3 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  margin-top: 24px;
  font-weight: normal;
}
/* 内页banner End*/

/* 关于我们 Strat */
.aboutPage .box {
  position: relative;
  width: 100%;
}
.aboutPage .companyItro {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.aboutPage .companyItro .txtBox {
  margin-bottom: 64px;
  padding: 0 10%;
}
.aboutPage .companyItro h2 {
  font-size: 5rem;
  margin-bottom: 32px;
  text-align: center;
}
.aboutPage .companyItro p {
  font-size: 2rem;
  color: #1f1f1f;
  line-height: 1.25;
  margin: 10px 0;
  text-align: justify;
}
.aboutPage .companyItro .imgBox {
  overflow: hidden;
  position: relative;
  padding-bottom: 54px;
}
.aboutPage .companyItro .imgBox .swiper{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.aboutPage .companyItro .imgBox .swiper .swiper-slide{
  width: 100%;
  position: relative;
}
.aboutPage .companyItro .imgBox .swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}
.aboutPage .companyItro .swiper-pagination-bullet-active{
  background: #134d76;
}
.aboutPage .companyCul {
  width: 100%;
  position: relative;
  margin-top: 8%;
}
.aboutPage .companyCul .tit {
  width: 100%;
  position: relative;
  margin-bottom: 54px;
}
.aboutPage .companyCul .tit h2 {
  font-size: 5rem;
  color: #000;
  text-align: center;
}
.aboutPage .companyCul .items {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.aboutPage .companyCul .items .item {
  padding: 55% 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.aboutPage .companyCul .items .item::before {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  background-image: url("../images/addIcon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 9;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.aboutPage .companyCul .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.aboutPage .companyCul .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.aboutPage .companyCul .txtBox h2 {
  position: absolute;
  left: 32px;
  top: 24px;
  z-index: 2;
}
.aboutPage .companyCul .txtBox h2 {
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 1px;
}
.aboutPage .companyCul .txtBox p {
  position: absolute;
  left: 32px;
  bottom: 0;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 2;
  width: calc(100% - 64px);

}
.aboutPage .companyCul .items .item:hover .imgBox img {
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.aboutPage .companyCul .items .item:hover .txtBox p {
  bottom: 50%;
  transform: translateY(50%);
  opacity: 1;
}
.aboutPage .companyCul .items .item:hover::before {
  background-image: url("../images/closeIcon.png");
}

/* 关于我们 End*/

/* 新闻分类 Strat */
.newsPage .box {
  width: 100%;
  position: relative;
}
.newsPage .box {
  display: flex;
  flex-direction: column;
  gap: 54px 0;
}
.newsPage .box .item {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsPage .box .item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 39px;
  border-radius: 12px;
  border: 1px solid #d1d3d7;
}
.newsPage .box .item .imgBox {
  width: 26%;
  border-radius: 8px;
  overflow: hidden;
}
.newsPage .box .item .txtBox {
  width: 70%;
}
.newsPage .box .item .txtBox .tit {
  margin-bottom: 15px;
}
.newsPage .box .item .txtBox h2 {
  font-size: 2.8rem;
  color: #000;
  font-weight: 400;
  height: 120px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsPage .box .item .txtBox .date {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  position: relative;
}
.newsPage .box .item .txtBox .date::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/rightIcon1.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.newsPage .box .item .txtBox .date span {
  font-size: 1.5rem;
  color: #666;
  display: block;
}
.newsPage .box .item .txtBox .date span:last-of-type {
  border-bottom: 1px solid #000;
}
.newsPage .box .item:hover {
  box-shadow: 16px 16px 32px 0px rgba(0, 0, 0, 0.08);
}
.newsPage .box .item:hover h2 {
  color: #134d76;
}
.newsPage .box .item:hover .txtBox .date::before {
  right: -5px;
}

.pages ul{
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
.pages ul li{
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 8px;
}
.pages a,
.pages span {
  display: block;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #000;
  text-align: center;
}
.pages li:hover,
.pages li.active{
  background: #000;
  border-color: #000;
}
.pages li:hover a,
.pages li.active span,
.pages li:hover span{
  color: #fff;
}
/* 新闻分类 End*/

/* 新闻详情 Strat */
.newsdPage {
  width: 100%;
  position: relative;
  padding: 5% 25%;
}
.newsdPage .box {
  padding-top: 120px;
}
.newsdPage .box .date {
  display: flex;
}
.newsdPage .box .date span {
  font-size: 1.6rem;
  color: #666;
  padding: 0 15px;
  position: relative;
}
.newsdPage .box .date span:first-of-type {
  padding-left: 0;
}
.newsdPage .box .date span:first-of-type::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #d1d3d7;
}
.newsdPage .box .tit {
  padding: 10px 0 47px;
  border-bottom: 1px solid #757573;
}
.newsdPage .box .tit h2 {
  font-size: 3.85rem;
  color: #000;
  font-weight: 400;
}
.newsdPage .box .article {
  padding-top: 80px;
  margin-bottom: 80px;
}
.newsdPage .box .article p {
  font-size: 1.8rem;
  color: #1f1f1f;
  line-height: 1.5;
  margin: 20px 0;
}
.newsdPage .box .next a {
  display: flex;
  gap: 0 32px;
  padding: 32px 0;
  border-bottom: 1px solid #d1d3d7;
  border-top: 1px solid #d1d3d7;
}
.newsdPage .box .next a span {
  display: block;
  font-size: 1.8rem;
  color: #000;
}
.newsdPage .box .next a:hover span {
  color: #134d76;
}
.newsdPage .box .goBack {
  margin-top: 48px;
}
.newsdPage .box .goBack a {
  display: block;
  width: 56px;
  height: 56px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.newsdPage .box .goBack img {
  width: 28px;
  height: 28px;
  display: block;
}
/* 新闻详情 End*/

/* 联系我们 Strat */
.contactPage .box {
  width: 100%;
  position: relative;
}
.contactPage .box .tit h2 {
  font-size: 4rem;
  color: #000;
  text-align: center;
}
.contactPage .box form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 54px;
  gap: 15px 0;
  position: relative;
}
.contactPage .box form .item {
  width: 49%;
  padding: 15px 24px;
  position: relative;
  height: 64px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 8px;
}
.contactPage .box form .item label {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 400;
  transition: 0.2s ease-in-out;
}
.contactPage .box form .item label::before {
  content: "*";
  display: block;
  color: #db2a3a;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.28px;
  position: absolute;
  top: 5px;
  right: -15px;
}
.contactPage .box form input,
.contactPage .box form label,
.contactPage .box form textarea {
  border: 0;
  outline: 0;
  background: transparent;
  font-style: normal;
}
.contactPage .box form .item input,.contactPage .box form .item textarea{
  width: 100%;
  height: 24px;
  line-height: 100%;
  font-size: 1.8rem;
}
.contactPage .box form .item.focus label{
  font-size: 1.4rem;
  color: #666;
}
.contactPage .box form .item.focus input{
  height: 18px;
  margin-top: 15px;
}
.contactPage .box .item.content{
  height: 138px;
}
.contactPage .box form .item textarea{
  height: 100px;
}
.contactPage .box form .item.content label{
  top: 10px;
  transform: translate(0);
}
.contactPage .box form .item.focus textarea{
  height: 80px;
  margin-top: 20px;
}
.contactPage .box form button{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 49%;
  height: 60px;
  background-color: #000;
  border-radius: 8px;
  font-size: 1.8rem;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
.contactPage .box form button:hover{
  background-color: #f2f4f6;
  color: #000;
}
/* 联系我们 End*/

/* 产品分类 Strat */
.proPage .box{
  width: 100%;
  position: relative;
}
.proPage .box .proItro{
  display: flex;
  justify-content: space-between;
}
.proPage .box .proItro .tit{
  width: 35%;
}
.proPage .box .proItro .tit span{
  font-size: 1.8rem;
  color: #eab446;
}
.proPage .box .proItro h2{
  font-size: 6.4rem;
  color: #000;
}
.proPage .box .proItro .txt{
  width: 62%;
}
.proPage .box .proItro .txt p{
  font-size: 1.8rem;
  color: #000;
  margin: 10px 0;
}
.proPage .box .pros{
  margin-top: 8%;
  padding: 0 5%;
}
.proPage .box .pros .tit h2{
  font-size: 5.4rem;
  color: #000;
  text-align: center;
}
.proPage .box .pros ul{
  display: grid;
  gap: 48px 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}
.proPage .box .pros ul li{
  width: 100%;
  position: relative;
  height: 100%;
}
.proPage .box .pros ul li a{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.proPage .box .pros ul li a .imgBox{
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}
.proPage .box .pros ul li a .imgBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.proPage .box .pros ul li a h2{
  font-size: 3.2rem;
  color: #000;
  font-family: 'title';
  margin-top: 20px;
}
.proPage .box .pros ul li a:hover .imgBox img{
  transform: scale(1.15);
}
.proPage .box .pros ul li a:hover h2{
  color: #134d76;
}

/* 产品分类 End*/

/* 产品详情 Strat */
.prodPage .part {
  width: 100%;
  position: relative;
  padding: 0 10%;
}
.prodPage .pro_itro {
  padding: 150px 10% 8%;
}
.prodPage .pro_itro .img{
  width: 100% !important;
  margin: 0 auto;
  margin-bottom: 54px;
}
.prodPage .part .tit h2 {
  font-size: 5.4rem;
  color: #000;
  font-weight: bold;
  width: 50%;
}
.prodPage .part .txt {
  width: 88%;
  margin: 0 auto;
  margin-top: 3%;
}
.prodPage .part .txt p {
  font-size: 2rem;
  color: #1f1f1f;
  line-height: 1.75;
  margin: 15px 0;
}
.prodPage .pro_img {
  position: relative;
  width: 100%;
  background-color: #f4f4f4;
}
.prodPage .pro_img .items {
  display: flex;
  flex-wrap: wrap;
}
.prodPage .pro_img .items .item {
  width: 25%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prodPage .pro_img .items .item:first-of-type{
  background-color: #134d76;
}
.prodPage .pro_img .items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: pointer;
}
.prodPage .pro_img .items .item h2 {
  font-size: 5rem;
  color: #fff;
  font-weight: bold;
}
.prodPage .pro_features {
  padding: 5% 10%;
}
.prodPage .pro_features p img {
  margin-top: 24px;
}
.prodPage .pro_sku table {
  margin-top: 3%;
  background-color: #fff;
  width: 100%;
  position: relative;
}

.prodPage .pro_sku table tr td {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.75;
  /* height: 54px;
  line-height: 54px; */
  padding: 15px 15px;
}
.prodPage .pro_sku table tr:first-of-type td {
  color: #fff !important;
  font-size: 1.8rem !important;
  background-color: #134d76 !important;
}
.prodPage .pro_sku table tr:nth-of-type(2n+1) td{
  background-color: #E6E7E9;
  color: #000;
}
.prodPage .pro_other {
  width: 100%;
  position: relative;
  padding-top: 8%;
}
.prodPage .pro_other .item {
  display: flex;
  justify-content: space-between;
}
.prodPage .pro_other .item .img {
  width: 50%;
}
.prodPage .pro_other .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prodPage .pro_other .item .txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3% 8%;
  position: relative;
  padding-right: 10%;
}
.prodPage .pro_other .item .num {
  margin-bottom: 5%;
}
.prodPage .pro_other .item .num span {
  font-size: 12rem;
  font-weight: bolder;
  color: #fff;
  opacity: 0.05;
  display: block;
  line-height: 1;
  margin-left: -5px;
}
.prodPage .pro_other .item .txt .tit {
  width: 100%;
  position: relative;
}
.prodPage .pro_other .item .txt .tit h2 {
  font-size: 2.8rem;
  color: #ededec;
  font-weight: bold;
}
.prodPage .pro_other .item .txt .tit p {
  font-size: 1.6rem;
  color: #c8c0b8;
  margin-top: 20px;
}
.prodPage .pro_other .item .txt .more {
  width: 180px;
  height: 54px;
  line-height: 54px;
  border: 1px solid #fff3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
  border-radius: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.prodPage .pro_other .item .txt .more:hover {
  border: 1px solid #ededec;
}
/* 产品详情 End*/

