*{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
.container{
	width: 100%;
	height: 35rem;
	box-sizing: border-box;
	padding: 4rem 2rem;
}
.container>h2{
	font-size: 24px;
	margin: 0.5rem 0;
	color: #272625;
}
.container>p{
	font-size: 16px;
	color: #555555;
}
form{
	width: 100%;
	height: 18rem;
	box-sizing: border-box;
	padding-top: 4rem;
	position: relative;
}
form>div{
	width: 100%;
	height: 3rem;
	background: #f2f2f2;
	border-radius: 5rem;
	display: flex;
	align-items: center;     /* 垂直居中 */
}
form>div:nth-child(1){
	margin-bottom: 1rem;
}
form>div>img{
	width: 1.5rem;
	margin: 0 1rem;
}
input{
	width: calc(100% - 3.5rem);
	height: 2rem;
	border: none;
	outline: none;
	font-size: 18px;
	background: transparent;
}
input.sub{
	width: 100%;
	height: 2.5rem;
	background: linear-gradient(to right , #6996EC, #9464C2);
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 5rem;
	font-size: 16px;
	color: white;
}
ul{
	width: 100%;
	height: 3rem;
}
ul>a>li{
	width: auto;
	height: 100%;
	display: flex;
	align-items: center;     /* 垂直居中 */
	font-size: 14px;
	color: #666;
}
ul>a:nth-child(1)>li{
	float: left;
}
ul>a:nth-child(2)>li{
	float: right;
}