@charset "UTF-8";
#header .header-wrapper .header-main {
  height: 70px !important;
}

.shop-top-carousel.product-carousel-section {
  margin: 20px 0;
  padding: 20px;
  background: #FFF3EB;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .shop-top-carousel.product-carousel-section {
    margin: 10px;
    padding: 10px;
  }
}
.shop-top-carousel .carousel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.shop-top-carousel .carousel-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.shop-top-carousel .carousel-title h3 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.shop-top-carousel .carousel-title h3 span {
  font-size: 14px;
  color: #2A3031;
  font-weight: 600;
}
.shop-top-carousel .countdown-timer {
  background: #ff4757;
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 14px;
}
.shop-top-carousel .carousel-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.shop-top-carousel .product-carousel-prev,
.shop-top-carousel .product-carousel-next {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ff4757;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.shop-top-carousel .product-carousel-prev:hover,
.shop-top-carousel .product-carousel-next:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.shop-top-carousel .product-carousel-prev::after,
.shop-top-carousel .product-carousel-next::after {
  content: "";
}
.shop-top-carousel .product-carousel-prev svg,
.shop-top-carousel .product-carousel-next svg {
  max-height: 24px;
}
.shop-top-carousel .product-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.shop-top-carousel .product-carousel .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop-top-carousel .swiper-slide {
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(22.222% - 16px) !important;
  margin: 0 8px;
}
.shop-top-carousel .featured-product-card {
  overflow: hidden;
  position: relative;
}
.shop-top-carousel .special-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff4757;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 2;
}
.shop-top-carousel .product-image {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.shop-top-carousel .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 8px;
}
.shop-top-carousel .product-image:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.shop-top-carousel .product-image .add-to-cart-btn {
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FF6700;
}
.shop-top-carousel .product-image .add-to-cart-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M7%201L7%2013M13%207L1%207%27%20stroke%3D%27currentColor%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-top-carousel .product-image .add-to-cart-btn svg {
  display: none;
}
.shop-top-carousel .product-image .add-to-cart-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #ff4757;
}
.shop-top-carousel .product-image .add-to-cart-btn:hover {
  border-color: #ff4757;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  color: white;
}
@media (max-width: 768px) {
  .shop-top-carousel .product-image .add-to-cart-btn {
    width: 32px;
    height: 32px;
    border-color: #d0d0d0;
    color: #2A3031;
  }
  .shop-top-carousel .product-image .add-to-cart-btn::before {
    width: 12px;
    height: 12px;
  }
}
.shop-top-carousel .product-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2A3031;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shop-top-carousel .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop-top-carousel .current-price {
  font-size: 16px;
  font-weight: bold;
  color: #ff4757;
}
.shop-top-carousel .original-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.shop-top-carousel .swiper-button-prev.product-carousel-prev,
.shop-top-carousel .swiper-button-next.product-carousel-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 0;
}
@media (max-width: 1400px) {
  .shop-top-carousel .swiper-slide {
    width: calc(20% - 16px) !important;
    margin: 0 8px;
  }
}
@media (max-width: 1200px) {
  .shop-top-carousel .swiper-slide {
    width: calc(25% - 16px) !important;
    margin: 0 8px;
  }
}
@media (max-width: 1024px) {
  .shop-top-carousel .swiper-slide {
    width: calc(33.333% - 16px) !important;
    margin: 0 8px;
  }
}
@media (max-width: 768px) {
  .shop-top-carousel .product-carousel-section {
    padding: 15px;
  }
  .shop-top-carousel .carousel-title h3 {
    font-size: 22px;
  }
  .shop-top-carousel .countdown-timer {
    font-size: 14px;
    padding: 5px 10px;
  }
  .shop-top-carousel .carousel-navigation {
    gap: 8px;
  }
  .shop-top-carousel .product-carousel-prev,
  .shop-top-carousel .product-carousel-next {
    width: 36px;
    height: 36px;
  }
  .shop-top-carousel .swiper-slide {
    width: calc(50% - 12px) !important;
    margin: 0 6px;
  }
  .shop-top-carousel .product-image {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .shop-top-carousel .swiper-slide {
    width: calc(33.333% - 6px) !important;
    margin: 0 3px;
  }
  .shop-top-carousel .product-image {
    height: 120px;
  }
  .shop-top-carousel .product-name {
    font-size: 13px;
    height: 36px;
  }
  .shop-top-carousel .current-price {
    font-size: 16px;
  }
  .shop-top-carousel .original-price {
    font-size: 12px;
  }
}

.banner-carousel {
  margin: 20px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 26px;
  position: relative;
}
.banner-carousel .banner-swiper {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
.banner-carousel .banner-swiper .swiper-slide {
  width: calc(50% - 8px) !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.banner-carousel .banner-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  margin-bottom: 0;
}
.banner-carousel .banner-swiper .swiper-slide img:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
.banner-carousel .swiper-pagination {
  bottom: -26px !important;
  position: absolute;
  width: 100%;
}
.banner-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D6D6D6;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banner-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff4757;
  width: 20px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .banner-carousel {
    margin: 0;
    padding-bottom: 20px;
  }
  .banner-carousel .banner-swiper .swiper-slide {
    width: 100% !important;
    margin: 0;
  }
  .banner-carousel .swiper-pagination {
    bottom: -20px !important;
  }
  .banner-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .banner-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
  }
}

.list-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.list-title .list-title-content {
  font-size: 20px;
  font-weight: 600;
  color: #2A3031;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list-title .list-title-content span {
  font-size: 16px;
  font-weight: 600;
  color: #FF5000;
}
.list-title .mobile-cate-sheet-trigger {
  display: none;
}

@media (max-width: 768px) {
  .list-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .list-title .list-title-content {
    font-size: 16px;
  }
  .list-title .list-title-content span {
    font-size: 12px;
  }
  .list-title .mobile-cate-sheet-trigger {
    display: none;
  }
}
.right9 .realbottom .myleft,
.mobile .realbottom .myleft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.right9 .realbottom .myleft .bestseller,
.right9 .realbottom .myleft .freeshipping,
.right9 .realbottom .myleft .hot-sale,
.right9 .realbottom .myleft .discount-percent,
.mobile .realbottom .myleft .bestseller,
.mobile .realbottom .myleft .freeshipping,
.mobile .realbottom .myleft .hot-sale,
.mobile .realbottom .myleft .discount-percent {
  padding: 2px 3px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
}
.right9 .realbottom .myleft .bestseller,
.mobile .realbottom .myleft .bestseller {
  background: #FFECF0;
  color: #EE1742;
}
.right9 .realbottom .myleft .freeshipping,
.mobile .realbottom .myleft .freeshipping {
  background: #E2F1FF;
  color: #1C8EFF;
}
.right9 .realbottom .myleft .hot-sale,
.mobile .realbottom .myleft .hot-sale {
  background: #FFEFDF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  padding-left: 0;
}
.right9 .realbottom .myleft .discount-percent,
.mobile .realbottom .myleft .discount-percent {
  background: #FFEFDF;
  color: #FF491C;
}
.right9 .products-list,
.mobile .products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.right9 .products-list .product-item,
.mobile .products-list .product-item {
  overflow: hidden;
  cursor: pointer;
}
.right9 .products-list .product-item .proleft,
.mobile .products-list .product-item .proleft {
  width: 100%;
  aspect-ratio: 1/1; /* 创建正方形比例 */
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.right9 .products-list .product-item .proleft img,
.mobile .products-list .product-item .proleft img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 保持图片比例，不拉伸 */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: #f8f8f8; /* 添加背景色 */
}
.right9 .products-list .product-item .proleft:hover img,
.mobile .products-list .product-item .proleft:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.right9 .products-list .product-item .proright,
.mobile .products-list .product-item .proright {
  padding: 15px 0;
}
.right9 .products-list .product-item .proright .proright_title p,
.mobile .products-list .product-item .proright .proright_title p {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #2A3031;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
}
.right9 .products-list .product-item .proright .proright_title span,
.mobile .products-list .product-item .proright .proright_title span {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.right9 .products-list .product-item .proright .realbottom,
.mobile .products-list .product-item .proright .realbottom {
  margin: 10px 0;
}
.right9 .products-list .product-item .proright .protitle_bottom,
.mobile .products-list .product-item .proright .protitle_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}
.right9 .products-list .product-item .proright .protitle_bottom .price,
.mobile .products-list .product-item .proright .protitle_bottom .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.right9 .products-list .product-item .proright .protitle_bottom .price .saleprice,
.mobile .products-list .product-item .proright .protitle_bottom .price .saleprice {
  color: #ff6700;
}
.right9 .products-list .product-item .proright .protitle_bottom .price .regularprice,
.mobile .products-list .product-item .proright .protitle_bottom .price .regularprice {
  font-size: 12px;
  color: #797979;
  text-decoration: line-through;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}
.right9 .products-list .product-item .proright .protitle_bottom .price .regularprice::before,
.mobile .products-list .product-item .proright .protitle_bottom .price .regularprice::before {
  content: "原價";
}
.right9 .products-list .product-item .proright .protitle_bottom > span,
.right9 .products-list .product-item .proright .protitle_bottom > a,
.right9 .products-list .product-item .proright .protitle_bottom > button,
.mobile .products-list .product-item .proright .protitle_bottom > span,
.mobile .products-list .product-item .proright .protitle_bottom > a,
.mobile .products-list .product-item .proright .protitle_bottom > button {
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FF6700;
}
.right9 .products-list .product-item .proright .protitle_bottom > span::before,
.right9 .products-list .product-item .proright .protitle_bottom > a::before,
.right9 .products-list .product-item .proright .protitle_bottom > button::before,
.mobile .products-list .product-item .proright .protitle_bottom > span::before,
.mobile .products-list .product-item .proright .protitle_bottom > a::before,
.mobile .products-list .product-item .proright .protitle_bottom > button::before {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M7%201L7%2013M13%207L1%207%27%20stroke%3D%27currentColor%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.right9 .products-list .product-item .proright .protitle_bottom > span svg,
.right9 .products-list .product-item .proright .protitle_bottom > a svg,
.right9 .products-list .product-item .proright .protitle_bottom > button svg,
.mobile .products-list .product-item .proright .protitle_bottom > span svg,
.mobile .products-list .product-item .proright .protitle_bottom > a svg,
.mobile .products-list .product-item .proright .protitle_bottom > button svg {
  display: none;
}
.right9 .products-list .product-item .proright .protitle_bottom > span,
.right9 .products-list .product-item .proright .protitle_bottom > a,
.right9 .products-list .product-item .proright .protitle_bottom > button,
.mobile .products-list .product-item .proright .protitle_bottom > span,
.mobile .products-list .product-item .proright .protitle_bottom > a,
.mobile .products-list .product-item .proright .protitle_bottom > button {
  width: 32px;
  height: 32px;
  border-color: #d0d0d0;
  color: #666;
}
.right9 .products-list .product-item .proright .protitle_bottom > span::before,
.right9 .products-list .product-item .proright .protitle_bottom > a::before,
.right9 .products-list .product-item .proright .protitle_bottom > button::before,
.mobile .products-list .product-item .proright .protitle_bottom > span::before,
.mobile .products-list .product-item .proright .protitle_bottom > a::before,
.mobile .products-list .product-item .proright .protitle_bottom > button::before {
  width: 12px;
  height: 12px;
}
.right9 .products-list .product-item .proright .protitle_bottom > span:hover,
.right9 .products-list .product-item .proright .protitle_bottom > a:hover,
.right9 .products-list .product-item .proright .protitle_bottom > button:hover,
.mobile .products-list .product-item .proright .protitle_bottom > span:hover,
.mobile .products-list .product-item .proright .protitle_bottom > a:hover,
.mobile .products-list .product-item .proright .protitle_bottom > button:hover {
  border-color: #ff4757;
  background: #fff5f5;
  color: #ff4757;
}
.right9 .products-list .product-item .proright .protitle_bottom > span:active,
.right9 .products-list .product-item .proright .protitle_bottom > a:active,
.right9 .products-list .product-item .proright .protitle_bottom > button:active,
.mobile .products-list .product-item .proright .protitle_bottom > span:active,
.mobile .products-list .product-item .proright .protitle_bottom > a:active,
.mobile .products-list .product-item .proright .protitle_bottom > button:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.mobile .protitle_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}
.mobile .protitle_bottom .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile .protitle_bottom .price .saleprice {
  color: #ff6700;
}
.mobile .protitle_bottom .price .regularprice {
  font-size: 12px;
  color: #797979;
  text-decoration: line-through;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}
.mobile .protitle_bottom .price .regularprice::before {
  content: "原價";
}
.mobile .protitle_bottom > span,
.mobile .protitle_bottom > a,
.mobile .protitle_bottom > button {
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FF6700;
}
.mobile .protitle_bottom > span::before,
.mobile .protitle_bottom > a::before,
.mobile .protitle_bottom > button::before {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M7%201L7%2013M13%207L1%207%27%20stroke%3D%27currentColor%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mobile .protitle_bottom > span svg,
.mobile .protitle_bottom > a svg,
.mobile .protitle_bottom > button svg {
  display: none;
}
.mobile .protitle_bottom > span,
.mobile .protitle_bottom > a,
.mobile .protitle_bottom > button {
  width: 32px;
  height: 32px;
  border-color: #d0d0d0;
  color: #666;
}
.mobile .protitle_bottom > span::before,
.mobile .protitle_bottom > a::before,
.mobile .protitle_bottom > button::before {
  width: 12px;
  height: 12px;
}
.mobile .protitle_bottom > span:hover,
.mobile .protitle_bottom > a:hover,
.mobile .protitle_bottom > button:hover {
  border-color: #ff4757;
  background: #fff5f5;
  color: #ff4757;
}
.mobile .protitle_bottom > span:active,
.mobile .protitle_bottom > a:active,
.mobile .protitle_bottom > button:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.filter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
  border-radius: 8px 8px 0 0;
  padding-bottom: 16px;
}
.filter-header .filter-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2A3031;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
}
.filter-header .filter-title strong {
  font-size: 20px;
}
.filter-header .filter-title span {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.filter-header .filter-menu-icon {
  font-size: 14px;
  font-weight: 600;
  color: #2A3031;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  min-width: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
}
.filter-header .filter-menu-icon:hover {
  background: #FFF3EB;
}

.xx-scroll-locked {
  overflow: hidden !important;
  height: 100%;
}

body.xx-scroll-locked {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.cate-sheet-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .cate-sheet-mask {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.cate-sheet-panel {
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  padding: 16px 16px 20px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: cate-sheet-slide-up 0.28s ease-out;
          animation: cate-sheet-slide-up 0.28s ease-out;
}
@media (max-width: 768px) {
  .cate-sheet-panel {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

.cate-sheet-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.cate-sheet-header .cate-sheet-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.cate-sheet-header .cate-sheet-title span {
  font-size: 16px;
  font-weight: 600;
  color: #2A3031;
}
.cate-sheet-header .cate-sheet-title small {
  font-size: 12px;
  color: #888;
}
.cate-sheet-header .cate-sheet-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #E0E0E0;
  padding: 6px;
  background: #fff;
  font-size: 13px;
  color: #555;
  margin: 0;
}
.cate-sheet-header .cate-sheet-close:hover {
  background: #F5F5F5;
}

.cate-sheet-body {
  margin: 4px 0 20px;
  padding: 4px;
  border-top: 1px solid #F1F1F1;
  max-height: calc(80vh - 88px);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: block;
}
@media (max-width: 768px) {
  .cate-sheet-body {
    margin-top: 4px;
    padding: 4px 0 40px;
    max-height: calc(80vh - 68px);
  }
}

.cate-sheet-group-title {
  display: block;
  margin: 10px 0;
}

.cate-sheet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 767px) {
  .cate-sheet-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cate-sheet-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: #F8F8F8;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
}
.cate-sheet-item img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cate-sheet-item .catetitle {
  font-size: 14px;
  color: #2A3031;
  font-weight: 500;
}
.cate-sheet-item:hover {
  background: #FFF3EB;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
.cate-sheet-item.cate_name_active {
  background: #FFF3EB;
  -webkit-box-shadow: 0 0 0 1px #FF5000 inset;
          box-shadow: 0 0 0 1px #FF5000 inset;
}
.cate-sheet-item.cate_name_active:before {
  content: "";
}
@media (max-width: 768px) {
  .cate-sheet-item img {
    width: 30px;
    height: 30px;
  }
  .cate-sheet-item .catetitle {
    font-size: 12px;
  }
}

@-webkit-keyframes cate-sheet-slide-up {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes cate-sheet-slide-up {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
#shop-sidebar-filter .cate_name {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #2A3031;
  margin-bottom: 12px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#shop-sidebar-filter .cate_name img {
  width: 48px;
  height: 48px;
  margin-right: 8px;
}
#shop-sidebar-filter .cate_name.cate_name_active {
  background-color: #FFF3EB;
  border-left: 4px solid #ff5000;
}
#shop-sidebar-filter .cate_name:hover {
  background-color: #FFF3EB;
}

.cate-tabs-mobile {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1000;
  top: 70px;
  background: #fff;
  padding: 10px;
}
.cate-tabs-mobile .mobile-cate-sheet-trigger--tabs {
  display: none;
}

.mobileson .moleft {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  top: 108px;
  background: #fff;
}

#app .cate-tabs {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  #app .cate-tabs {
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 5px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#app button.cate-tab {
  border-radius: 8px;
  border: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 8px;
  width: 50%;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  #app button.cate-tab {
    margin: 0;
  }
}
#app button.cate-tab .cate-tab__icon {
  max-width: 40px;
  max-height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.55;
  -webkit-transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, filter 0.2s ease;
  transition: opacity 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
}
#app button.cate-tab .cate-tab__text {
  line-height: 1;
}
#app button.cate-tab::before, #app button.cate-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
#app button.cate-tab::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FF5000;
}
#app button.cate-tab::before {
  bottom: -8px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFF3EB;
  z-index: 10;
}
#app button.cate-tab:hover {
  background: #FFF3EB;
  border-color: #FF5000;
  color: #2A3031;
}
#app button.cate-tab:hover .cate-tab__icon {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}
#app button.cate-tab:hover::before, #app button.cate-tab:hover::after {
  opacity: 1;
}
#app button.cate-tab.is-active {
  background: #FFF3EB;
  border-color: #FF5000;
  color: #2A3031;
}
#app button.cate-tab.is-active .cate-tab__icon {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}
#app button.cate-tab.is-active::before, #app button.cate-tab.is-active::after {
  opacity: 1;
}
#app button.cate-tab:focus-visible {
  outline: 2px solid rgba(255, 80, 0, 0.35);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  #app button.cate-tab {
    border-width: 2px;
    border-radius: 999px;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  #app button.cate-tab:before, #app button.cate-tab:after {
    display: none;
  }
  #app button.cate-tab .cate-tab__icon {
    height: 24px;
  }
}

@media (max-width: 768px) {
  #app .cate-tabs-mobile .mobile-cate-sheet-trigger--tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: 36px;
    padding: 0 14px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #2A3031;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    -webkit-tap-highlight-color: transparent;
  }
  #app .cate-tabs-mobile .mobile-cate-sheet-trigger--tabs:active {
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98);
  }
  #app .cate-tabs-mobile .mobile-cate-sheet-trigger--tabs svg {
    opacity: 0.85;
  }
}