/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??clonedRuleSet-5.use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-5.use[2]!./node_modules/@wordpress/scripts/node_modules/sass-loader/dist/cjs.js??clonedRuleSet-5.use[3]!./src/scss/pc/homepage/home-page.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.site-main {
  padding: 156px 0 0;
  background: #FAFAFA;
  min-width: 1300px;
}

.content-home {
  margin: 0 auto;
  width: 1200px;
  position: relative;
}

.banner-main {
  display: flex;
  gap: 24px;
  padding: 30px 0;
}

.banner-swiper {
  position: relative;
  width: 960px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
.banner-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-swiper .swiper-wrapper .swiper-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.banner-swiper .swiper-wrapper .swiper-slide.active {
  opacity: 1;
  z-index: 2;
}
.banner-swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.banner-swiper .swiper-wrapper .banner-info {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  padding-left: 10%;
}
.banner-swiper .swiper-wrapper .banner-info h2 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 12px;
}
.banner-swiper .swiper-wrapper .banner-info p {
  font-size: 18px;
  margin-bottom: 18px;
}
.banner-swiper .swiper-wrapper .banner-btn {
  display: inline-block;
  background: #fff;
  color: #ff6600;
  font-weight: bold;
  padding: 8px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.banner-swiper .swiper-controls {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  z-index: 10;
}
.banner-swiper .swiper-prev, .banner-swiper .swiper-next {
  background: #fff;
  color: #000000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}
.banner-swiper .swiper-prev:hover, .banner-swiper .swiper-next:hover {
  background: #fafafa;
}
.banner-swiper .swiper-prev img, .banner-swiper .swiper-next img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}
.banner-swiper .swiper-prev img {
  transform: rotate(90deg);
}
.banner-swiper .swiper-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-swiper .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.banner-swiper .dot.active {
  background: #fff;
}

.banner-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.banner-side .side-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 308px;
  height: 179px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  cursor: pointer;
}
.banner-side .side-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-side .side-title {
  position: absolute;
  width: 186px;
  padding: 18px 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  line-height: 1.2;
}

.category-main {
  padding: 30px 0 0;
}
.category-main .category-title {
  font-size: 24px;
  color: #281F15;
  font-weight: 700;
  font-style: italic;
}
.category-main .category-list {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  justify-content: flex-start;
  padding: 30px 10px 0;
  flex-wrap: wrap;
}
.category-main .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}
.category-main .category-item img {
  width: 160px;
  height: 160px;
  border-radius: 30px;
}
.category-main .category-item .category-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  border-radius: 30px;
}
.category-main .category-item .category-name {
  font-weight: 400;
  font-size: 16px;
  color: #3E3E3E;
  margin-top: 12px;
  text-align: center;
  line-height: 18px;
}
.category-main .category-item:hover .category-mask {
  display: block;
}

.flash-sale__main {
  background: linear-gradient(92deg, #F6E649 25%, #FF8E1C 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 68px 0 0;
  overflow: hidden;
}
.flash-sale__main .flash-sale__banner {
  width: 248px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flash-sale__main .flash-sale__banner .flash-sale__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flash-sale__main .flash-sale__banner .flash-sale__banner-info {
  position: absolute;
  left: 0;
  bottom: 52px;
  padding: 0 18px;
  max-width: 212px;
  width: 100%;
  box-sizing: border-box;
}
.flash-sale__main .flash-sale__banner .flash-sale__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #FF8429;
  width: 100%;
  height: 40px;
  background: #281F15;
  border-radius: 100px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.flash-sale__main .flash-sale__banner .flash-sale__btn:hover {
  background: #000000;
}
.flash-sale__main .flash-sale__banner .flash-sale__btn .flash-arrow {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.flash-sale__main .flash-sale__list {
  display: flex;
  gap: 18px;
  align-items: stretch;
  padding: 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: -40px;
  position: relative;
}
.flash-sale__main .flash-sale__item {
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  width: 180px;
  min-width: 180px;
  height: 236px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.flash-sale__main .flash-sale__item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.flash-sale__main .flash-sale__item .flash-sale__price {
  color: #ff3c00;
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
  line-height: 22px;
}
.flash-sale__main .flash-sale__item .flash-sale__old-price {
  color: #aaa;
  font-size: 14px;
  text-decoration: line-through;
  line-height: 15px;
  margin-top: 6px;
}
.flash-sale__main .flash-sale__item img {
  width: 168px;
  height: 168px;
}

.top-product__main {
  position: relative;
}
.top-product__main .top-product__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 20px;
  gap: 24px;
}
.top-product__main .top-product__block {
  border-radius: 10px;
  flex: 1;
  padding: 12px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #FFE9E9 0%, #FFFFFF 13%);
  overflow-x: auto;
}
.top-product__main .top-product__block .top-product__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.top-product__main .top-product__block .top-product__header .top-product__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  color: #281F15;
  font-style: italic;
  position: relative;
}
.top-product__main .top-product__block .top-product__header .top-up__icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 16px;
}
.top-product__main .top-product__block .top-product__header .top-product__icon {
  width: 96px;
  height: 40px;
}
.top-product__main .top-product__block .top-product__header .new_product__icon {
  width: 24px;
  height: 24px;
}
.top-product__main .top-product__block .top-product__header .top-product__arrow {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transform: rotate(-90deg);
}
.top-product__main .top-product__block .top-product__list {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: stretch;
}
.top-product__main .top-product__block .top-product__item {
  width: 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.top-product__main .top-product__block .top-product__item:hover {
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
}
.top-product__main .top-product__block .top-product__item img {
  width: 100%;
  height: 180px;
  margin-bottom: 4px;
  border-radius: 5px 5px 0 0;
}
.top-product__main .top-product__block .top-product__item .top-product__price {
  font-weight: bold;
  font-size: 20px;
  color: #EC2336;
  margin-top: 6px;
}
.top-product__main .top-product__block .top-product__item .top-product__old-price {
  color: #aaa;
  font-size: 14px;
  text-decoration: line-through;
  margin-top: 2px;
}
.top-product__main .top-product__block .top-product__item .top-product__desc {
  font-weight: 400;
  font-size: 14px;
  color: #7029FF;
  margin-top: 6px;
}
.top-product__main .new-product {
  background: linear-gradient(180deg, #EAF2FF 0%, #FFFFFF 16%);
}

.more-goods {
  padding: 60px 0 0;
}
.more-goods .more-goods-title {
  font-size: 24px;
  color: #3E3E3E;
  font-weight: 700;
  margin-bottom: 22px;
  font-style: italic;
}

.home-insights {
  padding: 30px 0;
  position: relative;
}
.home-insights .home-insights__title {
  font-size: 24px;
  color: #3E3E3E;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: italic;
  font-weight: 700;
}
.home-insights .insights-btns {
  display: flex;
  gap: 16px;
}
.home-insights .insights-btns .insights-prev, .home-insights .insights-btns .insights-next {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
  border: 1px solid #281F15;
}
.home-insights .insights-btns .insights-prev:hover, .home-insights .insights-btns .insights-next:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.home-insights .insights-btns .insights-prev img, .home-insights .insights-btns .insights-next img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}
.home-insights .insights-btns .insights-prev img {
  transform: rotate(90deg);
}
.home-insights .insights-list {
  display: flex;
  overflow: hidden;
}
.home-insights .insights-card {
  background: #fff;
  border-radius: 15px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.home-insights .insights-product {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background: #FBF9F6;
  padding: 10px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.home-insights .insights-product .insights-product__img {
  width: 122px;
  height: 122px;
}
.home-insights .insights-product .insights-product__info {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-insights .insights-product .insights-product__info .insights-product__name {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-insights .insights-product .insights-product__info .insights-product__prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.home-insights .insights-product .insights-product__info .insights-product__prices .insights-price {
  font-weight: bold;
  font-size: 20px;
  color: #EC2336;
}
.home-insights .insights-product .insights-product__info .insights-product__prices .insights-old__price {
  color: #aaa;
  font-size: 15px;
  text-decoration: line-through;
}
.home-insights .insights-product .insights-product__info .insights-product__prices .insights-discount {
  background: #FFE6D4;
  font-weight: 400;
  font-size: 12px;
  color: #FF8429;
  border-radius: 3px;
  padding: 2px 6px;
}
.home-insights .insights-product .insights-product__info .insights-lowest {
  font-weight: 500;
  font-size: 12px;
  color: #FF8429;
  margin-top: 10px;
}
.home-insights .insights-product .insights-product__info .insights-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.home-insights .insights-product .insights-product__info .insights-product__footer .insights-rating {
  display: flex;
  align-items: center;
  gap: 8px; /* 星星和数字之间的间距 */
}
.home-insights .insights-product .insights-product__info .insights-product__footer {
  /* 评分数值的样式 */
}
.home-insights .insights-product .insights-product__info .insights-product__footer .rating-value {
  font-weight: 400;
  font-size: 12px;
  color: #3E3E3E;
}
.home-insights .insights-product .insights-product__info .insights-view__btn {
  height: 34px;
  line-height: 34px;
  background: #FF8429;
  transition: background 0.2s;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  padding: 0 28px;
}
.home-insights .insights-product .insights-product__info .insights-view__btn:hover {
  background: #e6611a;
}
.home-insights {
  /* 星星部分的容器 */
}
.home-insights .star-rating {
  position: relative;
  display: inline-block;
  font-size: 16px; /* 控制星星的大小 */
  line-height: 1;
}
.home-insights {
  /* 顶层（黄色实心星星）的样式 */
}
.home-insights .star-rating__top {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap; /* 防止星星换行 */
  overflow: hidden; /* 隐藏超出宽度的部分 */
  color: #FFCD28; /* 黄色 */
  z-index: 1;
}
.home-insights .insights-review__stars {
  color: #FF7F00;
}
.home-insights {
  /* 底层（灰色空心星星）的样式 */
}
.home-insights .star-rating__bottom {
  color: #E0E0E0; /* 灰色 */
  white-space: nowrap;
}
.home-insights .insights-review {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  cursor: pointer;
}
.home-insights .insights-review .insights-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #000000;
}
.home-insights .insights-review .insights-review__info {
  display: flex;
  flex-direction: column;
}
.home-insights .insights-review .insights-review__info .insights-review__name {
  font-weight: 600;
}
.home-insights .insights-review .insights-review__text {
  flex: 1;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.footer .footer-top {
  display: flex;
  margin-bottom: -10px;
}

/*# sourceMappingURL=home-page.css.map*/