html, body {
    height: 100%;
}

/*.loginwrap {*/
/*    background: url(../img/login/pic_bg.png) no-repeat ;*/
/*    min-width: 1300px;*/
/*    min-height: 490px;*/
/*    position: relative;*/
/*    height: 100%;*/
/*    background-size: 100%;*/
/*    overflow: hidden;*/
/*}*/

.loginwrap {
    /* 占据整个视口 */
    width: 100vw;
    height: 100vh;
    /* 背景图片设置 */
    background-image: url('../img/login/pic_bg.png'); /* 替换为你的图片路径 */
    background-size: cover; /* 图片铺满且保持比例 */
    background-position: center; /* 居中显示 */
    background-repeat: no-repeat; /* 防止重复 */
    /* 可选：固定背景（滚动时图片不动） */
    background-attachment: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.login-logo {
    position: absolute;
    top: 35px;
    left: 45px;
    width: 203px;
    height: 64px;
    background: url(../img/login/login-logo.png) no-repeat;
    background-size: 100% 100%;
}


/*.loginwrap .loginbox {*/
/*    padding: 88px 35px 86px;*/
/*    position: absolute;*/
/*    top: 0%;*/
/*    bottom: 0%;*/
/*    right: 10%;*/
/*    margin: auto;*/
/*    width: 470px;*/
/*    height: 660px;*/
/*    background: #FFFFFF;*/
/*    box-shadow: 0px 2px 19px 0px rgba(99, 99, 99, 0.1);*/
/*    border-radius: 15px;*/
/*    z-index:99;*/
/*}*/

.loginwrap .loginbox {
    /*padding: 88px 35px 86px;*/
    position: absolute;
    /*top: 0%;*/
    /*bottom: 0%;*/
    /*right: 10%;*/
    /*margin: auto;*/
    width: 45vh;
    height: 53vh;
    min-width: 365px;
    min-height: 390px;
    background: #FFFFFF;
    box-shadow: 0px 2px 19px 0px rgba(99, 99, 99, 0.1);
    border-radius: 5px;
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.loginImg {
    position: absolute;
    top: 50%;
    left: 38%;
    margin-top: -275px;
    margin-left: -330px;
    background: url(../img/login/loginImg.png) no-repeat;
    height: 550px;
    width: 660px;
    z-index: 99;
    background-size: 100% 100%;
}

.loginwrap .inputbox {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

.loginwrap .inputbox labal {
    display: block;
    margin-bottom: 10px; /* width: 61px; */
    height: 22px;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
}


.loginwrap .inputbox input {
    width: 400px;
    height: 50px;
    background: #F5F5F5;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
}

/*.logTitle{*/
/*    height: 42px;*/
/*    font-size: 30px;*/
/*    font-family: PingFangSC-Medium, PingFang SC;*/
/*    font-weight: 500;*/
/*    color: #333333;*/
/*    line-height: 42px;*/
/*    letter-spacing: 2px;*/
/*    text-align: center;*/
/*    margin-bottom: 39px;*/
/*}*/
.user-name-left {
    width: 7vh;
    height: 4.2vh;
    border: 1px solid #E6E6E6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.user-name-icon {
    background-image: url(../img/login/user_name.png);
    width: 2.5vh;
    height: 2.5vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.user-pwd-left {
    width: 7vh;
    height: 4.2vh;
    border: 1px solid #E6E6E6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.user-pwd-icon {
    background-image: url(../img/login/password.png);
    width: 2.5vh;
    height: 2.5vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.auth-code {
    width: 7vh;
    height: 4.2vh;
    border: 1px solid #E6E6E6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.auth-code-icon {
    background-image: url(../img/login/auth_code.png);
    width: 2.5vh;
    height: 2.5vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.language—select {
    width: 4.2vh;
    height: 4.2vh;
    border: 1px solid #E6E6E6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-code-right {
    width: 15vh;
    margin-left: 1vh;
    height: 4.2vh;
    background-color: #cccccc82;
}




.logTitle {
    background-image: url(../img/login/login-logo.png);
    height: 6.8vh;
    width: 18vh;
    min-width: 141px;
    min-height: 52px;
    background-size: cover; /* 图片铺满且保持比例 */
    background-position: center; /* 居中显示 */
    background-repeat: no-repeat; /* 防止重复 */
    letter-spacing: 2px;
    text-align: center;
    margin-top: 2vh;
}


/*.loginwrap .inputbox + .inputbox {*/
/*    margin-top: 22px;*/
/*}*/

.loginwrap .inputbox + .inputbox {
    margin-top: 1.5vh;
}

/*.mt22 {*/
/*    margin-top: 22px;*/
/*}*/
.mt22 {
    margin-top: 1vh;
}


/*.loginwrap .inputbox input {*/
/*    padding: 0 14px;*/
/*    width: 400px;*/
/*    height: 50px;*/
/*    background: #F5F5F5;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #E6E6E6;*/
/*    border-radius: 15px;*/
/*}*/

.loginwrap .inputbox input {
    width: 32vh;
    height: 4.2vh;
    background: #F5F5F5;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    padding: 1.5vh;
    min-width: 236px;
}

/*.loginwrap .btnbox button {*/
/*    width: 100%;*/
/*    background: #E60012;*/
/*    color: #fff;*/
/*    height: 56px;*/
/*    line-height: 56px;*/
/*    font-size: 22px;*/
/*    border: 0;*/
/*    border-radius: 5px;*/
/*}*/

.loginwrap .btnbox button {
    width: 40vh;
    background: #E60012;
    color: #fff;
    height: 4.2vh;
    line-height: 4.2vh;
    font-size: 16px;
    border: 0;
    border-radius: 1px;
}

.loginwrap .btnbox {
    position: relative;
}

/*.loginwrap .loading {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    height: 56px;*/
/*    line-height: 56px;*/
/*    border-radius: 5px;*/
/*    background: #E60012;*/
/*    width: 100%;*/
/*}*/

.loginwrap .loading {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    height: 4.2vh;
    line-height: 4.2vh;
    border-radius: 1px;
    background: #E60012;
    width: 40vh;
}

.loginwrap .loading i {
    font-size: 16px;
}

.loginwrap .ico-3 .dropdown-menu {
    top: 48px;
    left: 75px;
    text-align: center;
    font-size: 16px;
}

.loginwrap .ico-3 .dropdown-menu li {
    padding: 0 10px;
}

.loginwrap .ico-3 .dropdown-menu li a {
    padding: 0;
    margin: 0 -10px;
    font-size: 16px;
    line-height: 50px;
    cursor: pointer;
}

.loginwrap .ico-3 .dropdown-menu li a:hover {
    background: #d6f7f1;
    color: #555;
}

.loginwrap .loginbox .tip {
    color: #9aa3aa;
    font-size: 12px;
    text-align: center;
}

.loginwrap .checkwrap {
    height: 1vh;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #AAAAAA;
    line-height: 22px;
}

.loginwrap input[type=checkbox].ace + .lbl::before,
.loginwrap input[type=radio].ace + .lbl::before {
    border-radius: 3px;
    border: 0;
    line-height: 11px;
}

.loginwrap .login-foot {
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.faa-parent.animated-hover:hover > .faa-spin, .faa-spin.animated, .faa-spin.animated-hover:hover {
    -webkit-animation: spin .7s linear infinite;
    animation: spin .7s linear infinite
}

.div-hide {
    display: none;
}


/*.loginwrap .language-text {*/
/*    background: url(../img/login/arrow.png) no-repeat right 10px center !important;*/
/*    width: 400px;*/
/*    height: 50px;*/
/*    line-height: 50px;*/
/*    background-color: #F5F5F5 !important;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #E6E6E6;*/
/*    padding: 0 14px;*/
/*    background-size: 20px !important;*/
/*}*/

.loginwrap .language-text {
    width: 32vh;
    height: 4.2vh;
    line-height: 4.2vh;
    background: #F5F5F5 url(../img/login/arrow.png) no-repeat right 10px center !important;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    padding: 0 14px;
    background-size: 20px !important;
}

/*.open > .dropdown-menu {*/
/*    width: 400px;*/
/*}*/

.open > .dropdown-menu {
    left: 7vh;
    width: 32vh;
    top: 4vh;
}

input[type=checkbox].ace + .lbl::before,
input[type=radio].ace + .lbl::before {
    cursor: pointer;
    font-family: fontAwesome;
    font-weight: normal;
    font-size: 12px;
    color: #E60012;
    content: "\a0";
    background-color: #FAFAFA;
    border: 1px solid #c8c8c8 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /*, inset 0px -15px 10px -12px rgba(0,0,0,0.05);*/
    border-radius: 0;
    display: inline-block;
    text-align: center;
    height: 11px;
    line-height: 11px;
    min-width: 11px;
    margin-right: 1px;
    position: relative;
    /*top: 2px;*/
}

input[type=checkbox].ace:checked + .lbl::before,
input[type=radio].ace:checked + .lbl::before {
    display: inline-block;
    content: '\f14a';
    font-size: 13px;
    border: 0 none !important;
}

.loginwrap .ico-1 {
    background-image: url(../../res/public/css/images/username.png);
}

.loginwrap .ico-2 {
    background-image: url(../../res/public/css/images/code.png);
}

.loginwrap .ico-4 {
    background-image: url(../../res/public/css/images/code.png);
    width: 200px;
}

.loginwrap .ico-4 input {
    width: 100px;
}

.loginwrap .ico-3 {
    background-image: url(../../res/public/css/images/language.png);
    position: relative
}

body {
    font-family: 'Microsoft Yahei';
    background: #fff;
    font-size: 1.8vh;
    line-height: 1.6em;
    color: #444;
}

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
    border-radius: 0 !important;
    color: #858585;
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
    padding: 5px 4px 6px;
    font-size: 1.8vh;
    font-family: inherit;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

.dropdown-menu > li > a {
    font-size: 1.8vh;
    padding-left: 11px;
    padding-right: 11px;
    padding-bottom: 4px;
    margin-bottom: 1px;
    margin-top: 1px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 1.8vh;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

input[type=checkbox].ace + .lbl, input[type=radio].ace + .lbl {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 11px;
    min-height: 18px;
    min-width: 18px;
    font-weight: normal;
    cursor: pointer;
}

label {
    display: inline-block;
    margin-bottom: 0px;
}