/*重置默认的外边距和内边距*/
*{
    margin:0;
    padding:0;
}
/*常用标签的样式重置*/
i{
    font-style: normal;
}
a{
    text-decoration: none;
}
input{
    outline: none;
    border:none;
}

/*设定html和body的宽度为100%*/
html,body{
    width:100%; 
    font: 14px/150% tahoma,arial,Microsoft YaHei,Hiragino Sans GB,"\u5b8b\u4f53",sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #444;
}
/*头部*/
.header {
    width:100%;
    height: 110px;
    box-shadow: 10px 10px 10px rgba(111,111,111,0.5);
    position: relative;
}
.header .logo{
	width: 164px;
    height:50px;
    color: #444;
    font-size: 18px;
    font-weight: 600;
    line-height: 50px;
    position: absolute;
    top:20px;
    left:20px;
}
.header .logo img {
    width: 164px;
    height:50px;
    display: block;
}
.header .wel {
	font-size: 18px;
    line-height: 34px;
    border-left: 1px solid #ccc;
    position: absolute;
    left: 200px;
    top:28px;
    padding-left: 20px;
    font-weight:bold;
}

/*表单*/
form{
	width: 500px;
	margin: auto;
	margin-top: 30px;
}
.register-box{
	border: 1px solid #ddd;
    margin-bottom: 28px;
}
.register-box label{
	height: 52px;
    line-height: 52px;
    padding-left: 20px;
    display: inline-block;
}
.register-box span{
    width: 77px;
    height: 52px;
    font-size: 16px;
    display: inline-block;
    border-right: 1px solid #ddd;
}
.register-box input{
	width: 240px;
    height: 30px;
    line-height: 30px;
    /*padding-bottom: 11px;*/
    /*padding-left: 20px;*/
    /*padding-top: 11px;*/
    margin-left: 10px;
    color: #444;
    font-size: 14px;
    /*background: #68ae00;*/
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}
/*输入框默认颜色*/
.register-box input::-webkit-input-placeholder {
    color: #999;
}
.register-box .tips{
    width: 500px;
    height: 20px;
    color: #bbb;
    font-size: 14px;
    display: block;
    margin-top: 4px;
    line-height: 20px;
    position: absolute;
}
.register-box .tips i {
    width: 16px;
    height: 16px;
    display: block;
    float: left;
    margin: 2px 10px 2px 2px;
    border-right: 0 none;
}
.register-box .tips span  {
    width: 450px;
    height: 20px;
    color: #bbb;
    font-size: 14px;
    line-height: 20px;
    display: block;
    float: left;
    border-right: 0 none;
}
.register-box .tips .yes {
     background: url("../images/yes.png") no-repeat;
 }
.register-box .tips .no {
    background: url("../images/wrong.png") no-repeat;
}
/*用户名*/
.register-box .username_label .user {
    letter-spacing: 6px;
}
/*联系人*/
.register-box .other_label .people {
    letter-spacing: 6px;
}
/*验证码*/
#code{
    width: 100px;
    height: 40px;
    float: right;
    vertical-align: middle;
    display: inline-block;
    background: #eee;
    margin: 5px 3px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}
/*#code:hover {*/
    /*color: #222;*/
    /*background: #eee;*/
/*}*/
/*协议*/
.arguement{
	margin: 20px 0 28px 0;
}
.arguement input{
	vertical-align: middle;
    margin-right: 10px;
}
.arguement a{
	color: #38f;
    text-decoration: none;
    font-size: 12px;
}
/*提交按钮*/
.submit_btn button{
	width: 100%;
    height: 54px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #eee;
    border: 0;
    border-radius: 3px;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}
