@charset 'utf-8';

.online-ticket{
    padding: 4em auto;
    h2{
        margin: 0;
        // font-weight: 200;
        font-size: 28px;
        padding-bottom: 1em;
    }
    .online-login{
        padding: 2em 0;
        .form-group{
            padding-bottom: 20px;
        }
        .online-link{
            color: @color-e8;
        }
    }
    .online-form{
        margin: 4em auto;
    }
    .submit-btn-warp{
        margin-top: 2em;
    }
}
.upload-file-btn{
    height: auto;
    #upload{
        margin: 0;
    }
    label{
        display: block !important;
    }
    .upload-btn{
        position: relative;
        min-width: 120px;
        height: 40px;
        line-height: 1.42857143;
        color: @color-wuwu;
        background-color: @color-f2;
        background-image: none;
        border: 1px solid @color-cc;
        border-radius: 4px;
        display: flex;
        align-items: center;
        padding: 0 10px;
        cursor: pointer;
        input[type="file"]{
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
        }
    }
    .upload-file-list{
        margin-top: 20px;
        width: 100%;
        height: auto;
        padding: 10px;
        background: #f2f2f2;
        .item{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            &:last-child{
                margin-bottom: 0;
            }
        }
        .file-status{
            padding: 4px 10px;
            background: #ce5754;
            color: @color-ff;
            border-radius: 4px;
            cursor: pointer;
        }
    }
}