.font-one {
	color: white;
	font-size: 200px;
	display: block;
	position: relative;
	top: 30%;
	text-align: center;
}

.font-two {
	color: white;
	font-size: 35px;
	display: block;
	position: relative;
	top: 23%;
	text-align: center;
}

.bg-blur {
	float: left;
	width: 100%;
	background-color: black;
	height: 100%;
	text-align: center;
	opacity: 0.3;
}

.content-help {
	position: absolute;
	/*left: 150px;*/
	right: 15%;
	height: 100px;
	line-height: 100px;
	text-align: right;
	border: 0px solid red;
}

.content-help a {
	color: white;
	font-size: 14px;
	text-decoration: none;
}

.content-Login {
	border: 0px solid red;
	height: 350px;
	width: 60%;
	position: absolute;
	top: 25%;
	left: 25%;
}

.content-Login-One {
	border: 0px solid red;
	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
}

.content-Login-Two {
	border: 0px solid red;
	height: 40px;
}

.content-Login-Three {
	border: 0px solid red;
	height: 25px;
}

/*当屏幕在1200px~1700px之间*/

@media screen and (min-width:1200px) and (max-width:1700px) {
	.font-one {
		font-size: 170px;
	}
	.font-two {
		font-size: 28px;
		top: 24%;
	}
}


/*当屏幕在10px~1199px之间*/

@media screen and (min-width:10px) and (max-width:1199px) {
	.font-one {
		font-size: 140px;
	}
	.font-two {
		font-size: 23px;
		top: 25%;
	}
}