/*modify by pekey 20190523*/
@charset "utf-8";
/* CSS Document */

/*------------------------------------------CSS Setting Start-------------------------------*/

/*================*/
/*-- loading --*/
/*================*/

.loading {
 	position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #FFF;
	text-align:center;
	
	/*新增by pekey 20171211*/
	padding-top:250px;
 } 
 
	
	/*Loading畫面CSS開始*/
	#circularG{
		position:relative;
		width:58px;
		height:58px;
		margin: auto;
	}
	
	.circularG{
		position:absolute;
		background-color:rgb(201,9,21);  /*此為Loding的點點顏色*/
		width:14px;
		height:14px;
		border-radius:9px;
			-o-border-radius:9px;
			-ms-border-radius:9px;
			-webkit-border-radius:9px;
			-moz-border-radius:9px;
		animation-name:bounce_circularG;
			-o-animation-name:bounce_circularG;
			-ms-animation-name:bounce_circularG;
			-webkit-animation-name:bounce_circularG;
			-moz-animation-name:bounce_circularG;
		animation-duration:1.1s;
			-o-animation-duration:1.1s;
			-ms-animation-duration:1.1s;
			-webkit-animation-duration:1.1s;
			-moz-animation-duration:1.1s;
		animation-iteration-count:infinite;
			-o-animation-iteration-count:infinite;
			-ms-animation-iteration-count:infinite;
			-webkit-animation-iteration-count:infinite;
			-moz-animation-iteration-count:infinite;
		animation-direction:normal;
			-o-animation-direction:normal;
			-ms-animation-direction:normal;
			-webkit-animation-direction:normal;
			-moz-animation-direction:normal;
	}
	
		#circularG_1{
			left:0;
			top:23px;
			animation-delay:0.41s;
				-o-animation-delay:0.41s;
				-ms-animation-delay:0.41s;
				-webkit-animation-delay:0.41s;
				-moz-animation-delay:0.41s;
		}
		
		#circularG_2{
			left:6px;
			top:6px;
			animation-delay:0.55s;
				-o-animation-delay:0.55s;
				-ms-animation-delay:0.55s;
				-webkit-animation-delay:0.55s;
				-moz-animation-delay:0.55s;
		}
		
		#circularG_3{
			top:0;
			left:23px;
			animation-delay:0.69s;
				-o-animation-delay:0.69s;
				-ms-animation-delay:0.69s;
				-webkit-animation-delay:0.69s;
				-moz-animation-delay:0.69s;
		}
		
		#circularG_4{
			right:6px;
			top:6px;
			animation-delay:0.83s;
				-o-animation-delay:0.83s;
				-ms-animation-delay:0.83s;
				-webkit-animation-delay:0.83s;
				-moz-animation-delay:0.83s;
		}
		
		#circularG_5{
			right:0;
			top:23px;
			animation-delay:0.97s;
				-o-animation-delay:0.97s;
				-ms-animation-delay:0.97s;
				-webkit-animation-delay:0.97s;
				-moz-animation-delay:0.97s;
		}
		
		#circularG_6{
			right:6px;
			bottom:6px;
			animation-delay:1.1s;
				-o-animation-delay:1.1s;
				-ms-animation-delay:1.1s;
				-webkit-animation-delay:1.1s;
				-moz-animation-delay:1.1s;
		}
		
		#circularG_7{
			left:23px;
			bottom:0;
			animation-delay:1.24s;
				-o-animation-delay:1.24s;
				-ms-animation-delay:1.24s;
				-webkit-animation-delay:1.24s;
				-moz-animation-delay:1.24s;
		}
		
		#circularG_8{
			left:6px;
			bottom:6px;
			animation-delay:1.38s;
				-o-animation-delay:1.38s;
				-ms-animation-delay:1.38s;
				-webkit-animation-delay:1.38s;
				-moz-animation-delay:1.38s;
		}
		
		
		
		@keyframes bounce_circularG{
			0%{
				transform:scale(1);
			}
		
			100%{
				transform:scale(.3);
			}
		}
		
		@-o-keyframes bounce_circularG{
			0%{
				-o-transform:scale(1);
			}
		
			100%{
				-o-transform:scale(.3);
			}
		}
		
		@-ms-keyframes bounce_circularG{
			0%{
				-ms-transform:scale(1);
			}
		
			100%{
				-ms-transform:scale(.3);
			}
		}
		
		@-webkit-keyframes bounce_circularG{
			0%{
				-webkit-transform:scale(1);
			}
		
			100%{
				-webkit-transform:scale(.3);
			}
		}
		
		@-moz-keyframes bounce_circularG{
			0%{
				-moz-transform:scale(1);
			}
		
			100%{
				-moz-transform:scale(.3);
			}
		}
	/*Loading畫面CSS結束*/

.loading_tit{
	padding:20px 0px 0px 15px;
	display:inline-block;
	font-size:16px;
	font-weight:bold;
	color:#333;
	font-family:微軟正黑體;
	text-align:center;
}







#top{
	position:absolute;
	top:-100%;
}

.headertop{
	border-top: 0px solid #fff0;
}





/*/////////////////////////////////////////////////////////*/
/*-------版頭--------*/
/*/////////////////////////////////////////////////////////*/

.header {
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	transition: 0.3s ease all;
	background-color: var(--primary_color);
	
}

/*浮動*/
.header.fixed{
	box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3);
	transition: 0.3s ease all;
	padding: 0px;
	
}

	.header > .wrap {
		display: flex;
		flex-direction: column;
		position: relative;
		/* 調整 頭版 modify by Joanna 20251121 */
		/* max-width: clamp(36.7188rem, 61.1979vw, 73.4375rem); */
		gap: 10px;
	}




@media (max-width: 990px){
	.header > .wrap {
		
		gap: 0;
	}

}



	




/*================*/
/*-- 手機menu按鍵 --*/
/*================*/
.search_mb {
	position:absolute;
	width:20px;
	top: 62%;
	transform: translateY(-50%);
	right: 0;
	cursor:pointer;
	display:none;
	z-index: 99;
}
	
		/*點擊*/
		.search_mb.active{
			top:16px;
    		transform: unset;
		}
			

@media (max-width: 990px){
	
	/*手機menu按鍵*/
	.search_mb {
		/* display:block; */
		/* top: 50%; */
	}

}


/*================*/
/*-- 版頭上方 --*/
/*================*/
.header_top{
	padding: .75rem 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}
.header_top .top_item_left,
.header_top .top_item_right{
	display: flex;
	align-items: center;
}
.header_top .top_item_left .top_item,
.header_top .top_item_right .top_item{
	border-right: 1px solid #000;
	padding: 0 .3125rem;
}
.header_top .top_item_left .top_item:first-of-type,
.header_top .top_item_right .top_item:first-of-type{
	padding-left: 0;
}
.header_top .top_item_left .top_item:last-of-type,
.header_top .top_item_right .top_item:last-of-type{
	padding-right: 0;
	border-right: none ;
	
}
.header_top .top_item_left .top_item a,
.header_top .top_item_right .top_item a
{
	border-right: none;
	padding: 0 .3125rem;
	color: #000;
	text-decoration: none;
	font-size: 1rem clamp(.875rem,0.8333vw,1rem);
	
}
.header_top .top_item_left .top_item:last-of-type a,
.header_top .top_item_right .top_item:last-of-type a
{
	padding: 0;
	
}
.header_top .top_item_left .top_item a:hover,
.header_top .top_item_right .top_item a:hover
{
	opacity: 0.5;
	transition: all 0.3s ease;
	
}
@media(max-width:990px){
	.header_top{
		display: none;
	}
}

/*================================*/
/*----- 版頭下方 -----*/
/*================================*/

/* 調整 頭版 modify by Joanna 20251121  */
.header_bottom{
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 12fr 1fr;
	flex: 1;
}



/*================================*/
/*----- logo -----*/
/*================================*/
.logo_area{
	/* 調整 頭版 modify by Joanna 20251121 */
	height: clamp(2.375rem, 3.9583vw, 4.75rem);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 1.25rem;
	margin-bottom: .3125rem;
}
.logo{
	width: clamp(2.375rem, 3.9583vw, 4.75rem);
	width: clamp(3.125rem,5.2083vw,6.25rem);
	margin: 0;
	transition: 0.3s ease all;
	float: left;
	box-sizing: border-box;
	animation-name: bounceIn;
	animation-duration: 1.2s;
	animation-fill-mode: both;
	visibility: visible;
	padding: 0px;
}

	.logo a{
		display: block;
		position: relative;
		padding-top: 73.68%;
		transition:0.3s ease all;
	}
	
		.logo img{
			width:100%;
			height:auto;
			transition: all 0.3s ease-out;
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
			float: none;
			width: 100% !important;
			height: 100% !important;
			object-fit: cover;
			transition: all 0.3s ease-out;

		} 
		
		/*hover*/
		.logo a:hover{
			transform: scale(0.9);
			animation: bounceIn;	
		}
	

@media(max-width:1280px){
	.logo_area{
		padding: 1.875rem .3125rem;
	
	}
}
	
@media(max-width:990px){

	
	.header_bottom{
		grid-template-columns: 50px auto;
	}

	.logo_area{
		justify-content: flex-start;
	}

}
	



/*================================*/
/*----- 版頭右 -----*/
/*================================*/

.header_rightArea{
    /* float: right; */
    box-sizing: border-box;
    /* padding-top: 42px; */
    display: grid;
	/* 調整 頭版 modify by Joanna 20251121  */
    /* grid-template-columns: auto 6.25rem; */
}
.header_rightArea .top_item{
    display: none;

}
@media(max-width:990px){
	.header_rightArea{
		display: block;
	}
}


@media (max-width: 540px){
	.header_rightArea .top_item{
		/* display: block; */
	}
}


/*================================*/
/*----- 語系 language -----*/
/*================================*/
.language{
	font-size: 14px;
	position: absolute;
	top: 17px;
	right: 30px;
}
	.language_content{
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
		.language_list{	
			box-sizing: border-box;	
		}
			.language_list a{
				display: block;
				text-decoration: none;
				color: #8c8c8c;
				padding: 0 10px;
			}








/*================================*/
/*----- 版頭搜尋區塊 -----*/
/*================================*/



		
.search_area{border-right: 2px #fff solid;}

	.search-container {
		text-align: center;
		/* margin: 50px; */
		position: relative;
		max-width: unset;
		width: 100%;
		border-radius: unset;
		overflow: hidden;
		border: unset;
		padding: 0 65px 0 15px;
		padding: 0 clamp(2rem, 3.3854vw, 4.0625rem) 0 clamp(.4375rem, 0.7813vw, .9375rem);
		background-color: #fff;
		padding-right: 70px;
	}

		.search-box {
			/* width: 300px;
			padding: 10px;
			font-size: 16px; */
		}
			.search-container input{
				background: transparent;
				line-height: 35px;
				line-height: normal;
				height: 40px;
				height: 2.5rem;
				width: 100%;
				font-size: inherit;
				border: none;
			}
			.search-container input:focus{
				border: none;
			}

		/*搜尋icon*/
		.search-button{
			transition: 0.3s ease all;
			padding: 0px 0px;
			height: 90%;
			/* width: 55px; */
			font-size: 16px;
			background-color: var(--primary_color);
			color: #fff;
			border: none;
			cursor: pointer;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			right: 0.2%;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0 20px;
		}
			.search-button label{
				position: relative;
				display: block;
			}
				.search-button label div{
					position:relative;
					display:block;
				}
				.search-button label div svg{
					width:20px;
					height: 20px;
					display: block;
					fill: #000;
				}
				
			/*hover*/
			.search-button:hover label{
				opacity:0.5;
				transition: 0.3s ease all;
			}	



@media(max-width:540px){
	.search_area{
		/* display: none; */
	}
}


/*================================*/
/*----- 購物車 -----*/
/*================================*/
/* 調整 頭版 modify by Joanna 20251121  start*/
.shop_area{
	width: 150px;
	display: flex;
	justify-content: end;
	gap: 1.25rem;
}

.cart_area{
	width: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-direction: column;
}
.cart_area:hover{
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.3s ease;
}
	.cart_area .cart_img{

	}
		.cart_area .cart_img img{
			width: 1.5625rem;
			height: auto;
		}
	.cart_area  .num{
		position: absolute;
		aspect-ratio: 1;
		border-radius: 50%;
		width: 22px;
		right: -10px;
		top: -13px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		background-color: var(--second_color);
	}
		.cart_area  .num span{
			color: #FFF;
			font-size: .6875rem;
		}
	.cart_area .cart_text{
		margin-top: .375rem;

	}




@media (max-width: 990px){

/*----- 版頭右 -----*/
.header_bottom .shop_area{display: none;}
}







/* 調整 頭版 modify by Joanna 20251121  end */

/*================================*/
/*----- 主按鍵 -----*/
/*================================*/

	.navbar{
		margin-right: -30px;
	}
	
	/*浮動*/
	/* .header.fixed .navbar{
		padding: 0px 0px;
	} */
	
		
		.nav{
			float: left;
			box-sizing: border-box;
			position: relative;
		}
			.nav > a{
				display: block;
				text-decoration: none;
				color: #000;
				font-size: 18px;
				transition: 0.3s ease all;
				position: relative;
				padding: 10px 30px 20px;
			}
			
			/*hover*/
			.nav:hover > a {
				opacity: 0.5;
				transition: 0.3s ease all;
				position: relative;
			}
			
			.nav > a:before {
				content: "";
				position:
				absolute;
				background-color: #c3c3c3;
				width: 1px;
				height: 15px;
				left: 0;
				top: 50%;
				-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
			}						

			.nav:first-of-type > a:before {
				display:none;
			}

				/*主按鍵展開*/
				.navOpen {
					position:absolute;
					left:50%;
					padding:9px 0px 0px;
					width: 180px;
					transform: translateX(-50%);
					display:none;
					z-index: 2;
				}
				.nav:hover .navOpen.pc {
					display:block;
				}
				.navOpenBg {
					position:relative;
				}


				.navOpen.mobile {
					display:none;
					opacity:0;
					z-index:-999999;
					transform: unset;
					padding: 0;
				}
				.navOpen.pc .navOpenBg:before {
					position: absolute;
					content:'';
					border-bottom: solid 8px rgba(0,0,0,0.65);
					border-left: solid 12px rgba(255,255,255,0);
					border-right: solid 12px rgba(255,255,255,0);
					top:-8px;
					left:50%;
					transform: translateX(-50%);
				}

					.navOpenList {
					}
						.navOpenList a {
							text-align:center;
							font-size:15px;
							color:#fff;
							line-height:22px;
							padding:7px 5px;
							background:rgba(0,0,0,0.65);
							display: block;
							transition:0.3s ease all;
							text-decoration: none;
						}
							.navOpenList a:hover {
								background: var(--primary_color);
							}



									
	






@media (max-width: 990px){

/*----- 版頭右 -----*/
.header_rightArea{
	position: fixed;
	width: 200px;
	top: 0px;
	right: -200px;
	height: 100%;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.7);
	transition: 0.3s ease all;
	padding: 52px 0px 0;
	overflow-y: auto;
	z-index: 4;
	float: none;




	
	position: unset;
	right: unset;
	height: auto;
	overflow-y: unset;
	background: transparent;
	padding: 0;
	width: auto;
}
.header_rightArea.active {
	right: 0px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}



	/*----- 語系 language -----*/
	.language{
		position: unset;
		top: unset;
		right: unset;
	}
		.language_content{
			justify-content: center;
		}
			.language_list a {
				padding: 13px 5px;
			}






	/*-----PC搜尋區塊-----*/
	.search_areaPC{
		position: unset;
		right: unset;
		top: unset;
	}
		/*搜尋icon*/
		.search_iconPC{
			display: none;
		}
		.search_inAreaPC{
			position: unset;
			width: auto;
			max-width: unset;
			display: block;
			top: unset;
			right: unset;
			padding: 0px 0px;
		}
			.search_inBoxPC {
				position: relative;
				width: 100%;
				padding: 0px 50px 0px 10px;
				box-sizing: border-box;
			}
				.search_inBoxPC a{
					display: none;
				}
				.search_inBoxPC button[type="button"], 
				.search_inBoxPC button[type="submit"]{
					right: 0px;
					bottom: 0px;
					width: 40px;
					height: 40px;
					background-color: #fff0;
					display: flex;
				}
				.search_inBoxPC button[type="button"] svg ,
				.search_inBoxPC button[type="submit"] svg{
					width: 15px;
					height: 15px;
					margin: auto;
					color: var(--primary_color);
				}
















	/*----- 主按鍵 -----*/
	.navbar {	
		margin-right: 0px;	
	}
		.nav {
			float:none;
			width: 100%;
			padding: 0px;
			position: relative;
		}
		
			.nav > a {
				border:none;
				border-radius:0px;
				text-align:left;
				padding: 13px 15px;
				color: #cecece;
				border-bottom: 1px solid #5b5b5b;
				font-size: 14px;
			}
			.nav > a:before {
				display: none;
			}
			
					
				/*展開選單*/
				.navOpen {
					position:relative;
					top:0px;
					left:0px;
					margin:0px;
					width:auto;
					border-radius:0px;
					background:#444;
				}
				
				/*hover*/
				.nav:hover .navOpen.pc ,
				.fixed_nav:hover .navOpen.pc{
					display:none;
				}	
				
					
				.navOpen.mobile {
					display: none;
					opacity: 1;
					z-index: 1;
					position: relative;
				}
					.navOpenBg {
						box-shadow: none;
					}
						.navOpen.mobile  .navOpenList {
						}
						.navOpen.mobile  .navOpenList > a {
							text-align:left;
							font-size:14px;
							color: #cecece;
							line-height:22px;
							padding: 12px 15px 12px 30px;
							background-color: rgba(0, 0, 0, 0.7);
							transition:0.3s ease all;
							text-decoration:none;
							display:block;
							border-bottom: 1px solid #5b5b5b;
						}
						.navOpenList > a:hover {
							opacity: 0.7;
						}
						.search_inBoxPC input[type="search"] ,
						.search_inBoxPC input[type="text"] {
							border-bottom: 0px solid #c3c3c3;
						}
}



/* 當前模式 class 加 show */
.fixedSearch_bg.show{
	display: block;
	z-index: 999;
}

	.fixedSearch_bg .in{
		position: relative;
		width: 100%;
		height: 100%;
	}

		/* 搜尋區塊 */
		.fixedSearch_bg .search_bg{
			display: block;
			position: absolute;
			left: 50%;
			top: 35%;
			-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
			width: 60%;

			overflow: hidden;
			background: transparent;
			border: unset;
			box-shadow: unset;
			border-bottom: 1px solid #cccccc;

			box-sizing: border-box;
			padding: 0px;
			border-radius: 3px;
			z-index: 15;
			-webkit-transition: top .2s;
			transition: top .2s;
		}

			.fixedSearch_bg .search_bg .search_in{
				position: relative;
				width: 100%;
				padding: 0px 70px 0px 37px;
				box-sizing: border-box;
			}

				/* icon */
				.fixedSearch_bg .search_bg .icon{
					position: absolute;
					left: 7px;
					top: 50%;
					-webkit-transform:  translateY(-50%);
					transform:  translateY(-50%);

					width: 20px;
					height: 20px;
					line-height: 39px;
				}

				/* 輸入框 */
				.fixedSearch_bg .search_bg input[type="text"]{
					background: transparent;
					border: 0px;
					background-color: transparent;
					font-size: 15px;
					/* font-weight: bold; */
					line-height: 40px;
					height: 40px;
					padding: 0px;
					width: 100%;
					border-bottom: unset;
					border-radius: 0;
					color: #999999;
				}

				.fixedSearch_bg .search_bg input[type="submit"]{	
					position: absolute;
					right: 0px;
					top: 50%;
					-webkit-transform:  translateY(-50%);
					transform:  translateY(-50%);


					width: 60px;
					height: 32px;
					line-height: 35px;
					font-size: 14px;
					color: #ffffff;
					background-color: #555555;
					border-radius: 32px;
					z-index: 2002;
					text-align: center;
					letter-spacing: 0;
					
					z-index: 2002;
				}

				.fixedSearch_bg #searchClose_MB{	
					position: absolute;
					right: 11px;
   					top: 13px;
					text-decoration: none;
					z-index: 2002;
					color: #000000;
				}
					.fixedSearch_bg #searchClose_MB span{
						
					}
						.fixedSearch_bg .searchClose_MB{
							font-size: 45px;
							font-weight: lighter;
						}	

@media (max-width: 767px) {

	/* 版腳浮動搜尋區塊 */
	.fixedSearch_bg {
	}
}

@media (max-width: 641px) {

	/* 搜尋區塊 */
	.fixedSearch_bg .search_bg{
		width: 90%;
	}

	.fixedSearch_bg .in {
		padding: 0px 15px;
		box-sizing: border-box;
	}
}