.area{
	background: url('../images/area_bg1.jpg') repeat-x center center;
	background-size: cover;
	color: #fff;
	text-align: center;	

	background-position-x: 0px;
	animation: bgmove 30s infinite;
	animation-timing-function:linear;
}
.area .topcnt{
	padding-top: 2.2rem;
	font-size: 0.42rem;
	font-weight: bold;
}
.area .topent{
	font-size: 0.2rem;
	padding-top: 0.16rem;
}
.area .areabox{
	width: 6.26rem;
	height: 3.75rem;
	box-sizing: border-box;
	margin: 0 auto;
	margin-top: 0.34rem;
	background: rgba(255,255,255,0.5);
	font-size: 0.24rem;
}
.area .areabox .title{
	font-size: 0.32rem;
	font-weight: bold;
	padding-top: 0.56rem;
}
.area .areabox .address{
	padding-top: 0.18rem;
	padding-bottom: 0.14rem;
}
.area .areabox .iconlist{
	position: relative;
	width: 4.9rem;
	margin: 0 auto;
	margin-top: 0.2rem;
	z-index: 999;
}
.area .areabox .iconlist .icon{
	width: 1.18rem;
}
.area .areabox .tel a{
	color: #fff;
}
.areabottom{
	background: rgba(0,0,0,0.2);
	font-size: 0.2rem;
	font-family: "微软雅黑";
	color: #fff;
	text-align: center;
	margin-top: 0.48rem;
	height: 1.3rem;
	padding-top: 0.2rem;
	box-sizing: border-box;
	line-height: 0.3rem;
	border-top: 1px solid #515151;
}
.area .fixbg{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	background: url('../images/area_bg2.png') no-repeat center center;
	background-size: cover;
	opacity: 0.5;
}
@keyframes bgmove{
	0% {
		background-position-x: 0px;
    }
    100% {
		background-position-x: -1920px;
    }
}