@charset "utf-8";
/* CSS Document */
/*---------------------------------------------------header---------------------------------------*/
/*----------------------inside_title------------------------------*/
	#inside_title {
		width: 70%;
		margin: 0 auto;
	}
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
	#content{
		width: 100%;
	}
/*----------------photoBox--------------------*/
	.wysiwyg, #photoBox {
		width: 1000px;
		margin: 0 auto;
	}
	#photoBox figure{
		position: relative;
		width: 300px;
		height: 300px;
		overflow: hidden;
		float: left;
		margin: 30px 16px;
		box-sizing: border-box;
	}
/*---照片(photo)---*/
	#photoBox figure .photo{
		width: 100%;
		height: 100%;
		transition: all 0.5s ease;
        background-position: center 35%;
        background-repeat: no-repeat;
		background-size: cover;
	}
	#photoBox figure:hover .photo{
		transform: scale(1.1);
	}

/*---文字標題(h5)---*/
	#photoBox figure h5{
		position: absolute;
		bottom: 0;
		width: 100%;
		background-color: rgba(62, 62, 62, 0.93);
		color: #fff;
		text-align: center;
		transition: background-color 0.5s ease;
	}
	#photoBox.albums figure h5{
		padding: 10px 0;
	}
	#photoBox figure:hover h5{
		background-color: #4d93ca;
	}
/*熒幕尺寸【小於】1025時頁面顯示---平板*/
@media (max-width:1024px) {
/*---------------------------------------------------header---------------------------------------*/
/*----------------------inside_title------------------------------*/
	#inside_title {
		width: 80%;
	}
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
/*----------------photoBox--------------------*/
	.wysiwyg, #photoBox{
		width: 600px;
	}
	#photoBox figure{
		width: 250px;
		height: 250px;
		margin: 0 25px 60px 25px;
	}
}
/*熒幕尺寸【小於】769時頁面顯示---平板*/
@media (max-width:768px) {
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
/*----------------photoBox--------------------*/
	.wysiwyg, #photoBox{
		width: 450px;
	}
	#photoBox figure {
		width: 300px;
		height: 300px;
		margin: 0 75px 40px 75px;
	}
}
/*熒幕尺寸【小於】481時頁面顯示---手機*/
@media (max-width: 480px) {
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
/*----------------photoBox--------------------*/
	.wysiwyg{
		width: 90%;
	}
	#photoBox{
		width: 300px;
	}
	#photoBox figure {
		width: 250px;
		height: 250px;
		margin: 0 25px 20px 25px;
	}
}