@CHARSET "UTF-8";
div#login{
	width:100%;
	height:600px;
	margin:15px auto;
	padding-top:120px;
	background:url(../images/bg.jpg);
}
div#login table{
	width:531px;
	height:283px;
	margin:0 auto;
	border:3px solid #eee;
	border-radius:10px;
	background:#999;
}
div#login table dl{
	width:531px;
	height:283px;
	color:#333;
	background:url(../images/bg_login.jpg);
	border-radius:8px;
}
div#login table dl dt{
	width:100%;
	height:92px;
	line-height:80px;
	font-size:24px;
	letter-spacing:3px;
	text-align:center;
	background:#f6f6f6;
	border-bottom:1px solid #666;
	border-radius:5px 5px 0 0;
	opacity:0.6;
	color:#333;
}
div#login table dl dd{
	width:80%;
	height:30px;
	line-height:30px;
	text-align:center;
	margin:6px 0 5px 90px;
}
/*媒体查询*/
@media (max-width: 500px){
	div#login{
		height:auto;
		margin:15px auto;
		padding-top:20px;
		background:none;
	}
	div#login table{
		width:96%;
	}
	div#login table dl{
		width:100%;
		background:#eee;
	}
	div#login table dl dt{
		height:72px;
		line-height:60px;
		font-size:16px;
		background:#ddd;
	}
	div#login table dl dd{
		margin:6px 0 5px 10px;
	}
}