@charset "UTF-8";
:root {
  --padding: 1rem;
  --font-size-1: 1.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  display: block;
  text-decoration: none;
  color: #333;
}

li {
  list-style: none;
}

img {
  display: block;
}

body, html {
  font-size: 1.1rem;
  background: white;
  color: black;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
header .container .text-wap {
  background: black;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5rem;
}
header .container .icon-wrap {
  background: white;
  width: 100%;
  display: flex;
  align-items: center;
}
header .container .icon-wrap .left-icon,
header .container .icon-wrap .right-icon {
  display: flex;
  padding: 1rem;
}
header .container .icon-wrap .left-icon img,
header .container .icon-wrap .right-icon img {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}
header .container .icon-wrap .left-icon img:last-child,
header .container .icon-wrap .right-icon img:last-child {
  margin-left: 0;
}
header .container .icon-wrap .right-icon img {
  margin-right: 0;
}
header .container .icon-wrap .logo-wrap {
  flex: 1;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}
header .container .icon-wrap .logo-wrap img {
  max-width: 15rem;
  height: auto;
  max-height: 4rem;
}
header .container nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 3;
}
header .container nav.open {
  display: flex;
}
header .container nav ul {
  margin-top: 4rem;
  width: 100%;
  height: 100%;
}
header .container nav ul li {
  display: block;
}
header .container nav ul li a {
  display: block;
  margin: 0 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}
header .container nav .menu-title {
  font-size: var(--font-size-1);
  position: absolute;
  left: 1rem;
  top: 1rem;
}
header .container nav .close-icon {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
}
header .container nav .close-icon img {
  width: 2rem;
  height: 2rem;
}

main {
  padding-top: 5rem;
}
main .container .banner-wrap {
  position: relative;
  aspect-ratio: 0.56;
}
main .container .banner-wrap .image-wrap {
  display: block;
}
main .container .banner-wrap .image-wrap video {
  width: 100%;
  display: block;
}
main .container .banner-wrap .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 1.2rem;
}
main .container .banner-wrap .text-wrap .rate-wrap {
  display: flex;
  align-items: center;
  font-size: 1.6rem; /* 根据设计稿调整 */
  color: white; /* 星星颜色 */
}
main .container .banner-wrap .text-wrap .rate-wrap .rate-box {
  white-space: nowrap;
}
main .container .banner-wrap .text-wrap .rate-wrap .text {
  margin-top: -0.2rem;
  margin-left: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
}
main .container .banner-wrap .text-wrap .top-text-wrap {
  color: white;
  padding: 0.5rem 0;
}
main .container .banner-wrap .text-wrap .top-text-wrap .title-text {
  line-height: 1.2;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 1rem 0;
}
main .container .banner-wrap .text-wrap .top-text-wrap .label-wrap {
  margin-top: 1rem;
  display: none;
  align-items: center;
}
main .container .banner-wrap .text-wrap .top-text-wrap .label-wrap .label-item {
  padding: 0.5rem 0;
  border-radius: 2rem;
  margin-right: 1rem;
}
main .container .banner-wrap .text-wrap .top-text-wrap .desc-text {
  letter-spacing: 0.5px;
  padding-top: 1rem;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 600;
}
main .container .banner-wrap .btn-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 3rem 1.2rem;
}
main .container .banner-wrap .btn-wrap .btn {
  padding: 1rem 2rem;
  text-align: center;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 3rem;
  text-transform: capitalize;
}
main .container .feature-wrap {
  padding: 0.5rem 1rem 2rem 1rem;
  margin-bottom: 3rem;
  background: black;
}
main .container .feature-wrap .content-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5remrem;
}
main .container .feature-wrap .content-wrap .image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
main .container .feature-wrap .content-wrap .image-item img {
  width: 85%;
}
main .container .module-wrap-6 {
  padding: 0 1rem;
}
main .container .module-wrap-6 .top-wrap {
  display: flex;
  justify-content: center;
}
main .container .module-wrap-6 .top-wrap .slider-wrap {
  display: flex;
  border-bottom: 1px solid #aaa;
  margin-bottom: 1.5rem;
}
main .container .module-wrap-6 .top-wrap .slider-wrap .slider-item {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #999;
  position: relative;
}
main .container .module-wrap-6 .top-wrap .slider-wrap .slider-item.active {
  color: black;
  font-weight: bold;
}
main .container .module-wrap-6 .top-wrap .slider-wrap .slider-item.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: black;
}
main .container .module-wrap-6 .outer-swiper .swiper-slide .product-content-wrap .product-item img {
  width: 100%;
  border-radius: 5px;
}
main .container .module-wrap-6 .outer-swiper .swiper-slide .product-content-wrap .product-item .name-wrap {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  font-weight: bold;
  line-height: 1.5;
}
main .container .module-wrap-6 .outer-swiper .swiper-slide .product-content-wrap .product-item .price-wrap {
  margin-top: 0.2rem;
}
main .container .module-wrap-6 .outer-swiper .swiper-slide .product-content-wrap .product-item .price-wrap del {
  color: #999;
  margin-right: 0.5rem;
}
main .container .module-wrap-6 .outer-swiper .swiper-slide .product-content-wrap .product-item .price-wrap span {
  font-size: 1.3rem;
  font-weight: bold;
}
main .container .module-wrap-6 .btn-wrap {
  text-align: center;
  margin: 3rem 0 4rem 0;
}
main .container .module-wrap-6 .btn-wrap .btn {
  background: black;
  color: white;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 5px;
  padding: 1rem 3rem;
}
main .container .category-image-wrap {
  margin-bottom: 4rem;
  padding: 0 1rem;
}
main .container .category-image-wrap .title {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
main .container .category-image-wrap .image-item {
  margin-bottom: 1rem;
}
main .container .category-image-wrap .image-item img {
  width: 100%;
  border-radius: 5px;
}
main .container .swiper-wrap {
  padding: 0 1rem 4rem 1rem;
}
main .container .swiper-wrap .title {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
main .container .swiper-wrap .swiper-container .swiper-wrapper {
  width: 100%;
}
main .container .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 5px;
}
main .container .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .text-wrap {
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.3rem;
}
main .container .bottom-text-wrap {
  border-bottom: 1px solid #f1f1f1;
  margin: 1rem 1rem 4rem 1rem;
}
main .container .bottom-text-wrap .title {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
main .container .bottom-text-wrap .item-wrap {
  border-top: 1px solid #f1f1f1;
}
main .container .bottom-text-wrap .item-wrap .block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}
main .container .bottom-text-wrap .item-wrap .block-title .title-text {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem 0;
}
main .container .bottom-text-wrap .item-wrap .block-title img {
  width: 1.5rem;
  height: 1.5rem;
}
main .container .bottom-text-wrap .item-wrap .block-desc {
  display: none;
  padding: 0 1rem 2rem 1rem;
  color: #666;
  line-height: 1.8;
}

footer .container {
  background: black;
  color: white;
  padding: 2rem 1rem;
}
footer .container .logo-wrap {
  text-align: center;
  margin-bottom: 1rem;
}
footer .container .logo-wrap img {
  display: inline-block;
  max-width: 15rem;
  height: auto;
  max-height: 4rem;
}
footer .container .item-wrap {
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}
footer .container .item-wrap .block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem 1rem;
}
footer .container .item-wrap .block-title .title-text {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem 0;
}
footer .container .item-wrap .block-title img {
  width: 1.5rem;
  height: 1.5rem;
}
footer .container .item-wrap ul {
  display: none;
  padding-left: 1rem;
}
footer .container .item-wrap ul li {
  padding: 0.5rem 0 0 0.5rem;
  line-height:2.0
}
footer .container .item-wrap ul li a {
  color: white;
}
footer .container .image-wrap {
  margin-top: 2rem;
  text-align: center;
}
footer .container .image-wrap img {
  display: inline-block;
  width: 95%;
}
footer .container .copyright {
  text-align: center;
  padding-top: 2rem;
}/*# sourceMappingURL=home.css.map */