.loginWrap {width: 100%; background: #fff;}
.loginContainer {position: relative; width: 1440px; height: 690px; margin: 0 auto; background: url(../../images/login/visual.png) right top no-repeat;}
.loginContents {position: absolute; top: 180px; left: 70px; width: 400px;}
.loginContents>h1 {text-align: center; margin-bottom: 10px;}
.loginBox {position: relative; width: 400px; background: #eee; border-radius: 6px; padding: 40px;}
.loginBox>h2 {font-size: 24px; color: #000; font-weight: 700; margin-bottom: 20px;}
#loginForm li {margin-bottom: 10px;}
#loginForm li input { height: 46px; border: 0; border-radius: 4px; padding-left: 15px;}
input[type=submit] {width: 110px; height: 100px; background: #f04054; font-size: 18px; font-weight: 700; color: #fff; border-radius: 4px;}
input[type=button] {cursor: pointer; width: 110px; height: 45px; background: #f04054; font-size: 18px; font-weight: 700; color: #fff; border-radius: 4px;}
.login_btn { top: 84px; right: 40px;}
.footer {text-align: center; padding: 30px;}
.footer>p {color: #777; font-size: 14px;}
.footer>p>strong {font-weight: 700; color: #000;}
.time{position: absolute;
    right: 35%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #E7354B;}


/** check&radio **/
.input_chk {
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}
.input_chk input[type=checkbox] {display: none;}
.input_chk i {
    width: 24px;
    height: 24px;
}
.input_chk i:before, .input_chk i:after {
    position: absolute;
}
.input_chk i:before {
    content: '';
    top: 4px;
    left: 1px;
    width: 24px;
    height: 24px;
    border: 1px solid #C6CBD7;
    background: #fff;
    border-radius: 4px;
}
.input_chk input:checked + i:after {
    content: '';
    width: 14px;
    height: 9px;
    top: 9px;
    left: 6px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}.input_chk input:checked + i:before {
    background: #f04054;
    border-color: #f04054;
}
.input_chk input:disabled + i {
    cursor: default;
}
.input_chk input:disabled + i:before {
    opacity: 0.2;
    background-color: #ddd;
    border-color: #555;
}
.input_chk input:disabled:checked + i:before {
    opacity: 0.2;
    background-color: #333;
    border-color: #C6CBD7;
}
.input_chk i+span {font-size: 14px; line-height: 30px;}