
header {
	height: 125px;
	display: flex;
	background-color: white;
	align-items: center;
	justify-content: space-between;
	color: white;
}

header img {
	max-width: 682px;
	width: 100%;
	height: 84px;
	margin-left: 180px;
}

.content {
	background: url(/front/images/ic17.png) no-repeat center;
	background-size: cover;
	width: 100%;
	min-height: 1000px;
	/*min-width: 1600px;*/
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}

.content .register {
	width: 30%;
	min-height: 300px;
	min-width: 500px;
	background-color: white;
	top: 135px;
	right: 300px;
	border-radius: 10px;
	padding: 50px 0;
	position: absolute;
}

.content .register .top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.register .top a {
	color: #d5bb8b;
}

.content .register .input{
	display: flex;
	flex-direction: column;
	padding: 0 50px;
	justify-content: center;
}

/*注册成功*/
.content .finish {	
	width: 45%;
	height: 800px;
	background-color: white;
	margin: 75px auto;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content .hide {
	display: none;
}

.content .finish .center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.content .finish .center .right-i {
	height: 60px;
	width: 60px;
	background-color: green;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
	opacity: 0.7;
}

.content .finish .center .right-i::after {
	content: '';
	position: absolute;
	height: 20px;
	width: 10px;
	background-color: green;
	left: 23px;
	top: 15px;
	border-bottom: 5px solid white;
	border-right: 5px solid white;
	transform: rotate(40deg);
}

.content .finish .bot {
	margin-top: 10px;
	color: lightgray;
}

.content .finish .link {
	color: #d5bb8b;
	text-decoration: none;
}

.input .title {
	font-size: 30px;
	color: #d5bb8b;
}

.input .des {
	margin-top: 10px;
	color: #f9d97f;
	font-size: 18px;
}

.input .item {
	height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.input .item span {
	width: 100px;
	color: #cbc9db;
}

.input .item input {
	outline: none;
	border: 1px solid #cbc9db;
	height: 40px;
	width: 75%;
	border-radius: 5px;
	padding-left: 5px;
}

.input .auto-login {
	padding: 20px 0;
}

.submit {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.submit span {
	width: 100% !important;
	background-color: #d5bb8b;
	text-align: center;
	height: 60px;
	line-height: 60px;
	color: white;
	font-size: 25px;
	border-radius: 5px;
}

.agree {
	margin-top: 20px;
}

.agree a {
	color: #d5bb8b;
}

.login {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.login a{
	text-decoration: none;
	font-size: 20px;
	color: #d5bb8b;
}

/*协议*/
.content .net-pro {
	width: 800px;
	position: absolute;
	z-index: 999;
	left: 25%;
	top: 7%;
	box-shadow: darkgrey 0px 0px 20px 0px;
	border-radius: 20px;
}

.net-pro .top {
	background-color: #d5bb8b;
	height: 70px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 23px;
	border-radius: 20px 20px 0 0;
}

.net-pro .text {
	padding: 50px 25px;
	background-color: white;
	border-radius: 0 0 20px 20px;
	line-height: 30px;
}

.net-pro .bot {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 40px;
	margin-top: 20px;
}

.net-pro .bot .agre{
	width: 120px;
	height: 40px;
	background-color: #d5bb8b;
	border-radius: 20px;
	margin-right: 50px;
	color: white;
	cursor: pointer;
}

.net-pro .bot .refuse {
	width: 120px;
	height: 40px;
	color: black;
	border-radius: 20px;
	border: 1px solid lightgray;
	cursor: pointer;
}

@media (max-width: 880px) {
	header img {
		margin-left: 0;
		width: 100%;
		height: auto;
	}

	header {
		padding: 0 10px;
	}

	.content {
		height: 700px;
		min-height: auto;
	}

	.register {
		width: 94% !important;
		min-width: auto !important;
		right: 3% !important;
	}

	.input .title {
		font-size: 23px;
	}
}