* {
	margin: 0;
	padding: 0;
	/* 內减模式 */
	box-sizing: border-box;
	-moz-user-select: none;
	/* Firefox私有属性 */
	-webkit-user-select: none;
	/* WebKit内核私有属性 */
	-ms-user-select: none;
	/* IE私有属性(IE10及以后) */
	-khtml-user-select: none;
	/* KHTML内核私有属性 */
	-o-user-select: none;
	/* Opera私有属性 */
	user-select: none;
	/* CSS3属性 */
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.wrapper {
	width: 1200px;
	margin: 0 auto;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 42px;
	background-color: #00a4ff;
}

.capsule {
	border-radius: 8px 8px 0 0 ;
}

.header h2 {
	float: left;
	margin-left: 60px;
}

.header h2 a {
	line-height: 42px;
	color: #f3f5f7;
}

.nav {
	float: right;
	margin-right: 100px;
	height: 42px;
}

.nav li {
	float: right;
	margin-right: 26px;
}

.nav li a {
	display: block;
	padding: 0 9px;
	height: 42px;
	line-height: 42px;
	font-size: 18px;
	color: #f3f5f7;
}

.nav li a:hover {
	border-bottom: 2px solid #f3f5f7;
}

.box {
	margin-top: 80px;
	position: relative;
}

.box .square {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 200px;
	height: 200px;
	background-color: #00a4ff;
}

/* .box .trunk {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 200px;
	height: 200px;
	background-color: #fafafd;
	border-radius: 50%;
} */

.box .register {
	margin: 0 auto;
	margin-top: 40px;
	padding-top: 10px;
	padding-bottom: 20px;
	width: 380px;
	box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, .3);
}

.box h1 {
	text-align: center;
	color: #262626;
}

.box .user {
	display: block;
	margin-top: 20px;
	margin-left: 40px;
	width: 300px;
	height: 38px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #00a4ff;
	outline: none
}

.box span {
	display: block;
	margin-top: 2px;
	margin-left: 40px;
	height: 20px;
}

.box .code {
	display: block;
	margin-top: 1px;
	margin-left: 40px;
	width: 300px;
	height: 38px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #00a4ff;
	outline: none
}

.box .sendCode {
	position: absolute;
	top: 205px;
	right: 460px;
	font-size: 12px;
	color: #00a4ff;
	cursor: pointer;
}

.box .phone {
	display: block;
	margin-top: 1px;
	margin-left: 40px;
	width: 300px;
	height: 38px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #00a4ff;
	outline: none
}

.box .passwd {
	display: block;
	margin-top: 1px;
	margin-left: 40px;
	width: 300px;
	height: 38px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #00a4ff;
	outline: none
}

.box .repasswd {
	display: block;
	margin-top: 1px;
	margin-left: 40px;
	width: 300px;
	height: 38px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #00a4ff;
	outline: none
}

.box .register .iconfont {
	margin-left: 40px;
	vertical-align: middle;
	font-size: 12px;
	color: #262626;
}

.box .register i {
	font-size: 12px;
	color: #262626;
}

.box .submit {
	display: block;
	margin-top: 10px;
	margin-left: 40px;
	text-align: center;
	padding: 10px;
	width: 300px;
	height: 38px;
	font-size: 14px;
	color: #f3f5f7;
	border-radius: 4px;
	border: 0;
	background-color: #00a4ff;
	cursor: pointer;
	transition: all 0.5s;
}

.box .submit:hover {
	background-color: rgb(111, 200, 255)
}

.footer {
	position: fixed;
	bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	width:100%;
	border-radius: 0 0 8px 8px;
	background-color: #f8f9fa;
	text-align: center;
	font-size: 16px;
	color: #7c7c7d;
}
.footer .company a {
	color: #7c7c7d;
}
.error {
	font-size: 12px;
	color: red;
}