13693261870
2024-04-02 2a1b873b4b78b508d5d53c57992e734c56619df8
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/** loading  **/
#loadingDiv{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-color: #e6e6e6;
 
    z-index: 1;
}
.load-box{
    width: 100%;
    height: 90px;
    position: absolute;
    top: 50%;
    margin-top: -45px;
}
.load1 .loader,
.load1 .loader:before,
.load1 .loader:after {
    background: #000;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}
.load-container p {
    text-align: center;
    cursor: default;
}
.load1 .loader:before,
.load1 .loader:after {
    position: absolute;
    top: 0;
    content: '';
}
 
.load1 .loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
 
.load1 .loader {
    text-indent: -9999em;
    margin: 1em auto;
    position: relative;
    font-size: 11px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
 
.load1 .loader:after {
    left: 1.5em;
}
 
@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0 #000;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em #000;
        height: 5em;
    }
}
 
@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0 #000;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em #000;
        height: 5em;
    }
}