@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400&display=swap');

.themeImage .tabBtn{
	display: none;
}

.themeExtra .videoBlock{
	position:relative;
}

.themeExtra img{
	display:block;
	width:100%;
}

.themeExtra .videoBlock .vBtn{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
}
.themeExtra .videoBlock .vBtn span{
	display:block;
	width:8.5%;
	min-width:50px;
	max-width:68px;
	animation:flashVBtn 0.8s ease-in infinite alternate;
}
@keyframes flashVBtn{
	from{
		transform:scale(0.9);
		opacity:0.6;
	}
}
.themeExtra .videoBlock .vBtn span:before{
	content:"";
	display:block;
	padding-top:100%;
	background:url(https://www.nordic.com.tw/images/vBtn.png) no-repeat center;
	background-size:contain;
}
.themeExtra .videoBlock .vBtn:hover span{
	animation:none;
}

/** videoOverlay start **/
.videoOverlay{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100vh;
	z-index:2;
	background:rgba(255, 255, 255, 0.9);
	justify-content:center;
	align-items:center;
	display:flex;
	opacity:0;
	transition:opacity 0.3s;
	pointer-events:none;
}
.videoOverlay.show{
	opacity:1;
	pointer-events:auto;
}
.videoOverlay .videoOverlayCT{
	position:relative;
	width:95%;
	max-width:960px;
	background:#000;
	transform:scale(0.5);
	transition:transform 0.3s;
}
.videoOverlay.show .videoOverlayCT{
	transform:none;
}
.videoOverlay .videoOverlayCT:before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.videoOverlay iframe{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:none;
	display:block;
}

.videoOverlay .closeBtn{
	position:absolute;
	right:0;
	bottom:calc(100% + 10px);
	width:30px;
	height:30px;
	cursor:pointer;
}
.videoOverlay .closeBtn:before,
.videoOverlay .closeBtn:after{
	position:absolute;
	content:"";
	right:0;
	top:50%;
	width:90%;
	height:2px;
	background:#999;
	border-radius:1px;
}
.videoOverlay .closeBtn:before{
	transform:translateY(-50%) rotate(-45deg);
}
.videoOverlay .closeBtn:after{
	transform:translateY(-50%) rotate(-135deg);
}
.videoOverlay .closeBtn:hover:before,
.videoOverlay .closeBtn:hover:after{
	background:#666;
}
/** videoOverlay end **/

/*********************************** productIntro start ***********************************************/
.productIntro{
	margin-top:5%;
	overflow:hidden;
	font-family: 'Noto Sans TC';
	font-weight:400;
	font-size:clamp(10px, 1.25vw, 15px);
	color:#000;
}

.productIntro li{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding:5%;
	background: var(--bg);
}
.productIntro li:nth-child(1){ --bg:#d7dfca;}
.productIntro li:nth-child(2){ --bg:#d8e8f9;}
.productIntro li+li{
	margin-top:5%;
}

.productIntro li img{
	display: block;
	width:47%;
}
.productIntro li:nth-child(even) img{
	order:1;
}

.productIntro li .txt{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width:47%;
	margin-top:2em;
}
.productIntro li .txt h3{
	font-size: 2em;
	font-weight: 300;
	color:#666;
	line-height: 1em;
}
.productIntro li .txt h3 *{
	display: block;
}
.productIntro li .txt h3 strong{
	font-size: 1.38em;
	font-weight:inherit;
}
.productIntro li .txt h3 em{
	font-style: normal;
	margin-top:1em;
}
.productIntro li .txt p{
	margin: 2.2em 0 0;
	line-height: 2em;
	text-align: justify;
}
.productIntro li .txt a{
	margin-top:2em;
	font-size: 1.1em;
	font-weight: 300;
	align-self: flex-end;
	padding:0.5em;
	line-height: 1em;
	color:#333;
	background: var(--bg);
	transition: all 0.2s;
}
.productIntro li .txt a:hover{
	color:#FFF;
}
.productIntro li:nth-child(1) .txt a:hover{
	background: #717c5e;
}
.productIntro li:nth-child(2) .txt a:hover{
	background: #4c6682;
}
.productIntro li .txt a span{
	display: block;
	padding:0.5em 1.5em;
	border:1px solid currentColor;
}
/*********************************** productIntro end ***********************************************/

.productList > li {
	display: inline-block;
	float: none;
	width: 33%;
}


@media screen and (max-width:1023px){
	
	.themeImage .tabBlock .tabCT > section > h3{
		display: none;
	}
	
	/*********************************** productIntro start ***********************************************/
	.productIntro{
		width:auto;
		font-size:clamp(10px, 3.6vw, 20px);
	}

	.productIntro li{
		--pd:10%;
		display: block;
		padding-top:var(--pd);
		padding-bottom:var(--pd);
	}
	.productIntro li+li{
		margin-top:10%;
	}

	.productIntro li img{
		width:100%;
	}

	.productIntro li .txt{
		width:auto;
		margin-top:2em;
	}
	.productIntro li .txt h3{
		font-size: 1.48em;
	}
	/*********************************** productIntro end ***********************************************/
	
	.productList > li {
		float: left;
		width: 50%;
	}
	
}
