.ProgressBar{
    width: 100%;
    padding: .1rem 0;
    padding-left: .6rem;
    position: relative;
    .nameWrap{
        width: .6rem;
        padding-top: .18rem;
        height: .3rem;
        line-height: .12rem;
        font-size: .12rem;
        overflow: hidden;
        position: absolute;
        left: 0;
        top: .1rem;
    }
    .barWrap{
        width: 100%;
        position: relative;
        .total{
            min-width: 2.2rem;
            height: .2rem;
            line-height: .2rem;
            text-align: right;
            font-size: .12rem;
            white-space: nowrap;
        }
        .bar{
            width: 100%;
            height: .1rem;
            border-radius: .05rem;
            background-image: linear-gradient(to right,#1e59c0,#9fd3fa);
        }
    }
}