html,
body {
	width: 100%;
	height: 100%;
}

/* header */

.header {
	width: 100%;
	background: #ebf7ff;
}

.header-wrapper,
.content-wrapper,
.footer-wrapper {
	width: 90%;
	margin: 0 auto;
}

.header-top {
	display: flex;
	/* height: .48rem; */
	line-height: .48rem;
	justify-content: space-between;
	padding: .34rem 0;
}

.header-top .h-left {
	display: flex;
	align-items: center;
}

.header-top .h-left .logo {
	width: 39px;
	height: 48px;
}

.header-top .h-left .logo-text {
	font-size: 16px;
	margin-left: 10px;
	font-weight: bold;
	vertical-align: middle;
}

.header-bottom .text {
	color: #333333;
	font-size: 1.66rem;
	font-weight: bold;
	padding-top: 0.1rem;
}

.h-right {
	/* min-width: 200px; */
	display: flex;
	justify-content: right;
}

.h-right ul li:nth-child(2) {
	margin: 0 1rem;
}

.h-right ul li {
	float: left;
	text-align: center;
	font-size: 0.5rem;
	color: #333333;
	cursor: pointer;
}

.h-right ul li.active {
	color: #02c1a4;
	font-weight: bold;
	position: relative;
}

/* content */

.content {
	width: 100%;
	min-height: 7rem;
}

/* footer */

.footer {
	width: 100%;
	margin-top: 20px;
	/* height: 2.76rem; */
	background: #094;
}

.f-top {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 0px 30px 0px;
}

.f-top .btm-logo {
	width: 35px;
	height: 45px;
}

.f-top .btm-logo-text {
	color: #FFF;
	font-size: 16px;
	margin-left: 10px;
	vertical-align: middle;
}

.f-center {
	padding: 0.4rem 0 10px 0;
	display: flex;

}

.f-center .fc-item {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.f-center .fc-item .img-text {
	color: #fff;
	font-size: 0.5rem;
	text-align: center;
	vertical-align: middle;
}

.f-bottom {
	border-top: 2px solid #FFFFFF;
	padding: .2rem 0 .4rem;
}

.f-bottom .b-em {
	text-align: center;
	font-size: 0.5rem;
	color: #fff;
	padding: 10px 0;
}

@media screen and (min-width:600px) {
	
	.header{
		padding: 0px;
	}
	
	.header-top{
		padding: 20px 0px;
	}
	
	.header-bottom .text{
		font-size: 50px;		
		padding-top: 30px;
	}
	
	.h-right ul li{
		font-size: 26px;
	}

	.f-center .fc-item .img-text{
		font-size: 20px;
	}
	
	.f-bottom .b-em{
		font-size: 20px;
	}
}