/*/////////////////////////////////////////////////////////*/
/*-------案例展示區--------*/
/*/////////////////////////////////////////////////////////*/

ul.album_area {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}

/* 案例展示_列表 */
ul.album_area li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	box-sizing: border-box;
	display: block;
	width: 25%;
	padding: 0 15px 30px;
}

.album_list {
	font-size: 16px;
	line-height: 1.5;
	background-color: var(--primary_color);
	padding: 10px;
	transition: all .3s ease-in;
}
.album_list:hover{
	opacity: 0.5;
}

.album_list a {
	display: block;
	text-decoration: none;
	color: var(--primary_color);
	word-wrap: break-word;
	word-break: break-all;
}

/* 案例展示_列表_圖 */
.album_img {
	box-sizing: border-box;
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	display: block;
}

.album_img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	float: none;
	/* border-radius: 50%; */
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: all 0.3s ease-out;
}



/* 案例展示_列表_標題 */
ul.album_area h3.title {
	padding: 0;
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: bold;
	color: #000;
	margin: 10px 0;
	transition: all .3s ease-in;
	text-align: center;
}
.album_list:hover h3.title{
	/* color: #fff; */
}
/* 案例展示_列表_簡述 */
ul.album_area h4.album_brief {
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: inherit;
	font-weight: inherit;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all .3s ease-in;
}
.album_list:hover  h4.album_brief{
	/* color: var(--primary_color); */
}
@media(max-width:1440px){
	ul.album_area li {
		width: 33.3%;
	}
}

@media (max-width: 640px) {

	ul.album_area {
		margin: 0 -5px -20px;
	}

	/* 案例展示_列表 */
	ul.album_area li {
		width: 50%;
		padding: 0 5px 20px;
	}

	ul.album_area h3.title {
		margin: 5px 0;
	}

}






/*-------案例展示區內頁--------*/
ul.album_area.album_area2 {}

ul.album_area.album_area2 h4.album_brief {
	margin-top: 15px;
}

ul.album_area.album_area2 .album_img {
	position: relative;
}

/* hover */
ul.album_area.album_area2 .album_img:before {
	position: absolute;
	font-family: "Material Icons";
    content: "\e8f4";
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0%) scale(0);
	color: #fff;
	font-size: 36px;
	z-index: 1;
	/* transition: 0.9s ease all; */
	opacity: 0;
}
ul.album_area.album_area2 .album_img:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

ul.album_area.album_area2 .album_img:hover:before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	transition: 0.9s ease all;
}
ul.album_area.album_area2 .album_img:hover:after {
	
	opacity: 1;
	transition: 0.9s ease all;
}

ul.album_area.album_area2 .album_list:hover img {
	/* opacity: 0.5; */
	filter: grayscale(0.7);
	/*灰階*/
	transition: 0.3s ease all;
}


@media (max-width: 990px) {

	/* hover */
	ul.album_area.album_area2 .album_img:before {
		font-size: 12px;
	}

}


/*/////////////////////////////////////////////////////////*/
/*-------影音專區--------*/
/*/////////////////////////////////////////////////////////*/

ul.video_area{	
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}

    /* 影音專區_列表 */
	ul.video_area li{
		padding: 0;
		margin: 0;
		list-style-type: none;
		box-sizing: border-box;	
		display: block;
		width: 25%;	
		padding: 0 15px 30px;
	}
        .video_list{	
			font-size: 15px;
			line-height: 1.5;	
			background-color: var(--primary_color);
			padding: 10px;	
			transition: 0.3s ease all;	
		}
		.video_list:hover{		
			opacity: 0.5;		
		}
			.video_list a{		
				display: block;
				text-decoration: none;				
				color: var(--primary_color);	
				word-wrap: break-word;
				word-break: break-all;
				transition: all .3s ease-in;
			}
			.video_list:hover a{
				color: #000;	
			}
                /* 影音專區_列表_圖 */
				.video_img{
					box-sizing: border-box;
					position: relative;
					padding-top: 70%;
					overflow: hidden;
					display: block;
				}    
				.video_img::before{
					content: '';
					width: 100%;
					height: 100%;
					background-color: rgba(0, 0, 0, .7);
					position: absolute;
					top: 0;
					left: 0;
					z-index: 2;
					opacity: 0;
					transition: 0.3s ease all;
				}       
				.video_list:hover .video_img::before{
					opacity: 1;
				}                                  
					.video_img img{	
						position: absolute;
						top: 0;
						left: 0;
						bottom: 0;
						right: 0;
						float: none;
						/* border-radius: 50%; */
						width: 100% !important;
						height: 100% !important;
						object-fit: cover;
						transition: all 0.3s ease-out;				
					}
					/* .video_img img.play{
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50% , -50%);
						width: 50px;
						height: auto;
						z-index: 1;
					} */
					.play_icon{
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50% , -50%);
						width: 50px;
						height: 50px;
						z-index: 3;
					}
					.video_list:hover .play_icon{
						transform: translate(-50% , -60%);
						transition:0.3s ease all;
						
					}
					.play_icon:before {
						position: absolute;
						transition: 0.3s ease all;
						font-family: 'Bootstrap-icons';
						content: '\F4F3';
						/* top: 50%;
						right: 10px;
						transform: translateY(-50%); */
						color: var(--second_color);
						font-size: 50px;
						line-height: 50px;
						transform-origin: center;
						transition: all 0.3s ease-out;
						transform: scale(1);
					}
					.video_list:hover .play_icon:before{
						color: #fff;
						transform: scale(1.2);
					}

				/* 影音專區_列表_標題 */
				ul.video_area h3.title{
					padding: 0;
					margin: 0;
					font-size: inherit;	
					line-height: inherit;
					font-weight: inherit;	
					color: #000;	
					margin-top: 10px;
					
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 2;
					overflow: hidden;
					text-align: center;
					
				}
				
                /* 友站連結_列表_網址 */
				/* ul.video_area h4.url_link{	
					padding: 0;
					margin: 0;
					font-size: 12px;
					line-height: inherit;
					font-weight: inherit;	
					color: inherit;					
				} */
				
				.video_description{
					text-align: center;
					margin-top: 30px;
				}
				.pswp__custom-caption {		
					font-size: 12px;
					color: #fff;
					/* width: calc(100% - 32px); */
					/* max-width: 400px; 
					padding: 2px 8px;
					border-radius: 4px;*/
					position: absolute;
					left: 50%;
					bottom: 16px;
					transform: translateX(-50%);
			
					background: rgba(0 0 0 / 35%);
					padding: 0;
					line-height: 1.3;
					text-align: center;		
					max-width: calc(100% - 20px);
					width: 100%;
					overflow: hidden;
					text-overflow: ellipsis;
					display: -webkit-box;
					-webkit-line-clamp: 2;
					-webkit-box-orient: vertical;
				}
				/* .pswp__custom-caption:before{
					content: "";		
					width: 100%;
				} */
					.pswp__custom-caption a {
						color: #fff;
						/* text-decoration: underline; */
			
						text-decoration: none;			
					}
					.hidden-caption-content {
						display: none;
					}

@media(max-width:1440px){
	ul.video_area li{
		width: 33.3%;
	}
}
@media (max-width: 1100px){

	ul.video_area{	
	}	
		/* 友站連結_列表 */
		ul.video_area li{
			width: 33.3%;	
		}

}
@media (max-width: 640px){

	ul.video_area{	
		margin: 0 -5px -10px;
	}	
		/* 友站連結_列表 */
		ul.video_area li{
			width: 50%;	
			padding: 0 5px 10px;
		}
			.play_icon {
				width: 20px;
				height: 20px;
			}
				.play_icon:before {
					font-size: 20px;
					line-height: 20px;
				}
				ul.video_area h3.title {
					margin-top: 5px;
				}

}

/*/////////////////////////////////////////////////////////*/
/*-------燈箱--------*/
/*/////////////////////////////////////////////////////////*/

	
	
/*燈箱*/
.lightboxArea {
	position:fixed;
	width:100%;
	z-index:99999;
	top:0px;
	left:0px;
	box-sizing:border-box;
	padding:124px 0px;
	display:none;
}
	/*燈箱黑底*/
	.lightboxBG {
		background:rgba(0,0,0,0.8);
		width:100%;
		height:100%;
		position: absolute;
		top:0px;
	}
	
	/*燈箱主體*/
	.lightboxMain {
		height:360px;
		width:80%;
		margin:0 auto;
		background:#000;
		border-radius:5px;
		position: relative;
		transition:0.3s ease all;
		transform:scale(0);
		top:0px;
		box-sizing:border-box;
		font-size:0px;
	}
		/*關閉燈箱按鍵*/
		.lightboxCloseBtn {
			position: absolute;
			font-size: 15px;
			font-weight: bold;
			letter-spacing: 0px;
			text-align: center;
			width: 34px;
			height: 34px;
			line-height: 34px;
			color: #333;
			background: var(--primary_color);
			right: 20px;
			top: 20px;
			border: solid var(--primary_color) 1px;
			border-radius: 50%;
			/* box-shadow: 0px 0px 6px rgb(0 0 0 / 10%); */
			cursor: pointer;
			transition: 0.3s ease all;
			display: flex;
			transition: 0.3s ease all;
			/* font-size:17px;
			font-weight:bold;
			width:48px;
			height:48px;
			line-height:48px;
			border-radius:100%;
			color:#fff;
			text-align:center;
			background:#2a6695;
			cursor: pointer;
			position:absolute;
			top:-24px;
			right:-24px;
			transition:0.3s ease all;
			z-index: 2; */
		}
		.lightboxCloseBtn svg{
			fill: #000;
			width: 25px;
			height: 25px;
			margin: auto;
			transition: 0.3s ease all;
		}
			.lightboxCloseBtn:hover {
				background: #b9b9b9;
				border-color: #b9b9b9;
				transition: 0.3s ease all;
			}
			.lightboxCloseBtn:hover svg{
				fill: #333;
				transform: rotate(15deg);
				transition: 0.3s ease all;
			}
			/* .lightboxCloseBtn:hover {
				background:#221912;
				color:#fff;
			} */
			
		/*燈箱資料區*/
		.lightboxContentArea {
			/* height: 100%; */
			height: 80vh;
		}
		
/* .index_video_list {
	position:relative;
	float:left;
	cursor:pointer;
	background:#000;
	margin:28px 0px 0px 0px;
}
	.index_video_list > img {
		opacity:0.6;
		transition:0.3s ease all;
		width:100%;
		height:auto;
	}
	.vL_text_area {
		position:absolute;
		width:100%;
		max-width: 15%;
		text-align:center;
		left: 50%;
		top: 50%;
		-webkit-transform:translateX(-50%) translateY(-50%);
		transform:translateX(-50%) translateY(-50%);
		box-sizing: border-box;
		color:#fff;
		text-shadow: 1px 1px 0px rgba(0,0,0,0.75);
	}
		.vL_text_area img {
			width:100%;
			height:auto;
		} */
		/*hover*/
		/* .index_video_list:hover > img {
			opacity:1;
		} */

/* .video_list_area {
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
	font-size:0px;
	margin:0 -12px -30px;
} */
/*firefox hack*/
/* @-moz-document url-prefix() { 
  .video_list_area {
	  padding:8px 0px 0px 0px;
  }
} */

	/* .video_list {
		box-sizing:border-box;
		padding: 0px 12px 30px;
		width:33.3%;
	}

	.video_list2{
		width:100%;
		padding: 0px 0px 30px;
	} */


	/*firefox hack*/
	/* @-moz-document url-prefix() { 
	  .video_list {
		  padding:65px 11px 0px 11px;
	  }
	}
		.video_list .index_video_list {
			float:none;
			margin:0px;
			border-radius: 5px;
			overflow: hidden;
		}
			.video_list_remark {
				font-size: 18px;
				line-height: 24px;
				color: #3d3d3d;
				padding: 10px 0px 0px 0px;
				font-weight: bold;
			} */
	  
	/*影音燈箱顯示時才會加*/
	.video_use {
		padding: 100px 0px;
	}
		.video_use .lightboxMain {
			height:450px;
		}
	
	/*影音燈箱*/
	.video {
		height:100%;
	}
		.video iframe {
			height:1px;
			height:100%;
			width:100%;
		}

@media (max-width: 950px){	

	/*燈箱資料區*/
	.lightboxContentArea {
		height: 100%;
	}

}

@media (max-width: 600px){	

/* .video_list_area {
    display: block;
    flex-wrap: unset;
    flex-direction: unset;
} */

	/*---Video---*/
	/* .video_list {
		width: 100%;
		padding:0 0 30px;
	} */
	/*.video_list:nth-child(2n+1) {
		padding: 35px 0px 30px 0px;
	}
	.video_list:nth-child(2n+0) {
		padding: 35px 0px 30px 0px;
	}*/
	

	
	
}


