.carousel-container {
  width: 100%;
  margin: 0 auto;
  height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  box-sizing: content-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.carousel-container .banner-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("https://oss-official-website.doorunhealth.com/assets/product-banner.png");
  background-size: cover;
  background-position: center;
}
.carousel-container .banner-img .banner-title {
  position: absolute;
  left: 20%;
  top: 30%;
  font-weight: 400;
  font-size: 45px;
  color: #FFFFFF;
  animation: textFadeInUp 1s ease forwards;
}
.carousel-container .banner-img .banner-title > span {
  font-size: 80px;
  color: #FFC600;
}

.about-main {
  margin-top: 13px;
}
.about-main .nav > span a {
  color: rgba(51, 51, 51, 0.5);
  font-size: 14px;
}
.about-main .nav > span a:hover {
  color: rgb(51, 51, 51);
}
.about-main .nav > span:nth-child(2) {
  padding: 0 8px;
}
.about-main .nav > span:last-child {
  color: #333;
}

.product-container {
  margin-top: 83px;
  margin-bottom: 100px;
}
.product-container .product-container-header-nav {
  display: flex;
  position: relative;
}
.product-container .product-container-header-nav::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #D8D8D8;
}
.product-container .product-container-header-nav > div {
  margin-right: 50px;
  padding-bottom: 25px;
  font-weight: 400;
  font-size: 26px;
  color: #666666;
  line-height: 37px;
  cursor: pointer;
}
.product-container .product-container-header-nav > div:last-child {
  margin-right: 0;
}
.product-container .product-container-header-nav > div.product-container-header-nav-active {
  font-weight: 600;
  border-bottom: 6px solid #FFC600;
}
.product-container .product-list-nav {
  display: flex;
  margin-top: 36px;
}
.product-container .product-list-nav li {
  margin-right: 50px;
  color: #666666;
  font-weight: 400;
  cursor: pointer;
}
.product-container .product-list-nav li.product-list-nav-item-active {
  color: #000000;
  font-weight: 500;
}
.product-container .product-list-nav li:last-child {
  margin-right: 0;
}
.product-container .product-list-content {
  display: grid;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 30px;
  gap: 33px 30px;
}
.product-container .product-list-content .product-list-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 380px;
  background: #F6F6F6;
}
.product-container .product-list-content .product-list-items a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product-container .product-list-content .product-list-items a:hover .product-list-items-img > img {
  transform: scale(1.2);
}
.product-container .product-list-content .product-list-items a .product-list-items-img {
  width: 300px;
  height: 260px;
}
.product-container .product-list-content .product-list-items a .product-list-items-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.product-container .product-list-content .product-list-items a .product-name {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
}
.product-container .product-list-content .product-list-items a .product-tips {
  color: #888888;
}/*# sourceMappingURL=product.css.map */

@media (max-width: 1024px) {
    .carousel-container .banner-img {
  background-image: url("https://oss-official-website.doorunhealth.com/assets/mobile-product-banner.jpg");
}
  .carousel-container{
        height: 118px;
    padding-top: 60px;
  }
  .about-main{
    padding: 0 16px;
  }
  .product-container .product-container-header-nav{
    justify-content: center
  }
  .product-container .product-list-nav{
    justify-content: center;
    padding: 0 16px;
  }
  .product-container .product-list-content{
    justify-content: center
  }
  .product-container .product-list-nav li{
    margin-right: 30px;
    width: 100%;
  }
}

/* @media (max-width: 480px) {
  .product-container .product-list-nav{
    display: none !important;
  }
} */