/*modify by pekey 20190523*/
@charset "utf-8";
/* CSS Document */

/*------------------------------------------CSS Setting Start-------------------------------*/
:root {
	/* --primary: Aquamarine; */
	--foreign_font: 'Quicksand', sans-serif;
	/*全站外文字型*/
	--mandarin_font: 'Noto Sans TC', sans-serif;
	/*全站中文字型*/
	--primary_color: #5b5642;
	/*全站主色色碼*/
	--sec_color: #838987;
	/*全站第二配色色碼*/
}

/*================*/
/*-- 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: var(--primary_color);
	/*此為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;
}




/*/////////////////////////////////////////////////////////*/
/*-------版頭--------*/
/*/////////////////////////////////////////////////////////*/
.headerBg .wrap{
	width: 70%;
}
.header {
	position: fixed;
	top: 0;
	z-index: 999;
	width:1200px;
	transition: 0.3s ease all;
	background-color: var(--primary_color);
	margin: 0 auto;
	margin-top: 20px;
	left: 50%;
    transform: translateX(-50%);
	/* border-top: 5px solid var(--primary_color); */
}
.header.header_in{
	box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.3);
	transition: 0.3s ease all;
	padding: 0px;
	/* background-color: #fff; */
	margin-top: 0;
	width: 100%;
}
/*浮動*/
.header.fixed {
	box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.3);
	transition: 0.3s ease all;
	padding: 0px;
	/* background-color: #fff; */
	margin-top: 0;
	width: 100%;
}

/* .header.fixed .logo{
	display: none;
} */

.header .wrap {
	position: relative;
	width: 93%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 0 auto;
	gap:  clamp(1.5625rem, 2.6042vw, 3.125rem);
}

.header.fixed .wrap {
	width: 80%;
	margin: 0 auto;
	gap: clamp(6.25rem, 10.4167vw, 12.5rem);
}


/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.header .wrap {
		gap: 8.75rem;
	}
	.header.fixed .wrap {
		gap: 4.375rem;
	}
}

@media (max-width: 990px){


	
}

@media(max-width:990px){
	.header {
		width: 100%;
		margin-top: 0px;
		left: unset;
		transform: unset;
	}
	.header .wrap {

		justify-content: flex-start;

	}

	.header.fixed .wrap {
		width: 90%;
		margin: 0 auto;
		gap: clamp(6.25rem, 10.4167vw, 12.5rem);
	}
}


/*================*/
/*-- 手機menu按鍵 --*/
/*================*/
.menu_btn {
	position: absolute;
	width: 20px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	cursor: pointer;
	display: none;
	z-index: 99;
}
.header.fixed .menu_btn span {
	background-color: #000;
}
.menu_btn span {
	display: block;
	background-color: #000;
	height: 2px;
	margin: 4px 0px;
	transition: 0.3s ease all;
	border-radius: 3px;
}

/*點擊*/
.menu_btn.active {
	/* top: 35px; */
	/* transform: unset; */
}
.header.fixed .menu_btn.active span {
	background-color: #fff;
}
.menu_btn.active span {
	background-color: #fff;
}

.menu_btn.active span:nth-of-type(1) {
	transform: rotate(39deg);
	transform-origin: top left;
}

.menu_btn.active span:nth-of-type(2) {
	opacity: 0;
}

.menu_btn.active span:nth-of-type(3) {
	transform: rotate(-39deg);
	transform-origin: bottom left;
}

@media (max-width: 990px) {

	/*手機menu按鍵*/
	.menu_btn {
		display: block;
	}

}




/*================================*/
/*----- logo -----*/
/*================================*/
.logo {
	width:  clamp(7.8125vw, 10.4167vw, 12.5rem);
	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: 6px 0;
}

.logo a {
	display: block;
	transition: 0.3s ease all;
}

.logo img {
	width: 100%;
	height: auto;
}

/*hover*/
.logo a:hover {
	transform: scale(0.9);
	animation: bounceIn;
}

.header.fixed .logo {
	background-color: transparent;
	width: 170px clamp(5.3125rem,8.8542vw,10.625rem);
}


@media (max-width:990px) {
	.logo {
		transition: 0.3s ease all;
		width:9.375rem;
		padding: 10px;
		float: none;
		margin: 0;
		/* background-color: transparent; */
	}
	.header.fixed .logo {
		width:9.375rem;
	}

	/* .header.fixed .logo {
		display: block;
	} */

}

@media (max-width: 1100px) {}




/*================================*/
/*----- 版頭右 -----*/
/*================================*/

.header_rightArea {
	float: none;
	box-sizing: border-box;
	/* padding-top:  clamp(.625rem, 1.0417vw, 1.25rem); */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
	gap: 10px;
	/* flex: 1; */
}


.header.fixed .header_rightArea{
	/* padding-top: 12px; */
}

@media(max-width:990px){
	.header.fixed .header_rightArea{
		padding-top: 52px;
	}
}

/*================================*/
/*----- 版頭右側副功能 -----*/
/*================================*/
.sub{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	display: flex;
	gap: clamp(.4375rem,0.7813vw,.9375rem);
	align-items: center;
}
@media(max-width:990px){
	.sub{
		position: relative;
		top: 0;
		transform: unset;
	}
}
/*================================*/
/*----- 購物車 -----*/
/*================================*/
.cart_area{
	
	
}
.cart_area .cart{
	
}
.cart_area .cart a{
	color: #000;
	position: relative;
}
.cart_area .cart a .cart_num{
	position: absolute;
	right: -11px;
	top: -14px;
	padding: 3px;
	border-radius: 50%;
	background-color: var(--second_color);
	color: #fff;
	font-size: 12px;
	z-index: 2;
	text-align: center;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cart_area .cart a i{
	color: #000;
	font-size:  1.25rem;
}
.cart_area.pc{
	
}
.cart_area.mb{
	display: none;

}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.cart_area{

			
		right:  7.5rem;
	}
}

@media(max-width:990px){
	.cart_area{
	
		position: absolute;
			
		/* flex: 1; */
			
		right: 2.5rem;
	}
	.cart_area.pc{
		display: none;
	}
	.cart_area.mb{
		display: block;
	}
}
/*================================*/
/*----- 語系 language -----*/
/*================================*/
.language_areaPC {
	
}

.language {
	padding: 0;
	text-align: center;
	/* border-radius: 26px; */
	/* background-color: #fff; */
	/* border: solid 0.5px #bfbfbf00; */
}
.language.member a{
	display: flex;
	align-items: center;
	gap: .3125rem;
	font-size:  0.75rem;
}
.language.member a .login{
	color: #000;
	/* flex: 1; */
}
.header.fixed .language i {
	/* color: #000; */
}
.language i {
	font-size:  1.25rem;
	line-height: 20px;
	color: #000;
}

.language>a {
	font-size: 12px;
	line-height: 34px;
	color: #58595b;
	display: block;
	/*border: 1px #c3c3c3 solid;
		border-radius: 5px;*/
	text-decoration: none;
	padding: 0px 0px 0px 0px;
	/* position: relative; */
	/* background-color: #b0b0b0; */
}
.header.fixed .language>a:before {
	/* border-top: solid 7px #000; */
}



.language_list {
	position: absolute;
	width: 115px;
	top: 51px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	background: rgba(0, 0, 0, 0.65);
	
	border-radius: 3px;
	display: none;
	margin: 5px 0px 0px;
	box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.2);
	font-size: 14px;
}

.language_list {
	text-align: center;
}

.language_list_in>a {
	color: #898989;
	display: inline-block;
	text-decoration: none;
	font-size: 12px;
	line-height: 24px;
	text-decoration: none;
	color: #fff;
	padding: 7px 5px
}

.language>a:hover,
.language_list>a:hover {
	opacity: 0.5;
}



.header.fixed .language_areaPC {
	/* top: 34px; */
}

/* 手機版語系 */

.language_areaMB{
	
}

.language_content{
	display: flex;
	justify-content: space-around;
	padding: 10px 0 ;
}
.language_content_in a{
	color: #cecece;
	line-height: 24px;
}

.language_areaPC.mb{
	display: none;
}


/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.language_list {
	top: 40px;
}

}

@media(max-width:990px){
	.language_areaPC {
		display: none;
	}
	
}



/*  */
/*================================*/
/*----- 版頭搜尋區塊 -----*/
/*================================*/


/*-----PC搜尋區塊-----*/
.search_areaPC {

}

/*搜尋icon*/
.search_iconPC {
	transition: 0.3s ease all;
}

.search_iconPC label {
	position: relative;
	display: block;
}

.search_iconPC label div {
	position: relative;
	display: block;
}

.header.fixed .search_iconPC label div svg {
	/* fill: #000; */
}
.search_iconPC label div svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: #000;
}

/*hover*/
.search_iconPC:hover label {
	opacity: 0.5;
	transition: 0.3s ease all;
}



.search_inAreaPC {
	-webkit-transition: top .2s;
	transition: top .2s;
	position: absolute;
	overflow: hidden;
	width: 250px;
	max-width: 350px;
	/* max-width: 100%; */
	display: none;
	top: 45px;
	top: clamp(1.375rem, 2.3438vw, 2.5rem);
	right: 0px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 5px 5px 5px  gray;

	box-sizing: border-box;
	padding: 5px 15px 5px 40px;
}


/*搜尋類別*/
/* .search_categoryAreaPC3{
		position: absolute;			
		left: 15px;
		width: 59px;
		z-index: 2;
	}
		.search_categoryAreaPC3 select{
			color: #fff;
			background: #000 url(../images/select_arrow_white.png) no-repeat;
			background-size: 13px;
			background-position: right;
			padding-right: 18px !important;
		} */

.search_inBoxPC {
	position: relative;
	width: 100%;
	padding: 0px 45px 0px 0px;
	box-sizing: border-box;
}

.search_inBoxPC input[type="search"] {
	background: transparent;
	border: 0px;
	color: #333;
	font-size: 13px;
	font-weight: bold;
	line-height: 22px;
	height: 30px;
	padding: 0px;
	border-radius: 0;
	width: 100%;
	border-bottom: 1px solid #c3c3c3;
}

.search_inBoxPC input[type="search"]:focus {
	border: 0px;
}

.search_inBoxPC button[type="button"] {
	position: absolute;
	right: -15px;
	bottom: -5px;
	width: 40px;
	height: 40px;
	border-color: #fff0;
	text-align: center;
	cursor: pointer;
	background-color: var(--primary_color);
}

.search_inBoxPC button[type="button"] svg {
	width: 15px;
	height: 15px;
	display: inline-block;
	/* color: var(--primary_color); */
	color: #000;
}

.search_inBoxPC .search_closePC {
	z-index: 2002;
	color: #3e3a39;
	position: absolute;
	left: -30px;
	/* top: -10px; */
	top: 50%;
	transform: translateY(-50%);
	text-decoration: none;
}

.search_inBoxPC span {
	display: inline-block;
	vertical-align: middle;
}

.search_closePC {
	font-size: 22px;
	font-weight: lighter;
}

.search_inBoxPC span svg {
	width: 15px;
	height: 15px;
	fill: var(--primary_color);
}




.header.fixed .search_areaPC {
	/* top: 35px; */
}
















/*================================*/
/*----- 主按鍵 -----*/
/*================================*/

.navbar {
	/* margin-right: 64px; */
	/* width: 60%;
    	margin: 0 auto; */
	order:-1;
	/* flex: 1; */
	gap: 5px;
}

.header.fixed .navbar {
	/* margin: 0 ; */
}

/*浮動*/
/* .header.fixed .navbar{
		padding: 0px 0px;
	}
	 */


.nav {
	float: left;
	box-sizing: border-box;
	position: relative;
}
.nav.mb {
	display: none;
}
.nav.mb.member a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.nav>a {
	display: block;
	text-decoration: none;
	color: #000;
	font-size:  clamp(.875rem, 0.8333vw, 1rem); /* 14~16px*/
	transition: 0.3s ease all;
	position: relative;
	/* padding: 29px 20px; */
	padding: clamp(.875rem, 1.5104vw, 1.8125rem) clamp(.625rem, 1.0417vw, 1.25rem); /*14~29,10~20*/

}

.header.fixed .nav>a {
	/* padding: 24px 30px; */
	padding:  clamp(.75rem, 1.25vw, 1.5rem)  clamp(.9375rem, 1.5625vw, 1.875rem); /*12~24, 15~30*/
	font-size:  clamp(.875rem, 0.8333vw, 1rem); /* 14~16px*/
	/* color: #000; */
}

/*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%);
	display: none;
}

.nav:first-of-type>a:before {
	display: none;
}

/*主按鍵展開*/
.navOpen {
	position: absolute;
	left: 50%;
	/* padding:9px 0px 0px; */
	width: 140px;
	transform: translateX(-50%);
	display: none;
	z-index: 2;
	top:74px;
	top: clamp(2.3125rem, 3.8542vw, 4.625rem);

}

.nav:hover .navOpen.pc {
	display: block;
}
.header.fixed .navOpen{
	top:64px;
	top: clamp(2rem, 3.3333vw, 4rem);

}
.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: 12px;
	font-size: .75rem;
	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(--second_color);
}



/* @media (max-width: 1440px) {
	.nav>a {
		font-size: 16px;
		padding: 29px 16px;
	}
	.header.fixed .nav>a {
		padding: 24px 16px;
	}
	
} */







@media (max-width: 990px) {
	.header.fixed .nav>a {
		padding: unset;
	}
	.header.fixed .navOpen{
		top: 0;
	
	}
	/*----- 版頭右 -----*/
	.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: 57px 0px 0;
		overflow-y: auto;
		z-index: 4;
		float: none;
	}

	.header_rightArea.active {
		right: 0px;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
		display: block;
		/* left: unset; */
		/* transform: unset; */
	}



	





	/*-----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;
		box-shadow: unset;
	}

	.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"] {
		right: 0px;
		bottom: -4px;
		width: 40px;
		height: 40px;
		background-color: var(--primary_color);
		display: flex;
	}

	.search_inBoxPC button[type="button"] svg {
		width: 15px;
		height: 15px;
		margin: auto;
		color: #000;
	}
















	/*----- 主按鍵 -----*/
	.navbar {
		margin-right: 0px;
	}

	.nav {
		float: none;
		width: 100%;
		padding: 0px;
		position: relative;
	}
	.nav.mb {
		display: flex;
		flex-direction: column;
	}


	.nav>a {
		border: none;
		border-radius: 0px;
		text-align: left;
		padding: 13px 15px;
		color: #cecece;
		border-bottom: 1px solid #5b5b5b;
		font-size: 14px;
	}

	.header.fixed .nav>a{
		padding: 13px 15px;
		color: #fff;
	}

	.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"] {
		border-bottom: 0px solid #c3c3c3;
	}
}


/* 加 vertical_nav 垂直排列 -------------------------*/
.nav.vertical_nav{
	position: relative;
}

.nav.vertical_nav:nth-of-type(9):after{
	display: none;
}
.nav.vertical_nav.mobile{
	display: none;
}
	
	.nav.vertical_nav .sstcWrap {
		/* padding-top: 10px; */
	}
		.nav.vertical_nav .navOpen.pc.sstc{
			/* width: 225px; */
		}
			.nav.vertical_nav .sstc_title {
				padding: 0;
				margin: 0;
				/* margin: 0px 0px 15px; */
				/* margin-bottom: 0; */
				/* padding-left: 0; */
				/* padding-bottom: 10px; */
				border-left: none;
				/* border-bottom: 2px var(--third_color) solid; */
			}
			.nav.vertical_nav .sstc_bg{
				margin-top: 10px;
			}
				.nav.vertical_nav .sstc_item {
					width: 100%;
					/* padding-bottom: 10px; */
					position: relative;
				}
/*展開選單----第二層*/
.nOL_open {
	z-index: 10;
	background: #fff;
	position: absolute;
	left: 100%;
	top: -10px;
	top: 0;
	width: 175px;
	/* width: 235px; */
	display: none;
	/* border-bottom: 4px solid #3ba15d; */
	background-color: transparent;
	background: rgba(0, 0, 0, 0.65);
	box-sizing: border-box;
	/* box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05); */
	/* backdrop-filter: blur(3px); */
	height: auto;
	max-height: 200px;
	overflow-y: auto;
	
}
/*展開選單----第二層*/
.nOL_open_mobile{
	display: none;
	height: auto;
	max-height: 150px;
	overflow-y: auto;
	
}

.nOLO_list {
	/* 20211130 feather 新增position樣式 */
	position: relative;
	text-align: left;
	
}
	.nOLO_list > a {
		display: block;
		color: #fff;
		font-size: .75rem;
		line-height: 22px;
		letter-spacing: 0px;
		text-decoration: none;
		padding: 7px 5px;
		background: unset;
	}																			

	
.navOpenList a:hover .nOL_open{
	display:block;
}	

.nOLO_list:hover .nOLOL_list{
	display:block;
}


/* 展開選單----第三層 */
.nOLOL_list {
	z-index: 11;
	background: #fff;
	position: absolute;
	left: 100%;
	top: 0px;
	width: 140px;
	/* margin: 0px -5px -1px; */
	/* display: none; */
	border-bottom: 4px solid #3ba15d;
	/* padding: 18px 0; */
	box-sizing: border-box;
	box-shadow: 0 2px 29px rgba(0,0,0,0.05);
	display: none;
}
/*==英文版== 展開選單----第三層 */
/*feather新增20220222*/
.English .nOLOL_list {
	width: 185px;
}



.navOpenList:hover .nOL_open{
	display:block;
}


.nOLOL_third{		
	position: relative;								
}

.nOLOL_list_in {
	/* 20211130 feather 新增position樣式 */
	position: relative;
	text-align: left;
}

	.nOLOL_list > a {
		display: block;
		color: #fff;
		font-size: 13px;
		line-height: 20px;
		letter-spacing: 0px;
		text-decoration: none;
		padding: 5px 5px;
	}																			

	
.navOpenList a:hover .nOL_open{
	display:block;
}	

.nOLO_list:hover .nOLOL_list{
	display:block;
}

/* .nOLOL_list:hover .nOLOLO_list{
	display:block;
} */

.nOLOL_third:hover > .nOLOLO_list{		
	display:block;						
}


/* 展開選單----第四層 */
.nOLOLO_list {
	z-index: 12;
	background: #fff;
	position: absolute;
	left: 100%;
	top: 0px;
	width: 220px;
	/* margin: 0px -5px -1px; */
	/* display: none; */
	border-bottom: 4px solid #3ba15d;
	/* padding: 18px 0; */
	box-sizing: border-box;
	box-shadow: 0 2px 29px rgba(0,0,0,0.05);
	display: none;

	/* feather新增20220217 */
	max-height: 412px;
	overflow-y: auto;
}

.nav.navMobile{
display: none;
}

/*hover*/
.nav:hover > a {
transition: 0.3s ease all;
}

/*主按鍵_下拉選單*/						
.navOpen {
}
.navOpen.pc {
position:absolute;
width:175px;
display:none;
z-index: 2;
/* top: 163px; */
left:50%;
-webkit-transform: translateX(-50%) translateY(0%);
transform: translateX(-50%) translateY(0%);
}		
.navOpenBg.pc.second {
display:none;
}					



.nav:hover .navOpenBg.pc.second {
display:block;
}
.header.fixed .nav:hover .navOpenBg {
visibility: visible !important;
}

.header .nOL_open::-webkit-scrollbar {/*滾動條整體樣式*/
	width: 5px;     /*高寬分別對應橫豎滾動條的尺寸*/
	height: 1px;
}
.header .nOL_open::-webkit-scrollbar-thumb {/*滾動條裡面小方塊*/
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	/*background: #535353;*/
	
	/* background-image: linear-gradient(to top, #005f99 0%, #99ca3b 100%);	  */
	background-image: unset;		
}
.header .nOL_open::-webkit-scrollbar-track {/*滾動條裡面軌道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	border-radius: 5px;
	background: #EDEDED;
	background: var(--primary_color);
}	

/* 搜尋的廣告區塊如果要隱藏，只要針對此 class 下隱藏樣式即可 */
.gsc-adBlock{
	display: none;
}

