@charset "utf-8";
/*CSS重置*/
body,
html {
    margin: 0;
    padding: 0;
    font-family: Alibaba Sans, SF Pro SC, SF Pro Text, SF Pro Icons, PingFang SC, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

input,
textarea {
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
    font-size: 14px;
}

body a {
    outline: none;
    text-decoration: none !important;
}

blockquote,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: normal;
}

li {
    list-style: none;
}

img {
    border: none;
}

em,
i {
    font-style: normal;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: '';
}

* html .clearfix {
    height: 0;
}

*+html .clearfix {
    height: 0;
}

.clearfix {
    display: block;
    clear: both;
}

*:focus {
    outline: none;
}

input {
    outline: none;
}

* {
    box-sizing: border-box;
}

input[type="button"],
input[type="number"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
    resize: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

html{
    min-width: 960px;
}

input:-webkit-autofill {
    /*box-shadow: 0 0 0px 1000px white inset !important;*/
    transition: background-color 5000s ease-in-out 0s;
}
/*CSS重置 end*/

.login-wrap{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-content{
    display: flex;
    height: 100%;
    width: 100%;
    background: url("../images/sso_bg_img.jpeg") center center / cover no-repeat;
}

.login-left{
    width: 35%;
    height: 100%;
    /*background: url("../images/sso_bg2.jpeg") center center / cover no-repeat;*/
}

.login-right{
    position: relative;
    display: flex;
    align-items: center;
    width: 65%;
    /*background: #fff;*/
    overflow-y: auto;
}

.shade-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shade-topright{
    position: absolute;
    top: -120px;
    right: -110px;
    height: 400px;
    opacity: 0.6;
}

.shade-bottomleft{
    position: absolute;
    bottom: -300px;
    left: -300px;
    height: 600px;
    opacity: 0.6;
    z-index: 1;
}

.form-title{
    font-weight: 400 !important;
    color: #0a1f44;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 15px;
}

.form-text{
    font-size: 22px;
    font-weight: 400;
    color: #53627c;
    line-height: 1;
    margin-bottom: 40px;
}

.login-title{
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-size: 28px;*/
    /*font-weight: 600;*/
    /*line-height: 40px;*/
    /*letter-spacing: 0;*/
    /*!*color: #1f2126;*!*/
    /*margin-bottom: 25px;*/
    /*color: #2780ff;*/
    /*text-shadow: 1px 1px 2px rgb(39 128 255 / 30%);*/
    position: relative;
    z-index: 9;
}

.login-text{
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.login-name{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    color: rgba(31,33,38,.7);
    margin: 0 0 8px 0;
}

.login-input-wrap{
    position: relative;
}

.login-input-password{
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    color: rgba(6, 97, 224, 0.6);
}

.login-input-password i{
    font-size: 20px;
}

.login-input{
    width: 100%;
    color: #0a1f44;
    background: transparent !important;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid rgba(6, 97, 224, 0.2);
    height: 46px;
    padding: 10px 16px;
    display: flex;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all .3s;
}

.login-input::placeholder{
    color: rgba(6, 97, 224, 0.5);
}

/*.login-input:-webkit-autofill{*/
/*    -webkit-box-shadow:0 0 0 1000px #0299f6 inset !important;*/
/*}*/

.login-input:hover{
    border: 1px solid #0661E0;
}

.login-input-code-wrap{
    width: 100%;
    display: flex;
}

.login-input-code{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #0661E0;
    margin-left: 10px;
    font-size: 14px;
    color: #0661E0;
    cursor: pointer;
    transition: all .3s;
}

.login-input-code:hover{
    background: rgba(6, 97, 224, 0.1);
}

.login-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    background: #0661E0;
    /*border: 1px solid #fff;*/
    border-radius: 8px;
    margin-top: 35px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 15px 0 rgba(24, 124, 255, 0.22);
}

.login-btn:hover{
    background: rgba(6, 97, 224, 0.8);
    box-shadow: none;
}

.login-right-content{
    position: relative;
    z-index: 2;
    width: 500px;
    /*width: 60%;*/
    padding: 50px 60px 60px;
    box-sizing: border-box;
    margin: 0 auto;
    border: 2px solid transparent;
    border-radius: 12px;
    background-clip: padding-box,border-box;
    background-origin: padding-box,border-box;
    background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 0.7)),linear-gradient(135deg,rgba(255, 255, 255, 0.1) 20%,rgba(255, 255, 255, 0.5) 80%);
    box-shadow: 0 0 80px rgba(19, 76, 165, .25);
    backdrop-filter: blur(35px);
    overflow: hidden;
}

.lrc-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.lrc-logo{
    position: absolute;
    top: -30px;
    right: -30px;
    height: 200px;
    z-index: 2;
    opacity: .1;
}

.login-tab-form {
    display: none;
}

.logo-img{
    position: absolute;
    top: 56px;
    left: 56px;
    height: 70px;
}

.logo_login{
    height: 42px;
    margin-right: 10px;
}

.login-right-img{
    height: 60px;
    margin-bottom: 10px;
}
/*背景层*/
.popLayer {
	display: none;
	background-color: #000;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	-moz-opacity: 0.8;
	opacity: .50;
	filter: alpha(opacity=80);
	/* 只支持IE6、7、8、9 */
}
/*弹出层*/
.popBox {
	display: none;
	background: #fff;
	z-index: 11;
	width: 400px;
	height: 170px;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	border-radius: 4px;
}
.popBox .content{
	height: 113px;
	text-align: left;
	padding: 25px 20px;
}
.popBox .content p{
	/*color: #fff;*/
}
.popBox .close {
	text-align: center;
}
/*关闭按钮*/
.popBox .close .btn-login{
    background: #0661E0;
    border: none;
    color: #fff;
    width: 88px;
    line-height: 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
}

.popBox .close .btn-login:hover,
.popBox .close .btn-login:active {
	background: rgba(24, 144, 255, 0.8);
}

.company-input-wrap .multiple{
    width: 100% !important;
    font-size: 13px;
    /*color: #fff;*/
}

.company-input-wrap .multiple.selected{
     color: #0661E0;
 }

.company-input-wrap .ms-drop ul{
    padding: 10px 0;
}

.company-input-wrap .ms-choice>span{
    top: 8px;
}

.company-input-wrap .ms-choice{
    border: none;
    background: transparent;
    /*color: #fff;*/
}

.company-input-wrap .ms-drop.bottom{
    /*background: linear-gradient(0deg,#0d96db,#075393);*/
    border: none;
    /*color: #fff;*/
    font-size: 13px;
    left: 0;
}

.company-input-wrap .ms-choice>div.icon-caret{
    /*border-color: rgba(255, 255, 255, .8) transparent transparent transparent;*/
}

.company-input-wrap .ms-choice>div.icon-caret.open {
    /*border-color: transparent transparent #fff transparent;*/
}
.company-input-wrap .ms-choice>span.placeholder {
    /*color: #fff;*/
}

.bg-logo{
    padding: 40px 30px;
}

.sso-navbar-content{
    position: relative;
    z-index: 2000;
    display: block;
    max-height: 32px;
}

.bg-text{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-top: 15px;
}

.login-error{
    display: none;
    /*position: absolute;*/
    /*top: 48px;*/
    /*left: 0;*/
    width: 100%;
    background: #ffeef0;
    border: 1px solid #ff534d;
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    padding-left: 40px;
    text-align: left;
    vertical-align: middle;
    color: #ff534d;
    border-radius: 4px;
    margin-bottom: 20px;
}

.login-error .icon-jinggao{
    left: 15px;
    position: absolute;
}

.login-error .icon-guanbi{
    cursor: pointer;
    position: absolute;
    right: 15px;
    font-size: 12px;
}
.login-error span{
    display: inline-block;
    max-width:270px;
}

.login-tab-wrap{
    position: relative;
}

.login-tab{
    font-size: 0;
    margin-bottom: 30px;
}

.login-tab>li{
    position: relative;
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #53627c;
    line-height: 1;
    padding-bottom: 16px;
    cursor: pointer;
    /* -webkit-transition: all .3s;
    transition: all .3s; */
}

.login-tab>li:hover{
    color: #0661E0;
}

.login-tab>li.active{
    font-size: 20px;
    font-weight: 600;
    color: #0a1f44;
    border-bottom: 3px solid #0661E0;
}

.login-copyright{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    text-align: center;
    font-size: 12px;
    color: #333;
}