*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100%;
    font-family: Verdana, Helvetica Neue, Arial, 'sans-serif';
    font-weight: normal;
}
.page {
    display: flex;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(255,255,255,1),rgba(37,124,225,.16));
}

.container {
    width: 100%;
    height: calc(100vh - 48px);
    margin: 0 auto;
}
.page-content {
    flex: 1;
}

.login-block{
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 360px;
    transform: translate(-50%,-50%);
    padding: 32px;
}
.login-block ul{
    list-style: none;
    width: 100%;
}

.title{
    margin-top: 24px;
    margin-bottom: 3em;
    text-align: center;
}

.title p {
    margin-top: 1.5em;
    color: #565656;
}

.mb32{
    margin-bottom: 32px;
}

.mb24{
    margin-bottom: 24px;
}

.base-input{
    font-family: Verdana, Helvetica Neue, Arial, 'sans-serif';
    font-size: 14px;
    color: #131313;
    border: none;
    outline: none;
    padding: 10px;
    height: 28px;
    line-height: 28px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 338px;
    border: 1px solid #dadada;
    margin-bottom: 8px;
}
.button{
    background-color: #2a7de1;
    border: 1px solid #2a7de1;
    height: 42px;
    width: 100%;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

footer{
    height:48px;
    line-height:48px;
    text-align: center;
    width:100%;
    font-size: 12px;
    color: #565656;
}

span input {
    visibility: hidden;
}
span label {
    left: -12px;
    width: 12px;
    height: 12px;
    cursor: pointer;
    position: relative;
    border: 1px solid #2a7de1;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: -8px;
}
span label::after {
    content: '';
    opacity: 0;
    position: absolute;
    width: 7px;
    height: 3px;
    background: transparent;
    top: 3px;
    left: 2px;
    border: 1px solid #333;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type=checkbox]:checked + label:after {
    opacity: 1;
}
.text-small {
    color:#565656;
    margin-left: 3px;
    margin-bottom: 3px;
    display: inline-block;
    font-size: 13px;
}
#tips {
    color: #2a7de1;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 0;
}
#resetPassword {
    color: #2a7de1;
    text-decoration: none;
    font-size: 13px;
    display: none;
}
#toolbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.font-13 {
    font-size: 13px;
}
.text-center {
    text-align: center;
}
.text-underline {
    text-decoration: underline;
}
.text-default {
    color: #131313;
}
.text-error {
    color: #cc2a2a;
}

.pincode-wrapper {
    position: relative;
}

#pincodeBtn {
    position: absolute;
    right: 7px;
    top: 7px;
    /* background-color: #2a7de1;
    border: 1px solid #2a7de1; */
    background: #d5d5d5;
    cursor: not-allowed;
    border: 1px solid #dbdbdb;
    height: 36px;
    padding: 0 10px;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    /* cursor: pointer; */
}

#pincodeTips {
    color: #aaa;
    font-size: 14px;
    margin-top: 8px;
}

.display {
    display: block;
}

.none {
    display: none;
}

.error-tips{
    color: #cc2a2a;
    font-size: 13px;
    display: none;
}