﻿/*去掉谷歌记住密码后input自动填充背景颜色*/
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #3e526b!important;
}
.f-login .el-tabs--border-card{
    min-height:288px;
}
.f-login .el-form-item {
    margin-bottom:22px;
}
.f-login .el-button.is-loading {
    position: static;
}
.f-login {
    position:relative;
    width: 100%;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #3e526b;
}
.f-login .f-login-cont{
    position:absolute;
    width:60%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    padding-bottom:60px;
}
.f-login .f-login-logo{
    margin-bottom:15px;
}
.f-login-logo .f-logo-img{
    width:60px;
    margin-right:15px;
}
.f-login-logo .f-logo-img img{
    width:60px;
    height:60px;
    overflow:hidden;
}
.f-login-logo .f-logo-description{
    color:#ccc;
    letter-spacing:6px;
    font-size:14px;
}
.f-login-logo .f-logo-txt {
    margin-top: 30px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}
.f-login .f-loginform-box {
    position:relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    z-index:2;
}
.f-tabs-panel{
    width:100%;
}
.f-login .el-tabs__nav{
    width:100%;
}
.f-login .el-tabs--border-card > .el-tabs__header .el-tabs__item{
    width:50%;
    margin:0;
    border:none;
}
.f-login .el-tabs--border-card > .el-tabs__content {
    width: 80%;
    margin: 20px auto;
}
.f-login .el-tabs--border-card > .el-tabs__header {
    /*background-color: #d8d8d8; 【显示扫码登录代码】 */
    background-color: #f4f4f4;
    text-align: center;
}
.f-login .el-tabs--border-card > .el-tabs__header .el-tabs__item {
    text-align: center;
    color: #4caf50;
    font-size: 18px;
    color:#999;
    background:#d8d8d8;
}
.f-login .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-active{
    /*border-left-color: #d1dbe5;
    background: #f4f4f4;
    color:#4caf50; 【显示扫码登录代码】 */
    border-left-color: #d1dbe5;
    background: #f4f4f4;
    color:#4caf50;
    border-bottom: 1px solid #d1dbe5;
}
.f-login .f-remember-account {
    margin-bottom: 22px;
}
.f-login .f-checkitem span{
    font-size:15px;
}
.f-login .f-submit-button {
    width:70%;
    font-size: 16px;
    letter-spacing: 2px;
    height: 36px;
    line-height:1;
}
.f-login .el-button--text span{
    display:inline-block;
    line-height:20px;
    padding:0 5px;
    color:#666;
    text-decoration:underline;
    font-size:15px;
}
.f-login .el-button--text span a:hover{
    color:#ff0000;
}
.f-login .f-text-link{
    padding-right:20px;
    text-align:right;
}
.f-login .f-text-link .f-split {
    color:#333;
}
.f-login .el-input__inner {
    border: 1px solid #bfcbd9;
    height:36px;
}
.f-login .el-input__inner:hover{
    border-color: #8b9db5;
}
.f-login .f-login-footer {
    color: #fff;
    margin-top: 40px;
    text-align:center;
    font-size:15px;
    line-height:1.4;
}
/*二维码部分css*/
.f-login .two-bar-codes{
    position:absolute;
    right:0;
    bottom:0;
    cursor:pointer;
}
.two-bar-codes .two-bar-codes-text {
    transform: rotate(-45deg);
    position: relative;
    top: 22px;
    color: #4caf50;
    left: 6px;
}
.two-bar-codes .two-bar-codes-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    background-image: url(../../image/icon-two-bar-code.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    right: -33px;
}
.f-login .two-bar-cont {
    position: absolute;
    right: -150px;
    bottom: 119px;
    z-index:1;
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-150%, 0, 0);
    transform: translate3d(-150%, 0, 0);
  }
}
.f-login .slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
