/*通用*/
html{
	 font-size: calc(100vw/7.5);
}
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	list-style: none;
}
a{
	text-decoration: none;
}
img{
	border: 0;
}

body{
	font-family: '微软雅黑';
	font-size: .28rem;
	line-height: .45rem;
	background-color: #fff;
}
.wrapper{
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 1.6rem;
}
[v-cloak] {
display: none;
} 
.hidden{
	visibility: hidden;
}
.nohidden{
	visibility: visible;
}
.clearfix:after{
	content: '';
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}
.back-to-top{
	position: fixed;
	z-index: 9;
	width: 1.17rem;
	height: 1.17rem;
	background-image: url(../images/back_to_top.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	bottom: .6rem;
	right: .1rem;
}
header{
	height: 1.6rem;
	background-color: #13506c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 .3rem;
	position: fixed;
	z-index: 9;
	width: 100%;
	left: 0;
	top: 0;
}
header a.logo{
	display: block;
	width: 4.8rem;
	height: .7rem;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
header .wjx{
	width: .44rem;
	height: .42rem;
	background-image: url(../images/wjx.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
	margin-left: .6rem;
}
header .wjx2{
	width: .49rem;
	height: .47rem;
	background-image: url(../images/wjx_2.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
	margin-left: .3rem;
}
header .menu{
	width: .76rem;
	height: .47rem;
	background-image: url(../images/menu.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
header .menu-list{
	position: absolute;
	width: 100%;
	left: 0;
	top: 1.6rem;
	transform: translate3d(0,-150%,0);
	opacity: 0;
	transition: all .3s;
}
header .menu-list.active{
	opacity: 1;
	transform: translate3d(0,0,0);
}
header .menu-list>a{
	display: flex;
	background-color: #32889f;
	color: #fff;
	padding: .2rem;
	justify-content: space-between;
	border-bottom: 1px solid #fff;
}
footer{
	background-color: #08233d;
	color: #fff;
	padding: .6rem .3rem;
}
footer .weixin{
	display: flex;
	font-size: .26rem;
}
footer .weixin .gzh{
	text-align: center;
	margin-right: .4rem;
}
footer .weixin .gzh .erweima{
	margin-top: .15rem;
}
footer .copyright{
	margin-top: .2rem;
}
footer .copyright a{
    color: #fff;
}
.cont-top{
	height: .9rem;
    background-color: #eaf2f7;
    text-align: center;
    font-size: .36rem;
    font-weight: bold;
    line-height: .9rem;
    color: #2a849e;
}
.cont-top-s{
	height: .9rem;
    background-color: #eaf2f7;
    text-align: center;
    font-size: .32rem;
    font-weight: bold;
    line-height: .9rem;
    color: #2a849e;
}
.cont-box{
	padding: .2rem;
}
.popup{
	background-color: #13506c;
	color: #fff;
	position: fixed;
	border-radius: .1rem;
	opacity: .8;
	width: 5rem;
	left: 50%;
	top: 45%;
	margin-left: -2.5rem;
	padding: .2rem;
	line-height: .36rem;
}
.loading{
	text-align: center;
}
.flag{
	text-align: center;
	padding: .2rem 0;
}
.mask{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 77;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: .7;
}