$font-family-S: "PingFangSC-Regular ","Microsoft YaHei";
.login-upload-logo{
    float:left;
    cursor:pointer;
    // display: inline;
    margin-left: 10px;
    // width:86px;
    height:34px;
    position: relative;
    
    .logo-text{
        display: inline-block;
        background:#F5F8FA;
        box-shadow:0px 1px 2px 0px rgba(0,0,0,0.30);
        border-radius:2px;
        // width:70px;
        font-family:$font-family-S;
        font-size:14px;
        color:#3E4E59;
        line-height:34px;
        text-align:center;
        padding:0 15px;
        .upload-logo-active{
            cursor: pointer;
        }
        .tool-img{
            display: inline-block;
            width:16px;
            height: 16px;
            vertical-align: middle;
            margin-right: 5px;
            margin-top: -2px;
            
        }
        .in-uploade-circle{
            background:url('../uploadBackground/images/loading.png') 50% 50% no-repeat;
            animation: rotate 1s linear infinite;
            -webkit-animation: rotate 1s linear infinite;
            will-change: transform;
        }
        .uploade-success{
            background:url('../uploadBackground/images/success.png') 50% 50% no-repeat;
        }
    }
    .logo-text:hover{
        box-shadow:0px 3px 4px 0px rgba(0,0,0,0.30);
    }
    
}