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
| .grid.videoview {
| background-repeat:no-repeat;
| background-size: cover;
| width: 100%;
| height: 100%;
| }
|
| .grid .pusher-box {
| position: relative;
| display: inline-block;
| overflow: hidden;
| width: 46vw;
| height: 61.33vw;
| text-align: center;
| margin-bottom: 2vw;
| vertical-align: top;
| }
|
| .grid live-pusher {
| width: 100%;
| height: 100%;
| }
|
| .grid .player-box {
| position: relative;
| display: inline-block;
| overflow: hidden;
| width: 46vw;
| height: 61.33vw;
| text-align: center;
| margin-bottom: 2vw;
| vertical-align: top;
| }
| .grid .player-box:nth-child(2), .grid .player-box:nth-child(4) {
| margin-left: 1vw;
| }
|
| .grid .poster {
| position: absolute;
| width: 100%;
| height: 100%;
| background-color: #000;
| opacity:0.55;
| }
|
| .grid .set {
| position: absolute;
| width: 32px;
| height: 56px;
| top: 50%;
| left: 50%;
| margin: -28px 0 0 -16px;
| }
|
| .grid live-player {
| width: 100%;
| height: 100%;
| }
|
| .grid .character {
| position: absolute;
| left: 0;
| bottom: 0;
| font-size: 16px;
| color: #999;
| width: 100%;
| height: 10vw;
| line-height: 10vw;
| text-align: left;
| }
|
| .grid .loading {
| position: absolute;
| width: 100%;
| height: 100%;
| }
|
| .grid .loading cover-image {
| position: absolute;
| top: calc(50% - 15px);
| left: calc(50% - 15px);
| width: 30px;
| height: 30px;
| }
|
|