body {
	margin: 0;
	font-family: "微软雅黑";
}

.title {
	width: auto;
	margin: 30px auto 30px;
	height: auto;
	background-color: #FFF;
	color: green;
	font-size: 38px;
	text-align: center;
	line-height: 100px;
}

.userAction {
	width: 330px;
	margin: auto;
	height: auto;
	overflow: hidden;
}

.userAction .showInfo-btn {
	display: block;
	width: 150px;
	height: 50px;
	background-color: #FFF;
	border: 2px solid green;
	border-radius: 10px;
	color: green;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
	float: left;
}

.showInfo-btn:hover {
	background-color: green;
	color: #FFF;
}

.userAction .download {
	display: block;
	width: 150px;
	height: 50px;
	background-color: #FFF;
	border: 2px solid green;
	border-radius: 10px;
	color: green;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
	float: right;
	text-decoration: none;
}

.download:hover {
	background-color: green;
	color: #FFF;
}

.showInfo-Bg {
	height: 100%;
	width: 100%;
	background: #000000;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	position: fixed;
	z-index: 900;
	left: 0px;
	top: 0px;
	display: none;
}

.showInfo {
	width: 800px;
	height: auto;
	background: linear-gradient(#008000, #00a0e9);
	filter: alpha(opacity=95);
	-moz-opacity: 0.95;
	opacity: 0.95;
	color: #FFF;
	position: fixed;
	left: 50%;
	margin-left: -400px;
	top: 100px;
	z-index: 999;
	text-align: center;
	font-size: 24px;
	border: 0;
	border-radius: 10px;
	/*box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 1);*/
	display: none;
}

.showInfo .s-title {
	text-align: center;
	font-size: 28px;
}

.showInfo .s-exit {
	display: block;
	height: 32px;
	width: 32px;
	position: absolute;
	top: 3px;
	right: 3px;
	cursor: pointer;
}

.showInfo .s-exit:active {
	width: 30px;
	height: 30px;
	top: 4px;
	right: 4px;
}

.showInfo .s-content {
	overflow: hidden;
	margin: auto auto 100px;
	text-align: center;
	padding-bottom: 20px;
	width: 600px;
	background-color: #FFF;
	border-radius: 5px;
	/*box-shadow:inset 0 0 10px 0px #000000;*/
}

.showInfo .s-content>p {
	margin: 10px 10px 0;
	color: darkgreen;
	font-size: 14px;
	text-align: left;
}

.showInfo .s-content>p:last-child {
	margin-bottom: 10px;
}

.showInfo .s-content>p>span.code {
	padding: 0 10px 0 5px;
	color: deeppink;
	font-style: italic;
}
.showInfo .s-content img{
	display: block;
	margin: 20px auto auto;
}
@media only screen and (max-width: 900px) {
	.showInfo {
		position: absolute;
		width: 80%;
		left: 0;
		margin-left: 10%;
		border-radius: 0;
	}
	.showInfo .s-title {
		text-align: center;
		font-size: 28px;
		margin: 15px auto 15px;
	}
	.showInfo .s-exit {
		display: block;
		height: 40px;
		width: 40px;
		position: absolute;
		top: 3px;
		right: 3px;
	}
	.showInfo .s-exit:active {
		width: 38px;
		height: 38px;
		top: 4px;
		right: 4px;
	}
	.showInfo .s-content {
		overflow: hidden;
		margin: auto 10% 50px;
		text-align: center;
		width: 80%;
		background-color: #FFF;
		border-radius: 5px;
		/*box-shadow:inset 0 0 10px 0px #000000;*/
	}
}

@media only screen and (max-width: 800px) {
	.title {
		width: 100%;
		margin: 0px auto 30px;
		height: auto;
		background-color: green;
		color: #FFF;
		font-size: 28px;
		text-align: center;
		line-height: 100px;
	}
}

@media only screen and (max-width:480px) {
	.userAction {
		width: 100%;
	}
	.userAction .showInfo-btn {
		display: block;
		width: 140px;
		height: 42px;
		line-height: 42px;
		margin-left: 10px;
		border-radius: 0;
		background-color: green;
		color: #FFF;
	}
	.userAction .download {
		display: block;
		width: 140px;
		height: 42px;
		line-height: 42px;
		margin-right: 10px;
		border-radius: 0;
		background-color: green;
		color: #FFF;
	}
}