@charset "utf-8";
/* CSS Document */
/*重置样式*/
*{
    margin: 0;
    padding: 0;
    border: 0
}
body {
    font-family: "微软雅黑";
    background: #f4f4f4;
}

/*header*/
.header-line {
    width: 100%;
    height: 4px;
    background: #fde577;
}

/*content*/
.content {
    width: 28%;
    margin: 70px auto 0;
    text-align: center;
}
.content-reg{
	width: 50%;
	margin: 70px auto 0;
    text-align: center;
}
.content-logo {
    width: 80px;
    height: 80px;
}
.content-title {
    margin: 10px 0 25px 0;
    font-size: 2em;
    color: #747474;
    font-weight: normal;
}
.content-form {
    width: 100%;
    padding: 36px 0 20px;
    border: 1px solid  #dedede;
    text-align: center;
    background: #fff;
}
.content-form form div {
    margin-bottom: 19px;
}
.content-form form .user,
.content-form form .password {
    width: 76%;
    height: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid  #cccbcb;
    border-radius: 7px;
    letter-spacing: 1px;
}
.content-form form input:focus,.content-form-reg form input:focus {
    outline: none;
    -webkit-box-shadow: 0 0 5px #fde520;
            box-shadow: 0 0 5px #fde520;
}
.content-form-reg {
    width: 100%;
    padding: 36px 0 20px;
    border: 1px solid  #dedede;
	text-align:left;
    background: #fff;
}
.content-form-reg form div {
    margin-bottom: 19px;
}
.content-form-reg form .user,
.content-form-reg form .password, 
.content-form-reg form .email{
    width: 35%;
    height: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid  #cccbcb;
    border-radius: 7px;
    letter-spacing: 1px;
}
.content-form-reg form .title {
    display: block;
	float: left;
	width: 20%;
    height: 20px;
    font-size: 1em;
    letter-spacing: 1px;
	text-align: right;
	padding-top: 10px;
}
.content-form-reg form .info {
	width: 30%;
    height: 20px;
    font-size: 10px;
    letter-spacing: 1px;
	text-align: right;
	padding-top: 10px;
	padding-left: 10px;
	color: green;
}
.submit{
	text-align: center;
}
.content-form-signup {
    width: 84%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid  #cccbcb;
    border-radius: 7px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background: #fde577;
    cursor: pointer;
}
.content-form-signup:hover {
    background: #fde520;
}
.content-form-signup:focus {
    outline: none;
    border: 1px solid  #fde520;
}
.content-login-description {
    margin-top: 25px;
    line-height: 1.63636364;
    color: #747474;
    font-size: .91666667rem;
}
.content-login-link {
    font-size: 16px;
    color: #0dbfdd;
    text-decoration: none;
	padding-bottom: 20px;
}

/*输入框无内容便提示*/
#remind_u,
#remind_p {
    width: 76%;
    margin: 0 auto 2px;
    text-align: left;
    font-size: 12px;
    color: #f00;
}

