@font-face {
	font-family: 'SweiCurveSansCJKtc-Regular';
	src: url(https://cdn.jsdelivr.net/gh/max32002/swei-curve-sans@2.129/WebFont/CJK%20TC/SweiCurveSansCJKtc-Regular.woff2) format("woff2")
	, url(https://cdn.jsdelivr.net/gh/max32002/swei-curve-sans@2.129/WebFont/CJK%20TC/SweiCurveSansCJKtc-Regular.woff) format("woff");
  }
img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body {
	font-family: Microsoft JhengHei;
	background-image: url(../images/bg.jpg);
	background-size: contain; /* 使背景圖片覆蓋整個容器 */
	/*box-sizing: content-box;
	background-attachment: fixed;*/
}

.desktop{
	display: block;
}
.mobile{
	display: none;
}
.section_title {
    top: -2vw;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute;
	z-index: 1;
    margin: 0;
    width: 700px;
    height: 200px;
    padding: 60px 0 60px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bolder;
    letter-spacing: 0;
    line-height: 1.5;
    letter-spacing: -0.2rem;
    text-align: center;
}
.section_title h1{
	font-family: 'SweiCurveSansCJKtc-Regular';
	font-weight: 900;
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: -0.05rem;
	text-align: center; 
    color: #1e3346;
}
.section_title p{
	white-space: nowrap;
	position: absolute;
    letter-spacing: 0;
    border-radius: 5rem;
    font-size: 1.2rem;
    display: block;
    width: fit-content;
	transform: translateX(-50%);
    padding: 0.5rem 1rem 0.3rem;
	left: 50%;
    color: #fffff0;
	background-color: #1e3346;
    border-radius: 50px;
}
.section_title .color01 {
	color: #e21b4f;
	margin: 0 0.3rem 0;
}

.section_title .color02 {
	color: #7023d9;
	margin: 0 0.3rem 0;
}

.section_title .color03 {
	color: #e11cb8;
	margin: 0 0.3rem 0;
}

.section_title .color04 {
	color: #0e55ff;
	margin: 0 0.3rem 0;
}

.section_title .color05 {
	color: #d3511d;
	margin: 0 0.3rem 0;
}

.section_title .color06 {
	color: #3135b9;
	margin: 0 0.3rem 0;
}

.section_title .color07 {
	color: #972727;
	margin: 0 0.3rem 0;
}

.section_title span {
	color: #37ea86;
	margin: 0 0.2rem 0 0.2rem;
}

/* 商品卡定義 */
.productInfo {
    margin: 1rem auto;
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.price-container {
 	display: flex; /* 使用 Flexbox 來排列子元素 */
    flex-direction: row; /* 將子元素垂直堆疊 */
    justify-content: flex-end; /* 將內容對齊到底部 */
    align-items: flex-end; /* 將項目對齊到容器的起始邊 */
}

.productname-label {
	color: #1e3346;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 0 0.5rem;
	line-height: 1.2;
	text-align: center;
}

.product-tag {
	display: flex; /* 用 flex 控制置中 */
    justify-content: center; /* 水平置中 */
    align-items: center;     /* 垂直置中 */
	flex-wrap: wrap;
	width: 80px;
	height: 80px;
    font-size: 0.8rem;
	text-align: center;
	vertical-align: middle; /* 使文字垂直置中 */
    background: rgb(0, 0, 0, 0.7);
	font-weight: bolder;
	background: #37EA86;
    color: #1e3346;
	border: #E9033D solid 1px;
	box-shadow: #E9033D 5px 5px 0;
	border-top: 0;
    padding: 0.8rem 0;
    position: absolute; 
	border-radius: 100rem;
    top: 1vw;
	right: 1vw;
}

.product-tag span {
	width: 100%;
	color: #E9033D;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-weight: bolder;
	letter-spacing: -0.1rem;
	font-size: 1.6rem;
}

.brand-label {
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	color: #fffff0;
	background-color: #1e3346;
	font-size: 1rem;
	padding: 0.5rem 0.8rem;
	margin: 0 0.8rem 0.6rem;
	border-radius: 5rem;
}

.brand-label span{
	font-weight: bolder;
	color: #37EA86;
}

.full-price-label {
    text-decoration: line-through;
    color: gray;
    font-size: 1rem; /* 設置原價的字體大小 */
    margin-right: 0.3rem; /* 添加右邊距以分開原價和特價 */
	line-height: 1.3;
}

.sale-price-label {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	margin-top: 0.3rem;
    color: #d1422b;
    font-weight: bold;
    font-size: 2rem; /* 設置特價的字體大小，為原價的兩倍 */
	letter-spacing: -0.15rem;
    font-style: italic;
}

.sale-price-label span {
	margin-right: 0.2rem;
	font-size: 1rem;
	letter-spacing: normal;
}

.grid-container{
	padding: 0 8rem;
	display: grid;
	gap: 1.2rem; /* 設定格子之間的間距 */
	align-items: anchor-center;
}
.grid-container .pic img{
	display: block;
	object-fit: cover;
}

.shadowFx{
	box-shadow: 0 30px 5px -15px rgb(0, 0, 0, 0.3);
}
.boxFx {
	border: #114e67 solid 2px;
	transition: all 0.3s;
	border-radius: 60px;
	box-shadow: 0 20px 0 0 rgba(0, 0, 0, 0.15);
}
.boxFx:hover {
	transform: scale(0.95); /* 添加縮小效果 */
	transition: all 0.1s; /* 可以根據需要調整時間 */
}
.shop-more-wrapper {
	text-align: center;
	margin: 2rem 0 0;
}
.shop-more-btn {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	display: inline-block;
	border-radius: 50px;
	background: linear-gradient(to top, #e7d023, #ede289);
	border: #1e3346 2px solid;
	color: #1e3346;
	font-size: 1.6rem;
	padding: 1.2rem 1.5rem;
	text-decoration: none;
	letter-spacing: -0.1rem;
	font-weight: bolder;
	margin: 0 0.3vw;
}
.shop-more-btn span {
	color: #37EA86;
}
.shop-more-btn::after{    
	margin-left: 1rem;
	display: inline-block;
    font: 25px FontAwesome;
	content: "\f0da";
}
.shop-more-btn:hover {
	transform: translateY(-8px) scale(1.05);
}
.eventContainer{
	margin: 4vw 12vw;
	align-content: center;
	position: relative;
	z-index: 1;
}
.style-wrap {
	position: relative;
    padding-top: 250px;
    padding-bottom: 146px;
}
.wrap-bg {
	background: url(../images/wp_c_bg.png) repeat-y;
	background-size: 100%;
	max-width: 1400px;
	margin: auto;
}

.style-wrap::before {
    /* 頂部背景 */
    content: '';
    position: absolute;
    top: 0;
    background: url(../images/wp_t_bg.gif) bottom center no-repeat;
	background-size: contain;
    height: 250px;
    width: 100%;
}

.style-wrap::after {
    /* 底部背景 */
    content: '';
    position: absolute;
    bottom: 0;
    background: url(../images/wp_b_bg.png) top center no-repeat;
	background-size: contain;
    height: 146px;
    width: 100%;
}
.flexBox{
	box-sizing: border-box;
	overflow: hidden;
	padding-bottom: 1rem;
}
.section-subheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.section-title-image img {
    height: auto;
    width: fit-content;
}
.btn-shop-more {
	letter-spacing: -0.05rem;
    padding: 10px 25px 10px 15px; /* 調整左邊距以容納三角形icon */
    background-color: #114e67;
    color: #ffffe9;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 0.6rem;
    white-space: nowrap;
    transition: background-color 0.3s;
    position: relative; /* 為了讓三角形icon能夠正確定位 */
}
.btn-shop-more::after {
    content: '';
    position: absolute;
    right: 8px; /* 調整三角形icon的位置 */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fffff0; /* 三角形icon的樣式 */
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.btn-shop-more:hover {
    background-color: #333;
}
.Box_bg{
	background-color: #fffff0;
	background-image: url(../images/discount_bg.png);
	background-size: cover;
	background-position: bottom;
}
.discountBlock {
	margin-top: -12vw;
}

.discountBlock .title {
	font-family: monospace;
	color: #fff3cf;
	font-weight: 300;
	font-size: 1.65rem;
	letter-spacing: -0.1rem;
	width: 100%;
	padding: 2rem 0 1.3rem;
	margin: 0 0 2rem;
	text-align: center;
	background-color: #37EA86;
	background: url(../images/discount_title_bg.png);
	background-size: 100% 100%;
	border-bottom: 2px #1e3346 solid;
}

.discountBlock h1 {
	color: #1e3346;
	font-size: 1.6rem;
	letter-spacing: 0.05rem;
	margin-bottom: 0.6rem;
	padding: 0 0.5rem 0.4rem;
	font-family: 'SweiCurveSansCJKtc-Regular';
	background: linear-gradient(transparent 45%, rgb(55, 234, 134, 0.5) 0%);
	/*background: linear-gradient(transparent 45%, rgb(255, 132, 24, 0.3) 0%);*/
}

.discountBlock p {
	margin: 0 1rem 1rem;
	line-height: 1.5;
	text-align: center;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: -0.05rem;
}

.discountBlock p span {
	font-size: 0.55rem;
	letter-spacing: -0.03rem;
	margin: 0 0.1rem;
}

.discountBlock b {
	line-height: 1.3;
	color: #d1422b;
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: -0.1rem;
	margin: 1rem 0.3rem 0 0;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.discountBlock p a {
	color: #1e3346;
	text-decoration: underline;
}

/* 版面多一排 banner */
.discountBlock .grid-container{
	background: none;
	display: grid;
	padding: 0;
	gap: 1.2rem;
	align-items: stretch;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	grid-template-areas:
	  "item01 item02 item03 item04"
	  "item05 item06 item07 item08";
  }
  
  /* 8 張卡片維持原對應 */
  .discountBlock .grid-container > .flexBox:nth-child(1) { grid-area: item01; }
  .discountBlock .grid-container > .flexBox:nth-child(2) { grid-area: item02; }
  .discountBlock .grid-container > .flexBox:nth-child(3) { grid-area: item03; }
  .discountBlock .grid-container > .flexBox:nth-child(4) { grid-area: item04; }
  .discountBlock .grid-container > .flexBox:nth-child(5) { grid-area: item05; }
  .discountBlock .grid-container > .flexBox:nth-child(6) { grid-area: item06; }
  .discountBlock .grid-container > .flexBox:nth-child(7) { grid-area: item07; }
  .discountBlock .grid-container > .flexBox:nth-child(8) { grid-area: item08; }

.taiwanWearBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.taiwanWearBlock .productImg{
	object-fit: contain;
	box-sizing: border-box;
}
.taiwanWearBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.taiwanWearBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item02 item03 item04"
	  "item05 item06 item07 item08";
	margin: 0 auto;
  }

.taiwanWearBlock .grid-container > div{
	height: 100%;
}

.taiwanWearBlock .grid-container .item01 { grid-area: item01; }
.taiwanWearBlock .grid-container .item02   { grid-area: item02; }
.taiwanWearBlock .grid-container .item03    { grid-area: item03; }
.taiwanWearBlock .grid-container .item04   { grid-area: item04; }
.taiwanWearBlock .grid-container .item05   { grid-area: item05; }
.taiwanWearBlock .grid-container .item06   { grid-area: item06; }
.taiwanWearBlock .grid-container .item07   { grid-area: item07; }
.taiwanWearBlock .grid-container .item08   { grid-area: item08; }

.bankBonusBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.bankBonusBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.bankBonusBlock .grid-container {
	display: grid;
	grid-template-areas:
	  "item01 item01 item01 item02";
	margin: 0 auto;
	gap: 0;
  }

.bankBonusBlock .grid-container > div{
	height: 100%;
}

.bankBonusBlock .grid-container .item01 { grid-area: item01;}
.bankBonusBlock .grid-container .item02   { grid-area: item02; }


.brandGiftBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.brandGiftBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.brandGiftBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item01 item04 item04"
	  "item02 item03 item05 item06";
	margin: 0 auto;
  }

.brandGiftBlock .grid-container > div{
	height: 100%;
}

.brandGiftBlock .brand-label{
	position: absolute;
	bottom: 0.5rem;
	border: rgb(255, 255, 255, 0.5) solid 1px;
}

.brandGiftBlock .product-tag{
    width: 85px;
    height: 85px;
    text-align: center;
    vertical-align: middle;
    background: rgb(0, 0, 0, 0.7);
    font-weight: bolder;
    color: #fff;
    border: initial;
    box-shadow: initial;
    padding: 0.8rem 0;
    position: absolute;
    border-radius: initial;
    top: 0;
    right: 1vw;
}

.brandGiftBlock .product-tag span {
	color: #37EA86;
}

.brandGiftBlock .grid-container .item01 { grid-area: item01; padding-bottom: 0;}
.brandGiftBlock .grid-container .item02   { grid-area: item02; }
.brandGiftBlock .grid-container .item03    { grid-area: item03; }
.brandGiftBlock .grid-container .item04   { grid-area: item04; padding-bottom: 0;}
.brandGiftBlock .grid-container .item05   { grid-area: item05; }
.brandGiftBlock .grid-container .item06   { grid-area: item06; }

.halloweenGoodsBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.halloweenGoodsBlock .productImg{
	object-fit: contain;
	box-sizing: border-box;
}
.halloweenGoodsBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.halloweenGoodsBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item02 item04 item06"
	  "item01 item03 item05 item06";
	margin: 0 auto;
  }

.halloweenGoodsBlock .grid-container > div{
	height: 100%;
}

.halloweenGoodsBlock .grid-container .item01 { grid-area: item01; }
.halloweenGoodsBlock .grid-container .item02   { grid-area: item02; }
.halloweenGoodsBlock .grid-container .item03    { grid-area: item03; }
.halloweenGoodsBlock .grid-container .item04   { grid-area: item04; }
.halloweenGoodsBlock .grid-container .item05   { grid-area: item05; }
.halloweenGoodsBlock .grid-container .item06   { grid-area: item06; }

.newArrivalBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.newArrivalBlock .productImg{
	object-fit: contain;
	box-sizing: border-box;
}
.newArrivalBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.newArrivalBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item02 item04 item06"
	  "item01 item03 item05 item06";
	margin: 0 auto;
  }

.newArrivalBlock .grid-container > div{
	height: 100%;
}

.newArrivalBlock .grid-container .item01 { grid-area: item01; }
.newArrivalBlock .grid-container .item02   { grid-area: item02; }
.newArrivalBlock .grid-container .item03    { grid-area: item03; }
.newArrivalBlock .grid-container .item04   { grid-area: item04; }
.newArrivalBlock .grid-container .item05   { grid-area: item05; }
.newArrivalBlock .grid-container .item06   { grid-area: item06; }

.tab-container {
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 水平置中 */
    margin: 0 0 30px; /* 可選：添加上下邊距 */
}

.tab-button {
	font-family: 'SweiCurveSansCJKtc-Regular';
	font-weight: bold;
	letter-spacing: 0.01rem;
	border: #1e3346 2px solid;
	background: #fffff0;
	color: #1e3346;
    font-size: 1.5rem;
    padding: 15px 25px; /* 按鈕內邊距 */
    cursor: pointer; /* 鼠標懸停時顯示手型 */
    margin: 0 5px; /* 按鈕之間的間距 */
	border-radius: 50px;
	white-space: nowrap;
}

.tab-button:hover {
    transform: translateY(-6px); 
}

.tab-button.active {
	color: #1e3346;
	background: linear-gradient(to top, #e7d023, #ede289);
	position: relative; /* 為偽元素定位提供參考 */
}

.gatherGiftBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.gatherGiftBlock .productImg{
	object-fit: contain;
	box-sizing: border-box;
}
.gatherGiftBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fffff0;
	text-align: center;
}

.gatherGiftBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item02 item03 item04"
	  "item05 item06 item07 item08";
	margin: 0 auto;
}

.gatherGiftBlock .grid-container > div{
	height: 100%;
}

.gatherGiftBlock .grid-container .item01 { grid-area: item01; }
.gatherGiftBlock .grid-container .item02 { grid-area: item02; }
.gatherGiftBlock .grid-container .item03 { grid-area: item03; }
.gatherGiftBlock .grid-container .item04 { grid-area: item04; }
.gatherGiftBlock .grid-container .item05 { grid-area: item05; }
.gatherGiftBlock .grid-container .item06 { grid-area: item06; }
.gatherGiftBlock .grid-container .item07 { grid-area: item07; }
.gatherGiftBlock .grid-container .item08 { grid-area: item08; }


.toyPromoBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.toyPromoBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
}

.toyPromoBlock .grid-container .text-container {
	color: #1e3346;
	position: absolute;
	width: 80%;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 2;
}

.toyPromoBlock .grid-container h2 {
	font-size: 1.4rem;
	margin: 0.6rem 0 0;
}

.toyPromoBlock .grid-container p {
	z-index: 2;
	font-size: 1rem;
}
  
.toyPromoBlock .grid-container .gridBox {
	overflow: hidden;
	background-color: #fffff0;
	position: relative;
}

.toyPromoBlock .grid-container .gridBox img:not(.shopNow img) {
	width: 100%;
	height: 100%;
	display: block;
}

.toyPromoBlock .grid-container .gridBox .shopNow {
	position: absolute;
	bottom: 20px;  /* 距離底部的距離 */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.toyPromoBlock .grid-container .gridBox .shopNow img {
  width: 100%;
  height: auto;
}

.addOnGiftBlock .section_title{
	background-image: url(../images/section_title_bg.png);
}

.addOnGiftBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
}

.addOnGiftBlock .grid-container .text-container {
	color: #1e3346;
	position: absolute;
	width: 80%;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 2;
}

.addOnGiftBlock .grid-container h2 {
	font-size: 1.4rem;
	margin: 0.6rem 0 0;
}

.addOnGiftBlock .grid-container p {
	z-index: 2;
	font-size: 1rem;
}
  
.addOnGiftBlock .grid-container .gridBox {
	overflow: hidden;
	background-color: #fffff0;
	position: relative;
}

.addOnGiftBlock .grid-container .gridBox img:not(.shopNow img) {
	width: 100%;
	height: 100%;
	display: block;
}

.addOnGiftBlock .grid-container .gridBox .shopNow {
	position: absolute;
	bottom: 20px;  /* 距離底部的距離 */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.addOnGiftBlock .grid-container .gridBox .shopNow img {
  width: 100%;
  height: auto;
}

.brandHighlight .section_title{
	background-image: url(../images/section_title_bg.png);
}

.brandHighlight .grid-container {
	grid-template-columns: repeat(4, 1fr);
}

.brandHighlight .content{
	align-items: normal;
	box-sizing: border-box;
}

.brandHighlight .grid-item{
	background-color: #fffff0;
}
.brandHighlight .brandTitleTag{
    color: #CD1D47;
    display: inline-block;
    font-size: 1.05rem;
    line-height: 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: #CD1D47;
    border-image: initial;
    padding: 0.1vw 0.5vw;
	width: fit-content;
	margin: auto;
}
.brandHighlight .brandTitleTag.none{
	line-height: 1.5rem;
	visibility: hidden;
}
.brandHighlight .brandTitle{
	text-transform: uppercase;
    font-size: 1.3rem;
	font-weight: bolder;
    color: #1e3346;
    margin: 0.75rem 0;
}
.brandHighlight .brandTitle02{
	color: #646464;
	font-size: 1.1rem;
	font-weight: bold;
}
.brandHighlight .pic{
	border-top: 1px solid #9b9b9b;
	margin-top: 1vw;
}
.brandHighlight .actionBtn{
	text-decoration: none;
	filter: none;
}
.brandHighlight .actionBtn:hover{
    transform: scale(1);
}
.eventHighlight .section_title{
	background-image: url(../images/section_title_bg.png);
}
.eventHighlight .grid-item{
	background-color: #f0f0f0;
	padding-bottom: 2rem;
}
.eventHighlight h2{
	padding: 0.8rem;
	font-size: 1.25rem;
	line-height: 1.3;
	color: #CD1D47;
	font-weight: bolder;
}
.eventHighlight p{
	line-height: 1.5rem;
	margin: 0 auto 1rem auto;
	color: #333;
}

/*******************follow us*******************/
.fu_wrap {
	width:100%;
	height:auto;
	position:relative;
	padding: 0;
  }
  .fu {
	width:100%;
	margin: 0 auto;
	box-sizing: border-box;
  }
  .fu_title {
	width:88%;
	max-width:750px;
	height:auto;
	margin:0px auto 1.25vw auto;
  }
  .fu_flexG4_container {
	border-radius: 0;
	margin:2vw auto 0;
	display:flex;
	display: -webkit-flex;
	flex-wrap:wrap;
	justify-content:space-around;
	transition:  0.2s;
	padding: 0 20%;
	box-sizing: border-box;
	background-color: #fffff0;
	position:relative;
  }
  .fu_flexG4_container::after {
	content: '';
	width: 18vw;
	height: 3vw;
	background-image: url(../images/social_title.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size:contain;
	position: absolute;
	top: -1.2vw;
	left: 50%;
	z-index: 1;
	margin-left: -9vw;
  }
  .fu_flexG4_container a, .fu_flexG4_container img {
	width:100%;
	height:auto;
	display:block;
  }
  a.fu_flexG4_item {
	border-radius: 2%;
	flex-basis:22%;
	text-align: center;
  }
  .fu_item_info {
	width:80%;
	margin:2vw auto;
	color:#555;
  }
  .fu_item_icon img {
	width:32%;
	margin:0 auto;
  }
  .fu_item_name {
	font-size: 1.2vw;
	padding: 0.5% 1.5%;
	margin: 5% 0;
	font-weight: 600;
  }
  .fu_item_account {
	font-size: 0.8vw;
	line-height: 1.5em;
	margin-bottom: 10%;
  }
  .fu_item_cta {
	font-size: 1vw;
	line-height: 3vw;
	border-top:1px solid #ccc;
	transition: 0.2s;
  }
  .fu_item_cta:hover {
	color: #d64930;
  }


.grid-item {
	overflow: hidden;
	text-align: center;
}
.eventHighlight .grid-container{
	grid-template-columns: repeat(4, 1fr);
}

.content{
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;	
	align-items: center;
}
.actionBtn{
	text-decoration: none;
	filter: none;
	transform: scale(1);
	transition: all 0.3s;
}
.actionBtn:hover{
    transform: scale(1.05);
	transition: all 0.1s;
}
.shopNow{
	/*font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;*/
	font-size: 1.1rem;
	font-weight: 600;
	color: #FEF8DD;
	/*border: #1e3346 2px solid;*/
	border-radius: 50px;
	padding: 1rem 1.5rem;
	letter-spacing: -0.05rem;
	background-color: #d64930;
	background: linear-gradient(to top, #1fe776, #91eeba);
	background: linear-gradient(to top, #1e3346, #3f5971);
	background: #060423;
	/*background: linear-gradient(to top, #d64930, #ed664e);*/
}

.shopNow::after {
    margin-left: 0.5rem;
    display: inline-block;
    font: 1rem FontAwesome;
    content: "\f0da";
}

.shopNow_b{
	width: 100%;
	font-size: 1.3rem;
	font-weight: bold;
	padding: 1.3rem 0;
	color: #1e3346;
	background: #37EA86;
}
.learnMore_b{
	width: fit-content;
	font-size: 1.05rem;
	font-weight: bold;
	padding: 0.75rem 1rem;
	color: #fffff0;
	background: #1e3346;
}
.learnMore_b::after{    
	margin-left: 0.75rem;
	display: inline-block;
    font: 15px FontAwesome;
	content: "\f0da";
}
.shopMore{
	display: block;
	width:fit-content;
	font-size: 1.5rem;
	border-radius: 50px;
	border: #edd2ae solid 2px;
	padding: 0.75rem 1.5rem;
	color: #edd2ae;
	background: rgba(0, 0, 0, 0.8);
	margin: auto auto 0.5rem;
}
.event-info{
	color: #333;
	font-weight: bold;
	margin: 1rem 0 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.boxShadow{
	box-shadow:0.75rem 0.75rem 0px rgba(0, 0, 0, 0.1);	
}

/* response */

@media (max-width: 1440px) {
	.brand-label {
		font-size: 0.85rem;
		padding: 0.45rem 0.8rem;
		margin: 0 0.5rem 0.3rem;
	}
	.productInfo {
		margin: 0.8rem auto;
	}
	.product-tag {
		width: 5vw;
		height: 5vw;
		font-size: 0.8vw;
		padding: 1vw 0.5vw; /* 內邊距 */
		box-shadow: #E9033D 0.3vw 0.3vw 0;
		right: 2vw;
		top: 1vw;
	}
	.product-tag span{
		font-size: 1.6vw;
	}
	.section_title{
		padding: 4rem 0 2rem;
		box-sizing: border-box;
	}
	.section_title h1{
		font-size: 3.6rem;
	}
	.section-subheader {
		width: 90%;
		margin: auto;
	}
	.eventContainer{
		margin: 0 3%;
	}
	.grid-container{
		width: 100%;
		margin: auto;
		gap: 0.8rem;
		padding: 0 6.5vw;
	}
	.productname-label {
		font-size: 1.3vw;
		margin: 0.5vw;
	}
	.imageBlock {
		width: 90%;
		margin: auto;
	}
	.discountBlock .eventContainer{
        max-width: 95%;
        margin: auto;
	}
	.discountBlock .grid-container {
		gap: 0.8rem;
	}
	.discountBlock h1 {
		font-size: 2vw;
		margin-bottom: 1vw;
	}
	.discountBlock p, .discountBlock b {
		font-size: 1.8vw;
		line-height: 1.5;
	}
	.addOnGiftBlock .grid-container h2 {
		font-size: 1.3vw;
	}
	.addOnGiftBlock .grid-container p {
		font-size: 1vw;
	}
	.eventHighlight h2 {
		font-size: 1.2rem;
		line-height: 1.3;
		padding: 1rem 0.6rem;
	}
	.brandHighlight .grid-container {
		grid-template-columns: repeat(3, 1fr); /* 螢幕小於max-width時，變為三欄 */
	}
	.full-price-label {
		font-size: 1vw;
	}
	.sale-price-label {
		font-size: 2.2vw;
	}
	.sale-price-label span {
		font-size: 1.4vw;
	}
	a.fu_flexG4_item {
		flex-basis: 32%;
	}
	.fu_flexG4_container {
		padding: 0;
	  }
}

@media (max-width: 1024px) {
	.product-tag {
		width: 8vw;
		height: 8vw;
		font-size: 1.8vw;
		padding: 1.5vw 0.5vw; /* 內邊距 */
		right: 5%;
	}
	.product-tag span{
		font-size: 2.5vw;
	}
	.boxFx:hover, .shop-more-btn:hover, .btn-shop-more:hover, .actionBtn:hover {
		transform: scale(1);
	}
	.shop-more-btn {
		font-size: 1.5rem;
		padding: 1rem 1.5rem;
	}
	.section_title {
		margin: 0 auto;
	}
	.section_title h1{
		letter-spacing: -0.15rem;
		font-size: 3.6rem;
	}
	.discountBlock {
		margin-top: -10%;
	}
	.discountBlock .grid-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"item01 item02"
			"item03 item04"
			"item05 item06"
			"item07 item08";
	}
	.discountBlock h1{
		font-size: 4vw;
	}
	.discountBlock p, .discountBlock b {
		font-size: 2.8vw;
	}
	.taiwanWearBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item02"
		"item03 item04"
		"item05 item06"
		"item07 item08";
	}
	.brandGiftBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item01"
		"item02 item03"
		"item04 item04"
		"item05 item06";
	}
	.halloweenGoodsBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		  "item01 item02"
		  "item01 item03"
		  "item04 item06"
		  "item05 item06";
	}
	.newArrivalBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		  "item01 item02"
		  "item01 item03"
		  "item04 item06"
		  "item05 item06";
	}
	.productname-label {
		font-size: 2vw;
	}
	.gatherGiftBlock .grid-container{
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item02"
		"item03 item04"
		"item05 item06"
		"item07 item08";
	}
	.toyPromoBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.addOnGiftBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.eventHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); 
	}
	.eventHighlight h2 {
		line-height: 1.3;
	}
	.brandHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); /* 螢幕小於max-width時，變為兩欄 */
	}
	.full-price-label {
		font-size: 2vw;
	}
	.sale-price-label {
		font-size: 3.6vw;
	}
	.sale-price-label span {
		font-size: 2.2vw;
	}
}

@media(max-width: 768px){
	.desktop{
		display: none;
	}
	.mobile{
		display: block;
	}
	.boxFx{
		box-shadow: 0 15px 0 -5px rgba(0, 0, 0, 0.2);
	}
	.productInfo {
		margin: 3vw auto;
	}
	.style-wrap {
		position: relative;
		padding-top: 33vw;
		padding-bottom: 0;
	}
	.wrap-bg {
		background: url(../images/wp_c_bg.png) repeat-y;
		background-size: 100%;
		max-width: 100%;
		margin: auto;
	}
	
	.style-wrap::before {
		/* 頂部背景 */
		content: '';
		position: absolute;
		top: 0;
		background: url(../images/wp_t_bg.png) bottom center no-repeat;
		background-size: contain;
		height: 33vw;
		width: 100%;
	}
	
	.style-wrap::after {
		/* 底部背景 */
		content: '';
		position: absolute;
		bottom: -146px;
		background: url(../images/wp_b_bg.png) top center no-repeat;
		background-size: contain;
		width: 100%;
	}
	.discountBlock .eventContainer{
        margin: auto 5%;
	}
	.eventContainer {
		margin: 15% 5%;
	}
	.grid-container {
		gap: 1.8vw;
	}
	.section-subheader{
		width: 90%;
		margin: auto;
	}
	.section-title-image img{
		width: 100%;
	}
	.section_title {
		width: 100%;
		height: auto;
		padding: 3vw 0;
    }
	.section_title h1 {
		letter-spacing: 0;
		font-size: 7vw;
	}
	.section_title b {
		letter-spacing: -0.2vw;
	}
	.section_title p {
		width: fit-content;
		font-size: 2.5vw;
		padding: 1vw 2vw;
	}
	.btn-shop-more {
		font-size: 1rem;
	}
	.discountBlock {
		margin-top: 0;
	}
	.discountBlock .title {
		font-size: 4vw;
		padding: 3.6vw;
		margin-bottom: 3vw;
	}
	.discountBlock .grid-container {
		gap: 0.6rem;
	}
	.discountBlock h1{
		font-size: 5vw;
		margin-bottom: 3vw;
	}
	.discountBlock p, .discountBlock b {
		font-size: 2.8vw;
		margin-bottom: 2vw;
	}
	.discountBlock p span{
		font-size: 2vw;
		margin: 0 0.1rem;
	}
	.imageBlock {
		margin: 0 auto 5vw;
	}
	.shopNow {
		font-size: 3.2vw;
		padding: 2.5vw 3.6vw;
	}
	.price-container {
		display: block;
	}
	.product-tag {
		width: 13vw;
		height: 13vw;
		font-size: 3vw;
		padding: 2.5vw; /* 內邊距 */
		position: absolute; 
		box-shadow: #E9033D 0.6vw 0.6vw 0;
	}
	.product-tag span{
		font-size: 3.4vw;
		margin: auto;
	}
	.brand-label {
		font-size: 2.6vw;
		padding: 1.2vw 2vw;
		margin-bottom: 2vw;
	}
	.productname-label {
		font-size: 3vw;
		font-weight: bold;
	}
	.addOnGiftBlock .grid-container .text-container {
		bottom: 3vw;
	}
	.addOnGiftBlock .grid-container h2 {
		font-size: 2.2vw;
		margin: 1vw 0 0;
	}
	.addOnGiftBlock .grid-container p {
		font-size: 1.3vw;
	}
	.tab-button {
		font-size: 4vw;
		white-space: nowrap;
		margin: 0 0.5vw;
		padding: 2vw 3vw;
	}
	.full-price-label {
		font-size: 2.6vw;
	}
	.productname-label {
		margin: 0 2vw;
	}
	.sale-price-label {
		font-size: 4.6vw;
	}
	.sale-price-label span {
		margin-right: 0.5vw;
		font-size: 3.6vw;
	}
	.brandGiftBlock .product-tag {
		padding: 1.2vw;
		width: 15vw;
		height: 15vw;
		right: 2vw;
	}
	.bankBonusBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item01"
		"item02 item02";
	}
	/*******************follow us*******************/
	.fu_title {
		width:96%;
		margin:3vw auto;
	}
	.fu_flexG4_container {
		flex-wrap:wrap;
		justify-content:space-around;
		margin:8vw auto 0;
		padding:2vw;
	}
	.fu_flexG4_container::after {
		width: 42vw;
		height: 7vw;
		top: -5vw;
		margin-left: -21vw;
	}
	a.fu_flexG4_item {
		margin:1vw 0; /*宮格與下方版位間距-可調整*/
		flex-basis: 32%;
	}
	.fu_item_name {
		font-size: 3vw;
		padding: 0.5% 1.5%;
		margin: 5% 0;
		font-weight: 600;
	}
	.fu_item_account {
		font-size: 2vw;
		line-height: 1.5em;
		margin-bottom: 10%;
	}
	.fu_item_cta {
		font-size: 2vw;
		line-height: 6vw;
		border-top:1px solid #ccc;
	}
}

@media(max-width: 500px){
	.full-price-label {
		font-size: 4.2vw;
	}
	.sale-price-label {
		font-size: 6.5vw;
	}
	.brand-label {
		letter-spacing: 0.1vw;
		font-size: 3vw;
		padding: 1.5vw 2.2vw;
		margin-bottom: 2vw;
	}
	.shop-more-wrapper {
		text-align: center;
		margin: 3vw 0 0;
	}
	.shop-more-btn {
        font-size: 4vw;
        padding: 2vw 3.5vw;
	}
	.shop-more-btn::after{    
		margin-left: 3vw;
		font: 5vw FontAwesome;
	}
	.boxFx {
		border-radius: 10vw;
	}
	.shopNow {
		font-size: 5vw;
		padding: 3vw 5vw;
	}
	.section_title p {
		padding: 0.5vw 2vw;
	}
	.eventContainer {
		padding: 0 0 5%;
	}
	.flexBox {
		padding-bottom: 8vw;
	}
	.discountBlock .grid-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		grid-template-areas:
			"item01"
			"item02"
			"item03"
			"item04"
			"item05"
			"item06"
			"item07"
			"item08";
	}
	.discountBlock .title {
        font-size: 8vw;
        padding: 8vw;
        margin-bottom: 5vw;
	}
	.discountBlock h1 {
		font-size: 8vw;
		margin: 3vw;
	}
	.discountBlock p, .discountBlock b {
		font-size: 6vw;
        margin-bottom: 2vw;
	}
	.event-info {
		font-size: 5vw;
		margin: 5vw 0 0;
	}
	.bankBonusBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item01"
		"item02 item02";
	}
	.addOnGiftBlock .grid-container .text-container {
		bottom: 3vw;
	}
	.addOnGiftBlock .grid-container h2 {
		font-size: 2.5vw;
		margin: 1.5vw 0 0;
	}
	.addOnGiftBlock .grid-container p {
		font-size: 1.8vw;
	}
	.brandHighlight .grid-container{
		gap: 3vw;
	}
	.brandHighlight .grid-container .gridBox {
		border-radius: 8vw;
	}
	.brandHighlight .brandTitle {
		font-size: 4.2vw;
	}
	.brandHighlight .brandTitle02 {
		padding: 0 3vw 3vw;
		line-height: 1.5;
		font-size: 3.8vw;
		letter-spacing: 0;
	}
	.shopNow_b {
		font-size: 3.6vw;
		padding: 3vw;
	}
	.eventHighlight .grid-container{
		gap: 3vw;
		grid-template-columns: 1fr;
	}
	.eventHighlight h2 {
		line-height: 1.2;
		padding: 5vw;
		font-size: 5vw;
	}
	.eventHighlight p {
		font-size: 3.2vw;
		line-height: 1.2;
	}
	.productname-label {
		font-size: 3vw;
		letter-spacing: -0.1vw;
		margin-bottom: 1vw;
	}
}