@charset "UTF-8";/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*//*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
.custom-tabs[data-v-5e440948] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 20px;
}
.tabs-nav[data-v-5e440948] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  /* border-bottom: 1px solid #e5e7eb; */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-x: auto;
}
.tab-item[data-v-5e440948] {
  padding: 12px 24px 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 32px;
  font-weight: 400;
  color: #4e4e4e;
  white-space: nowrap;
}
.tab-item.tab-active[data-v-5e440948] {
  font-weight: 500;
  color: #1a1d25;
}
.tab-indicator[data-v-5e440948] {
  position: absolute;
  bottom: -1px;
  height: 3px;
  background-color: #1a1d25;
  -webkit-transition: left 0.3s ease, width 0.3s ease;
  transition: left 0.3s ease, width 0.3s ease;
}
.tabs-actions[data-v-5e440948] {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.more-btn[data-v-5e440948] {
  background: none;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 400;
  color: #1a1d25;
  cursor: pointer;
  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;
}
@media (max-width: 768px) {
.tab-item[data-v-5e440948] {
    padding: 8px 16px 8px 0;
    /* font-size: 20px; */
}
.custom-tabs[data-v-5e440948] {
    gap: 10px;
}
.custom-tabs .tabs-actions[data-v-5e440948] {
    width: 30px;
}
}
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
.product-list-container[data-v-6fe2a587] {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.products-header[data-v-6fe2a587] {
  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: 16px;
}
.section-title[data-v-6fe2a587] {
  font-size: 32px;
  font-weight: 500;
  color: #1a1d25;
}
.view-more[data-v-6fe2a587] {
  font-size: 20px;
  font-weight: 400;
  color: #1a1d25;
  cursor: pointer;
  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;
}
.view-more > svg[data-v-6fe2a587] {
  width: 30px;
  height: 30px;
}
.right-icon[data-v-6fe2a587] {
  width: 25px;
}
.products-wrapper[data-v-6fe2a587] {
  /* PC端横向滚动，移动端纵向滚动 */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* 移除滚动条但保留功能 */
.products-wrapper[data-v-6fe2a587]::-webkit-scrollbar {
  display: none;
}
.products-wrapper[data-v-6fe2a587] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.products-list[data-v-6fe2a587] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 8px 0;
  min-height: 100%;
}
.product-item[data-v-6fe2a587] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(20% + 10px);
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-image[data-v-6fe2a587] {
  width: 100%;
  padding-top: 100%; /* 1:1比例 */
  position: relative;
  background-color: #f5f5f5;
}
.img-contain[data-v-6fe2a587] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-description[data-v-6fe2a587] {
  padding: 10px 24px 0;
  font-size: 20px;
  color: #1a1d25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4em;
  word-break: break-word;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-price[data-v-6fe2a587] {
  padding: 10px 24px;
  font-size: 24px;
  font-weight: 500;
  color: #1a1d25;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-tag[data-v-6fe2a587] {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  z-index: 1;
  white-space: nowrap;
}
.discount-tag[data-v-6fe2a587] {
  color: #bb0a0a;
  background-color: #fcecea;
}
.new-tag[data-v-6fe2a587] {
  color: #17bd17;
  background-color: #eafbe2;
}

/* 移动端样式 */
@media (max-width: 767px) {
.section-title[data-v-6fe2a587] {
    font-size: 20px;
}
.products-wrapper[data-v-6fe2a587] {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 80vh; /* 限制最大高度，超出滚动 */
}
.product-tag[data-v-6fe2a587] {
    font-size: 12px;
}
.products-list[data-v-6fe2a587] {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.product-item[data-v-6fe2a587] {
    width: calc(50% - 12px); /* 移动端2个item */
}
.product-description[data-v-6fe2a587] {
    padding: 12px 12px 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 5.6em;
    word-break: break-word;
    white-space: normal;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.product-price[data-v-6fe2a587] {
    font-size: 20px;
    padding: 8px 12px;
}
}
.product-list-container[data-v-059a4ed8] {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 20px; */
}

/* 头部样式 */
.header-section[data-v-059a4ed8] {
  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: 24px;
}
.section-title[data-v-059a4ed8] {
  font-size: 32px;
  font-weight: 500;
  color: #1a1d25;
}
.view-more[data-v-059a4ed8] {
  font-size: 20px;
  font-weight: 400;
  color: #1a1d25;
  cursor: pointer;
  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;
}
.view-more > svg[data-v-059a4ed8] {
  width: 30px;
  height: 30px;
}
.right-icon[data-v-059a4ed8] {
  width: 25px;
}
.arrow-icon[data-v-059a4ed8] {
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/* 商品网格布局 */
.products-grid[data-v-059a4ed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}

/* 左侧大商品 */
.large-item[data-v-059a4ed8] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* 右侧四宫格 */
.small-items-grid[data-v-059a4ed8] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

/* 商品项通用样式 */
.product-item[data-v-059a4ed8] {
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  cursor: pointer;
}
.item-content[data-v-059a4ed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eee;
}

/* 商品图片 */
.product-image[data-v-059a4ed8] {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 比例 */
  overflow: hidden;
}
.product-image img[data-v-059a4ed8] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.product-tag[data-v-059a4ed8] {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  z-index: 1;
}
.discount-tag[data-v-059a4ed8] {
  color: #bb0a0a;
  background-color: #fcecea;
}
.new-tag[data-v-059a4ed8] {
  color: #17bd17;
  background-color: #eafbe2;
}

/* 商品描述 */
.product-description[data-v-059a4ed8] {
  padding: 10px 24px 0;
  font-size: 20px;
  color: #1a1d25;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* PC端默认显示2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.show-all-description[data-v-059a4ed8] {
  -webkit-line-clamp: none;
}

/* 移动端描述显示3行 */
.mobile-description[data-v-059a4ed8] {
  padding: 12px 12px 0;
  font-size: 14px;
  -webkit-line-clamp: 3;
}

/* 商品价格 */
.product-price[data-v-059a4ed8] {
  padding: 10px 24px;
  font-size: 24px;
  font-weight: 500;
  color: #1a1d25;
  margin-top: auto;
}

/* 移动端响应式调整 */
@media (max-width: 767px) {
.products-grid[data-v-059a4ed8] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.small-items-grid[data-v-059a4ed8] {
    grid-template-columns: repeat(2, 1fr);
}
.header-section[data-v-059a4ed8] {
    margin-bottom: 16px;
}
.section-title[data-v-059a4ed8] {
    font-size: 20px;
}
.product-tag[data-v-059a4ed8] {
    font-size: 12px;
}
.product-price[data-v-059a4ed8] {
    font-size: 20px;
    padding: 8px 12px;
}
}

/* 平板及以上设备样式 */
@media (min-width: 768px) and (max-width: 1023px) {
.products-grid[data-v-059a4ed8] {
    gap: 16px;
}
.small-items-grid[data-v-059a4ed8] {
    gap: 16px;
}
}
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
[v-cloak][data-v-03e9645a] {
  display: none;
}
.root_app_content[data-v-03e9645a] {
  width: 100%;
  padding: 80px 12.5%;
  margin: 0 auto;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.root_app_content .product-wrapper[data-v-03e9645a] {
  width: 100%;
}
@media screen and (max-width: 768px) {
.root_app_content[data-v-03e9645a] {
    padding: 41px 24px;
}
}