@charset "UTF-8";
/* 子导航 */
/* Large devices (desktops, less than 1200px) */
/* Medium devices (tablets, less than 992px) */
/* Small devices (landscape phones, less than 768px) */
/* Extra small devices (portrait phones, less than 576px) */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #191919;
  height: 7rem;
  font-family: Poppins-Regular;
  position: relative;
}
header .search {
  margin-left: 5.2rem;
  cursor: pointer;
}
header .search > img {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
}
header .search input {
  border: none;
  background: #191919;
  outline: none;
  color: white;
  width: 7.8rem;
}
header .search input::-webkit-input-placeholder {
  color: white;
}
header .search input:-ms-input-placeholder {
  color: white;
}
header .search input:-moz-placeholder {
  color: white;
  opacity: 1;
}
header .search input::-moz-placeholder {
  color: white;
  opacity: 1;
}
header > img {
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
header > nav {
  height: 100%;
}
header > nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 5.2rem;
}
header > nav ul > li {
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
header > nav ul > li:not(:last-child) {
  margin-right: 2.2rem;
}
header > nav ul > li > div {
  height: 3rem;
  line-height: 2.5rem;
  text-align: center;
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
}
header > nav ul > li.active > div {
  border-top: 0.2rem solid #5c5c5c;
  border-bottom: 0.2rem solid #5c5c5c;
}
header .menuBtn {
  display: none;
}
header .menuBtn > svg {
  cursor: pointer;
}
header .menuBtn > svg.active {
  display: none;
}

.mobileSubmenu {
  display: none;
  position: fixed;
  top: 7rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 12.2rem);
  z-index: 999;
}
.mobileSubmenu .card-body {
  background: #000;
}
.mobileSubmenu .card {
  background: #000;
}
.mobileSubmenu .list-group-item {
  border: none;
  background: #000;
  cursor: pointer;
}
.mobileSubmenu .card-header {
  border: none;
  background: #000;
  cursor: pointer;
}

.submenu {
  display: none;
}

.submenu.active {
  display: block;
}

.header-submenu {
  position: absolute;
  top: 7rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 7rem);
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1rem);
}
.header-submenu .navLv2 {
  background: rgba(0, 0, 0, 0.5);
  font-family: Poppins-Thin;
}
.header-submenu .navLv2 img {
  width: 40%;
  min-width: 3rem;
  max-width: 5rem;
  min-height: 3rem;
  max-height: 5rem;
}
.header-submenu > .nav-pills .nav-link.active {
  box-shadow: inset 0 0 1rem 0 rgb(0, 0, 0);
  background: rgba(100, 100, 100, 0.7);
  border-radius: 0;
  font-family: Poppins-Regular;
}
.header-submenu .tab-content {
  height: calc(100% - 142px);
}
.header-submenu .tab-content .navLeftWrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-submenu .tab-content .nav-pills .nav-link {
  padding: 0.4rem 1rem;
  margin: 0.4rem 2rem;
}
.header-submenu .tab-content .nav-pills .nav-link.active {
  background: unset;
  border-radius: 0;
  border-top: 0.1rem solid #636466;
  border-bottom: 0.1rem solid #636466;
  font-family: Poppins-Regular;
}
.header-submenu .tab-content .navLv2Nav {
  flex-wrap: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.header-submenu .tab-content .navLv2Nav::-webkit-scrollbar {
  display: none;
}
.header-submenu .tab-content .tab-content {
  height: calc(100vh - 7rem);
  overflow: hidden;
}
.header-submenu .tab-content .tab-content img {
  width: 100%;
}
.header-submenu #navProductLv2Content {
  height: calc(100% - 142px);
  overflow: hidden;
}
.header-submenu #navProductLv2Content .tab-pane {
  height: 100%;
}

@media (max-width: 1100px) {
  header .menuBtn {
    margin-right: 2rem;
    display: block;
  }
  header nav {
    display: none;
  }
  header .search {
    margin-left: 2rem;
  }
  .mobileSubmenu {
    display: block;
  }
}
/* 底部 */
footer {
  position: relative;
  background: url("../images/footerBg.png") no-repeat;
  background-position: top right;
  background-size: 50%;
  color: #bbbbbb;
  padding-top: 7.6rem;
  padding-bottom: 3rem;
}
footer > p {
  text-align: center;
}
footer .footer-contacts {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  transform: scale(0.7);
}
footer .footer-contacts i {
  flex-shrink: 0;
  margin: 3rem 0.5rem;
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  line-height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3rem;
}

@media (min-width: 768px) {
  footer .footer-contacts {
    transform: scale(0.9);
  }
}
.home-banner .carousel-item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 57.5vw;
  overflow: hidden;
}
.home-banner .carousel-item .titleBox {
  position: absolute;
  bottom: 2.5rem;
  left: -35.5rem;
  height: 8rem;
  width: 12rem;
  border-radius: 1rem;
  padding: 1rem;
  z-index: 888;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-banner .carousel-item .titleBox .title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 0.2rem solid #989391;
  border-bottom: 0.2rem solid #989391;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  font-family: Poppins-Bold;
}
.home-banner .carousel-inner .carousel-item:nth-child(1) {
  background-image: url("../images/banner1.png");
}
.home-banner .carousel-inner .carousel-item:nth-child(2) {
  background-image: url("../images/banner2.png");
}
.home-banner .carousel-inner .carousel-item:nth-child(3) {
  background-image: url("../images/banner3.jpg");
}

.home-aboutUs-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-aboutUs-title {
  color: white;
  width: 60%;
  line-height: 4rem;
  border-top: 0.2rem solid #a6a6a6;
  border-bottom: 0.2rem solid #a6a6a6;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  font-family: Poppins-Medium;
  margin-bottom: 3rem;
}

.home-aboutUs-content {
  color: white;
  line-height: 1.5rem;
}
.home-aboutUs-content .picture {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-aboutUs-content .picture > div {
  width: calc((100% - 3.4rem) / 2);
  cursor: pointer;
  overflow: hidden;
}
.home-aboutUs-content .picture > div > img {
  width: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.home-aboutUs-content .picture > div > img:hover {
  transform: scale(1.2);
}

.slideIn-container {
  width: 100%;
  height: 125vh;
  position: relative;
  /*background-color: rgba(0, 0, 0, .3);*/
}
.slideIn-container .slideIn-spin-space-custom {
  position: absolute;
  /*top: 110vh;*/
  height: 100vh;
  width: 100%;
  /*background-color: rgba(0, 0, 0, .6);*/
  z-index: 1;
  margin-bottom: 10vh;
}
.slideIn-container .slideIn-ele {
  position: absolute;
  width: 100%;
  height: 80vh;
}
.slideIn-container .slideIn-ele-text {
  /*background-color: rgba(0, 0, 255, .3);*/
  top: 10vh;
  z-index: 100;
  /*color: white;*/
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: justify;
  left: 0;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slideIn-container .slideIn-ele1 {
  z-index: 99;
}
.slideIn-container .slideIn-ele1-2 {
  top: 10vh;
  left: -100%;
  z-index: 98;
}
.slideIn-container .slideIn-ele2 {
  /*background-color: red;*/
  background: url("../images/slideIn.png");
  background-size: cover;
  z-index: 101;
}

#wordMap {
  width: 100%;
  height: 20rem;
}

.home-statistics {
  width: 100%;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
}
.home-statistics li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.home-statistics li > div {
  width: 100%;
}
.home-statistics li .stat-icon {
  font-size: 2.5rem;
}
.home-statistics li .number {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: bold;
}
.home-statistics li .name {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.sustainability {
  position: relative;
  background: url("../img/sustainability-bg-2.jpg") top center;
  background-attachment: fixed;
  background-size: cover;
}
.sustainability .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.sustainability .title {
  margin: 5rem 0 3rem 0;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-transform: Uppercase;
}

@media (min-width: 576px) {
  #wordMap {
    height: 20rem;
  }
  .home-statistics {
    padding: 3rem 0;
    transform: scale(0.8);
  }
}
@media (min-width: 768px) {
  .home-banner .carousel-item .titleBox {
    bottom: 3.1rem;
    height: 10rem;
    width: 15rem;
  }
  .home-banner .carousel-item .titleBox .title {
    border-top: 0.3rem solid #989391;
    border-bottom: 0.3rem solid #989391;
    font-size: 1.5rem;
    padding: 1rem 0;
  }
  .home-aboutUs-title-wrapper {
    justify-content: flex-end;
  }
  .home-aboutUs-title {
    width: 100%;
    text-align: right;
    border-top: 0.4rem solid #a6a6a6;
    border-bottom: 0.4rem solid #a6a6a6;
  }
  .slideIn-container .slideIn-ele-text {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  #wordMap {
    height: 30rem;
  }
  .home-statistics {
    padding: 4rem 0;
    transform: scale(0.9);
  }
}
.factory-direct-letters {
  font-size: 0.8rem;
  text-align: center;
}

@media (min-width: 992px) {
  .factory-direct-letters {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .home-statistics {
    padding: 6rem 0;
    transform: scale(1);
  }
  .factory-direct-letters {
    font-size: 1.2rem;
  }
}
.container-sm {
  max-width: 100%;
}

.thumbs {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  /* .peoplesWrap::-webkit-scrollbar { width: 0!important } */
}
.thumbs::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.5rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.5rem;
}
.thumbs::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0.5rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
.thumbs::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: transparent;
}
.thumbs li {
  width: 5rem;
}
.thumbs li:not(:last-child) {
  margin: 0 0 0.5rem 0;
}
.thumbs li img {
  width: 100%;
  cursor: pointer;
}
.thumbs li video {
  width: 100%;
  cursor: pointer;
}

.swiper {
  width: 30rem;
  aspect-ratio: 1/1;
  margin-left: 0.5rem;
  flex-grow: 0;
}
.swiper img {
  width: 100%;
}
.swiper video {
  width: 100%;
}

.product-banner-msg {
  color: white;
  font-family: Poppins-Medium;
}
.product-banner-msg .tags {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-banner-msg .tags li {
  padding: 0.4rem 0.5rem;
  background: rgba(0, 0, 0, 0.3);
}
.product-banner-msg .tags li:not(:last-child) {
  margin-right: 1rem;
}
.product-banner-msg .tags li div {
  padding: 0.2rem 0;
  border-top: 0.1rem solid #757575;
  border-bottom: 0.1rem solid #757575;
  font-size: 0.6rem;
}
.product-banner-msg > p {
  line-height: 2.1rem;
}
.product-banner-msg .btn-box {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.product-banner-msg .btn-box div {
  height: 3rem;
  padding: 1rem 1rem;
  border: 0.1rem solid #535353;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 1rem;
}
.product-banner-msg .btn-box div.email {
  margin-right: 1.8rem;
}
.product-banner-msg .btn-box div img {
  width: 2.2rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-sm {
    max-width: 1140px;
  }
}
.product-aboutUs {
  font-size: 1.2rem;
  color: white;
  text-align: justify;
}
.product-aboutUs .inlineTitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  border-top: 0.2rem solid #878787;
  border-bottom: 0.2rem solid #878787;
}

.product-section2 .img img {
  width: 100%;
}
.product-section2 .text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-section2 .text * {
  padding: 2rem 2rem;
}
.product-section2 .section-wrapper {
  position: relative;
}
.product-section2 .section2 {
  left: -100vw;
}
.product-section2 .section3 {
  left: -100vw;
}

.product-specifications .spec-item .spec-header {
  background-color: rgba(0, 0, 0, 0.5);
}
.product-specifications .spec-item .spec-header a {
  text-align: center;
  text-transform: uppercase;
}
.product-specifications .spec-item .spec-header a .dLines {
  margin: 1rem 0;
  border-top: 0.2rem solid #878787;
  border-bottom: 0.2rem solid #878787;
  height: 5.5rem;
  line-height: 5.1rem;
  display: inline-block;
  color: white;
  font-family: Poppins-Medium;
  padding: 0;
  font-size: 1.5rem;
  width: 9.6rem;
  text-align: center;
}
.product-specifications .spec-item .spec-content {
  background-color: rgba(0, 0, 0, 0.3);
}
.product-specifications .spec-item .spec-content img {
  width: 100%;
}

.related-products .item-wrapper {
  display: flex;
  flex-direction: column;
}
.related-products .item-wrapper .item {
  padding: 2.1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.related-products .item-wrapper .item:hover {
  box-shadow: 0.7rem 0.7rem 0.7rem -0.7rem rgba(255, 255, 255, 0.3);
}
.related-products .item-wrapper .item img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3.1rem;
}
.related-products .item-wrapper .item div {
  padding: 1.6rem 1.4rem;
  border-top: 0.3rem solid #808080;
  border-bottom: 0.3rem solid #808080;
  text-align: center;
  font-size: 1.2rem;
  font-family: Poppins-Medium;
}
.related-products .item-wrapper .item div p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.product-list-container .card {
  background-color: rgba(0, 0, 0, 0.5);
}
.product-list-container .card .tags .tag {
  border-top: rgba(255, 255, 255, 0.3) 0.1rem solid;
  border-bottom: rgba(255, 255, 255, 0.3) 0.1rem solid;
  font-size: 0.5rem;
  text-align: center;
  padding: 0.1rem 0.3rem;
  margin-right: 0.3rem;
}

.product-list-card {
  background: rgba(0, 0, 0, 0.5);
  margin: 1.5rem 0;
  padding: 1rem 0;
}

@font-face {
  /* 指定字体名字 */
  font-family: "Poppins-Bold";
  /* 服务器中字体路径 */
  src: url("../font/Poppins-Bold.ttf") format("truetype");
  /* 指定字体格式，一般不写 */
}
@font-face {
  /* 指定字体名字 */
  font-family: "Poppins-Medium";
  /* 服务器中字体路径 */
  src: url("../font/Poppins-Medium.ttf") format("truetype");
  /* 指定字体格式，一般不写 */
}
@font-face {
  /* 指定字体名字 */
  font-family: "Poppins-Regular";
  /* 服务器中字体路径 */
  src: url("../font/Poppins-Regular.ttf") format("truetype");
  /* 指定字体格式，一般不写 */
}
@font-face {
  /* 指定字体名字 */
  font-family: "Poppins-Thin";
  /* 服务器中字体路径 */
  src: url("../font/Poppins-Thin.ttf") format("truetype");
  /* 指定字体格式，一般不写 */
}
:root {
  color: rgb(255, 255, 255);
  font-size: 16px;
  width: 100%;
}

html, body {
  width: 100%;
  padding: 0;
  margin: 0;
}

body {
  background-color: rgb(30, 30, 30);
  font-size: 1rem;
  font-family: Poppins-Regular;
  color: white;
  overflow-x: hidden;
}
body > footer {
  background-color: rgb(0, 0, 0);
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

a, a:hover {
  text-decoration: none;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  color: rgb(255, 255, 255);
}

.home-customers-titleBox {
  height: 5rem;
  font-family: Poppins-Medium;
}
.home-customers-titleBox .bg {
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #3d3d3d;
  overflow: hidden;
}
.home-customers-titleBox .title {
  color: white;
  position: absolute;
  top: 0;
  left: 50%;
  height: 5rem;
  line-height: 4rem;
  transform: translateX(-50%);
  font-size: 1.6rem;
  border-top: 0.4rem solid rgba(255, 255, 255, 0.3);
  border-bottom: 0.4rem solid rgba(255, 255, 255, 0.3);
  text-align: center;
  white-space: nowrap;
}

.home-customers-content {
  color: white;
  margin-top: 3rem;
  text-align: center;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  overflow-x: hidden;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.logos li {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.1rem 0 0.1rem;
  transform: scale(0.6);
}
.logos li img {
  min-width: 4rem;
  min-height: 4rem;
  max-width: 6rem;
  max-height: 6rem;
}

.news-wrapper {
  margin-top: 5rem;
  margin-bottom: 10rem;
  color: white;
}
.news-wrapper .news-list-title {
  text-align: center;
}
.news-wrapper .news-list-item {
  background-color: rgba(0, 0, 0, 0.3);
}
.news-wrapper .news-content img {
  max-width: 100%;
}

.s-container {
  display: block;
  position: relative;
}
.s-container .s-text {
  position: absolute;
  width: 100%;
  font-size: 0.8rem;
}

#Parasol-content a {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  body {
    font-size: 1.05rem;
  }
  .s-container .s-text {
    font-size: 1rem;
  }
  #Parasol-content a {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.1rem;
  }
  .logos li {
    padding: 2rem 0.2rem 4rem 0.2rem;
    transform: scale(0.75);
  }
  .s-container .s-text {
    font-size: 1.1rem;
  }
  #Parasol-content a {
    font-size: 0.9rem;
    line-height: 0.9rem;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 1.15rem;
  }
  .logos li {
    padding: 2rem 1rem 4rem 1rem;
    transform: scale(1);
  }
  .s-container .s-text {
    font-size: 1.15rem;
  }
  #Parasol-content a {
    font-size: 1rem;
    line-height: 1rem;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1.2rem;
  }
  .s-container .s-text {
    font-size: 1.2rem;
  }
  #Parasol-content a {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 1.25rem;
  }
  .s-container .s-text {
    font-size: 1.25rem;
  }
  #Parasol-content a {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.factory-direct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

/*# sourceMappingURL=custom.css.map */
