/*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: #3f46f6; */
	/*全站主色色碼*/
	/* --sec_color: #ee7800; */
	/*全站第二配色色碼*/
	/* --third_color: #252525; */
	/*全站第三配色色碼*/
}

















/*-------------------------------------loading 畫面 -------------------------------------*/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #245598; /* 藍色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* loading 背景 */
.loading_barBg {
    position: relative;
    max-width: 18.75rem; /*300px*/
    overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* 初始狀態：內容從左側進入 */
.label-center {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo 設定 */
.logo_loading {
    width: 100%;
    height: auto;
    display: block;
}

/* 遮罩層，初始時完全覆蓋 Logo */
.logo_loading_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #245598; /* 遮罩顏色與背景一致 */
}
/* 遮罩動畫 (預設不會啟動，透過 JS 加 class 控制) */
.logo_loading_mask.animate {
    animation: slideInFromLeft 1s ease-out forwards;
}

/* 動畫效果 */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}












#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: #fff;
	/* border-top: 5px solid var(--primary_color); */
    background-image: linear-gradient(to bottom, #ffffff66, #ffffff4d, #ffffff00);
}

.header.header_in {
	background-color: #fff;
}

/*浮動*/
.header.fixed {
	box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.3);
	transition: 0.3s ease all;
	padding: 0px;
	background-color: #fff;
}

/* .header.fixed .logo{
	display: none;
} */

.header .wrap {
	position: relative;
	width: 93%;
}

.header.fixed .wrap {
	width: 93%;
}


@media (max-width: 1440px) {
	.header .wrap {
		max-width: 1225px;
		margin: 0 auto;
		padding: 0;
		width: 90%;
	}

}


@media(max-width:1100px) {
	.header.fixed .wrap {
		width: 90%;
	}
}





/*================*/
/*-- 手機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: 14px;
	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: 1100px) {

	/*手機menu按鍵*/
	.menu_btn {
		display: block;
	}

}




/*================================*/
/*----- logo -----*/
/*================================*/
.logo {
	width: 300px;
	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: 19px 0;
	/* background-color: var(--primary_color); */
}

.header.header_in .logo {
	background-color: transparent;
}

.logo a {
	display: block;
	transition: 0.3s ease all;
}

.logo img {
	width: 100%;
	height: auto;
}

.logo a img.logo02 {
	display: none;
}

/*hover*/
.logo a:hover {
	transform: scale(0.9);
	animation: bounceIn;
}

.header.fixed .logo {
	background-color: transparent;
	width: 250px;
}

.header.fixed .logo a img.logo01 {
	display: none;
}

.header.fixed .logo a img.logo02 {
	display: block;
}

@media (max-width:1100px) {
	.logo {
		transition: 0.3s ease all;
		width: 200px;
		padding: 10px 0;
		float: none;
		margin: 0;
		/* background-color: transparent; */
	}

	.header.fixed .logo {
		width: 140px;
	}

	/* .header.fixed .logo {
		display: block;
	} */

}

@media (max-width: 1100px) {}




/*================================*/
/*----- 版頭右 -----*/
/*================================*/

.header_rightArea {
	float: right;
	box-sizing: border-box;
	/* padding-top: 12px; */
	position: relative;
}


@media(max-width:1100px) {
	.header.fixed .header_rightArea {
		padding-top: 30px;
	}
}

/*================================*/
/*----- 語系 language -----*/
/*================================*/
.language_areaPC {
	position: absolute;
	right: 30px;
	top: 30px;
}

.header.header_in .language_areaPC {
	top: 56px;
}

.language {
	padding: 0 11px 0 0;
	text-align: center;
	/* border-radius: 26px; */
	/* background-color: #fff; */
	/* border: solid 0.5px #bfbfbf00; */
}

.header.fixed .language i {
	color: #000;
}

.language i {
	font-size: 22px;
	line-height: 18px;
	color: var(--third_color);
}

.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>a:before {
	position: absolute;
	content: "";
	border-top: solid 7px var(--third_color);
	border-left: solid 4px rgba(255, 255, 255, 0);
	border-right: solid 4px rgba(255, 255, 255, 0);
	/* top: 50%; */
	top: 5px;
	right: 0px;
	/* transform: translateY(-45%); */
}


.language_list {
	position: absolute;
	width: 75px;
	top: 24px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	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;
}

.language>a:hover,
.language_list>a:hover {
	opacity: 0.5;
}



.header.fixed .language_areaPC {
	/* top: 40px; */
}

/* 手機版語系 */

.language_areaMB {}

.language_content {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 0px 0 20px;
}

.language_content_in a {
	color: #cecece;
	line-height: 24px;
}

.language_areaMB {
	display: none;
}

@media(max-width:1100px) {
	.language_areaPC {
		display: none;
	}

	.language_areaMB {
		display: block;
	}
}



/*  */
/*================================*/
/*----- 版頭搜尋區塊 -----*/
/*================================*/


/*-----PC搜尋區塊-----*/
.search_areaPC {
	position: absolute;
	right: 0;
	top: 30px;
	/* transform: translateY(-50%); */
}

.header.header_in .search_areaPC {
	top: 56px;
}

/*搜尋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: var(--third_color);
}

/*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;
	right: 0px;
	background: rgba(255, 255, 255, 0.95);

	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: #fff;
}

.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: 41px; */
}
















/*================================*/
/*----- 主按鍵 -----*/
/*================================*/

.navbar {
	/* margin-right: 64px; */
	/* width: 60%;
    	margin: 0 auto; */
}

.header.fixed .navbar {
	/* margin: 0 ; */
}

/*浮動*/
/* .header.fixed .navbar{
		padding: 0px 0px;
	}
	 */


.nav {
	float: left;
	box-sizing: border-box;
	position: relative;
}

.nav>a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	transition: 0.3s ease all;
	position: relative;
	padding: 20px 30px;
}

.header.fixed .nav>a {
	padding: 30px 30px;
	font-size: 16px;
	color: #000;
}

.header.header_in .nav>a {
	color: var(--third_color);
	padding: 28px 30px;
}

.header.fixed.header_in .nav>a {
	padding: 28px 30px;
}

.header.fixed.header_in .navOpen {
	top: 73px;
}

/*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: 150px;
	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: 14px;
	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: 1440px) {
	.nav>a {
		font-size: 16px;
		padding: 20px 16px;
	}

	.header.fixed .nav>a {
		padding: 30px 16px;
	}

}







@media (max-width: 1100px) {
	.header.fixed .nav>a {
		padding: unset;
	}

	/*----- 版頭右 -----*/
	.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;
	}

	.header_rightArea.active {
		right: 0px;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
	}









	/*-----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"] {
		right: 0px;
		bottom: -4px;
		width: 40px;
		height: 40px;
		background-color: #fff0;
		display: flex;
	}

	.search_inBoxPC button[type="button"] 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;
	}

	.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;
	}
}




/* 搜尋的廣告區塊如果要隱藏，只要針對此 class 下隱藏樣式即可 */
.gsc-adBlock {
	display: none;
}


/*================*/
/*----- 主按鍵 -----*/
/*================*/

/* .header_rightArea{
    float: right;
	box-sizing: border-box;
} */

.navbar {
	text-align: center;
	background-color: #fff0;
	box-sizing: border-box;
	/* font-family: 'Noto Sans TC', sans-serif; */
}


/* 首頁主按鍵 */
/*.indexBody */
.header .navbar {
	/* display: none; */
	box-shadow: unset;
	/* 更重的下方陰影 */
	width: unset;
	margin-right: 75px;

}



/* 內頁主按鍵 */
/*.inbody */
.navbar {
	/* float: left; */
	width: 100%;
	text-align: center;
	/* font-size: 20px; */

	font-size: clamp(14px, 1.0417vw, 1.25rem);
	/*字體大小 1.0417vw、最小值 14px、最大值 20px*/
}

.navbar .wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	max-width: clamp(38.625rem, 62.5vw, 75rem);
}

.nav>a:before {
	position: absolute;
	content: '';
	background-color: #ddd7f3;
	width: 1px;
	height: 20px;
	top: 50%;
	right: 0;
	transform: translateX(0%) translateY(-50%);
}

/*主按鍵滑動效果(第一層)*/
.nav>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	height: 3px;
	width: 0;
	bottom: 26%;
	background-color: #3ba15d;
}

.nav>a:hover:after {
	/* content: '';
			display: block;
			height: 3px;
			background: currentColor; 
			color: #3ba15d;*/
	width: 65%;
	-webkit-transition: width 0.2s ease-out;
	transition: width 0.2s ease-out;
}

/*主按鍵滑動效果(第二層)*/
.nav .navOpenList a .in:after {
	content: '';
	display: block;
	height: 1px;
	width: 0;
}

.nav>a {
	display: block;
	padding: 41px 25px;
	color: #333;
	font-size: 15px;
	line-height: 1;
	transition: 0.3s ease all;
	text-decoration: none;

	position: relative;
}

/* 浮動 */
.header.fixed .nav>a {
	padding: 20px 25px;
}

.navArrow_down {
	width: 24px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0px;
	top: 52%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	/* background-color: #dbc2c2; */
}

.nav .navArrow_down:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	position: absolute;
	top: 35%;
	left: 50%;
	/* z-index: 50; */
	-webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
	transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.nav:nth-last-of-type(2)>a:before,
.nav:last-child>a:before {
	display: none;
}





.nav {
	box-sizing: border-box;
	width: calc(100% / 5);
	position: relative;
	text-align: center;
}

.nav>a,
.nav .navTitle>a {
	display: block;
	text-decoration: none;
	/* color: #888888;
			font-weight: bolder; */
	color: var(--third_color);
	font-size: inherit;
	transition: 0.3s ease all;
	position: relative;
	/* padding: 1.625rem .125rem 1.5625rem; */
	/*padding: clamp(.75rem, 1.3021vw, 1.5625rem) 20px; 12px ~ 25px*/
	;
	padding: 28px 30px;
	font-weight: 500;
	/* white-space: nowrap; */
	letter-spacing: .1875rem;
}

.nav>a:hover,
.nav .navTitle>a:hover {
	opacity: 0.5;
	transition: 0.3s ease all;
}





/*hover*/
.nav:hover .navOpen.pc {
	display: block;
}

.navOpenBg {
	background: #fff;
	position: relative;
	/* border-bottom: 4px solid #3ba15d; */
	padding: 10px 0;
	padding: 0;
	box-sizing: border-box;
	box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(3px);
}


.navOpenList {
	position: relative;
	width: 100%;
}

.navOpenList.sstc_item {
	position: relative;
	width: 100%;
	padding: 0;
}

.navOpen .sstc_item:hover{
	background-color: var(--primary_color);
}

/*第一層箭頭*/
.navArrow {
	width: 47px;
	height: 47px;
	display: block;
	position: absolute;
	/* top: 0px; */
	top: -4px;
	/*feather修改20220217*/
	/* top:0; */
	/* right: 2px; */
	right: -2px;
	/*feather修改20220222*/
}

.navArrow:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	position: absolute;
	right: 20px;
	top: 50%;
	z-index: 50;
	-webkit-transform: translateY(-75%) rotate(-45deg);
	transform: translateY(-75%) rotate(-45deg);
}

.navOpenList:hover .navArrow:after {
	border-bottom: 2px solid var(--third_color);
	border-right: 2px solid var(--third_color);
	transition: 0.6s ease all;
}

/*第二層箭頭*/
.navArrow_in {
	width: 47px;
	height: 47px;
	display: block;
	position: absolute;
	/* top: 0px; */
	top: -4.5px;
	/*feather修改20220217*/
	/* right: 2px; */
	right: -2px;
	/*feather修改20220222*/
}

.navArrow_in:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	position: absolute;
	right: 20px;
	top: 50%;
	z-index: 50;
	-webkit-transform: translateY(-75%) rotate(-45deg);
	transform: translateY(-75%) rotate(-45deg);
}

/* 第二層箭頭 :hover */
.nOLO_list:hover .navArrow_in:after {
	border-bottom: 2px solid #fcb635;
	border-right: 2px solid #fcb635;
	transition: 0.6s ease all;
}

.navOpen.pc .nOLOL_list_in {
	display: inline-block;
}

.navOpen.pc .nOLOL_list_in a:hover {
	color: #3ba15d;
	transition: 0.6s ease all;
}

/* 第三層箭頭 */
.navArrow_in_in {
	width: 47px;
	height: 47px;
	display: block;
	position: absolute;
	/* top: 20%; */
	top: 16%;
	/*feather修改20220217*/
	/* right: 2px; */
	right: -2px;
	/*feather修改20220222*/
}


.navArrow_in_in:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	position: absolute;
	right: 20px;
	top: 30%;
	z-index: 50;
	-webkit-transform: translateY(-75%) rotate(-45deg);
	transform: translateY(-75%) rotate(-45deg);
}

/* 第三層箭頭 :hover */
.nOLOL_third:hover .navArrow_in_in:after {
	border-bottom: 2px solid #fcb635;
	border-right: 2px solid #fcb635;
	transition: 0.6s ease all;
}

.navOpen.pc .nOLOL_list_in {
	display: inline-block;
}

.navOpen.pc .nOLOL_list_in a:hover {
	color: #fcb635;
	transition: 0.6s ease all;
}

.navOpen.pc .navOpenList a {
	text-align: center;
	font-size: min(max(0.9375vw, 0.8125rem), 1.125rem);
	/* padding: 10px 20px 10px 15px; */
	padding: 10px 30px 10px 15px;
	/*feather修改20220222*/
	color: #fff;
	line-height: clamp(.875rem, 0.9375vw, 1.125rem);
	display: block;
	text-decoration: none;
}

.navOpen.pc .navOpenList .in {
	display: inline-block;
}

.navOpen.pc .navOpenList a:hover {
	color: var(--third_color);
	transition: 0.6s ease all;
}


/*展開選單----第二層*/
.nOL_open {
	z-index: 10;
	background: #fff;
	position: absolute;
	left: 100%;
	top: -10px;
	top: 0;
	width: 140px;
	width: 235px;
	display: none;
	/* border-bottom: 4px solid #3ba15d; */
	background-color: transparent;
	background-color: rgba(0 0 0 / 70%);
	box-sizing: border-box;
	/* box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05); */
	backdrop-filter: blur(3px);
}

.nOL_open.long_word {
	width: 200px;
}

.nOLO_list {
	/* 20211130 feather 新增position樣式 */
	position: relative;
	text-align: left;
}

.nOLO_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 {
	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: 70px;
	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;
}










/* 在螢幕放大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) {

	.nav>a,
	.nav .navTitle>a {
		font-weight: 700;
	}

	.nOL_open {

		width: 8.75rem;

	}
}








/*.navbar .nav:nth-of-type(4):hover .navOpen.pc {
			display:block;
		}*/
/*.navOpen.pc.geneinfo {
			width: 100%;
			position:absolute;
			left: 0;
			top: 80px;
			display: none;
			z-index: 2;
			background-color: rgba(255,255,255,0.9);
			box-shadow: 9px 6px 19px -8px rgba(0,0,0,0.5);
			border-top: 1px solid rgba(0,0,0,0.1);
			
			transition: 0.3s ease all;
		}
						
		
		.header.fixed .navOpen.pc.geneinfo {
			top: 56px;
		}
			.geneinfo_area{
				text-align: center;
				padding: 30px 0px;
			}*/

/*子選單_標題區塊*/
/*.nav_titArea{
					float: left;
					width: 20%;
					height: 100%;
					box-sizing: border-box;
					padding: 50px 40px;
				}
					.nav_titIn{
						color: #595757;
						font-size: 1.4em;
						text-align: right;
					}*/



/*子選單_連結列表區塊*/
/*.nav_inArea{
					float: left;
					width: 80%;
					min-height: 132px;
					box-sizing: border-box;
					padding: 7px 0px 7px 40px;
					border-left: 1px solid #716764;
				}
					.nav_inContent{
						text-align: left;
					}
						.navIn_listArea{
							float: left;
							padding-right: 100px;
							box-sizing: border-box;
						}
							.navIn_list{
								display: inline-block;
								box-sizing: border-box;
								width: 24%;
								padding: 7px 0px;
								text-align: left;
							}
								.navIn_list a{
									display: inline-block;
									color: #595757;
									text-decoration: none;
									font-size: 1em;
									letter-spacing: 0;
								}*/
/*hover*/
/*.navIn_list a:hover{
								}*/


/*mobile版*/
.navOpen.mobile {
	display: none;
	opacity: 0;
	z-index: -999999;
	position: absolute;
}

/*hover*/
.nav:hover .navOpen.pc {
	display: block;

	transition: 0.3s ease all;
}

.navOpenBg {
	position: relative;
	background-color: #ddd7f3;
	background-color: rgba(0 0 0 / 70%);
	/*background: rgb(210 5 0 / 0.8);*/
	/* display: none; */
	backdrop-filter: blur(3px);
}

.navOpenList a {
	text-align: center;
	color: inherit;
	/* font-size: 15.5px; */
	/* color:var(--second_color); */
	/* line-height:22px; */
	padding: 10px 5px;
	/* background:rgba(0,0,0,0.65); */
	transition: 0.3s ease all;
	text-decoration: none;
	letter-spacing: 0px;
	display: block;
}

.navOpenList>a:hover {
	background-color: var(--primary_color);
	color: #fff;
}



/*.navOpenBg:before {
					position: absolute;
					content:'';
					border-bottom: solid 8px rgba(0,0,0,0.6);
					border-left: solid 12px rgba(255,255,255,0);
					border-right: solid 12px rgba(255,255,255,0);
					top:-8px;
					left:50%;
					margin:0px 0px 0px -12px;
				}*/

.navOpen.pc .navOpenList a {}

/*hover*/
.navOpen.pc .navOpenList a:hover {
	color: #fff;
}




/* 加 sstc PC版寬度滿版 -------------------------*/
.nav.sstc {
	position: unset;
}

.nav.sstc>a {
	position: relative;
}


.navOpen.pc.sstc {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 73px;
	transform: translateX(-50%) translateY(0%);
	background-color: rgba(0 0 0 / 70%);
	z-index: 2;
	backdrop-filter: blur(3px);
}

.navOpen.pc.sstc.second {
	background-color: transparent;
}

.header.fixed .navOpen.pc.sstc {
	/* width: 100%;
	position: absolute;
	left: 0px;
	top: 163px;
	transform: translateX(0%) translateY(0%);
	background-color: rgba(0 0 0 / 70%);
	z-index: 2;
	backdrop-filter: blur(3px); */
	/* 模糊背景*/
}

.header.fixed .navOpen.pc.sstc.second {
	background-color: transparent;
}


.sstcWrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	vertical-align: middle;
	align-items: stretch;
	align-content: flex-start;
	/* max-width: 1200px; */
	margin: 0 auto;
	/* padding: 25px 0px 5px; */
	max-width: 1570px;
	/* width: 95%; */
	overflow-x: hidden;
	overflow-y: auto;
}

.sstcWrap::-webkit-scrollbar {
	/*滾動條整體樣式*/
	width: 5px;
	/*高寬分別對應橫豎滾動條的尺寸*/
	height: 5px;
}

.sstcWrap::-webkit-scrollbar-thumb {
	/*滾動條裡面小方塊*/
	border-radius: 5px;
	/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
	background: var(--third_color);
	/*background: #fff0; */
	/* background-image: linear-gradient(to top, #afafaf 0%, #e5e5e5 100%); */

	border-radius: 5px;
}

.sstcWrap::-webkit-scrollbar-track {
	/*滾動條裡面軌道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
	border-radius: 5px;
	background: #fff0;
	/* background: #EDEDED; */
}



.sstc_item {
	box-sizing: border-box;
	width: 20%;
	/* padding: 0px 4px 20px; */
	padding: 10px;
}


.sstc_list {
	box-sizing: border-box;
	width: 100%;
	padding: 0px 10px 20px;
	text-align: left;
}

.sstc_list a {
	color: #fff;
	color: inherit;
	text-decoration: none;
}

.sstc_title {
	/* font-size: 18px; */
	/* line-height: 18px; */
	margin: 0px 0px 15px;
	padding: 0px 0px 0px 10px;
	color: #fff;
	/* color: inherit; */
	font-weight: bolder;
	/* border-left: 2px var(--third_color) solid; */
	cursor: default;
	font-weight: 400;
}

.sstc_title a {
	text-align: center;
	display: block;
	text-decoration: none;
	color: inherit;
	font-size: min(max(0.9375vw, 0.8125rem), 1.125rem);
	/*字體大小 0.9375vw、最小值 13px、最大值 18px*/
}

.sstc_title.long_word a {

	font-size: clamp(.8125rem, 0.8333vw, 1rem);
}

.sstc_bg {
	font-weight: 400;
	color: var(--third_color);
	color: #767676;
	font-size: min(max(0.84vw, 0.8125rem), 1rem);
	/*字體大小 0.84vw、最小值 13px、最大值 16px*/
}

.sstc_bg .navOpenList {}

.sstc_bg .navOpenList a {
	text-align: left;
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

.sstc_bg .navOpenList a:hover {
	opacity: 0.5;
	background-color: transparent;
	/* color: #fff; */
}

/* .navOpenList a {
				text-align: center;
				font-size: 14px;
				color: #fff;
				line-height: 22px;
				padding: 10px 0px;
				transition: 0.3s ease all;
				letter-spacing: 0px;
				text-indent: 0px;
				display: block;
			}

			.sstc_bg > .navOpenList a:hover {
				background-color: #133f5800;
				color: #fff;
				transition: 0.3s ease all;
			} */







/* 加 vertical_nav 垂直排列 -------------------------*/
.nav.vertical_nav {
	position: relative;
}

.nav.vertical_nav::after {
	content: "";
	display: block;
	width: 1px;
	max-height: calc(20px * 1.2);
	height: 100%;
	background-color: var(--third_color);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	/* 垂直居中 */
	z-index: 10;
}

header.fixed .nav.vertical_nav::after {

	background-color: #000;

}

.nav.vertical_nav:nth-of-type(5):after {
	display: none;
}

.nav.vertical_nav.mobile {
	display: none;
}

.nav.vertical_nav .sstcWrap {
	/* padding-top: 10px; */
}

.nav.vertical_nav .navOpen.pc.sstc {
    top: 75px;
    width: 192px;
}

.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; */
}














@media (max-width: 1440px) {


	.nav > a,
	.nav .navTitle > a {
		padding-left: 20px;
		padding-right: 20px;
	}
	

}

@media(max-width:1100px) {

	.nav.vertical_nav::after {
		content: "";
		display: block;
		width: 1px;
		max-height: calc(20px * 1.2);
		height: 100%;
		background-color: #fff;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		/* 垂直居中 */
		z-index: 10;
		display: none;
	}

	.nav.vertical_nav.mobile {
		display: block;
	}
}




@media screen and (min-width: 1101px) {



	.header.fixed .navbar {
		/* background-color: #fff; *//*20250408移除背景 by tom*/
		font-size: clamp(1rem, 0.93vw, 1.125rem);
		/* font-size: min(max(1.05vw, 0.875rem), 1.25rem); */
		font-size: clamp(14px, 1.0417vw, 1.25rem);
		/*字體大小 1.0417vw、最小值 14px、最大值 20px*/
	}

	.header.fixed .navbar .wrap {
		width: 95%;
		gap: 0 5px;
		justify-content: space-between;
		max-width: 1800px;
	}


	.header.fixed .logo_fix {
		display: block;
		padding: 10px 0;
		width: 350px;
	}

	.header.fixed ul.logoArea {
		gap: 0 30px;
	}

	.header.fixed .nav {
		width: calc((100% - 200px) / 9);
		width: auto;
	}

	.header.fixed .nav>a,
	.header.fixed .nav .navTitle>a {
		color: #000;
		padding: 28px 30px;
	}

	.header.fixed .nav>a:before,
	.header.fixed .nav .navTitle>a:before {
		display: none;
	}

	.header.fixed .navOpen.pc.sstc {
		top: 76px;
	}


}


/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 991px) and (min-height: 500px) and (max-height: 740px) and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 150/100) {
	.navOpen.pc.sstc {
		/* top: 158px; */
	}

	.header.fixed .navOpen.pc.sstc {
		top: 70px;
	}
}



@media (max-width: 1100px) {


	/*主按鍵*/

	/*.inbody .navbar ,*/
	.navbar {
		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: 107px 0px 0px;
		margin: 0;
		overflow-y: auto;
		z-index: 4;
		float: none;
		position: relative;
	}

	/*.inbody .header.fixed .navbar,*/
	.header.fixed .navbar {
		padding: 46px 0px;
		float: none;
		width: 200px;
		margin: 0 !important;
		/* background: rgba(0, 0, 0, 0.7); */
	}

	.navbar.active {
		/*left: 0px;*/
		right: 0px;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
		background-color: rgba(0, 0, 0, 0.9);
	}

	/*.indexBody */
	.header .navbar {
		display: unset;
	}

	/*.indexBody */
	.header .navbar .wrap {
		width: auto;
		display: block;
		flex-direction: unset;
		align-items: unset;
	}

	/* 首頁主按鍵_下 */
	/* .navbar.navbarBottom ,
	.navbar.navbarBottom.fixed{
		display: none;
	} */


	/* 內頁主按鍵 */
	/*.inbody */
	.nav,
	/*.inbody */
	.header.fixed .nav {
		width: auto;
	}

	/*.inbody */
	.nav>a:before {
		display: none;
	}

	.navArrow2 {
		justify-content: center;
		top: 8px;
		right: 9px;
		position: absolute;
		width: 20px;
		height: 26px;
		padding-left: 6px;
	}

	.navArrow2:before {
		content: "";
		width: 6px;
		height: 6px;
		display: block;
		border-bottom: 2px solid #959595;
		border-right: 2px solid #959595;
		position: absolute;
		right: 10px;
		top: 50%;
		z-index: 50;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
	}



	.nav {
		float: none;
		width: 100%;
		padding: 0px;
		position: relative;
	}

	.nav.geneinfo:after {
		position: absolute;
		content: '';
		border-top: solid 5px #999;
		border-left: solid 3px rgba(255, 255, 255, 0);
		border-right: solid 3px rgba(255, 255, 255, 0);
		top: 19px;
		right: 15px;
	}

	.nav .navTitle {
		border-bottom: 1px solid #5b5b5b;
	}

	.nav>a,
	.nav .navTitle>a {
		border: none;
		border-radius: 0px;
		text-align: left;
		padding: 13px 15px;
		color: #cecece;
		/* border-bottom: 1px solid #5b5b5b; */
		/* font-size: 14px; */
		font-size: 1rem;
	}

	.header.fixed .nav>a,
	.header.fixed .nav .navTitle>a {
		transition: unset;
		/* padding: 13px 10px; */
		color: #cecece;
	}

	.nav>a:hover,
	.nav .navTitle>a:hover {
		color: var(--second_color);
	}



	.nav.navMobile {
		display: block;
	}


	/*當前模式*/
	.nav.active>a {
		background: transparent;
	}


	/*展開選單*/
	.navOpen {
		position: relative;
		top: 0px;
		left: 0px;
		margin: 0px;
		width: auto;
		border-radius: 0px;
		background: #444;
	}

	.navOpen:before,
	.navOpen:after {
		border-bottom: solid 8px #444;
		left: 23px;
	}

	.nO_list a {
		text-align: left;
		padding: 15px 15px;
	}


	/*hover*/
	.nav:hover .navOpen.pc {
		display: none;
	}

	.fixed_nav:hover .navOpen.pc {
		display: none;
	}

	.navOpen.mobile {
		display: none;
		opacity: 1;
		z-index: 1;
		position: relative;
	}

	.navOpen.mobile .navOpenBg {
		padding: 0;
	}

	.navOpen.mobile .navOpenList {}

	.navOpen.mobile .navOpenList>a {
		text-align: left;
		/*font-size:0.875rem;*/
		/*14px*/
		font-size: 0.8125rem;
		/*13px*/
		color: #cecece;
		/* line-height:22px; */
		/*padding: 12px 15px;*/
		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;
	}

	.navOpen.mobile {
		display: none;
		opacity: 1;
		z-index: 1;
		position: relative;
	}

	.navOpenBg {
		padding: 0;
		border-bottom: 1px solid #d3d3d3;
		box-shadow: 0 2px 29px rgba(0, 0, 0, 0);
	}

	.navOpen.mobile .navOpenList {}

	.navOpen.mobile .navOpenList>a {
		text-align: center;

		color: #cecece;
		line-height: 22px;
		padding: 10px 55px;
		transition: 0.3s ease all;
		text-decoration: none;
		display: block;
	}

	.navOpenList .in {
		display: block;
	}

	.navOpenList>a:hover {
		opacity: 0.7;
	}

	/*第二層*/
	.nOL_open_mobile {
		display: none;
	}

	.nOLO_mobile_list {}

	.nOLO_mobile_list a {
		display: block;
		text-decoration: none;
		border: none;
		border-radius: 0px;
		text-align: center;
		padding: 15px 44px;
		color: #cecece;
		/* font-size: 13px;*/
	}









	.navOpen.mobile.sstc {
		background: transparent;
	}

	.mobile.sstc .sstcWrap {
		display: block;
		width: auto;
		padding: 0;
		overflow-x: unset;
		overflow-y: unset;
	}

	.mobile.sstc .sstc_item {
		width: auto;
		padding: 0px 0px 0px;
	}

	.mobile.sstc .sstc_title {
		margin: 0px 0px 0px;
		padding: 0px;
		border-left: none;
		color: #fff;

		border-bottom: none;
	}

	.mobile.sstc .sstc_title a {
		padding: 12px 15px ;
		font-weight: 400;
	}

	.mobile.sstc .sstc_bg {
		display: none;
	}

	.mobile.sstc .navOpenList>a {
		padding-left: 45px;
	}




	/*垂直排列*/
	.nav.vertical_nav .sstc_bg {
		margin-top: 0px;
	}


	/* .nav.sstc > a ,
	.nav.vertical_nav > a 
	.nav.arrow_down > a  , */
	.nav .navTitle.arrow_down {
		padding-right: 40px;
		position: relative;
		/* border: none; */
	}

	.nav .navTitle>a {
		/* margin-right: 45px; */
	}

	.mobile.sstc .sstc_title.arrow_down {
		position: relative;
	}

	.mobile.sstc .sstc_title.arrow_down>a {
		margin-right: 45px;
		/* background: #ddd; */
	}


	/* .nav.sstc > a::after ,
	.nav.vertical_nav > a::after 		
	.nav.arrow_down > a::after ,*/
	.nav .navTitle.arrow_down::after,
	.mobile.sstc .sstc_title.arrow_down::after {
		position: absolute;
		content: "";
		background-image: url(../images/bottom_arrow_icon.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 18px;
		transition: 0.3s ease all;
		width: 18px;
		height: calc(18px / 2);
		z-index: 0;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transform-origin: center center;
		width: 33px;
		height: 33px;
		display: flex;
		justify-content: center;
		align-items: center;
		/* background-color: #333; */
	}


	/* .nav.sstc.active > a::after ,
	.nav.vertical_nav.active > a::after
	.nav.arrow_down.active > a::after , */
	.nav.active .navTitle.arrow_down::after,
	.mobile.sstc .sstc_title.arrow_down.active::after {
		transform: translateY(-50%) rotate(180deg);
	}

}

/*首頁header專用*/

.header_home {
	background-color: transparent;
}

.header_home .nav .navTitle>a {
	color: var(--third_color);
}

.header_home .nav.vertical_nav::after {
	background-color: var(--third_color);
}

.header_home .language i{
	color: var(--third_color);
}

.header_home .language>a:before{
	border-top: solid 7px rgb(37, 37, 37) ;
}

.header_home .search_iconPC label div svg{
	fill: var(--third_color);
}

.header_home .menu_btn span {
	background-color: var(--third_color);
}



@media (max-width:1100px) {

	.header_home .nav .navTitle>a{
		color: #fff;
	}

	.menu_btn.active span{
		background-color:#fff;
	}
	
}





@media (max-width: 550px) {

	/*主按鍵*/
	/* .inbody .navbar ,*/
	.navbar {
		width: 100%;
		right: -100%;
		padding: 87px 0 0;
	}

	/*.inbody .header.fixed .navbar,*/
	.header.fixed .navbar {
		width: 100%;
		padding: 46px 0px 0;
	}

	/*.inbody .navbar.active ,*/
	.navbar.active {
		right: 0px;
	}

}