.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:5% auto 0;
	width:95%;
	overflow:hidden;
}

.productIntro li{
	display: flex;
}
.productIntro li+li{
	margin-top:2.5%;
}

.productIntro li img{
	display: block;
	width:50%;
}
.productIntro li:nth-child(even) img{
	order:1;
}

.productIntro li .txt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width:50%;
	padding:0 6%;
}
.productIntro li .txt h3{
	text-align: center;
	font-size: 1.2em;
	color:#b02221;
}
.productIntro li .txt p{
	margin: 1.2em 0 0;
	line-height: 1.8em;
	color:#666;
}
/*********************************** productIntro end ***********************************************/

.productList > li {
	display: inline-block;
	float: none;
	width: 33.33%;
}


@media screen and (max-width:1023px){
	
	.themeImage .tabBlock .tabCT > section > h3{
		display: none;
	}
	
	/*********************************** productIntro start ***********************************************/
	.productIntro{
		width:auto;
	}

	.productIntro li{
		display: block;
	}

	.productIntro li img{
		width:100%;
	}

	.productIntro li .txt{
		display: block;
		width:auto;
		padding:8% 5%;
	}
	/*********************************** productIntro end ***********************************************/
	
	.productList > li {
		width: 60%;
	}
	
}
