html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, "Microsoft YaHei", "Hiragino Sans GB", "WenQuanYi Micro Hei", '\5b8b\4f53', Helvetica, sans-serif;
    background-color: #eef0f4;
}
input {
	outline: none;
}

::-webkit-input-placeholder {
    font-size:14px;
    color: #bfbfbf;
}
:-moz-placeholder {
    font-size:14px;
    color: #bfbfbf;
}
::-moz-placeholder {
    font-size:14px;
    color: #bfbfbf;
}
:-ms-input-placeholder {
    font-size:14px;
    color: #bfbfbf;
}
/*以下四个实现获取焦点时，让占位文字不可见*/
/* WebKit browsers */
input:focus::-webkit-input-placeholder { color:transparent; }

/* Mozilla Firefox 4 to 18 */
input:focus:-moz-placeholder { color:transparent; }

/* Mozilla Firefox 19+ */
input:focus::-moz-placeholder { color:transparent; }

/* Internet Explorer 10+ */
input:focus:-ms-input-placeholder { color:transparent; }

.wrapper {
    width: 100%;
    height: 100%;
    background-color: white;
}
.header {
    width: 100%;
    height: 70px;
    background-color: #343c50;
}
.header img{
    width: 280px;
    height: 70px;
}
.footer {
    width: 100%;
    height: 140px;
    background: #313236;
    color: #bfbfbf;
    font-size: 10px;
    position: fixed;
    bottom: 0;
}
.footer > div {
    width:1200px;
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -600px;
    bottom:50px;
}
.footer p {
    margin-top: 10px;
}
.footer span, .footer a {
    color: #0095ea;
}
.footer a {
    text-decoration: none;
}
.step-wrapper {
    width: 80%;
    min-width: 600px;
    margin:30px auto;
}
.step {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}
.line {
    width: 100%;
    height: 1px;
    background-color: #ececec;
}
.form-register {
    width: 480px;
    min-height: 800px;
    margin: 50px auto;
}
.input-wrapper {
    margin-top: 20px;
    overflow: hidden;
}
.label {
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #858585;
    display: block;
    float: left;
    text-align: right;
    margin-right: 10px;
}
.input {
    width: 280px;
    height: 40px;
    line-height: 20px;
    text-indent: 5px;
    border: 1px #c3c3c3 solid;
    display: block;
    float: left;
    background-color: white;
}
.input-name {
    width: 180px;
}
.select {
    text-indent: 0;
}
.check-name {
    width:100px;
    height: 40px;
    border: 1px #c3c3c3 solid;
    border-left: none;
    display: block;
    float: left;
    background-color: #f8f8f8;
    cursor: pointer;
}
.check-name img {
     margin-left: 10px;
}
.check-name span {
    height: 40px;
    line-height:40px;
    margin-left: 5px;
    font-size: 16px;
    color: #858585;
}
.name-error-img {
    width: 16px;
    height: 16px;
    margin-top: 12px;
    margin-left: 5px;
    display: none;
}
.name-correct-img {
    width: 16px;
    height: 16px;
    margin-top: 12px;
    margin-left: 5px;
    display: none;
}
.error-msg {
    margin: 5px 10px 5px 170px;
    font-size: 10px;
    color: #ff5267;
    display: none;
}
.img-captcha-wrapper {
    width: 180px;
    height: 40px;
    border: 1px #c3c3c3 solid;
    display: block;
    float: left;
    overflow: hidden;
}
.img-captcha {
    width: 180px;
    height: 40px;
}
.input-register {
    width: 280px;
    height:40px;
    color: white;
    background-color: #0095ea;
    font-size:14px;
    margin-top: 20px;
    margin-left: 170px;
    cursor: pointer;
}

.retrieve-wrapper {
    width: 700px;
    text-align: center;
}
.retrieve-img {
    margin: 0 auto;
}
.retrieve-title {
    margin: 20px auto;
    font-size: 16px;
}
.retrieve-msg {
    margin: 20px auto;
    font-size: 14px;
}
.retrieve-email {
    color: #0095ea;
    text-decoration: none;
}

@keyframes clockwise {
	100% {
		transform: rotate(360deg)
	}
}