html, body {
    font-family: 'Microsoft Yahei';
    width: 100%;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
}
input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #333;
}
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-thumb{
    background: #aaa;
    border-radius:5px;
}
::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
}
input::-webkit-input-placeholder{
    color: #999;
}
input:-ms-input-placeholder{
    color: #999;
}
input:-moz-placeholder{
    color: #999;
}
input::-moz-placeholder {
    color: #999;
}

.container{
    display: flex;
    flex-grow: 1;
    background-image: url(../img/login-bg.png?v=ae1ab9d4cc);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
.container .top{
    display: flex;
    height: 96px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container .top .brand {
    display: flex;
    flex-shrink: 0;
    height: 32px;
    width: 148px;
    justify-content: center;
    align-self: stretch;
    background-image: url('../img/logo_new_big.png?v=5c66356e88');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left:40px;
}
.container > .center{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .center .formPart{
    display: flex;
    align-items: center;
    position: relative;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 440px;
    width: 440px;
    flex-direction: column;
    overflow: hidden;
}
.container .bottom{
    margin-bottom: 20px;
    font-size: 14px;
    color:#fff;
    opacity: 0.6;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.container .bottom .patters{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .bottom .patters .kingdee{
    background: url(../img/kingdee.png) 0 0 no-repeat;
    width: 106px;
    height: 24px;
    margin-left: 20px;
}
.container .bottom .patters .renzheng{
    background: url(../img/renzheng.png) 0 0 no-repeat;
    width: 60px;
    height: 20px;
    margin-left: 20px;
}
.container .bottom .patters .must{
    background: url(../img/must.png) 0 0 no-repeat;
    width: 54px;
    height: 20px;
    margin-left: 20px;
}
.container .bottom .patters .group{
    background: url(../img/group.png) 0 0 no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 20px;
}
.container .bottom .patters .hui{
    background: url(../img/hui.png) 0 0 no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 20px;
}
.formPart .bottom{
    display: flex;
    height: 120px;
    flex-grow: 1;
}
.container .formPart .center{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 700px;
}
.center .form-top{
    display: flex;
    height: 80px;
    align-items: flex-end;
}
.center .formContainer{
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}
.formContainer .title-top{
    display: flex;
    height: 80px;
}
.formContainer .title{
    display: flex;
    height: 30px;
    margin-bottom: 72px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}
.formContainer .panel{
    display: flex;
    width: 360px;
    flex-grow: 1;
    /* flex-shrink: 0; */
    flex-direction: column;
}
.panel .item{
    height: 40px;
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
    padding: 0 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.inputing {
    border-bottom: 1px solid #00ccc5 !important;
}
.panel .code-item{
    border-bottom: none;
}
.code-item .input-code{
    display: flex;
    flex-grow: 1;
    align-items: center;
    border-bottom: 1px solid #fff;
}
.input-code .input-text{
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    color: #666666;
    background-color: transparent;
}
.code-item .show-code{
    display: flex;
    width: 100px;
    margin-left: 15px;
    align-items: flex-end;
    justify-content: center;
}
.show-code img{
    display: flex;
    align-self: center;
    flex-grow: 0;
    flex-shrink: 0;
}
.panel .btn-item{
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #00ccc5;
    margin-top: 20px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    outline: none;
}
.panel .btn-item:hover{
    background-color: #04a5a0;
}
.panel .item.noline{
    border: none;
}
.item .dataCenter{
    display: flex;
    align-self: center;
}
.item .country{
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    color: #333333;
}
.item .item-input{
    display: flex;
    align-self: center;
    height: 36px;
    border: none;
    outline: none;
    padding-left: 1px;
    flex-grow: 1;
    font-size: 14px;
    color: #fff;
    background-color: transparent;
}
.item .item-input.line{
    border-left: 1px solid #cccccc;
    padding-left: 10px;
}
.item .item-title{
    display: flex;
    margin-right: 15px;
    align-items: center;
}
.panel .slider{
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #438ffa;
    border-radius: 2px;
    font-size: 14px;
    color: #AAAAAA;
    margin-top: 25px;
}
.slider .slider-item{
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    display: flex;
    width: 48px;
    background-color: #438ffa;
    cursor: pointer;
}
/* .slider .slider-item span{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
} */

.panel .tool{
    display: flex;
    padding: 3px 0;
    height: 26px;
    margin-top: 15px;
    justify-content: space-between;
    font-size: 12px;
}
.tool .help-container{
    display: flex;
}
.help-container .checkbox{
    display: flex;
    margin-right: 20px;
    align-items: center;
    color: #fff;
    opacity: 0.6;
    cursor: pointer;
}
.help-container i{
    width: 16px;
    height: 16px;
    background-image: url(../img/defaultCircle.png?v=51ec8ef97d);
    margin-right: 5px;
}
.help-container i:hover{
    background-image: url(../img/hoverCircle.png?v=535feeee85);
}
.help-container .checkbox input[type=checkbox]:checked + i{
    background-image: url(../img/selectCircle.png?v=d1f3ea284d);
}
.help-container .forget-pass{
    color: #fff;
    opacity: 0.6;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.help-container .forget-pass:hover{
    color: #00ccc5;
}
.tool .language{
    display: flex;
    /* margin-right:10px;  */
    align-items: center;
}
.language span{
    display: flex;
    align-items: center;
    color: #fff;
    opacity: 0.6;
}
.language .lang{
    color: #fff;
    opacity: 0.6;
}
.language .line{
    width: 1px;
    height: 16px;
    background-color: #fff;
    margin: 0 7px;
    opacity: 0.6;
}

.center .loginMode{
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 300px;
    margin: 0 30px;
    flex-shrink: 0;
}
.loginMode .modeText{
    display: flex;
    height: 40px;
    align-items: center;
}
.loginMode .modeText .line{
    display: flex;
    height: 1px;
    background-color: #fff;
    flex-grow: 1;
}
.loginMode .modeText .text{
    display: flex;
    margin: 0 14px;
    font-size: 12px;
    color: #fff;
}
.loginMode .modeIcon{
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
}
.loginMode .modeIcon .icon{
    margin: 0 15px;
    cursor: pointer;
}
.loginMode .modeIcon .disable{
    /* filter: grayscale(0.5);
    cursor: auto; */
    display: none;
}
.append{
    position: relative;
}
/* .append .append-header {
    padding-right: 20px;
} */
.append::before{
    content: '';
    height: 0px;
    width: 0px;
    right: -0px;
    top: 6px;
    position: absolute;
    border-width: 7px 5px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #bbbbbb;
}
.dataCenterMore{
    cursor: pointer;
    padding-left: 24px;
    line-height: 40px;
    width: 120px;
    color: #2386ee;
}
.dataCenterMore:hover{
    color: #438ffa;
}
.append.dataCenter{
    cursor: pointer;
    padding-right: 20px;
}
.append.on::before{
    top: -1px;
    border-color: transparent;
    border-bottom-color: #bbbbbb; 
}
.append.country::before{
    right: 10px;
    top: 18px;
}
.append.country.on::before{
    top: 10px;
}
.append.language::before{
    top:7px;
    right: -10px;
}
.append.language.on::before{
    top:0px;
}
.hidden{
    display: none !important;
}
.append .append-header{
    cursor: pointer;
}
.append .append-panel{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 20px;
    left: 0px;
    max-height: 244px;
    border-radius: 2px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    padding: 2px 0px;
    background-color: rgb(69,63,104);
    z-index: 999;
    overflow-y: auto;
}
.append-panel .append-item{
    display: flex;
    flex-shrink: 0;
    height: 30px;
    padding: 0 10px;
    align-items: center;
    /* border-top: 1px solid #e2e2e2; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}
.append-panel .append-item:hover{
    color: #ffffff;
    background-color: #00ccc5;
}

/*报错信息提示 start*/
.back-end-err{
    display: flex;
    position: absolute;
    top: 0px;
    border-radius: 10px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    height: 45px;
    background-color: #ffe7e4;
    color: #fd6c6a;
    align-items: center;
    font-size: 14px;
    opacity: 0;
    overflow: hidden;
}
.back-end-err img{
    margin: 0 10px;
}
.back-end-err span{
    flex: 1;
}
.back-end-err .cancel{
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.front-end-err{
    display: flex;
    position: absolute;
    font-size: 12px;
    color: #ff3737;
    top: 0px;
    left: 20px;
}
.input-err{
    border-color: #ff3737 !important;
}
/*报错信息提示 end*/
.modal-win{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-win .modal-win-content{
    background: #fff;
    width: 800px;
    height: 536px;
    border-radius: 4px;
}
.modal-win .modal-win-head{
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
}
.modal-win .modal-win-search{
    height: 28px;
    text-indent: 6px;
}
.modal-win .modal-win-head-close{
    cursor: pointer;
    padding: 4px;
}
.modal-win .modal-win-head-close:hover{
    color: #2386ee;
}
.modal-win .modal-win-table{
    height: 440px;
    padding: 24px 0;
    overflow-y: auto;
    overflow-x: hidden;
}
.modal-win table{
    border-collapse: collapse;
    padding: 0 12px;
    height: 40px;
}
.modal-win .modal-win-table tbody{
    background: linear-gradient(rgb(255, 255, 255) 39px, rgb(230, 230, 230) 0px, rgb(230, 230, 230) 40px, rgb(250, 250, 250) 0px, rgb(250, 250, 250) 79px, rgb(230, 230, 230) 0px) 0% 0% / 100% 80px;
    overflow-y: auto;
}
.modal-win table td{
    height: 40px;
    padding-left: 6px;
    font-size: 12px;

}
.modal-win table td:first-child{
    width: 60px;
    text-align: center;
}
.modal-win .modal-win-table thead{
    background: #f4f4f4;
}
.modal-win .modal-win-table tbody tr:hover{
    cursor: pointer;
    background: rgb(220, 220, 220);
}
.modal-win .modal-win-table tbody tr.active{
    background:#e9f2fd
}
.modal-win .modal-win-foot{
    height: 48px;
    display: flex;
    justify-content: flex-end;
    padding: 0 24px;
    align-items: center;
}
.modal-win .modal-win-foot .btn{
    width:80px;
    height: 28px;
    line-height: 26px;
    margin-left: 16px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    border-radius: 2px;
}
.modal-win .modal-win-foot .btn.onok{
    color: #fff;
    background: #2386ee;
}
.modal-win .modal-win-foot .btn.oncancel:hover{
    color:#438ffa;
    border-color:#438ffa;
}
.modal-win .modal-win-foot .btn.onok:hover{
    background: #438ffa;
}

.license-msg{
    background-image: url('../img/license-msg-bg.png?v=ce0e0f45b9');
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 195px;
    height: 156px;
    margin-left: 30px;
    font-size: 12px;
    color: #666666;
}
.license-msg .expire-time{
    margin-bottom: 10px;
    text-align: center;
    color: #F5A623;
    font-size: 12px;
    opacity: 0.81;
    line-height: 1;
}
.expire-time i{
    font-style: normal;
    font-size: 60px;
    margin-right: 5px;
}
.license-msg .msg{
    margin-bottom: 16px;
    width: 115px;
    height: 36px;
    font-size: 12px;
    color: #666666;
    text-align: center;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*媒体查询，1366px特殊处理*/
@media screen and (max-width:1366px){
    .center{
        height: 600px !important;
    }
    .center .brand{
        height: 49px;
        background-image: url('../img/logo_new_small.png?v=330a2b3797');
    }
    .center .form-top{
        height: 50px;
    }
    .container .formPart{
        flex-basis: 360px;
        width: 360px;
    }
    .formPart .top{
        flex: 1;
    }
    .formPart .bottom{
        flex: 1;
    }
}
    