/* header */
header {
	position: fixed;
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0;
}
header .banner{
    position:relative;
	display:flex;
	justify-content:center;
	flex-direction:column;
	background: #fff;
	margin: 0 auto;
}
header .banner a {
	display: block;
	color: #006ab7;
	height: 100%;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #ddd;
}
header .banner a img {height: 2.5rem;}

/* footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    border-top: 1px solid #c9c9c9;
	z-index: 999;
}

.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer>div {
    width: 20%;
	height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;;
    flex-direction: column;
}

.footer>div a {
	display: flex;
	width: 100%;
	height: 6rem;
	flex-direction: column;
	align-items: center;
	padding: .7rem 0;
}

.footer>div a img {
	width: 3.8rem;
	height: 50%;
    opacity: 40%;
	padding-bottom: .5rem;
}

.footer>div p {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50%;
    font-size: 1.5rem;
    color: #868686;
    width: 100%;
    text-align: center;
	line-height: 1.1;
}

.footer .footer_btn.active p {
	color: #0051a2;
	font-weight: 600;
}
.footer .footer_btn.active img {
	opacity: 100%;
}