@charset "utf-8";
html,body {
    background: #fff;
    font-family: "Microsoft YaHei", "宋体";
    color: #000;
    font-size: 12px;
}
.errorTooltip {
    font-size: 0.6rem;
    position: absolute;
    z-index: 999;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    width: 80%;
    left: 10%;
    box-sizing: border-box;
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
}
.errorTooltipShow {
    transform: scale(1);
    -webkit-transform: scale(1);
}
#container {
    max-width: 750px;
    min-height: 100%;
	margin: 0 auto;
	overflow: auto;
}
.log {
    width: 65%;
    margin: 2rem auto 0;
}
 .logo {
    width: 60%;
    
}

header img {
    width: 100%;
}
 main {
    margin-top: 50px;
}
 main .box {
    text-align: center;
    position: relative;
    width: 65%;
    margin: 0 auto 24px;
}

 main .box input {
    width: 100%;
    line-height: 28px;
    border: 0;
    border-bottom: 1px solid #e2e2e2;
    font-size: 16px;
    padding-left: 26px;
}

 main .box .icon_user {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("../images/user.png") no-repeat center/cover;
}
 main .box .icon_pw {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("../images/pw.png") no-repeat center/cover;
}
 main a{
    display: block;
    width: 65%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    background: #708a2b;
    color: #fff;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
    border-radius: 30px;
}

footer img {
    position: fixed;
    left: 10%;
    bottom: 0.5rem;
    width: 80%;
}

.content{
    width: 90%;
    margin: 0.5rem auto 1rem;
    border: 1px solid transparent ;
}
.content div {
    width: 90%;
    margin: 0.3rem auto;
    padding: 0.2rem;
    box-shadow: 0 0 5px #eee;
    border-radius: 8px;
    color: #999999;
}
.content div h3 {
    width: 100%;
    line-height:150%;
    font-weight: normal;
    font-size: 14px;
    margin: 0.2rem 0;
    padding-bottom: 0.1rem;
    padding-left:0.2rem;
    position: relative;
    color: #4b4b4e;
    text-align: left;
}
.content div h3::after {
    content: "";
    position: absolute;
    top:0.1rem;
    left: 0;
    width: 7px;
    height: 0.3rem;
    background: #ef8f47;
}

ul {
    width: 90%;
    margin: 0.2rem auto;
}

ul li {
    line-height: 160%;
}

.eye {
    position: absolute;
    top: 0.2rem;
    right: 0;
    width: 10%;
}