html, body {
    width: 100%;
    height: 100%;
}

/* header */

.header {
    width: 100%;
    /* height: 2.8rem; */
	padding-bottom:20px;
    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.26rem;
    font-weight: bold;
    margin-top: 0.3rem;
}

.h-right {
    /* min-width: 200px; */
	display: flex;
	justify-content: right;
}

.h-right ul li:nth-child(2) {
    margin: 0 .34rem;
}

.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;
}

.h-right ul li.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #02c1a4;
    bottom: -3px;
    left: 55%;
    transform: translateX(-50%);
}

/* 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: 16px;
    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: 14px;
    color: #fff;
	padding: 10px 0;
}

@media only screen and (min-width: 1001px) {
				
	.h-right ul li {
		font-size: 16px;
	}
	
	.header-wrapper, .content-wrapper, .footer-wrapper{
		width: 60%;
	}
}