#loading {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #2a2a2a;
    z-index: 9999;
    /*background-image: url("../image/bg.png");*/
    transition-duration: .8s;
    overflow: hidden;
    opacity: 1;
}

#loading.hide {
    opacity: 0;
}

#loading .icon-box {
    width: 110px;
    height: 50px;
    position: absolute;
    left: calc(50% - 55px);
    top: calc(50% - 25px);
}

#loading .icon-box .logo {
    width: 110px;
    height: 50px;
}

#loading .progress {
    position: absolute;
    left: -95px;
    bottom: -25px;
    width: 300px;
    margin-top: 40px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress .progress-bar {
    border-radius: 6px;
    position: relative;
    height: 10px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #0D8DFC;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;

    background-image: linear-gradient(45deg, rgba(255, 255, 255, 1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;

    animation: reverse progress-bar-stripes 0.80s linear infinite, animate-positive 2s;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}