@charset "utf-8";
/* CSS Document */
/*---------------------------------------------------header---------------------------------------*/
/*----------------------inside_title------------------------------*/
	#inside_title {
		width: 70%;
		margin: 0 auto;
	}
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
	#content{
		width: 100%;
	}
/*----------------photoBox--------------------*/
	#photoBox{
	    width: 100%;
		max-width: 1296px;
		margin: 0 auto;
	}
	#photoBox figure{
		position: relative;
		width: calc(33.33% - 32px);
		height: 22.8vw;
		max-height: 300px;
		overflow: hidden;
		float: left;
		margin: 0 16px 60px 16px;
		border: 1px solid #e8e8e8;
		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: contain;
	}
	#photoBox figure:hover .photo{
		transform: scale(1.1);
	}

/*---文字標題(h5)---*/
	#photoBox figure h5{
		position: absolute;
		bottom: 0;
		width: 100%;
		background-color: #244280;
		color: #fff;
		padding: 10px 5px;
		text-align: center;
		transition: background-color 0.5s ease;
		line-height: 1.5;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        text-overflow: ellipsis;
	}
	#photoBox figure:hover h5{
		background-color: #8c9ae4;
	}
/*熒幕尺寸【小於】1025時頁面顯示---平板*/
@media (max-width:1024px) {
/*---------------------------------------------------header---------------------------------------*/
/*----------------------inside_title------------------------------*/
	#inside_title {
		width: 80%;
	}
}
/*熒幕尺寸【小於】769時頁面顯示---平板*/
@media (max-width:768px) {
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
/*----------------photoBox--------------------*/
	#photoBox{
		width: 80%;
	}
	#photoBox figure {
	    width: calc(50% - 32px);
		height: 26.2vw;
		margin-bottom: 40px;
	}
}
/*熒幕尺寸【小於】481時頁面顯示---手機*/
@media (max-width: 480px) {
/*---------------------------------------------------main---------------------------------------*/
/*-------------------------content--------------------------------*/
/*----------------photoBox--------------------*/
	#photoBox{
		width: 100%;
	}
	#photoBox figure {
	    width: calc(50% - 10px);
        height: 35.5vw;
        margin: 0 5px 20px 5px;
	}
}