﻿*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#f{
    width: 100%;
    height: 100%;
}
.loading-box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../static/img/loading-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}
.loading-logo{
    width: 531px;
    height: 272px;
    position: absolute;
    top: 10%;
    left: 50%;
    margin-left: -265px;
    background-image: url("../static/img/loading-logo.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;

}
.notes-box{
    width: 100%;
    height: 64px;
    background-image: url("../static/img/notes-line.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 55%;
    position: absolute;
}
.notes-ani{
    width: 142px;
    height: 84px;
    background-image: url("../static/img/notes.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    margin-left: -71px;
    top: -22px;
}
.loading-progress{
    width: 500px;
    position: absolute;
    top: 75%;
    left: 50%;
    margin-left: -250px;
}
.loading-progress-line{
    height: 2px;
    background-color: #b3a3c6;
    width: 100%;
}

.loading-progress-now{
    text-align: right;
    background-image: url("../static/img/progress-now-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 4px;
    margin-top: -3px;
    width: 0;
    color: #b3a3c6;
    font-size: 16px;
    padding-top: 10px;

}
.loading-progress-text{
    margin-top: 44px;
    color: #e7e7e7;
    font-size: 16px;
    text-align: center;
}