@charset "utf-8";
/* CSS Document */

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: "微軟正黑體";
}
.header_box{
	width: 100%;
	max-width: 800px;
	position: relative;
	margin: 0 auto;
}
.header_box > ul{
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 5px;
}
.logo_box{
	width: 200px;
	float: left;
}
.logo_box > img{
	width: 100%;
	height: auto;
	float: left;
}
.menu_box{
	width: calc( 100% - 200px );
	float: left;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.menu_box > a{
	width: auto;
	float: left;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 600;
	color: #555;
	text-decoration: none;
}
.menu_box > a:hover{
	color: #007CC2;
}
.menu_link_box{
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 0;
	background-color: rgba(0,0,0,0.5);
}
.menu_link_box > a{
	width: auto;
	float: left;
	padding: 0 15px;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}
.menu_link_box > a:hover{
	color:#FFCE00;
}
.right{
	border-right: 1px solid #fff; 
}
