@charset "utf-8";
/* CSS Document */

	html, body {
		height: 100%;
		margin: 0;
	}

	body {
		display: flex;
		/* justify-content:center; */
		flex-direction: column;
		min-height: 100vh;

		font-family: "Roboto", Microsoft JhengHei, Helvetica, sans-serif;

		background-color: #FFF;

		height:100%;
	}
	
	#floor_box{
		flex-shrink: 0;
		
		
		border-top: #666666 solid 1px; 
		
		background: #FFF; 
		text-align: center; 
		padding: 5px;

	}
	
	#top_box, #menu_box {
		flex-shrink: 0; /* 不被壓縮 */
	}
	
	#menu_box{
		
		width: 100%;
		border-bottom: #666666 solid 1px;
		left: 0px;
	}
	
	#body_box{
		flex: 1;
		
		
		
		
		position: relative;
		width: 100%;
		left: 0px; 
		padding: 10px; 
		text-align: center;
		word-wrap:break-word;
	}



@media screen and (max-width: 1200px){
	.menu_text{
		cursor: pointer;
		padding:10px; 
		font-size: 30px;
		white-space:nowrap; 
		color: #666;
	}

	.menu_text:hover {
		color: #FF0004;
	}
	#body_box{
		font-size:30px;
	}
	
}
@media screen and (min-width: 1201px) {
	.menu_text{
		cursor: pointer;
		padding:10px; 
		font-size: 20px;
		white-space:nowrap; 
		color: #666;
	}

	.menu_text:hover {
		color: #FF0004;
	}
	#body_box{
		font-size: 20px;
	}
	
}
	
.news_block{
	border-bottom:1px solid #BBBBBB; 
	width:810px; 
	cursor: pointer;
	display: inline-block;
	width: 600px;
	
}