<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body,
div,
span,
label,
p,
button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}


/*----------------------*/


/*     Page structure   */


/*----------------------*/

#wrapper {
    width: 100%;
}


/* 清浮动 */

html,
body {
    width: 100%;
    height: 100%;
}

.page-login {
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
}

.fn-clear {
    zoom: 1;
}

.fn-clear::after {
    content: "";
    height: 0;
    clear: both;
    visibility: hidden;
    display: block;
}

.inp:focus {
    outline: none;
    border: 1px solid #33b6ca;
}


/*----------------------*/


/*     login   */


/*----------------------*/

html,
body {
    color: #fff;
    background: url('../../img/login2/bg.jpg') center center no-repeat;
    background-size: cover;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    padding: 0 43px 0 143px;
    border-bottom: 1px solid #3a424b;
    background: #1c2125;
}

.login-header .navbar-text {
    text-align: right;
    color: #fff;
}

.login-body {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.login-body h3 {
    color: #222;
    text-align: center;
}

.login-Img {
    display: block;
    width: 45vw;
    margin-right: 6vw;
    margin-left: 4vw;
}

.bgImg {}


/*----------------------*/


/*     账号密码登录框位置   */


/*----------------------*/


/* 左边 */

.formLeft .login-body-form {
    margin-left: 8vw
}


/* 中间 */

.formCenter .login-body-form {
    align-items: center;
}


/* 右边 */

.formRight .login-body-form {
    align-items: flex-end;
    margin-right: 8vw;
}

.login-body-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.vertivalRight {
    flex-direction: row-reverse;
}

.vertivalRight .login-body-form {
    margin-left: 16vw;
}

form {
    background: #fff;
    width: 380px;
    padding: 16px;
    border-radius: 5px;
}

.form-input-item {
    margin: 10px 24px 0 24px;
    position: relative;
    border: 1px sold #eee;
}

.form-input-item i {
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 1;
    width: 32px;
    height: 100%;
    text-align: center;
}

.form-input-item i.user {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../../img/login2/user.png") center center no-repeat;
    background-size: 100%;
}

.inp:focus~i.user {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../../img/login2/user-active.png") center center no-repeat;
    background-size: 100%;
}

.form-input-item i.pwd {
    left: 1px;
    top: 1px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../../img/login2/pwd.png") center center no-repeat;
    background-size: 100%;
}

.inp:focus~i.pwd {
    left: 1px;
    top: 1px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../../img/login2/pwd-active.png") center center no-repeat;
    background-size: 100%;
}

.form-input-item i.valid {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("../../img/login2/valid.png") center center no-repeat;
    background-size: 100%;
}

.inp:focus~i.valid {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("../../img/login2/valid-active.png") center center no-repeat;
    background-size: 100%;
}

.form-input-item span {
    display: block;
    color: #fff;
    font-size: 12px;
    height: 12px;
    visibility: visible;
    margin-top: 5px;
}

.form-input-item.form-error span {
    color: red;
}

.form-error .inp {
    border: 1px solid #ed4014;
}

.form-error .inp:focus {
    border-color: #ed4014;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(237, 64, 20, .2);
}

.form-input-item input {
    display: inline-block;
    width: 100%;
    height: 32px;
    line-height: 1.5;
    padding: 4px 7px;
    font-size: 12px;
    border: 1px solid #dcdee2;
    border-radius: 2px;
    color: #515a6e;
    background-color: #fff;
    background-image: none;
    position: relative;
    cursor: text;
    padding-left: 32px;
}

.form-input-item input.validInput {
    width: calc(100% - 112px);
}

.form-input-item #code {
    position: absolute;
    width: 100px;
    height: 32px;
    right: 0;
    top: 0;
    overflow: hidden;
    font-family: Arial;
    font-style: italic;
    font-weight: bold;
    border: 0;
    letter-spacing: 7px;
    color: #00a4bd;
    outline: medium;
    cursor: pointer;
    font-size: 18px;
    padding-left: 0;
}

.form-input-item button {
    color: #fff;
    background-color: #00a4bd;
    border-color: #00a4bd;
    width: 100%;
    outline: 0;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}


/* 记住密码 */

.rememberPwd {
    color: #000; 
    font-size: 13px;
    margin: 5px 24px 0 24px;
    height: 30px;
}

.rememberPwd input {
    vertical-align: bottom;
    margin-bottom: 1px;
}


/* 底部 */

.login-footer {
    height: 128px;
    line-height: 128px;
    color: hsla(0, 0%, 100%, .6);
    text-align: center;
}
 
.yun{display:inline-block;width: 24px;height: 17px;background: url(../image/yunGray.png) center center no-repeat;cursor: pointer;display: none;}
.yun.active{background: url(../image/yunBlue.png) center center no-repeat;}
.person{margin-left: 20px;width: 24px;height: 17px;background: url(../image/personGray.png) center center no-repeat;cursor: pointer;display: none;}
.person.active{background: url(../image/personBlue.png) center center no-repeat;}
.loginType_title{cursor: pointer; width: 60px; width: initial; top: -3px; position: relative;}
</pre></body></html>