david-PC\david
2018-06-12 f240ac3ccd37c541cab2c21cfc433d3510999a3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*********************** loading ************************/
.loading_mask {
    position: fixed;
    z-index: 600;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.6);
}
 
.loading_area {
    display: inline-block;
    max-width: 240px;
    margin: 200px 0px 0px 0px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    padding: 10px 20px 10px 20px;
    color: #FFFFFF;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
 
.loading_image {
    width: 32px;
    height: 32px;
    background-image: url(../image/loading.gif);
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    margin-bottom: 10px;    
}
 
.loading_text {
    position: relative;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
}