/*重置默认的外边距和内边距*/
*{
    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: #666;
}
/*头部*/
.logo{
	width: 70px;
    height:70px;
    background: url(../../images/logo.png) no-repeat;
    background-size:100%;
    position: absolute;
    top:12px;
    left:50px;
}
.desc{
	font-size: 18px;
    line-height: 60px;
    border-left: 1px solid #ccc;
    position: absolute;
    left: 150px;
    top:16px;
    padding-left: 20px;
    font-weight:bold;
}
header{
	width:100%;
    height: 90px;
    box-shadow: 2px 2px 2px 2px rgba(111,111,111,.5);
    position: relative;
    margin-bottom:20px;
}
/*注册信息*/
/*总体布局*/
form{
	max-width: 600px;
    width:100%;
	margin: auto;
	
   
    box-sizing:border-box;
}
.register-box{
	border: 1px solid #ddd;
    margin-bottom: 32px;
}
.register-box label{
	height: 52px;
    line-height: 52px;
    padding-left: 20px;
    display: inline-block;
}
.register-box input{
	
   
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei","Hiragino Sans GB";
}
.register-box .tips{
	position: absolute;
    margin-top: 5px;
    font-size: 14px;
    color: #ccc;
}
/*用户名*/
.register-box .username_label{
	word-spacing: 10px;
}
/*密码，确认密码，*/
.register-box .other_label{
	word-spacing: 2px;
}
/*手机号*/
.register-box span{
   
   
    height: 52px;
   
}
.register-box .phone{
	padding-left: 18px;
}
/*验证码*/
#code{
	display: inline-block;
    width: 100px;
    height: 46px;
    vertical-align: middle;
    background-color: black;
    font-size: 25px;
    color: #fff;
    text-align: center;
    line-height: 46px;
}
/*协议*/
.arguement{
	margin-bottom: 58px;
}
.arguement input{
	vertical-align: middle;
}
.arguement a{
	color: #38f;
    text-decoration: none;
    font-size: 12px;
}
/*提交按钮*/
.submit_btn input{
	width: 100%;
    height: 54px;
    color: #fff;
    background:#bf1d1d;
    border: 0;
    font-size: 16px;
    font-family: "Microsoft YaHei","Hiragino Sans GB";
}

