@charset "utf-8";

:root {
  --mainColor: #FFA31F;
  --mainSubColor: #0058AB;
  --subColor01: #FED28B;
  --subColor02: #FE5728;
  --subColor03: #2CD8FF;
  --subColor04: #0230DA;
  --subColor05: #003b87;
  --subColor06: #3585CE;
  --textColor: #444444;
  --redColor: #EB273E;
  --bgColor: #F7F7F7;
  /* 字型 */
  --ffMicroSoft: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  --ffNotoSans: "Noto Sans", "Noto Sans TC", sans-serif;
  --ffNotoSer: "Noto Serif", serif;
  /* 字體 */
  /* 字體基準15px-50px */
  --f_base: clamp(0.94rem, 2vw, 3.125rem);
  /* 比例 */
  --s-xss: 0.55;
  --s-xs: 0.75;
  --s-s: 0.88;
  --s-m: 1.13;
  --s-l: 1.50;
  --s-xl: 1.80;
  /*12*/
  --fz12: 0.75rem;
  /*14*/
  --fz14: 0.8750rem;
  /*14-15*/
  --fz15: clamp(0.8750rem, calc(var(--f_base) * var(--s-xs)), 0.9375rem);
  /*15-16*/
  --fz16: clamp(0.9375rem, calc(var(--f_base) * var(--s-xs)), 1rem);
  /*16-17*/
  --fz17: clamp(1rem, calc(var(--f_base) * var(--s-xs)), 1.125rem);
  /*17-18*/
  --fz18: clamp(1.0625rem, calc(var(--f_base) * var(--s-s)), 1.125rem);
  /*19-20*/
  --fz20: clamp(1.1875rem, calc(var(--f_base) * var(--s-s)), 1.25rem);
  /*21-22*/
  --fz22: clamp(1.3125rem, calc(var(--f_base) * var(--s-s)), 1.375rem);
  /*23-24*/
  --fz24: clamp(1.4375rem, calc(var(--f_base) * var(--s-m)), 1.5rem);
  /*24-25*/
  --fz25: clamp(1.5rem, calc(var(--f_base) * var(--s-m)), 1.5625rem);
  /*28-30*/
  --fz30: clamp(1.75rem, calc(var(--f_base) * var(--s-l)), 1.875rem);
  /*30-32*/
  --fz32: clamp(1.875rem, calc(var(--f_base) * var(--s-l)), 2rem);
  /*32-36*/
  --fz36: clamp(2rem, calc(var(--f_base) * var(--s-l)), 2.2rem);
  /*36-40*/
  --fz40: clamp(2.25rem, calc(var(--f_base) * var(--s-l)), 2.5rem);
  /*46-50*/
  --fz50: clamp(2.875rem, calc(var(--f_base) * var(--s-xl)), 3.125rem);
  /*70-80*/
  --fz80: clamp(4.375rem, calc(var(--f_base) * var(--s-xl)), 5rem);
  /*90-100*/
  --fz100: clamp(5.625rem, calc(var(--f_base) * var(--s-xl)), 6.25rem);
  /* 間距 */
  /*8-10*/
  --pd10: clamp(0.5rem, .3vw, 0.625rem);
  /*10-15*/
  --pd15: clamp(0.625rem, .5vw, 0.9375rem);
  /*15-20*/
  --pd20: clamp(0.9375rem, .7vw, 1.25rem);
  /*20-30*/
  --pd30: clamp(1.25rem, 1.5vw, 1.875rem);
  /*30-40*/
  --pd40: clamp(1.875rem, 2vw, 2.5rem);
  /*35-50*/
  --pd50: clamp(2.5rem, 2.6vw, 3.125rem);
  /*40-70*/
  --pd70: clamp(2.5rem, 3.1vw, 4.375rem);
  /*45-80*/
  --pd80: clamp(2.8rem, 4.1vw, 5rem);
  /*50-100*/
  --pd100: clamp(3.125rem, 5.1vw, 6.25rem);
  /*60-110*/
  --pd110: clamp(3.75rem, 5.7vw, 6.875rem);
  /*70-120*/
  --pd120: clamp(4.375rem, 6.2vw, 7.5rem);
  /*75-150*/
  --pd150: clamp(4.6875rem, 7.8vw, 9.375rem);
}

body {
  font-family: var(--ffMicroSoft);
  color: var(--textColor);
  line-height: 1.6;
  background: var(--bgColor);
}

body.indexPage {
  background: #FFFFFF;
}

* {
  box-sizing: border-box;
}

input {
  color: inherit;
}

.max1800 {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}

.max1700 {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
}

.max1600 {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.max1400 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.max1200 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.max1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.swiper ul,
.swiper li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lego_mainTitleBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  padding: clamp(1.5vw, 2em, var(--pd20)) clamp(2vw, 5%, var(--pd20));
  background: #FFFFFF;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */
  border-radius: var(--pd20);
}

.lego_mainTitleBox>h1,
.lego_mainTitleBox>h2,
.lego_mainTitleBox>h3 {
  font-size: var(--fz25);
  font-weight: bold;
  color: var(--mainSubColor);
  min-width: 5.5em;
  line-height: 1.4;
  border-right: 1px solid #ccc;
  margin-right: 1em;
}

/* header */

header {
  position: sticky;
  z-index: 9999;
  top: 0;
  padding: 0 var(--pd10);
  background: var(--bgColor);
}

.siteName {
  margin: 0;
  font-size: var(--fz12);
  color: transparent;
  /* width: 1px; */
  /* height: 1px; */
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -10em;
}

.header {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  transition: .3s;
  padding: var(--pd10) var(--pd10);
  padding-top: var(--pd30);
  max-width: 1640px;
}

header.sticky {
  padding: 0;
  background: rgba(255, 255, 255, .6);
}

header.sticky .header {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding-top: var(--pd10);
}

.head_logo {
  position: relative;
  width: 180px;
  overflow: hidden;
  transition: .3s;
}

.head_logo a,
.head_logo a img {
  display: block;
  max-width: 100%;
  width: 180px;
  transition: .3s;
}

header.sticky .head_logo,
header.sticky .head_logo a,
header.sticky .head_logo a img {
  width: 140px;
}

.header_search {
  position: relative;
  width: 100%;
  max-width: 100%;
  flex: 1;
  margin: 0 3vw;
}

.header_search input,
.header_search button {
  -webkit-appearance: none;
  appearance: none;
}

.header_search input[type=text] {
  border: 0;
  border-radius: var(--pd20);
  padding: var(--pd10) .8em;
  padding-right: calc(var(--pd10) + 1.8em + var(--pd10));
  background: transparent;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  line-height: 1.5;
  /* flex: 1; */
  width: 100%;
  max-width: 100%;
}

.header_search input[type=text]::placeholder {
  color: #999999;
}

.header_search button {
  color: #FFFFFF;
  background: var(--mainColor);
  border: 0;
  width: calc(var(--pd10) + var(--pd10) + 1.5em);
  height: calc(var(--pd10) + var(--pd10) + 1.5em);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--pd20);
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  cursor: pointer;
  padding: 0;
}

.header_links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}

.header_links a {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #666666;
  font-size: 12px;
  padding: 0 .5em;
  transition: .3s;
}

.header_links a i {
  font-size: var(--fz22);
  margin-bottom: .2em;
  transition: .3;
}

.header_links a i::before {
  transition: .3s;
}

/* footer */

footer {
  background: var(--mainSubColor);
  margin: 0;
  display: block;
  /* border-radius: var(--pd150) var(--pd150) 0 0; */
  border-radius: var(--pd70) var(--pd70) 0 0;
  line-height: 1.5;
  font-size: var(--fz14);
  position: relative;
  color: #FFFFFF;
  letter-spacing: .03em;
}

footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  background: url(../images/footerBg.svg) left top var(--pd20) no-repeat;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  bottom: 0;
}

.footerMian {
  padding: var(--pd80) var(--pd20) var(--pd50);
  position: relative;
  z-index: 3;
}

.footerMian section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  max-width: 940px;
}

.copy_part {
  padding: 0;
  margin: 0;
  text-align: right;
  width: 320px;
  max-width: calc(38% - var(--pd10));
}

.copy_part a {
  color: inherit;
  text-decoration: none;
}

.footerLogo {
  width: 170px;
  margin-left: auto;
  margin-bottom: var(--pd20);
}

.footerLogo a,
.footerLogo img {
  max-width: 100%;
  display: block;
}

.disclaimer {
  width: 550px;
  max-width: calc(62% - var(--pd10));
  font-size: var(--fz12);
}

.disclaimer h6 {
  font-size: 1.2em;
  line-height: 1.8;
}

.otherPortal {
  background: var(--mainColor);
  font-size: var(--fz12);
  line-height: 1.4;
  padding: 1em;
}

.otherPortal ul {
  display: flex;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}

.otherPortal li:not(li:last-child)::after {
  content: '│';
  display: inline-block;
  margin: 0 5px;
}

/* 麵包屑 */
.path {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  font-weight: bold;
  font-size: var(--fz14);
  color: #525252;
}

.path i {
  margin: 0 1em;
  font-size: .6em;
}

.path span {
  color: #000000;
}

/* 首頁banner */
.topBox {
  padding: clamp(3vw, 3em, var(--pd100)) clamp(2vw, 5%, var(--pd20)) 0;
  background: var(--bgColor);
  width: 100%;
}

.topBox_main {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topBox_main * {
  transition: .3s;
}

.banner {
  width: 60%;
  position: relative;
}

.swiperBannerBox {
  width: 100%;
  height: 100%;
}

.swiperBanner {
  width: 100%;
  height: 100%;
  border-radius: var(--pd50);
  --swiper-theme-color: #FFFFFF;
}

.swiperBanner .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.swiperBanner .swiper-slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate(calc(var(--mx, 0) * -1), calc(var(--my, 0) * -1)) scale(var(--mz)) !important;
}

.swiperBanner .swiper-pagination {
  padding: var(--pd15) var(--pd30);
  position: absolute;
  top: unset;
  right: 0;
  bottom: var(--pd10);
  display: flex;
  justify-content: flex-end;
  left: unset;
}

.swiperBanner .swiper-pagination .swiper-pagination-bullet {
  transition: .3s;
  width: var(--pd15);
  height: var(--pd15);
}

.swiperBanner .swiper-pagination .swiper-pagination-bullet-active {
  width: calc(var(--pd15) * 3);
  border-radius: 10px;
}

.banner_text {
  position: absolute;
  left: 5%;
  top: var(--pd120);
  max-width: 45%;
  z-index: 5;
}

.banner_text img {
  transition: 1s;
  display: block;
}

/* Banner01 */
.banner01_text {
  width: 920px;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  grid-gap: var(--pd20);
}

.banner01_logo {
  grid-row: 1 / span 2;
}

.banner01_logo img {
  transform: rotate(-45deg);
  opacity: 0;
  filter: blur(30px);
}

.banner01_text01 {
  padding-top: var(--pd20);
}

.banner01_text01 img {
  transform: translateX(10%);
  opacity: 0;
}

.banner01_text02 {
  padding-left: var(--pd80);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.banner01_text02 img {
  transform: translateY(100%);
  opacity: 0;
}

.banner01_text03 img {
  transform: translateY(10%);
  opacity: 0;
}

.swiper-slide-active .banner01_text02 img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.swiper-slide-active .banner01_text01 img {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1s;
}

.swiper-slide-active .banner01_text03 img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.5s;
}

.swiper-slide-active .banner01_logo img {
  transform: rotate(0deg);
  opacity: 1;
  filter: blur(0px);
}

/* Banner02 */
.banner02_text {
  width: 505px;
}

.banner02_text img {
  opacity: 0;
}

.banner02_textBox01 {
  padding-left: var(--pd20);
}

.banner02_textBox01 b {
  display: block;
  padding-left: var(--pd30);
}

.banner02_textBox02 {
  margin-top: -2em;
}

img.banner02_text01 {
  max-height: 4.85vw;
  transform: translateY(100%);
}

img.banner02_text02 {
  max-height: 5.65vw;
  margin-top: -1em;
  transform: translateY(100%);
}

img.banner02_text03 {
  max-height: 5.95vw;
  transform: translate(-100%, 50%);
}

.swiper-slide-active img.banner02_text01,
.swiper-slide-active img.banner02_text02 {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active img.banner02_text02 {
  transition-delay: .5s;
}

.swiper-slide-active img.banner02_text03 {
  opacity: 1;
  transform: translate(0, 0);
  transition-duration: 0.5s;
  transition-delay: 1s;
}


/* 大圖計數器 */
.counterBox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: var(--pd30);
  border-top-right-radius: var(--pd50);
  background: var(--bgColor);
  width: 650px;
  max-width: 100%;
  display: flex;
  font-weight: bold;
}

.counterBox::before,
.counterBox::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(../images/ban_dec01.webp);
}

.counterBox::before {
  position: absolute;
  left: 0;
  top: -50px;
}

.counterBox::after {
  bottom: 0;
  right: -50px;
}

.counterBox dl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% / 3);
}

.counterBox dl+dl {
  border-left: 1px solid var(--subColor01);
}

.counterBox dt {
  color: var(--mainSubColor);
}

.counterBox dt b {
  font-size: 2.1875em;
  font-family: Arial, Helvetica, sans-serif;
  margin-right: .2em;
  font-weight: 700;
}

.counterBox dd {
  margin: 0 auto;
}

.topBoxMenu,
.saleLinks {
  width: 18.5%;
  background: #FFFFFF;
  border-radius: var(--pd40);
  padding: var(--pd30) var(--pd20);
  padding-bottom: var(--pd20);
}

.titlePart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBox .titlePart {
  margin-bottom: var(--pd10);
}

.lego_topTitle {
  font-size: var(--fz25);
  font-weight: bold;
  color: #212121;
}

.titlePart a {
  display: block;
  font-size: var(--fz16);
  font-weight: bold;
  color: var(--subColor06);
}

.titlePart a i {
  display: inline-block;
  margin-left: 5px;
}

.saleLinks_main,
.topMenuList {
  height: calc(100% - var(--fz25) - var(--fz25));
}

/* 全站分類 */
.topMenuList ul {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}

.topMenuList ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.topMenuList ul:has(li:nth-child(30)) {
  grid-template-columns: repeat(auto-fill, minmax(5.5em, 1fr));
  grid-gap: .5em;
}


.topMenuList ul a {
  padding: .3em var(--pd10);
  border-radius: var(--pd10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
  height: 100%;
}

/* 好康優惠 */
.saleLinks_main {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--pd20);
}

.saleLinks_main a {
  height: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: var(--pd30);
}

.saleLinks_main a::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/saleLink_dec.svg) center no-repeat;
  position: absolute;
  left: -10px;
  top: -10px;
  animation: scaleMove linear .5s infinite alternate;
}

.saleLinks_main a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--pd30);
}

@keyframes scaleMove {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}


@media (hover: hover) {
  .topBoxMenu ul a:hover {
    background: var(--bgColor);
  }

  .saleLinks_main a:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
  }

  .titlePart a:hover i {
    transform: translateX(.5em);
  }

  a.hisBtn:hover i {
    color: var(--subColor05);
  }

  a.likeBtn:hover i {
    color: var(--redColor);
  }

}

@media (min-width:451px) {
  .topBoxMenu .header_search {
    display: none;
  }
}

main {
  padding: clamp(2vw, 3em, var(--pd30)) clamp(2vw, 5%, var(--pd20));
}



/* 分類列表 */


/* 首頁個分類區塊 */
.index_mainPart {
  background: var(--bgColor);
}

.index_mainPart main {
  padding: clamp(3vw, 3em, var(--pd100)) clamp(2vw, 5%, var(--pd20));
}

.indexPage main>section+section {
  margin-top: var(--pd50);
}

.index_pdSale .index_pdList {
  border-bottom: 1px solid #cccccc;
  padding-bottom: var(--pd50);
}

/* 首頁產品列表 */

.index_pdList_title {
  padding: var(--pd15) 2%;
  margin-bottom: var(--pd20);
}

.index_pdList_title a {
  color: var(--subColor06);
  margin-left: auto;
  margin-right: 0;
}

.index_pdList_title a i{
  margin-left: .3em;
  transition: .3s;
}

@media (hover: hover) {
  .index_pdList_title a:hover i {
    transform: translateX(10px);
  }
}

.index_pdList_select {
  display: flex;
  justify-content: flex-start;
}

.index_pdList_select button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: #E1E1E1;
  border-radius: var(--pd10);
  padding: .5em 1em;
  cursor: pointer;
  transition: .3s;
}

.index_pdList_select button:focus {
  color: var(--subColor02);
}

.index_pdList_select .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.index_pdList_select .select {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  width: 10em;
  height: 40px;
  margin-right: var(--pd10);
}

.index_pdList_select .select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.index_pdList_select .select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: var(--textColor) transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}

@media (hover: hover) {
  .index_pdList_select button:hover {
    background: var(--subColor02);
    color: #FFFFFF;
  }

  .index_pdList_select .select-styled:hover {}
}

.index_pdList_select .select-styled:active,
.index_pdList_select .select-styled.active {}

.index_pdList_select .select-styled:active:after,
.index_pdList_select .select-styled.active:after {}

.index_pdList_select .select-options-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  left: -1em;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(100% + 2em);
  padding-top: var(--pd15);
  display: none;
}

.index_pdList_select .select-options-wrapper::before {
  content: '';
  width: 6em;
  max-width: 100%;
  height: 3px;
  background: var(--mainSubColor);
  position: absolute;
  left: 2em;
  top: calc(var(--pd15) - 3px);
}

.index_pdList_select .select-options {
  display: grid;
  max-width: unset;
  background-color: #FFFFFF;
  margin: 0;
  padding: var(--pd30);
  border-radius: var(--pd20);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
  list-style: none;
}

.index_pdList_select .select-options-wrapper:has(li:nth-child(9)) {
  width: 300%;
}

.index_pdList_select .select-options:has(li:nth-child(9)) {
  grid-template-columns: repeat(3, 1fr);
}

.index_pdList_select .select-options:has(li:nth-child(16)) {
  grid-template-columns: repeat(auto-fill, minmax(6em, 1fr));
}

.index_pdList_select .select-options li {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.index_pdList_select .select-options li:first-child {
  display: none;
}

.index_pdList_select .select-options li.is-selected {
  color: var(--mainSubColor);
}

@media (hover: hover) {

  .index_pdList_select .select-options li:hover {
    color: var(--mainSubColor);
  }

}

.index_pdList_select .select-options li[rel="hide"] {
  display: none;
}

/* 首頁店家 */
.newStore {
  background: #FFFFFF;
}

.newStore ul,
.newStore li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newStore h3,
.newStore h2 {
  font-size: var(--fz36);
  font-weight: bold;
  text-align: center;
  color: var(--mainSubColor);
}

.newStoreSwiper {
  margin: var(--pd50) auto;
  height: auto;
  display: block;
  --swiper-theme-color: var(--mainColor);
  --swiper-pagination-bullet-width: 1em;
  --swiper-pagination-bullet-border-radius: 5px;
  --swiper-pagination-bullet-height: .3em;
}

.newStoreSwiper .swiper-wrapper {
  padding: var(--pd30) 0;
}

.newStoreSwiper .swiper-slide {
  height: calc((100% - 30px) / 2) !important;
}

.newStore li a {
  display: block;
  border-radius: var(--pd20);
  overflow: hidden;
  aspect-ratio: 4/3;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  transition: .3s;
}

.newStoreSwiper .swiper-pagination {
  position: relative;
}

/* 首頁廣告區塊 */
.indexOtherPic {
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #FFFFFF;
}

.indexOtherPic picture {
  display: block;
}

.indexOtherPic picture img {
  display: block;
  border-radius: var(--pd40);
}

@media (max-width:1440px) {

  img.banner02_text02,
  .banner02_textBox02 {
    margin-top: -1.5vw;
  }
}

@media (min-width:1201px) {
  .newStoreSwiper .swiper-pagination {
    display: none;
  }
}

.newStoreSwiper .swiper-pagination-bullet {
  transition: .3s;
}

.newStoreSwiper .swiper-pagination-bullet-active {
  width: calc(var(--swiper-pagination-bullet-width) * 1.5);
}

@media (hover: hover) {
  .newStore li a:hover {
    transform: scale(1.05);
  }
}

.newStore li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.moreStore {
  width: 765px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fz18);
  font-weight: bold;
  border: 1px solid #CCCCCC;
  text-align: center;
  margin: 0 auto;
  padding: var(--pd10);
  border-radius: var(--pd20);
  transition: .3s;
}

a.moreStore span {
  margin-left: 1em;
}

@media (hover: hover) {
  a.moreStore:hover {
    transform: scale(1.05);
  }
}

/* 共用icon */

.iconsLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.iconsLink a {
  border-radius: var(--pd40);
  background: #EEEEEE;
  padding: var(--pd10);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background linear .3s;
}

.iconsLink a img {
  transition: none;
}

@media (hover: hover) {

  .iconsLink a:hover img {
    filter: brightness(10);
  }

  a.icon_web:hover {
    background: var(--mainColor);
  }

  a.icon_line:hover {
    background: #01B701;
  }

  a.icon_fb:hover {
    background: var(--mainSubColor);
  }

  a.icon_map:hover {
    background: var(--redColor);
  }

}

/* 產品共同呈現 */
.product_list ul,
.product_list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.line_prods ul {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

.product_list figure {
  margin: 0;
  padding: 0;
}

.product_list li {
  height: auto;
  transition: .3s;
  position: relative;
}

.product_list li a {
  display: block;
  height: 100%;
  background: linear-gradient(to bottom, var(--bgColor) 40%, #FFFFFF 100%);
  padding: var(--pd10);
  padding-bottom: var(--pd30);
  border-radius: var(--pd20);
  /* box-shadow: var(--pd10) var(--pd10) 10px rgba(0, 0, 0, .1); */
  transition: .3s;
}

.line_prods li a {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-bottom: var(--pd10);
}

@media (hover: hover) {
  .product_list li:hover {
    transform: scale(1.05);
  }
}

.pdList_pic {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--pd15);
  overflow: hidden;
  background: url(../images/pd_logo.svg) center no-repeat, #FFFFFF;
  background-size: 30%;
  margin: 0;
}

.pdList_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pdList_pdInfo {
  padding: var(--pd10) var(--pd20) 0;
}

.pdList_pdName h4,
.pdList_pdName h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.pdList_pdName h4 {
  font-size: var(--fz12);
  font-weight: bold;
}

.pdList_pdName h3 {
  font-size: var(--fz15);
}

.pdList_pdPrice {
  margin-top: 1em;
  font-size: var(--fz12);
}

.oriPrice {
  text-decoration: line-through;
  color: #cccccc;
  font-size: var(--fz12);
}

.salePrice b {
  font-size: var(--fz18);
  color: var(--redColor);
  font-weight: 900;
  margin-left: .5em;
}

button.likeCollect {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  border: none;
  background: transparent;
  padding: var(--pd20) calc(var(--pd15) + var(--pd10));
  padding-left: var(--pd10);
  margin: 0;
  outline: none;
  cursor: pointer;
  color: #CCCCCC;
  font-size: var(--fz20);
}

button.likeCollect:focus,
button.like_checked {
  color: var(--redColor);
}

button.likeCollect i,
button.likeCollect::before {
  display: block;
}

button.likeCollect i.fa-solid {
  display: none;
}

button.like_checked i.fa-regular {
  display: none;
}

button.like_checked i.fa-solid {
  display: block;
}

/* 產品列表grid */
.product_list_ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: var(--pd10);
}

.pdList_top {
  padding: var(--pd20) 2%;
  background: #FFFFFF;
  border-radius: var(--pd15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--pd30);
}

.pdList_searchTitle,
.pdList_searchSub,
.allpd_count,
.allpd_switch {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.pdList_searchTitle {
  margin-bottom: 0;
  padding: 0;
}

.pdList_searchTitle h2 {}

.pdList_searchSub {
  font-weight: bold;
  font-size: var(--fz18);
}

.pdList_searchSub h2,
.pdList_searchSub p b {
  color: var(--mainColor);
  font-size: inherit;
}

.pdList_searchSub p {
  margin-left: .5em;
}

.allpd_count {
  justify-content: flex-end;
}

.allpd_switch button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: .5em;
  border-radius: 5px;
}

.allpd_switch button+button {
  margin-left: var(--pd10);
}

.allpd_switch button img {
  max-width: 25px;
  display: block;
}

.allpd_switch button.active {
  background: #EFEFEF;
}

.allpd_select {
  margin-left: var(--pd10);
}

.allpd_select select {
  border: 1px solid #cccccc;
  padding: var(--pd10);
  padding-right: var(--pd15);
  border-radius: 5px;
}


/* 產品列表輪播 */
.product_list .swiper ul {
  display: flex;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  padding: var(--pd20) var(--pd10);
  background: rgba(0, 0, 0, .5);
  color: #FFFFFF;
  border-radius: var(--pd15);
}

.index_pdSwiper {
  padding: var(--pd20) 0 var(--pd20);
  --swiper-navigation-sides-offset: 1em;
}

.product_list .swiper li {
  padding: 0;
}

/* 頁碼 */

.pageList {
  margin-top: var(--pd50);
}

.pageList ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pageList li {
  list-style: none;
  padding: 5px;
}

.pageList li a {
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: .2em;
  border-radius: 3em;
  line-height: 1;
  margin: 0 .5em;
  transition: .3s;
}

.pageList .FirstPage a,
.pageList .prePage a,
.pageList .nextPage a,
.pageList .lastPage a {
  width: auto;
  height: auto;
  padding: 0;
  position: relative;
}

.pageList .FirstPage a i,
.pageList .prePage a i,
.pageList .nextPage a i,
.pageList .lastPage a i {
  height: auto;
}

.pageList .FirstPage a {
  padding-left: 1px;
}

.pageList .FirstPage a::before {
  content: '';
  width: 2px;
  height: calc(100% - 2px);
  background: var(--textColor);
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 50px;
}

.pageList .lastPage a {
  padding-right: 1px;
}

.pageList .lastPage a::before {
  content: '';
  width: 2px;
  height: calc(100% - 2px);
  background: var(--textColor);
  position: absolute;
  right: 0;
  top: 1px;
  border-radius: 50px;
}

.pageList li.active a {
  background: var(--subColor05);
  color: #FFFFFF;
}

/* 產品介紹頁面 */
.prod_infoPage .mainPart {
  padding-top: var(--pd30);
}

.prod_infoPage .path {
  padding: 0 clamp(2vw, 5%, var(--pd20));
  margin-bottom: clamp(1vw, 2em, var(--pd15));
}

.prod_main {
  display: flex;
  flex-direction: column;
}

.prod_main>* {
  width: 100%;
}

.store_intr {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--pd20);
  padding: clamp(2vw, 3em, var(--pd30)) clamp(2vw, 5%, var(--pd20));
}

.store_intr .path {
  margin-bottom: 1em;
  width: 100%;
}

.store_info {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.store_intr section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.store_pic {
  max-width: 140px;
  overflow: hidden;
  height: auto !important;
}

.store_pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store_data {
  flex: 1;
  margin-left: var(--pd30);
}

.store_data h2 {
  font-family: var(--ffNotoSans);
  font-size: var(--fz18);
  font-weight: bold;
  color: var(--mainSubColor);
}

.store_data p {
  color: #868686;
  font-size: var(--fz12);
}

.store_data ul {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  font-size: var(--fz14);
}

.store_data li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store_intrLinks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
}

.store_iconLinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.store_iconLinks a {
  width: 34px;
  height: 34px;
}

.store_iconLinks a+a {
  margin-left: var(--pd10);
}

.store_iconLinks a img {
  max-width: 18px;
  display: block;
}

a.store_info_btn {
  width: 250px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  line-height: 1.2;
  padding: .5em;
  background: var(--mainSubColor);
  font-size: var(--fz16);
  margin-bottom: 0;
  margin-top: auto;
  border-radius: var(--pd15);
  transition: .3s;
}

a.store_info_btn:hover {
  background: #aaaaaa;
}

a.store_info_btn i {
  animation-name: unset;
  margin-left: 10px;
}

.infoPage_main {
  border-radius: var(--pd20);
  background: #FFFFFF;
  margin-top: var(--pd50);
  padding: clamp(2vw, 3em, var(--pd30)) clamp(2vw, 5%, var(--pd20));
}

@media (hover: hover) {
  a.store_info_btn:hover i {
    animation-name: fa-bounce;
  }
}

.pdInfo_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pd_infoPic {
  width: 800px;
  max-width: calc(50% - 20px);
}

.pd_infoData {
  width: 900px;
  max-width: 50%;
  position: relative;
}

.pd_infoData button.likeCollect {
  bottom: unset;
  top: 0;
  padding: 0;
  font-size: var(--fz40);
}

.pd_infoData h1 {
  color: #202020;
  font-size: var(--fz25);
}

.pd_infoData h3 {
  font-size: var(--fz16);
  margin: .5em 0;
}

.pd_infoShare a {
  font-size: 1.2em;
}

.pd_infoOverview {
  font-size: var(--fz14);
}

ul.pd_infoData_cont,
.pd_infoData_cont li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.pd_infoData_cont {
  border-top: 1px solid #cccccc;
  max-width: 800px;
  margin: 2em 0 5em;
  padding-top: 1em;
  font-size: var(--fz14);
}

.pd_infoData_cont li,
.pd_infoData h4 {
  display: grid;
  grid-template-columns: 4em 1fr;
  grid-gap: var(--pd15);
  padding: .5em 0;
}

.pd_infoData_cont li b {
  padding: .5em 0;
}

.infoPage_size>b+div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.infoPage_orPrice div {
  color: #AAAAAA;
  text-decoration: line-through;
  font-size: var(--fz18);
}

.infoPage_orPrice,
.infoPage_spPrice {
  align-items: center;
}

.infoPage_spPrice div {
  color: var(--redColor);
  font-weight: bold;
  font-size: var(--fz25);
}

.infoPage_size p {
  position: relative;
}

.infoPage_size label {
  cursor: pointer;
  position: relative;
  padding: .5em 1em;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #DDDDDD;
  text-align: center;
  letter-spacing: 0;
  display: block;
}

.infoPage_size p+p {
  margin-left: var(--pd10);
}

.infoPage_size input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.infoPage_size input:checked+label {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

.pd_infoPic_swiper .swiper-slide {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pd_infoPic_swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd_thumbPic_swiper {
  margin-top: var(--pd10);
  --swiper-theme-color: #FFFFFF;
  --swiper-navigation-size: 2em;
}

.pd_thumbPic_swiper .swiper-slide {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pd_thumbPic_swiper .swiper-button-next,
.pd_thumbPic_swiper .swiper-button-prev {
  transform: translateY(-50%);
  bottom: 0;
  margin: 0;
  align-items: center;
  display: flex;
  padding: var(--pd10);
}

.pd_thumbPic_swiper .swiper-button-next {
  right: 0;
}

.pd_thumbPic_swiper .swiper-button-prev {
  left: 0;
}

.pd_thumbPic_swiper .swiper-button-next svg,
.pd_thumbPic_swiper .swiper-button-prev svg {}

.pd_thumbPic_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.goBuy {
  background: var(--mainColor);
  border-radius: var(--pd10);
  color: #FFFFFF;
  max-width: 600px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5em 1em;
  font-size: 1.125em;
}

a.goBuy i {
  margin-right: var(--pd20);
}

@media (hover: hover) {
  a.goBuy:hover i {
    animation: cartGo ease-in-out .8s alternate infinite;
  }
}

@keyframes cartGo {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-1em);
  }

  60% {
    transform: translateX(-.5em);
  }

  100% {
    transform: translateX(-1em);
  }
}

.prodEdit_box {
  margin-top: var(--pd80);
}

ul.pd_tabTitle,
.pd_tabTitle li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.pd_tabTitle {
  display: flex;
  align-items: flex-end;
  margin-bottom: var(--pd20);
  border-bottom: 1px solid #CCCCCC;
}

.pd_tabTitle li {
  position: relative;
  width: 220px;
  max-width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd_tabTitle li+li {
  margin-left: var(--pd20);
}

.pd_tabTitle li a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-weight: bold;
  color: #666666;
  font-size: var(--fz18);
  border-radius: var(--pd10) var(--pd10) 0 0;
  background: #F0F0F0;
}

.pd_tabTitle li a span {
  padding: .5em;
  line-height: 1;
}

.pd_tabTitle li.activeTab {
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 0;
}

.pd_tabTitle li.activeTab a::after {
  content: '';
  width: calc(100% - 2px);
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 1px;
  bottom: -1px;
}

.pd_tabTitle li.activeTab a {
  border: 1px solid #cccccc;
  border-radius: 10px 10px 0 0;
  border-bottom-color: #FFFFFF;
  color: #212121;
  background: transparent;
}

.pd_tabTitle li.activeTab a span {
  border-radius: .5em .5em 0 0;
}

.pd_tabTitle li:first-child:last-child a {
  pointer-events: none;
  cursor: auto;
  text-align: center;
  justify-content: center;
}

/* .pd_tabTitle:has(li:first-child:last-child.activeTab) {
  justify-content: center;
} */

.prodEdit {
  padding: var(--pd50) var(--pd20);
}

.related_pd {
  margin-top: var(--pd80);
}

.related_pd h3 {
  font-size: var(--fz36);
  color: var(--mainSubColor);
  text-align: center;
  margin-bottom: var(--pd15);
}

a.back {
  background: var(--subColor05);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  width: 8em;
  height: 50px;
  margin: var(--pd50) auto 0;
}

/* 產品分類列表頁面 */
.class_pdList {
  background: var(--bgColor);
}

.class_pdList section {
  display: grid;
  grid-template-columns: clamp(230px, 15vw, 320px) 1fr;
  grid-gap: var(--pd50) 2vw;
}

.class_pdList .path {
  margin-bottom: var(--pd30);
}

/* 左側分類 */
.classMenu {
  background: #FFFFFF;
  border-radius: var(--pd20);
  padding: var(--pd20);
}

.classMenu h5 {
  font-size: var(--fz25);
  font-weight: bold;
  margin-bottom: var(--fz16);
  color: #202020;
}

.classMenuBox>a {
  display: block;
  width: fit-content;
  font-weight: bold;
  padding: var(--pd10);
}

.classMenuList {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--pd20);
  margin-top: 1em;
}

.classMenuList>li {
  position: relative;
  border: 1px solid #EFEFEF;
  border-radius: 5px;
  overflow: hidden;
}

.classMenuList li a {
  display: block;
  padding: var(--pd10) 50px var(--pd10) var(--pd10);
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}


.classMenuList>li.active>a {
  background: var(--mainColor);
  color: #FFFFFF;
}

.classMenuList>li.active>.toggle-btn::after {
  border-color: #FFFFFF;
}

.classMenuList>li>a {
  background: #EFEFEF;
}

.toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.active>.toggle-btn::after {
  transform: rotate(-135deg);
}

.classMenuList ul {
  list-style: none;
  padding: 0;
}

.classMenuList li li {
  border: 0;
}

.classMenuList ul li a {
  font-size: 0.9em;
  color: #666;
}

.classMenuList ul li.active a {
  background: #F7F7F7;
}


@media (hover: hover) {
  .classMenuList>li:hover>a {
    background: var(--mainColor);
    color: #FFFFFF;
  }

  .classMenuList>li:hover>.toggle-btn::after {
    border-color: #FFFFFF;
  }

  .classMenuList ul li:hover a {
    background: #F7F7F7;
  }
}

/* 店家列表頁 */


main.allst_list_box {
  padding: clamp(3vw, 3em, var(--pd100)) clamp(2vw, 5%, var(--pd20));
}

.storeListPage .path_box {
  padding: 0 clamp(2vw, 5%, var(--pd20));
  margin-bottom: clamp(1vw, 2em, var(--pd15));
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.storeListPage .path_box .path {
  min-width: 10em;
}

.storeSearchInfo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  font-weight: bold;
}

.storeSearchInfo h2 {
  color: var(--mainColor);
  font-weight: bold;
  margin-right: 1em;
  font-size: var(--fz16);
}

.storeSearchInfo h2 i {
  margin-right: .5em;
}

.storeSearchInfo p span {
  color: var(--mainColor);
}

.allSt_select {
  background: #FFFFFF;
  border-radius: var(--pd20);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.allSt_selectTitle {
  padding: 0;
  margin: 0;
}

.allSt_selectTitle>h1 {
  min-width: 5.5em;
  border: 0;
  padding: 0;
  margin: 0;
}


.allSt_select ul {
  padding-left: var(--pd40);
  flex: 1;
  border-left: 2px solid #DDDDDD;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8em, 1fr));
  grid-gap: .5em;
  font-size: var(--fz14);

}

.allSt_select a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7F7F7;
  padding: .5em;
  border-radius: 10px;
  transition: background linear .3s;
}

.allSt_select a i {
  color: #AAAAAA;
  margin-right: .5em;
}

.allSt_select a.active,
.allSt_select a:focus,
.allSt_select a:focus-visible {
  background: var(--mainSubColor);
  color: #FFFFFF;
}

.allSt_select a.active i,
.allSt_select a:focus i,
.allSt_select a:focus-visible i {
  color: var(--mainColor);
}

@media (hover: hover) {

  .allSt_select a:hover {
    background: var(--mainSubColor);
    color: #FFFFFF;
  }

  .allSt_select a:hover i {
    color: var(--mainColor);
  }

}

.storeListPage .allst_list {
  padding-left: 0;
  padding-right: 0;
}

.allst_list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: var(--pd20);
  padding-left: 0;
  padding-right: 0;
}

.allst_list li {
  padding: var(--pd20) var(--pd20);
  background: #FFFFFF;
  border-radius: var(--pd20);
  grid-gap: var(--pd20);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.allstList_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.allstList_pic a {
  width: 100%;
  height: 100%;
  display: block;
}

.allstList_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.allstList_data>*+* {}

.allstList_data h3 {
  color: var(--mainSubColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.allstList_data h3+p {
  font-size: .5em;
  color: #AAAAAA;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.allstList_data blockquote {
  font-size: var(--fz14);
  margin: .5rem 0;
}

.allstList_data blockquote p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.allstList_data blockquote p span {
  margin-right: .5em;
}

.allstList_icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--pd50);
  width: 28px;
  height: 28px;
  padding: 6px;
  background: #EEEEEE;
}

.allstList_icons a+a {
  margin-left: var(--pd10);
}

/* 收藏列表 */
.collect_list_box .path {
  margin-bottom: clamp(1.5vw, 2em, var(--pd20));
}

.collectPd_title {
  padding: clamp(1.3vw, 2em, var(--pd20)) clamp(2vw, 5%, var(--pd20));
}

.collectPd_title h3 {
  color: var(--mainSubColor);
  font-weight: bold;
  font-size: var(--fz25);
  width: 5.3em;
  border-right: 1px solid #AAAAAA;
  line-height: 1.2;
}

.collect_list,
.history_list {
  padding-left: 0;
  padding-right: 0;
}

.collect_list li {
  display: none;
}

.collect_list li:has(.like_checked) {
  display: block;
}

/* RWD */
@media (max-width:1440px) {
  .banner {
    width: 80%;
  }

  img.banner02_text01{
    max-height:6vw;
  }

  img.banner02_text02{
    max-height: 7vw;
  }

  img.banner02_text03{
    max-height: 8vw;
  }

  .saleLinks {
    width: 100%;
    margin-top: var(--pd30);
  }

  .saleLinks_main {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }
}

@media (max-width:1220px) {

  .banner,
  .topBoxMenu {
    width: 100%;
  }

  .topMenuList {
    height: auto;
  }

  .topBoxMenu ul,
  .topBoxMenu ul:has(li:nth-child(30)) {
    grid-template-columns: repeat(auto-fill, minmax(7em, 1fr));
  }

  .topBoxMenu ul>li {
    display: block;
  }
}

@media (max-width:1024px) {
  header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
  }

  .header {
    border-radius: 0;
    box-shadow: none;
    padding: var(--pd10) var(--pd80) var(--pd10) var(--pd15);
  }

  .head_logo {
    max-width: 160px;
  }

  .header_search {
    max-width: 400px;
  }

  footer section {
    grid-template-columns: 1.3fr 1fr;
  }

  ul.pd_infoData_cont {
    max-width: 100%;
  }

  .pd_infoPic,
  .pd_infoData {
    max-width: 100%;
    width: 100%;
  }

  .pd_infoData {
    margin-top: var(--pd40);
  }

  .swiperBannerBox {
    height: auto;
  }

  .banner_text {
    max-width: 60%;
  }

  .banner01_text {
    transform: translateY(-50%);
    top: 50%;
  }

  .banner01_textBox01 {
    margin-bottom: 2vw;
  }

  img.banner01_text01,
  img.banner01_text02 {
    max-height: 6.3vw;
  }

  .banner02_textBox01 {
    padding-left: 0;
  }

  .banner02_textBox01 b {
    padding-left: 3vw;
  }

  img.banner02_text01 {
    max-height: 9.7vw;
  }

  img.banner02_text02 {
    max-height: 11.3vw;
  }

  img.banner02_text03 {
    max-height: 11.9vw;
  }

  .counterBox {
    position: relative;
    margin: 0 auto;
  }

  .counterBox::before,
  .counterBox::after {
    display: none;
  }

  .class_pdList section {
    grid-template-columns: 1fr;
  }

  .classMenu {
    display: none;
  }

  .index_pdSwiper {
    --swiper-navigation-sides-offset: 0;
  }

  .product_list_ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .allSt_selectTitle {
    width: 100%;
    margin-bottom: var(--pd20);
  }

  .allSt_select ul {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width:980px) {
  .store_info {
    flex: unset;
  }

  .store_intrLinks {
    width: 100%;
    margin-top: var(--pd20);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}


@media only screen and (max-width:768px) {

  footer {
    padding: 0;
    font-size: .4em;
    position: relative;
  }

  footer::before {
    max-width: 50vw;
    transform: unset;
    left: 0;
    background-size: 100%;
    background-position: left -10vw top 3vw;
  }

  .footerMian section {
    position: relative;
    z-index: 4;
    flex-direction: column;
    align-items: center;
    align-content: center;
  }

  .swiperBanner,
  .topBoxMenu,
  .saleLinks {
    border-radius: var(--pd30);
  }

  .swiperBannerBox {
    aspect-ratio: 3/2;
  }

  .disclaimer {
    width: 360px;
    max-width: 100%;
  }

  .disclaimer h6 {
    text-align: center;
    font-size: var(--fz18);
    font-weight: bold;
  }

  .copy_part {
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    margin-bottom: var(--pd40);
    color: #FFFFFF;
  }

  .footerLogo {
    margin: 0;
    margin-bottom: var(--pd20);
  }

  .topBoxMenu .header_search {
    margin: var(--pd20) 0;
  }

  .line_prods ul {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .pd_tabTitle li+li {
    margin-left: 0;
  }

  .pd_tabTitle li a {
    height: auto;
    border-radius: 0;
  }

  .pd_tabTitle li.activeTab a {
    height: 2.5em;
  }

  .prodEdit {
    padding: var(--pd20) 0;
  }

  .prod_main {
    flex-direction: column-reverse;
  }

  .store_intr {
    margin-top: var(--pd50);
  }

  .infoPage_main {
    margin-top: 0;
  }

  .allst_list ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .allst_list li {
    grid-template-columns: 1fr;
  }

  .index_pdList_select{
    width: 100%;
    order: 3;
    margin-top: var(--pd10);
  }

  .index_pdList_select .select-styled{
    padding-left: .3em;
  }
}


@media (max-width:650px) {

  .counterBox {
    padding-left: 0;
    padding-right: 0;
  }

  .counterBox dt b {
    display: block;
    line-height: 1;
  }

  .saleLinks_main {
    grid-template-columns: 1fr;
  }

  .index_pdList_title{
    padding: var(--pd15);
  }

  .index_pdList_title h2,
  .index_pdList_title h3 {
    /* text-align: center;
    width: 100%;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: var(--pd10); */
  }

  .index_pdList_select {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .index_pdList_select .select{
    width: 100%;
    margin: 0;
  }

  .index_pdList_select button{
    margin: 0 auto;
    margin-top: var(--pd10);
  }

  .index_pdList_select .select:last-of-type {
    margin-right: 0;
  }

  .index_pdList_select .select-options-wrapper {
    left: 0;
  }

  .index_pdList_select .select-options-wrapper:has(li:nth-child(9)) {
    width: 200%;
    max-width: 95vw;
  }

  .index_pdList_select .select+.select .select-options-wrapper {
    left: unset;
    right: 0;
  }

  .banner_text {
    transform: translateY(-50%);
    top: 50%;
  }

  .banner01_logo {
    grid-row: unset;
  }

  .banner01_text {
    max-width: 40%;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding-top: 0;
  }

  .banner01_text02,
  .banner01_text03 {
    grid-column: 1 / span 2;
    position: relative;
  }

  .banner01_text02 {
    padding-left: 0;
  }

  .pdList_searchTitle,
  .allpd_count {
    width: 100%;
    justify-content: space-between;
  }

  .allpd_count {
    margin-top: var(--pd20);
  }

  .product_list_ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .line_prods ul {
    grid-template-columns: 1fr;
  }

  .store_iconLinks {
    width: 100%;
  }

  a.store_info_btn {
    margin-left: auto;
    margin-top: var(--pd20);
  }

  .allst_list ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

}


@media (max-width:450px) {
  .header .header_search {
    display: none;
  }

  .head_logo {
    max-width: 130px;
  }

  footer::before {
    max-width: 80vw;
    background-position: left -20vw top 5vw;
  }

  .pdList_pdInfo {
    padding-left: 0;
    padding-right: 0;
  }

  button.likeCollect {
    padding: var(--pd10);
  }

  .banner_text {
    max-width: 48%;
  }

  .swiper-slide-active img.banner01_logo {
    position: absolute;
    left: 0;
    top: 0;
    max-width: unset;
    max-height: 15vw;
  }

  .banner01_textBox02 b {
    margin-left: 0;
    padding: 0;
  }

  .banner01_textBox01 {
    padding-left: 15vw;
  }

  img.banner01_text03 {
    margin-top: 3vw;
  }

  img.banner02_text02,
  .banner02_textBox02 {
    margin-top: 0;
  }


  /* button.likeCollect{
    top: 0;
    bottom: unset;
  }

  button.likeCollect i.fa-regular{
    display: none;
  }

  button.likeCollect i.fa-solid{
    display: block;
    color: #cccccc;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.3));
  } */

  .pdList_pdPrice p b {
    display: inline-block;
  }

  .line_prods li a {
    grid-template-columns: 1fr;
    grid-gap: var(--pd10);
    width: 100%;
  }

  .line_prods .pdList_pic {
    display: none;
  }

  .pd_tabTitle li a {
    font-size: var(--fz16);
  }

  .pd_tabTitle li a span {
    width: 100%;
    text-align: center;
    padding: .5em .2em;
  }

  .pd_tabTitle li.activeTab {
    font-size: 1em;
  }

  .pd_infoData_cont li.infoPage_size {
    grid-template-columns: 1fr;
  }

  .pd_infoData h2 {
    font-size: var(--fz24);
  }

  ul.pd_infoData_cont {
    /* margin-top: 0; */
    margin-bottom: var(--pd30);
  }

  .product_list_ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .store_pic {
    max-width: 250px;
  }

  .store_data {
    width: 100%;
    flex: unset;
    margin: var(--pd20) 0;
  }

  .store_iconLinks {
    justify-content: flex-start;
  }

  a.store_info_btn {
    margin-left: 0;
  }

  .pd_infoData button.likeCollect {
    position: relative;
    top: 0;
    right: unset;
  }

  .pd_infoData_cont li+li {
    padding-top: 0;
  }

  .storeSearchInfo {
    width: 100%;
    flex: unset;
    margin-top: .5em;
  }
}

@media (max-width:375px) {
  .counterBox dt b {
    font-size: 1.95em;
  }

  .header_links a span {
    display: none;
  }

  .index_pdList_select .select {
    width: 100%;
    margin-right: 0;
  }

  .index_pdList_select .select-options-wrapper:has(li:nth-child(9)) {
    width: 100%;
  }

  .index_pdList_select .select+.select .select-options-wrapper {
    width: 100%;
    left: 0;
    right: unset;
  }

  .newStoreSwiper {
    --swiper-pagination-bullet-width: .5rem;
    --swiper-pagination-bullet-height: .5rem;
    --swiper-pagination-bullet-horizontal-gap: .15rem;
  }

  .newStoreSwiper .swiper-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .newStoreSwiper .swiper-pagination-bullet-active {
    width: var(--swiper-pagination-bullet-width);
  }

  .product_list_ul {
    grid-template-columns: 1fr;
  }

  .pd_tabTitle li.activeTab a {
    height: 3.5em;
  }

  .pd_tabTitle li a span {
    width: 3em;
  }
}

