@charset "utf-8";
/* CSS Document */
::-webkit-input-placeholder { /* WebKit browsers */
  color:rgba(225,223,223,0.46);
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color:rgba(225,223,223,0.46);
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color:rgba(225,223,223,0.46);
} 
.navtop_nav a:nth-of-type(2){
	background-color:turquoise;
}
.content {
	width: 100%;
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-bottom: 5rem;
}
.content_form {
	width: 60%;
	height: 50rem;
	padding: 3rem 0;
	display: flex;
	justify-content: center;
	align-items:flex-end;
	align-content: space-around;
	flex-wrap: wrap;
	background: url("../Images/zhuce/Background.jpg") center/cover no-repeat;
	margin-top: 3rem;
	border-radius: 1rem;
	color: white;
}
.content_form>h2{
	width: 80%;
	font-size:3.5rem;
	text-align: center;
}
.content_form>span{
	width: 80%;
	font-size:1.6rem;
	text-align: center;
}
.content_form>div{
	width:40%;
	display: flex;
	flex-direction: column;
}
.content_form>div>span{
	font-size:1.8rem;
}
.content_form>div>input{
	margin-top:0.5rem;
	border: 0;
	background-color:rgba(157,157,157,0.46);
	border-radius:1rem;
	width: 90%;
	height: 4rem;
	color: white;
	padding:0.2rem;
}
.content_form>input{
	width: 36%;
	margin-right: 4%;
	background-color: dodgerblue;
	height: 4rem;
	border-radius:1rem;
	color: white;
	font-size:1.8rem;
	cursor: pointer;
}
.content_form>input:hover{
	background-color:blue;
}
.content_form>input::active{
	background-color:dodgerblue;
}