
*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	height: 100%;
	width: 100%;
}
body{
	background-color: #eee;
	padding-top: 120px;
}
a{
	text-decoration: none;
}


#banner {
	height: 70px;
	width: 100%;
	background: #fff;
	margin-bottom: 40px;
	position: fixed;
	top: 0;
	border-bottom: solid 1px #e5e5e5;
	z-index: 111;
	display: flex;
	align-items: center;
	padding:0  10%; 
}
.logo_box {
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}

.page_name {
	margin: 0 auto;
	text-align: center;
	color: #f60;
	font-size: 18px;
	font-weight: 600;
}
.page_name p {
	margin-top: 0;
	margin-bottom: 0;
}
.container {
	width: 80%;
	flex:1;
	margin: 0 auto;	
	padding-top: 40px;
	background-color: #fff;
	padding-bottom: 20px;
	margin-bottom: 50px;
}