/** 登录页面样式 */

body {
    background: url("../images/logBig.png") no-repeat;
    background-color: #f0f2f5;
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
}

body, html {
    height: 100%
}

.login-body {
    position: absolute;
    top: 50%;
    /*width: 100%;*/
    min-width: 360px;
    left: 50%;
    transform: translate(-50%,-50%);
}

.login-body > .layui-card {
    max-width: 360px;
    margin: 0 auto;
}

.login-body .layui-card-header {
    font-weight: 700;
    font-size: 15px;
}

.login-body .layui-form-pane .layui-form-label {
    width: 78px;
    overflow: visible;
}

.login-body .layui-form-pane .layui-input-block {
    margin-left: 78px;
}

.login-body .login-captcha {
    width: 100%;
    cursor: pointer;
    height: 38px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    box-sizing: border-box;
}

.login-body .login-other > * {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 14px;
}

.login-body .login-other .layui-icon {
    position: relative;
    top: 2px;
    font-size: 26px;
}

.login-body .login-other a:hover {
    opacity: .8;
}

/** 底部样式 */
.login-footer {
    text-align: center;
    line-height: 30px;
    color: #eeeeee !important;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.login-footer span {
    padding: 0 5px
}

.login-footer a {
    padding: 0 5px;
    color: #eeeeee !important;
}

.login-footer a:hover {
    color: #c2c2c2 !important;
}

.layui-icon-login-qq {
    color: #3492ED
}

.layui-icon-login-wechat {
    color: #4DAF29
}

.layui-icon-login-weibo {
    color: #CF1900
}

/** 移动设备样式 */
@media screen and (max-height: 900px) {
    .login-body{
        top: 12%;
    }
    .login-footer {
        bottom: 3%;
    }
}
@media screen and (max-height: 430px) {
    .login-body{
        top: 12%;
    }
    .login-footer {
        bottom: 0px;
        top: 0px;
    }
}
@media screen and (max-height: 215px) {
    .login-body{
        top: 30px;
    }
    .login-footer {
        bottom: 0px;
        top: 0px;
    }
}
/** 辅助样式 */
.layui-link {
    color: #029789 !important;
}

.layui-link:hover {
    opacity: .8;
}

.pull-right {
    float: right;
}

.inline-block {
    display: inline-block;
}