@CHARSET "UTF-8";
/*PC端显示的时候，首先隐藏手机端*/
div#mobile{
	display:none;
}

div#login{
	width:100%;
	height:600px;
	margin:15px auto;
	padding-top:120px;
	background:url(/Public/Home/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(/Public/Home/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:767px){
	/*手机端显示的时候，先隐藏PC端，然后显示手机端*/
	div#pc{
		display:none;
	}
	div#mobile{
		display:block;
	}
	dl.login{
		display:table;
		width:90%;
		margin:30px auto;
		padding:10px 0;
		color:#333;
	}
	dl.login dt{
		text-align:center;
		font-size:18px;
		margin:20px auto;
	}
	dl.login dd{
		height:35px;
		line-height:180%;
		font-size:15px;
		margin:5px auto;
		text-align:center;
	}
}