@charset "utf-8";
/*先把手机版的footer_mobile隐藏起来*/
#footer_mobile{
	display:none;
}
#footer{
	width:100%;
	height:100px;
	background:#444;
}
#footer dl{
	margin:0 auto;
	padding-top:15px;
	width:1200px;
	height:90px;
}
#footer dl dd{
	margin:4px auto;
	text-align: center;
	height:23px;
	line-height: 23px;
	font-size: 14px;
	color:#eee;
}
/*媒体查询*/
@media (max-width: 500px){
	#footer{
		display:none;
	}
	#footer_mobile{
		display:block;
		width:100%;
		height:36px;
		line-height: 36px;
		text-align: center;
		background:#666;
		color:#fff;
		position:fixed;
		bottom:0;
	}
}