zwplayer-vue2x 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/jsconfig.json +19 -0
- package/lib/demo.html +1 -0
- package/lib/zwplayervue2.common.js +599 -0
- package/lib/zwplayervue2.umd.js +618 -0
- package/lib/zwplayervue2.umd.min.js +2 -0
- package/npm-scripts.mjs +191 -0
- package/package.json +50 -0
- package/sources/index.js +23 -0
- package/sources/vueplayer/index.js +13 -0
- package/sources/vueplayer/src/loadjs.js +75 -0
- package/sources/vueplayer/src/main.vue +338 -0
- package/zwplayerlib/zwplayer/css/openhand.cur +0 -0
- package/zwplayerlib/zwplayer/css/zwplayer.css +3103 -0
- package/zwplayerlib/zwplayer/css/zwplayer.ttf +0 -0
- package/zwplayerlib/zwplayer/css/zwplayer.woff +0 -0
- package/zwplayerlib/zwplayer/css/zwplayer.woff2 +0 -0
- package/zwplayerlib/zwplayer/plugins/dash.all.min.js +3 -0
- package/zwplayerlib/zwplayer/plugins/flv.live.js +358 -0
- package/zwplayerlib/zwplayer/plugins/flv.min.js +2 -0
- package/zwplayerlib/zwplayer/plugins/hls.light.min.js +2 -0
- package/zwplayerlib/zwplayer/plugins/hls.min.js +2 -0
- package/zwplayerlib/zwplayer/plugins/mpeg.min.js +2 -0
- package/zwplayerlib/zwplayer/widgets/danmu_setting.html +116 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p1.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p10.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p11.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p12.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p13.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p14.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p15.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p16.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p17.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p18.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p19.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p2.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p20.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p21.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p22.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p23.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p24.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p25.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p26.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p27.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p28.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p29.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p3.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p30.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p31.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p32.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p33.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p34.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p35.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p36.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p37.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p38.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p39.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p4.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p40.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p5.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p6.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p7.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p8.png +0 -0
- package/zwplayerlib/zwplayer/widgets/smiles/p9.png +0 -0
- package/zwplayerlib/zwplayer/zwplayer.js +424 -0
|
@@ -0,0 +1,3103 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "xiconfont"; /* Project id */
|
|
3
|
+
src: url('zwplayer.ttf?t=1682038826666') format('truetype');
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.xicon {
|
|
7
|
+
font-family: "xiconfont" !important;
|
|
8
|
+
font-size: 24px;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
-webkit-font-smoothing: antialiased;
|
|
11
|
+
-moz-osx-font-smoothing: grayscale;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.xicon-home:before {
|
|
15
|
+
content: "\e600";
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.xicon-play:before {
|
|
19
|
+
content: "\e60f";
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.xicon-pause:before {
|
|
23
|
+
content: "\e69d";
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.zwp-playing .xicon-play:before {
|
|
27
|
+
content: "\e69d";
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.zwp-pause .xicon-play:before {
|
|
31
|
+
content: "\e60f";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.xicon-arrowdown:before {
|
|
35
|
+
content: "\e62d";
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.xicon-chat:before {
|
|
39
|
+
content: "\e63f";
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.xicon-stop:before {
|
|
43
|
+
content: "\e691";
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.xicon-options:before {
|
|
47
|
+
content: "\e6a9";
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.xicon-subtitle:before {
|
|
51
|
+
content: "\e69e";
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.xicon-close:before {
|
|
55
|
+
content: "\e639";
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.xicon-reload:before {
|
|
59
|
+
content: "\e612";
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.xicon-live:before {
|
|
63
|
+
content: "\e74f";
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.xicon-user:before {
|
|
67
|
+
content: "\e635";
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.xicon-muted:before {
|
|
71
|
+
content: "\e60c";
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.xicon-speaker:before {
|
|
75
|
+
content: "\e60e";
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.zwp-muted .xicon-speaker:before {
|
|
79
|
+
content: "\e60c";
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.xicon-user-sim:before {
|
|
83
|
+
content: "\e614";
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.xicon-time:before {
|
|
87
|
+
content: "\e62b";
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.xicon-fullScreen:before {
|
|
91
|
+
content: "\e601";
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.xicon-exitfullscr:before {
|
|
95
|
+
content: "\e603";
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.zwp-fullscreen .xicon-fullScreen:before {
|
|
99
|
+
content: "\e603";
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.xicon-fullScreen-win:before {
|
|
103
|
+
content: "\e671";
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.xicon-fullScreen-win {
|
|
107
|
+
font-size: 20px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.xicon-fullScreen {
|
|
111
|
+
font-size: 22px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.xicon-exitfullscr-win:before {
|
|
115
|
+
content: "\e670";
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.zwp-fullscreen-win .xicon-fullScreen-win:before {
|
|
119
|
+
content: "\e670";
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.xicon-info:before {
|
|
123
|
+
content: "\e611";
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.xicon-4k-fill:before {
|
|
127
|
+
content: "\e66a";
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.xicon-cc:before {
|
|
131
|
+
content: "\e66c";
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.xicon-cc {
|
|
135
|
+
font-size: 26px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.xicon-cc-fill:before {
|
|
139
|
+
content: "\e66d";
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.xicon-hd:before {
|
|
143
|
+
content: "\e66e";
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.xicon-hd {
|
|
147
|
+
font-size: 26px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.xicon-hd-fill:before {
|
|
151
|
+
content: "\e672";
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.xicon-config:before {
|
|
155
|
+
content: "\e8b7";
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.xicon-camera {
|
|
159
|
+
font-size: 22px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.xicon-camera:before {
|
|
163
|
+
content: "\e7ba";
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.xicon-chapter:before {
|
|
167
|
+
content: "\e608";
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.xicon-brightness:before {
|
|
171
|
+
content: "\e80d";
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.xicon-contrast:before {
|
|
175
|
+
content: "\e65d";
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.xicon-saturation:before {
|
|
179
|
+
content: "\e631";
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.xicon-hue:before {
|
|
183
|
+
content: "\e68e";
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.xicon-subtitles:before {
|
|
187
|
+
content: "\e911";
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.xicon-subtitle_on:before {
|
|
191
|
+
content: "\e609";
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.xicon-subtitle_disable:before {
|
|
195
|
+
content: "\e60a";
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.xicon-num-0:before {
|
|
199
|
+
content: "\e625";
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.xicon-num-1:before {
|
|
203
|
+
content: "\e626";
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.xicon-num-2:before {
|
|
207
|
+
content: "\e627";
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.xicon-num-3:before {
|
|
211
|
+
content: "\e628";
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.xicon-num-4:before {
|
|
215
|
+
content: "\e629";
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.xicon-num-5:before {
|
|
219
|
+
content: "\e62a";
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.xicon-num-6:before {
|
|
223
|
+
content: "\e62c";
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.xicon-num-7:before {
|
|
227
|
+
content: "\e62e";
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.xicon-num-8:before {
|
|
231
|
+
content: "\e62f";
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.xicon-num-9:before {
|
|
235
|
+
content: "\e630";
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.xicon-send:before {
|
|
239
|
+
content: "\e632";
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.xicon-arrow-left:before {
|
|
243
|
+
content: "\e620";
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.xicon-arrow-up:before {
|
|
247
|
+
content: "\e61d";
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.xicon-arrow-right:before {
|
|
251
|
+
content: "\e61f";
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.xicon-arrow-down:before {
|
|
255
|
+
content: "\e61e";
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.xicon-media-next:before {
|
|
259
|
+
content: "\e60b";
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.xicon-media-prev:before {
|
|
263
|
+
content: "\e60d";
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.xicon-pic-in-pic:before {
|
|
267
|
+
content: "\e610";
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.xicon-smile:before {
|
|
271
|
+
content: "\e613";
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.xicon-smile2:before {
|
|
275
|
+
content: "\e673";
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.xicon-smile3:before {
|
|
279
|
+
content: "\e633";
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.xicon-smile4:before {
|
|
283
|
+
content: "\e681";
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.xicon-danmu:before {
|
|
287
|
+
content: "\e624";
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.xicon-danmu-setting:before {
|
|
291
|
+
content: "\e615";
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.xicon-danmu-color:before {
|
|
295
|
+
content: "\e6a2";
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.xicon-danmu-top:before {
|
|
299
|
+
content: "\e69b";
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.xicon-danmu-bottom:before {
|
|
303
|
+
content: "\e69f";
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.xicon-danmu-config:before {
|
|
307
|
+
content: "\e615";
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.xicon-danmu-smile:before {
|
|
311
|
+
content: "\e613";
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.xicon-disabled:before {
|
|
315
|
+
content: "\e6ad";
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.xicon.xicon-lite {
|
|
319
|
+
font-size: 20px;
|
|
320
|
+
}
|
|
321
|
+
/*-----end for icon-------------*/
|
|
322
|
+
|
|
323
|
+
.zwp-wrap.hide-cursor, .zwp-wrap.hide-cursor * {
|
|
324
|
+
cursor: none;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.zwp-wrap.zwp-fullscreen-win {
|
|
328
|
+
position: fixed;
|
|
329
|
+
left: 0 !important;
|
|
330
|
+
top: 0 !important;
|
|
331
|
+
width: 100%!important;
|
|
332
|
+
height: 100%!important;
|
|
333
|
+
z-index: 20000;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.zwp-wrap .zwp-controlbar {
|
|
337
|
+
position: absolute;
|
|
338
|
+
height: 48px;
|
|
339
|
+
width: 100%;
|
|
340
|
+
bottom: 0;
|
|
341
|
+
background: #19191975;
|
|
342
|
+
z-index: 3;
|
|
343
|
+
box-sizing: border-box;
|
|
344
|
+
padding: 6px 10px;
|
|
345
|
+
display: flex;
|
|
346
|
+
background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.15),rgba(0,0,0,.50),rgba(0,0,0,.30));
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.zwp-wrap .zwp-controlbar.zwp-vodplayer {
|
|
350
|
+
height: 64px;
|
|
351
|
+
padding-top: 22px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.zwp-wrap .zwp-controlbar * {
|
|
355
|
+
box-sizing: border-box;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.zwp-wrap .zwp__layers {
|
|
359
|
+
position: absolute;
|
|
360
|
+
left: 0;
|
|
361
|
+
top: 0;
|
|
362
|
+
right: 0;
|
|
363
|
+
bottom: 0;
|
|
364
|
+
z-index: 1;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.zwp-wrap .zwp__popup_layers {
|
|
368
|
+
position: absolute;
|
|
369
|
+
left: 0;
|
|
370
|
+
top: 0;
|
|
371
|
+
right: 0;
|
|
372
|
+
bottom: 0;
|
|
373
|
+
z-index: 999;
|
|
374
|
+
display: none;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.zwp-wrap .zwp-controlbar SPAN, .zwp-wrap .zwp-controlbar .zwp-label {
|
|
378
|
+
-webkit-touch-callout: none;
|
|
379
|
+
-webkit-user-select: none;
|
|
380
|
+
-khtml-user-select: none;
|
|
381
|
+
-moz-user-select: none;
|
|
382
|
+
-ms-user-select: none;
|
|
383
|
+
user-select: none;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.zwp-wrap .zwp-controlbar .zwp-button {
|
|
387
|
+
font-size: 12px;
|
|
388
|
+
height: 36px;
|
|
389
|
+
line-height: 12px;
|
|
390
|
+
margin: 0;
|
|
391
|
+
width: 40px;
|
|
392
|
+
z-index: 20;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.zwp-wrap .zwp-controlbar .zwp-button > button {
|
|
396
|
+
background: transparent;
|
|
397
|
+
border: 0;
|
|
398
|
+
cursor: pointer;
|
|
399
|
+
display: block;
|
|
400
|
+
font-size: 0;
|
|
401
|
+
height: 36px;
|
|
402
|
+
line-height: 36px;
|
|
403
|
+
margin: 0px 2px;
|
|
404
|
+
overflow: hidden;
|
|
405
|
+
padding: 0;
|
|
406
|
+
position: absolute;
|
|
407
|
+
text-decoration: none;
|
|
408
|
+
width: 36px;
|
|
409
|
+
color: #deddddb8;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.zwp-wrap .zwp-controlbar .zwp-button > button:focus {
|
|
413
|
+
outline: none;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.zwp-wrap .zwp-controlbar .zwp-button:not(.zwp_disabled) > button:hover {
|
|
417
|
+
border-radius: 5px;
|
|
418
|
+
background: rgb(17 17 17 / 50%);
|
|
419
|
+
color: #28b4e2;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.zwp-wrap .zwp-controlbar .zwp-button:not(.zwp_disabled) > button:active {
|
|
423
|
+
background: #111111e3;
|
|
424
|
+
color: #168bb1;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.zwp-wrap .zwp-controlbar .zwp-button.zwp_disabled > button {
|
|
428
|
+
color: #666666;
|
|
429
|
+
cursor: not-allowed;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.zwp-wrap .zwp-controlbar .zwp-speedButton {
|
|
433
|
+
width: 40px;
|
|
434
|
+
position: relative;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.zwp-wrap .zwp-controlbar .zwp-optionButton {
|
|
438
|
+
position: relative;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.zwp-wrap .zwp-controlbar .zwp-speedButton > button.zwp-speedBtn {
|
|
442
|
+
width: 38px;
|
|
443
|
+
color: #ccc;
|
|
444
|
+
font-size: 14px;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.zwp-wrap .zwp-controlbar .zwp-subtitleButton {
|
|
448
|
+
width: 40px;
|
|
449
|
+
position: relative;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.zwp-wrap .zwp-controlbar .zwp-qualityButton {
|
|
453
|
+
width: 40px;
|
|
454
|
+
position: relative;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.zwp-wrap .zwp-controlbar .zwp-chapterButton {
|
|
458
|
+
width: auto;
|
|
459
|
+
position: relative;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.zwp-wrap .zwp-videoWrapper {
|
|
463
|
+
position: absolute;
|
|
464
|
+
left: 0;
|
|
465
|
+
top: 0;
|
|
466
|
+
width: 100%;
|
|
467
|
+
height: 100%;
|
|
468
|
+
overflow: hidden;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.zwp-wrap .zwp-videoWrapper.zwp-half {
|
|
472
|
+
width: 50%;
|
|
473
|
+
height: 50%;
|
|
474
|
+
left: 50%;
|
|
475
|
+
top: 50%;
|
|
476
|
+
transform: translateY(-50%) translateX(-50%);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.zwp-wrap .zwp-videoWrapper video::cue {
|
|
480
|
+
background-color:transparent;
|
|
481
|
+
color:white;
|
|
482
|
+
font-size:26px;
|
|
483
|
+
line-height: 120px;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.zwp-wrap .zwp__layers .zwp-pipPlaceHolder {
|
|
487
|
+
position: absolute;
|
|
488
|
+
left: 0;
|
|
489
|
+
top: 0;
|
|
490
|
+
width: 100%;
|
|
491
|
+
height: 100%;
|
|
492
|
+
z-index: 1;
|
|
493
|
+
background: linear-gradient(293.69deg,#2f2e36 40%,#3f272d 85.87%);
|
|
494
|
+
font-size: 0;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.zwp-pipPlaceHolder .zwp-pipControl {
|
|
498
|
+
z-index: 13;
|
|
499
|
+
position: absolute;
|
|
500
|
+
top: 45%;
|
|
501
|
+
left: 50%;
|
|
502
|
+
transform: translate(-50%);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.zwp-pipPlaceHolder .zwp-pipTiptext {
|
|
506
|
+
width: 288px;
|
|
507
|
+
height: 20px;
|
|
508
|
+
color: #fff;
|
|
509
|
+
opacity: .7;
|
|
510
|
+
font-size: 24px;
|
|
511
|
+
font-weight: 400;
|
|
512
|
+
line-height: 20px;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.zwp-pipPlaceHolder .zwp-pipExitButton {
|
|
516
|
+
width: 164px;
|
|
517
|
+
height: 52px;
|
|
518
|
+
color: #fff;
|
|
519
|
+
opacity: .7;
|
|
520
|
+
cursor: pointer;
|
|
521
|
+
background: #0000004d;
|
|
522
|
+
border: 1px solid #ffffff4d;
|
|
523
|
+
border-radius: 100px;
|
|
524
|
+
flex-direction: row;
|
|
525
|
+
justify-content: center;
|
|
526
|
+
align-items: center;
|
|
527
|
+
margin-top: 24px;
|
|
528
|
+
margin-left: 62px;
|
|
529
|
+
font-size: 16px;
|
|
530
|
+
display: flex;
|
|
531
|
+
position: absolute;
|
|
532
|
+
box-sizing: border-box;
|
|
533
|
+
}
|
|
534
|
+
.zwp-pipPlaceHolder .zwp-pipExitButton:hover {
|
|
535
|
+
border-color: #1f74b7;
|
|
536
|
+
color: #ffffff;
|
|
537
|
+
background-color: #6d6d6d4d;
|
|
538
|
+
}
|
|
539
|
+
/*speed begin ---*/
|
|
540
|
+
.zwp-wrap .zwp-controlbar .zwp-speedButton .zwp-speedMenu {
|
|
541
|
+
list-style: none;
|
|
542
|
+
background-color: rgb(17 17 17 / 60%);
|
|
543
|
+
bottom: 30px;
|
|
544
|
+
position: absolute;
|
|
545
|
+
color: #ccc;
|
|
546
|
+
padding: 6px 0px;
|
|
547
|
+
margin: 0;
|
|
548
|
+
border-radius: 3px;
|
|
549
|
+
width: 72px;
|
|
550
|
+
left: -16px;
|
|
551
|
+
display: none;
|
|
552
|
+
z-index: 1;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.zwp-speedMenu .zwp-speed-item {
|
|
556
|
+
list-style: none;
|
|
557
|
+
display: block;
|
|
558
|
+
padding: 8px 10px;
|
|
559
|
+
font-size: 14px;
|
|
560
|
+
margin: 0px 0;
|
|
561
|
+
text-align: center;
|
|
562
|
+
cursor: pointer;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.zwp-speedMenu .zwp-speed-item:hover {
|
|
566
|
+
background-color: rgb(34 34 34 / 50%);
|
|
567
|
+
color: #00BCD4;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.zwp-speedMenu .zwp-speed-item.active {
|
|
571
|
+
color: #25e6ff;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.zwp-wrap .zwp-controlbar .zwp-speedButton:hover .zwp-speedMenu {
|
|
575
|
+
display: block;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
/*subtitle begin ---*/
|
|
579
|
+
.zwp-wrap .zwp-controlbar .zwp-subtitleButton .zwp-subtitleMenu {
|
|
580
|
+
list-style: none;
|
|
581
|
+
background-color: rgb(17 17 17 / 60%);
|
|
582
|
+
bottom: 30px;
|
|
583
|
+
position: absolute;
|
|
584
|
+
color: #ccc;
|
|
585
|
+
padding: 6px 0px;
|
|
586
|
+
margin: 0;
|
|
587
|
+
border-radius: 3px;
|
|
588
|
+
width: auto;
|
|
589
|
+
display: none;
|
|
590
|
+
z-index: 1;
|
|
591
|
+
min-width: 160px;
|
|
592
|
+
transform: translateX(-50%);
|
|
593
|
+
margin-left: 20px;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
.zwp-wrap .zwp-controlbar .zwp-subtitleButton .zwp-subtitleMenu.zwp-autosize {
|
|
598
|
+
min-width: auto;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.zwp-subtitleMenu .zwp-subtitle-item {
|
|
602
|
+
list-style: none;
|
|
603
|
+
display: block;
|
|
604
|
+
padding: 8px 10px;
|
|
605
|
+
font-size: 14px;
|
|
606
|
+
margin: 0px 0;
|
|
607
|
+
text-align: center;
|
|
608
|
+
cursor: pointer;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.zwp-subtitleMenu .zwp-subtitle-item:hover {
|
|
612
|
+
background-color: rgb(34 34 34 / 50%);
|
|
613
|
+
color: #00BCD4;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.zwp-subtitleMenu .zwp-subtitle-item.active {
|
|
617
|
+
color: #25e6ff;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.zwp-wrap .zwp-controlbar .zwp-subtitleButton:hover .zwp-subtitleMenu {
|
|
621
|
+
display: block;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.zwp-version {
|
|
625
|
+
color: #4CAF50;
|
|
626
|
+
}
|
|
627
|
+
/*subtitle end ---*/
|
|
628
|
+
|
|
629
|
+
/*quality begin ---*/
|
|
630
|
+
.zwp-wrap .zwp-controlbar .zwp-qualityButton .zwp-qualityMenu {
|
|
631
|
+
list-style: none;
|
|
632
|
+
background-color: rgb(17 17 17 / 60%);
|
|
633
|
+
bottom: 30px;
|
|
634
|
+
position: absolute;
|
|
635
|
+
color: #ccc;
|
|
636
|
+
padding: 6px 10px;
|
|
637
|
+
margin: 0;
|
|
638
|
+
border-radius: 3px;
|
|
639
|
+
min-width: 60px;
|
|
640
|
+
left: 50%;
|
|
641
|
+
display: none;
|
|
642
|
+
z-index: 1;
|
|
643
|
+
transform: translateX(-50%);
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.zwp-qualityMenu .zwp-quality-item {
|
|
647
|
+
list-style: none;
|
|
648
|
+
display: block;
|
|
649
|
+
padding: 8px 15px 8px 20px;
|
|
650
|
+
font-size: 14px;
|
|
651
|
+
margin: 0px 0;
|
|
652
|
+
text-align: left;
|
|
653
|
+
cursor: pointer;
|
|
654
|
+
white-space: nowrap;
|
|
655
|
+
position: relative;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.zwp-qualityMenu .zwp-quality-item:hover {
|
|
659
|
+
background-color: rgb(34 34 34 / 50%);
|
|
660
|
+
color: #00BCD4;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.zwp-qualityMenu .zwp-quality-item.active {
|
|
664
|
+
color: #25e6ff;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.zwp-qualityMenu .zwp-quality-item.current {
|
|
668
|
+
color: #25e6ff;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.zwp-wrap .zwp-controlbar .zwp-qualityButton:hover .zwp-qualityMenu {
|
|
672
|
+
display: block;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.zwp-qualityMenu .zwp-quality-item.active:before {
|
|
676
|
+
content: ' ';
|
|
677
|
+
background-color: #25e6ff;
|
|
678
|
+
position: absolute;
|
|
679
|
+
width: 6px;
|
|
680
|
+
height: 6px;
|
|
681
|
+
left: 7px;
|
|
682
|
+
border-radius: 3px;
|
|
683
|
+
top: 11px;
|
|
684
|
+
}
|
|
685
|
+
/*quality end ---*/
|
|
686
|
+
|
|
687
|
+
/*subtitles begin ---*/
|
|
688
|
+
|
|
689
|
+
.zwp-wrap .zwp-controlbar .zwp-option-item .zwp-button {
|
|
690
|
+
display: block;
|
|
691
|
+
position: absolute;
|
|
692
|
+
top: 0;
|
|
693
|
+
right: 0px;
|
|
694
|
+
width: 26px;
|
|
695
|
+
height: 32px;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.zwp-wrap .zwp-controlbar .zwp-option-item .zwp-button > button {
|
|
699
|
+
width: 24px;
|
|
700
|
+
height: 32px;
|
|
701
|
+
line-height: 32px;
|
|
702
|
+
cursor: pointer;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.zwp-wrap .zwp-controlbar .zwp-option-item .zwp-button .xicon {
|
|
706
|
+
font-size: 16px!important;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.zwp-wrap .zwp-controlbar .zwp-subtitleMenu .zwp-subtitlesMenu {
|
|
710
|
+
left: 24px;
|
|
711
|
+
margin: 0;
|
|
712
|
+
padding: 6px 1px;
|
|
713
|
+
bottom: -6px;
|
|
714
|
+
background-color: #262929ad;
|
|
715
|
+
border-radius: 3px;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.zwp-subtitlesMenu .zwp-subtitles-item {
|
|
719
|
+
min-width: 72px;
|
|
720
|
+
list-style: none;
|
|
721
|
+
cursor: pointer;
|
|
722
|
+
white-space: nowrap;
|
|
723
|
+
position: relative;
|
|
724
|
+
padding: 8px 15px 8px 20px;
|
|
725
|
+
font-size: 14px;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.zwp-subtitlesMenu .zwp-subtitles-item.active {
|
|
729
|
+
color: #25e6ff;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.zwp-subtitlesMenu .zwp-subtitles-item.current {
|
|
733
|
+
color: #25e6ff;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.zwp-subtitlesMenu .zwp-subtitles-item:hover {
|
|
737
|
+
background-color: rgb(34 34 34 / 50%);
|
|
738
|
+
color: #00BCD4;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.zwp-subtitlesMenu .zwp-subtitles-item.active:before {
|
|
742
|
+
content: ' ';
|
|
743
|
+
background-color: #25e6ff;
|
|
744
|
+
position: absolute;
|
|
745
|
+
width: 6px;
|
|
746
|
+
height: 6px;
|
|
747
|
+
left: 7px;
|
|
748
|
+
border-radius: 3px;
|
|
749
|
+
top: 11px;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
/*subtitles end ---*/
|
|
753
|
+
|
|
754
|
+
.zwp-wrap.zwp-fullscreen .zwp-fullscrWinButton {
|
|
755
|
+
display: none;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
/* Start: Progress Bar */
|
|
759
|
+
.zwp__time-rail {
|
|
760
|
+
direction: ltr;
|
|
761
|
+
-ms-flex-positive: 1;
|
|
762
|
+
margin: 0 0px;
|
|
763
|
+
position: absolute;
|
|
764
|
+
left: 10px;
|
|
765
|
+
right: 10px;
|
|
766
|
+
padding-top: 0px;
|
|
767
|
+
padding-bottom: 0px;
|
|
768
|
+
bottom: 40px;
|
|
769
|
+
height: 20px;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.zwp__time-rail.has-duration {
|
|
773
|
+
margin-left: 10px;
|
|
774
|
+
margin-right: 10px;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.zwp__time-info {
|
|
778
|
+
direction: ltr;
|
|
779
|
+
-webkit-box-flex: 1;
|
|
780
|
+
-webkit-flex-grow: 1;
|
|
781
|
+
-ms-flex-positive: 1;
|
|
782
|
+
flex-grow: 1;
|
|
783
|
+
height: 36px;
|
|
784
|
+
margin: 0 0px;
|
|
785
|
+
padding-top: 0px;
|
|
786
|
+
position: relative;
|
|
787
|
+
display: flex;
|
|
788
|
+
flex-direction: row;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.zwp-chapterBtn .xicon {
|
|
792
|
+
vertical-align: bottom;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.zwp-wrap .zwp-controlbar .zwp-button > button.zwp-chapterBtn {
|
|
796
|
+
font-size: 14px;
|
|
797
|
+
width: auto;
|
|
798
|
+
padding: 0 10px;
|
|
799
|
+
position: relative;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.zwp__time_divider {
|
|
803
|
+
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.zwp__time {
|
|
807
|
+
color: #dcdcdc;
|
|
808
|
+
font-size: 14px;
|
|
809
|
+
height: 36px;
|
|
810
|
+
overflow: hidden;
|
|
811
|
+
padding: 10px 6px;
|
|
812
|
+
text-align: center;
|
|
813
|
+
width: auto;
|
|
814
|
+
line-height: 16px;
|
|
815
|
+
margin: 0;
|
|
816
|
+
display: inline-block;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.zwp__time-total {
|
|
820
|
+
border-radius: 2px;
|
|
821
|
+
cursor: pointer;
|
|
822
|
+
display: block;
|
|
823
|
+
height: 4px;
|
|
824
|
+
position: absolute;
|
|
825
|
+
bottom: 10px;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.zwp__time-slider .zwp__bar{
|
|
829
|
+
border-radius: 3px;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.zwp__time-buffering,
|
|
833
|
+
.zwp__time-loaded,
|
|
834
|
+
.zwp__time-current,
|
|
835
|
+
.zwp__time-float,
|
|
836
|
+
.zwp__time-chapter,
|
|
837
|
+
.zwp__time-hovered,
|
|
838
|
+
.zwp__time-float-current,
|
|
839
|
+
.zwp__time-float-corner,
|
|
840
|
+
.zwp__time-marker {
|
|
841
|
+
border-radius: 2px;
|
|
842
|
+
cursor: pointer;
|
|
843
|
+
display: block;
|
|
844
|
+
height: 100%;
|
|
845
|
+
position: absolute;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.zwp__time-total {
|
|
849
|
+
background: rgba(255, 255, 255, 0.3);
|
|
850
|
+
margin: 0px 0 0;
|
|
851
|
+
width: 100%;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.zwp__time-buffering {
|
|
855
|
+
-webkit-animation: buffering-stripes 2s linear infinite;
|
|
856
|
+
animation: buffering-stripes 2s linear infinite;
|
|
857
|
+
background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
|
|
858
|
+
background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
|
|
859
|
+
background-size: 15px 15px;
|
|
860
|
+
width: 100%;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.zwp__time-chapter {
|
|
864
|
+
width: 100%;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.zwp__time.zwp__duration-container {
|
|
868
|
+
padding-left: 0;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
@-webkit-keyframes buffering-stripes {
|
|
872
|
+
from {
|
|
873
|
+
background-position: 0 0;
|
|
874
|
+
}
|
|
875
|
+
to {
|
|
876
|
+
background-position: 30px 0;
|
|
877
|
+
}
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
@keyframes buffering-stripes {
|
|
881
|
+
from {
|
|
882
|
+
background-position: 0 0;
|
|
883
|
+
}
|
|
884
|
+
to {
|
|
885
|
+
background-position: 30px 0;
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.zwp__time-loaded {
|
|
890
|
+
background: rgb(217 217 217 / 78%);
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.zwp__time-current {
|
|
894
|
+
background: rgb(42 213 49 / 81%);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.zwp__time-hovered {
|
|
898
|
+
background: rgba(255, 255, 255, 0.5);
|
|
899
|
+
z-index: 10;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.zwp__time-hovered.negative {
|
|
903
|
+
background: rgba(0, 0, 0, 0.2);
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.zwp__time-chapter {
|
|
907
|
+
z-index: 11;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.zwp__time-current,
|
|
911
|
+
.zwp__time-buffering,
|
|
912
|
+
.zwp__time-loaded,
|
|
913
|
+
.zwp__time-hovered {
|
|
914
|
+
left: 0;
|
|
915
|
+
top: 0;
|
|
916
|
+
width: 0;
|
|
917
|
+
/*
|
|
918
|
+
-webkit-transform: scaleX(0);
|
|
919
|
+
-ms-transform: scaleX(0);
|
|
920
|
+
transform: scaleX(0);
|
|
921
|
+
-webkit-transform-origin: 0 0;
|
|
922
|
+
-ms-transform-origin: 0 0;
|
|
923
|
+
transform-origin: 0 0;
|
|
924
|
+
-webkit-transition: 0.15s ease-in all;
|
|
925
|
+
transition: 0.15s ease-in all;
|
|
926
|
+
width: 100%;*/
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.zwp__time-float {
|
|
930
|
+
background: #222;
|
|
931
|
+
border: solid 1px rgb(0 0 0 / 50%);
|
|
932
|
+
bottom: 120%;
|
|
933
|
+
color: #111;
|
|
934
|
+
display: none;
|
|
935
|
+
height: 20px;
|
|
936
|
+
margin-bottom: 4px;
|
|
937
|
+
position: absolute;
|
|
938
|
+
text-align: center;
|
|
939
|
+
-webkit-transform: translateX(-50%);
|
|
940
|
+
-ms-transform: translateX(-50%);
|
|
941
|
+
transform: translateX(-50%);
|
|
942
|
+
width: 36px;
|
|
943
|
+
box-sizing: border-box;
|
|
944
|
+
font-size: 14px;
|
|
945
|
+
line-height: 14px;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.zwp__time-float.zwp__thumbnail {
|
|
949
|
+
width: 140px;
|
|
950
|
+
height: 96px;
|
|
951
|
+
background-color: #323232;
|
|
952
|
+
color: #eee;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.zwp__time-float-current {
|
|
956
|
+
display: block;
|
|
957
|
+
left: 0;
|
|
958
|
+
margin: 2px;
|
|
959
|
+
text-align: center;
|
|
960
|
+
width: 94%;
|
|
961
|
+
color: #ccc;
|
|
962
|
+
font-size: 14px;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.zwp__time-float-corner {
|
|
966
|
+
border-radius: 0;
|
|
967
|
+
display: block;
|
|
968
|
+
left: 50%;
|
|
969
|
+
top: 100%;
|
|
970
|
+
line-height: 0;
|
|
971
|
+
position: absolute;
|
|
972
|
+
-webkit-transform: translateX(-50%);
|
|
973
|
+
-ms-transform: translateX(-50%);
|
|
974
|
+
transform: translateX(-50%);
|
|
975
|
+
width: 0;
|
|
976
|
+
height: 0;
|
|
977
|
+
border-style: solid;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.zwp__time-float-corner.corner_external {
|
|
981
|
+
border-width: 5px;
|
|
982
|
+
border-color: #000000 transparent transparent;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.zwp__time-float-corner.corner_internal {
|
|
986
|
+
border-width: 4px;
|
|
987
|
+
border-color: #323232 transparent transparent;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.zwp__time-float.tmp__thumbnail .zwp__time-float-corner.corner_external {
|
|
991
|
+
border: 6px solid #333;
|
|
992
|
+
border-color: #323232 transparent transparent;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.zwp__time-float.tmp__thumbnail .zwp__time-float-corner.corner_internal {
|
|
996
|
+
border-top-color: #111;
|
|
997
|
+
margin-top: -1px;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.zwp__time-thumbnail {
|
|
1001
|
+
margin-left: 1px;
|
|
1002
|
+
margin-top: 1px;
|
|
1003
|
+
margin-bottom: 1px;
|
|
1004
|
+
width: 128px;
|
|
1005
|
+
height: 72px;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.zwp__thumbnail .zwp__time-float-current {
|
|
1009
|
+
width: auto;
|
|
1010
|
+
height: 20px;
|
|
1011
|
+
line-height: 12px;
|
|
1012
|
+
background-color: #00000042;
|
|
1013
|
+
padding: 4px 4px;
|
|
1014
|
+
border-radius: 3px;
|
|
1015
|
+
position: absolute;
|
|
1016
|
+
bottom: 2px;
|
|
1017
|
+
left: 50%;
|
|
1018
|
+
transform: translateX(-50%);
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.zwp__time-buffering {
|
|
1022
|
+
-webkit-transform: scaleX(1);
|
|
1023
|
+
-ms-transform: scaleX(1);
|
|
1024
|
+
transform: scaleX(1);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.zwp__time-hovered {
|
|
1028
|
+
-webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
|
|
1029
|
+
transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.zwp__time-hovered.no-hover {
|
|
1033
|
+
-webkit-transform: scaleX(0) !important;
|
|
1034
|
+
-ms-transform: scaleX(0) !important;
|
|
1035
|
+
transform: scaleX(0) !important;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.zwp__time-thumb {
|
|
1039
|
+
border: 5px solid transparent;
|
|
1040
|
+
cursor: pointer;
|
|
1041
|
+
left: 0;
|
|
1042
|
+
position: absolute;
|
|
1043
|
+
-webkit-transform: translateX(0);
|
|
1044
|
+
-ms-transform: translateX(0);
|
|
1045
|
+
transform: translateX(0);
|
|
1046
|
+
z-index: 15;
|
|
1047
|
+
width: 20px;
|
|
1048
|
+
height: 20px;
|
|
1049
|
+
border-radius: 50%;
|
|
1050
|
+
top: -5px;
|
|
1051
|
+
margin-left: -10px;
|
|
1052
|
+
display: none;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.zwp_disabled .zwp__time-thumb {
|
|
1056
|
+
cursor: not-allowed;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.zwp__time-thumb-content {
|
|
1060
|
+
width: 10px;
|
|
1061
|
+
height: 10px;
|
|
1062
|
+
border: 0;
|
|
1063
|
+
border-radius: 50%;
|
|
1064
|
+
background-color: #0371ef;
|
|
1065
|
+
display: block;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.zwp__time-chapter .zwp__chapter_dot {
|
|
1069
|
+
display: inline-block;
|
|
1070
|
+
position: absolute;
|
|
1071
|
+
width: 4px;
|
|
1072
|
+
height: 4px;
|
|
1073
|
+
border-radius: 50%;
|
|
1074
|
+
background-color: #f0f0f0;
|
|
1075
|
+
margin-left: -2px;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.zwp__time-chapter .zwp__chapter_dot:hover {
|
|
1079
|
+
background-color: #f7501c;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.zwp__time-rail:not(.zwp_disabled):hover .zwp__time-thumb,
|
|
1083
|
+
.zwp__time-rail:not(.zwp_disabled) .zwp__time-thumb:focus,
|
|
1084
|
+
.zwp__time-rail:not(.zwp_disabled) .zwp__time-thumb:active {
|
|
1085
|
+
border: 5px solid rgb(20 195 27 / 86%);
|
|
1086
|
+
display: block;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.zwp__time-rail:hover {
|
|
1090
|
+
padding-bottom: 0;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.zwp__time-rail:hover .zwp__time-thumb-content,
|
|
1094
|
+
.zwp__time-rail .zwp__time-thumb-content:focus,
|
|
1095
|
+
.zwp__time-rail .zwp__time-thumb-content:active {
|
|
1096
|
+
-webkit-transform: scale(1);
|
|
1097
|
+
-ms-transform: scale(1);
|
|
1098
|
+
transform: scale(1);
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.zwp__time-rail:hover .zwp__time-total {
|
|
1102
|
+
height: 10px;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.zwp__time-rail:hover .zwp__time-chapter .zwp__chapter_dot {
|
|
1106
|
+
width: 10px;
|
|
1107
|
+
height: 10px;
|
|
1108
|
+
margin-left: -5px;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.zwp__time-rail:hover .zwp__time-thumb-content {
|
|
1112
|
+
width: 10px;
|
|
1113
|
+
height: 10px;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.zwp__time-rail.zwp_disabled * {
|
|
1117
|
+
cursor: not-allowed;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
/* End: Progress Bar */
|
|
1121
|
+
|
|
1122
|
+
.zwp-volume-docker {
|
|
1123
|
+
position: relative;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.zwp-volume-docker > .zwp-volume-slider {
|
|
1127
|
+
position: absolute;
|
|
1128
|
+
background: rgba(50, 50, 50, 0.7);
|
|
1129
|
+
border-radius: 0;
|
|
1130
|
+
bottom: 90%;
|
|
1131
|
+
display: none;
|
|
1132
|
+
height: 122px;
|
|
1133
|
+
left: 50%;
|
|
1134
|
+
margin: 0;
|
|
1135
|
+
-webkit-transform: translateX(-50%);
|
|
1136
|
+
-ms-transform: translateX(-50%);
|
|
1137
|
+
transform: translateX(-50%);
|
|
1138
|
+
width: 40px;
|
|
1139
|
+
z-index: 1;
|
|
1140
|
+
border: 1px solid rgb(39, 39, 39, 0.9);
|
|
1141
|
+
border-radius: 3px;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.zwp-volume-docker:hover > .zwp-volume-slider {
|
|
1145
|
+
display: block;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.zwp-volume-total {
|
|
1149
|
+
background: rgba(255, 255, 255, 0.5);
|
|
1150
|
+
height: 100px;
|
|
1151
|
+
left: 50%;
|
|
1152
|
+
margin: 0;
|
|
1153
|
+
position: absolute;
|
|
1154
|
+
top: 10px;
|
|
1155
|
+
-webkit-transform: translateX(-50%);
|
|
1156
|
+
-ms-transform: translateX(-50%);
|
|
1157
|
+
transform: translateX(-50%);
|
|
1158
|
+
width: 4px;
|
|
1159
|
+
cursor: pointer;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.zwp-volume-current {
|
|
1163
|
+
background: rgb(0 126 183);
|
|
1164
|
+
left: 0;
|
|
1165
|
+
margin: 0;
|
|
1166
|
+
position: absolute;
|
|
1167
|
+
width: 100%;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.zwp-volume-handle {
|
|
1171
|
+
background: rgb(173 173 173 / 90%);
|
|
1172
|
+
border-radius: 50%;
|
|
1173
|
+
cursor: ns-resize;
|
|
1174
|
+
height: 18px;
|
|
1175
|
+
left: 50%;
|
|
1176
|
+
position: absolute;
|
|
1177
|
+
-webkit-transform: translateX(-50%);
|
|
1178
|
+
-ms-transform: translateX(-50%);
|
|
1179
|
+
transform: translateX(-50%);
|
|
1180
|
+
width: 18px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.zwp-volume-handle:hover {
|
|
1184
|
+
background: #178ce9;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.zwp-streamtype {
|
|
1188
|
+
padding: 6px 6px;
|
|
1189
|
+
display: inline-block;
|
|
1190
|
+
line-height: 24px;
|
|
1191
|
+
color: rgb(15 222 0 / 79%);
|
|
1192
|
+
font-size: 12px;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.zwp__currenttime {
|
|
1196
|
+
display: inline-block;
|
|
1197
|
+
min-width: 50px;
|
|
1198
|
+
text-align: right;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.zwp__overlay {
|
|
1202
|
+
-webkit-box-align: center;
|
|
1203
|
+
-webkit-align-items: center;
|
|
1204
|
+
-ms-flex-align: center;
|
|
1205
|
+
align-items: center;
|
|
1206
|
+
display: -webkit-box;
|
|
1207
|
+
display: -webkit-flex;
|
|
1208
|
+
display: -ms-flexbox;
|
|
1209
|
+
display: flex;
|
|
1210
|
+
-webkit-box-pack: center;
|
|
1211
|
+
-webkit-justify-content: center;
|
|
1212
|
+
-ms-flex-pack: center;
|
|
1213
|
+
justify-content: center;
|
|
1214
|
+
left: 0;
|
|
1215
|
+
position: absolute;
|
|
1216
|
+
top: 0;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.zwp__layer {
|
|
1220
|
+
z-index: 1;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.zwp__overlay-loading {
|
|
1224
|
+
height: 80px;
|
|
1225
|
+
width: 80px;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.zwp__overlay-loading-bg-img {
|
|
1229
|
+
display: block;
|
|
1230
|
+
height: 80px;
|
|
1231
|
+
width: 80px;
|
|
1232
|
+
z-index: 1;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.zwp__overlay SPAN {
|
|
1236
|
+
-webkit-touch-callout: none;
|
|
1237
|
+
-webkit-user-select: none;
|
|
1238
|
+
-khtml-user-select: none;
|
|
1239
|
+
-moz-user-select: none;
|
|
1240
|
+
-ms-user-select: none;
|
|
1241
|
+
user-select: none;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.zwp__overlay-play {
|
|
1245
|
+
cursor: pointer;
|
|
1246
|
+
z-index: 101;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.zwp__overlay-button {
|
|
1250
|
+
height: 96px;
|
|
1251
|
+
width: 96px;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.zwp-wrap {
|
|
1255
|
+
background-color: #222;
|
|
1256
|
+
padding: 0 0;
|
|
1257
|
+
position: relative;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.zwp-wrap .zwp-container {
|
|
1261
|
+
height: 100%;
|
|
1262
|
+
position: relative;
|
|
1263
|
+
width: 100%;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.zwp_disabled {
|
|
1267
|
+
cursor: not-allowed;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.zwp-wrap.zwp-state-light-off:before {
|
|
1271
|
+
background-color: #000;
|
|
1272
|
+
bottom: 0;
|
|
1273
|
+
content: "";
|
|
1274
|
+
display: block;
|
|
1275
|
+
left: 0;
|
|
1276
|
+
opacity: .9;
|
|
1277
|
+
position: fixed;
|
|
1278
|
+
right: 0;
|
|
1279
|
+
top: 0;
|
|
1280
|
+
z-index: 1001;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
.zwp-wrap.zwp-state-light-off .zwp-container {
|
|
1284
|
+
z-index: 1002;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
/* lite icon */
|
|
1288
|
+
.zwp-muteBtn .xicon {
|
|
1289
|
+
font-size: 24px;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.zwp-popupwindow {
|
|
1293
|
+
box-shadow: 1px 1px 50px rgba(0,0,0,.3);
|
|
1294
|
+
background-color: rgb(17 17 17 / 60%);
|
|
1295
|
+
position: absolute;
|
|
1296
|
+
color: #ccc;
|
|
1297
|
+
padding: 6px 0px;
|
|
1298
|
+
margin: 0;
|
|
1299
|
+
border-radius: 3px;
|
|
1300
|
+
display: none;
|
|
1301
|
+
z-index: 201;
|
|
1302
|
+
min-height: 120px;
|
|
1303
|
+
user-select: none;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.zwp__mediainfo-viewer {
|
|
1307
|
+
top: 20px;
|
|
1308
|
+
right: 20px;
|
|
1309
|
+
border: 1px solid rgb(34 32 32 / 50%);
|
|
1310
|
+
width: 170px;
|
|
1311
|
+
min-height: 100px;
|
|
1312
|
+
padding: 4px 10px 10px;
|
|
1313
|
+
border-radius: 5px;
|
|
1314
|
+
background-color: rgb(32 32 32 / 50%);
|
|
1315
|
+
display: block;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.zwp__mediainfo-viewer .info-item {
|
|
1319
|
+
font-size: 14px;
|
|
1320
|
+
text-align: left;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
.zwp__mediainfo-viewer .info-item .info-label {
|
|
1324
|
+
display: inline-block;
|
|
1325
|
+
width: 80px;
|
|
1326
|
+
color: rgb(197 197 197 / 70%);
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.zwp__mediainfo-viewer .info-item .info-value {
|
|
1330
|
+
display: inline-block;
|
|
1331
|
+
color: rgb(197 197 197 / 80%);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.zwp-popupwindow .closeBtn {
|
|
1335
|
+
position: absolute;
|
|
1336
|
+
width: 20px;
|
|
1337
|
+
height: 20px;
|
|
1338
|
+
display: block;
|
|
1339
|
+
border: 0;
|
|
1340
|
+
background-color: transparent;
|
|
1341
|
+
right: 6px;
|
|
1342
|
+
top: 6px;
|
|
1343
|
+
color: rgb(199 198 198 / 80%);
|
|
1344
|
+
padding: 0;
|
|
1345
|
+
cursor: pointer;
|
|
1346
|
+
z-index: 1;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.zwp-popupwindow .closeBtn:hover {
|
|
1350
|
+
color: #f00;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.zwp-popupwindow .closeBtn:active {
|
|
1354
|
+
color: #c30e0e;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.zwp-popupwindow .closeBtn .xicon {
|
|
1358
|
+
font-size: 20px;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.zwp-hidden {
|
|
1362
|
+
display: none;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.zwp-optionPanel {
|
|
1366
|
+
background-color: rgb(17 17 17 / 60%);
|
|
1367
|
+
bottom: 30px;
|
|
1368
|
+
position: absolute;
|
|
1369
|
+
color: #ccc;
|
|
1370
|
+
padding: 6px 0px;
|
|
1371
|
+
margin: 0;
|
|
1372
|
+
border-radius: 3px;
|
|
1373
|
+
width: 160px;
|
|
1374
|
+
left: -62px;
|
|
1375
|
+
display: none;
|
|
1376
|
+
z-index: 1;
|
|
1377
|
+
min-height: 120px;
|
|
1378
|
+
user-select: none;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.zwp-option-item {
|
|
1382
|
+
line-height: 20px;
|
|
1383
|
+
padding: 4px 15px;
|
|
1384
|
+
/*overflow: hidden;*/
|
|
1385
|
+
height: 32px;
|
|
1386
|
+
position: relative;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.zwp-option-itemxx:hover {
|
|
1390
|
+
background-color: #3f54b585;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.zwp-option-item.zwp-lefticon {
|
|
1394
|
+
padding-left: 40px;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.zwp-option-item .zwp-option-item-label {
|
|
1398
|
+
display: inline-block;
|
|
1399
|
+
width: 80px;
|
|
1400
|
+
line-height: 24px;
|
|
1401
|
+
height: 24px;
|
|
1402
|
+
float: left;
|
|
1403
|
+
font-size: 14px;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.zwp-option-item .zwp-option-item-value {
|
|
1407
|
+
display: inline-block;
|
|
1408
|
+
height: 24px;
|
|
1409
|
+
padding: 2px 4px;
|
|
1410
|
+
float: right;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.zwp-option-h-separator {
|
|
1414
|
+
line-height: 10px;
|
|
1415
|
+
padding-top: 4px;
|
|
1416
|
+
padding-left: 4px;
|
|
1417
|
+
padding-right: 4px;
|
|
1418
|
+
height: 10px;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.zwp-option-h-separator hr{
|
|
1422
|
+
margin: 0;
|
|
1423
|
+
padding: 0;
|
|
1424
|
+
height: 1px;
|
|
1425
|
+
background-color: #7f7f7f75;
|
|
1426
|
+
border: 0;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.zwp-option-button {
|
|
1430
|
+
border: none;
|
|
1431
|
+
background-color: transparent;
|
|
1432
|
+
color: #ccc;
|
|
1433
|
+
cursor: pointer;
|
|
1434
|
+
padding: 3px;
|
|
1435
|
+
border-radius: 3px;
|
|
1436
|
+
width: auto;
|
|
1437
|
+
line-height: 18px;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.zwp-option-button:hover {
|
|
1441
|
+
color: #1d93f1;
|
|
1442
|
+
background-color: rgb(0 0 0 / 52%);
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.zwp-wrap .zwp-controlbar .zwp-optionButton:hover .zwp-optionPanel {
|
|
1446
|
+
display: block;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.zwp-popupwindow.zwp-colorSettingPanel {
|
|
1450
|
+
width: 360px;
|
|
1451
|
+
right: 30px;
|
|
1452
|
+
bottom: 70px;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.zwp-popupwindow .form-row {
|
|
1456
|
+
line-height: 24px;
|
|
1457
|
+
padding: 3px 12px;
|
|
1458
|
+
overflow: hidden;
|
|
1459
|
+
font-size: 14px;
|
|
1460
|
+
display: flex;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.zwp-popupwindow .form-row .row-label {
|
|
1464
|
+
width: 70px;
|
|
1465
|
+
display: inline-block;
|
|
1466
|
+
text-align: right;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.zwp-popupwindow .form-row .row-content {
|
|
1470
|
+
flex-grow: 1;
|
|
1471
|
+
padding-left: 6px;
|
|
1472
|
+
display: flex;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.zwp-popupwindow .form-row.form-title {
|
|
1476
|
+
border-bottom: 1px solid rgb(255 255 255 / 20%);
|
|
1477
|
+
font-size: 16px;
|
|
1478
|
+
text-align: center;
|
|
1479
|
+
text-align: center;
|
|
1480
|
+
flex-direction: column;
|
|
1481
|
+
justify-content: center;
|
|
1482
|
+
align-items: center;
|
|
1483
|
+
padding-top: 0;
|
|
1484
|
+
margin-bottom: 4px;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
.zwp-popupwindow .form-row.form-bottombar {
|
|
1488
|
+
border-top: 1px solid rgb(255 255 255 / 10%);
|
|
1489
|
+
text-align: center;
|
|
1490
|
+
padding: 6px 6px 2px;
|
|
1491
|
+
text-align: center;
|
|
1492
|
+
flex-direction: column;
|
|
1493
|
+
justify-content: center;
|
|
1494
|
+
align-items: center;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.zwp-popupwindow .zwp-form-button {
|
|
1498
|
+
border: 1px solid rgb(20 20 20 / 50%);
|
|
1499
|
+
background-color: rgb(0 0 0 / 50%);
|
|
1500
|
+
padding: 4px 15px;
|
|
1501
|
+
color: #aaa;
|
|
1502
|
+
border-radius: 5px;
|
|
1503
|
+
cursor: pointer;
|
|
1504
|
+
min-width: 80px;
|
|
1505
|
+
line-height: 18px;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.zwp-popupwindow .zwp-form-button:hover {
|
|
1509
|
+
color: #198ae5;
|
|
1510
|
+
background-color: rgb(0 0 0 / 60%);
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.zwp-popupwindow .zwp-form-button:active {
|
|
1514
|
+
color: #086cbd;
|
|
1515
|
+
background-color: rgb(0 0 0 / 80%);
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.zwp-chapterPanel {
|
|
1519
|
+
bottom: 100%;
|
|
1520
|
+
width: auto;
|
|
1521
|
+
max-height: 400px;
|
|
1522
|
+
padding-top: 36px;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.zwp-chapterPanel .form-row.form-title {
|
|
1526
|
+
position: absolute;
|
|
1527
|
+
left: 0;
|
|
1528
|
+
top: 4px;
|
|
1529
|
+
right: 0;
|
|
1530
|
+
color: #03A9F4;
|
|
1531
|
+
font-weight: bold;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.zwp-chapterlist {
|
|
1535
|
+
list-style: none;
|
|
1536
|
+
padding: 5px 0px;
|
|
1537
|
+
margin: 0;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.zwp-chapterlist li {
|
|
1541
|
+
list-style: none;
|
|
1542
|
+
display: flex;
|
|
1543
|
+
min-height: 40px;
|
|
1544
|
+
cursor: pointer;
|
|
1545
|
+
border-radius: 0;
|
|
1546
|
+
padding: 3px 10px;
|
|
1547
|
+
font-family: "Microsoft YaHei", "Segoe UI","PingFang SC","Hiragino Sans GB","Helvetica Neue",Helvetica,Arial,sans-serif,-apple-system,BlinkMacSystemFont;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
.zwp-chapterlist li:hover {
|
|
1551
|
+
background-color: rgb(0 0 0 / 50%);
|
|
1552
|
+
color: #46abfb;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.zwp-chapterlist li:hover .title {
|
|
1556
|
+
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.zwp-chapterlist li .item-time {
|
|
1560
|
+
width: 60px;
|
|
1561
|
+
font-size: 14px;
|
|
1562
|
+
line-height: 22px;
|
|
1563
|
+
text-align: right;
|
|
1564
|
+
padding-right: 10px;
|
|
1565
|
+
font-weight: bold;
|
|
1566
|
+
padding-top: 2px;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.zwp-chapterlist li .item-content {
|
|
1570
|
+
flex-grow: 1;
|
|
1571
|
+
text-align: left;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.zwp-chapterlist li .item-content .title {
|
|
1575
|
+
font-size: 16px;
|
|
1576
|
+
font-weight: 600;
|
|
1577
|
+
display: block;
|
|
1578
|
+
padding: 3px 0;
|
|
1579
|
+
line-height: 18px;
|
|
1580
|
+
max-height: 42px;
|
|
1581
|
+
overflow: hidden;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.zwp-chapterlist li .item-content .desc {
|
|
1585
|
+
font-size: 14px;
|
|
1586
|
+
padding: 3px 0;
|
|
1587
|
+
color: rgb(251 251 251 / 50%);
|
|
1588
|
+
margin-top: 0px;
|
|
1589
|
+
display: block;
|
|
1590
|
+
line-height: 14px;
|
|
1591
|
+
max-height: 34px;
|
|
1592
|
+
overflow: hidden;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
.zwp-list-inner {
|
|
1596
|
+
width: 100%;
|
|
1597
|
+
height: 100%;
|
|
1598
|
+
overflow: hidden;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
/*弹幕CSS -Begin*/
|
|
1602
|
+
.zwp-wrap .zwp__layers .danmuplayer {
|
|
1603
|
+
position: absolute;
|
|
1604
|
+
left: 0 !important;
|
|
1605
|
+
top: 0 !important;
|
|
1606
|
+
width: 100% !important;
|
|
1607
|
+
height:80%;
|
|
1608
|
+
height: calc(100% - 145px) !important;
|
|
1609
|
+
z-index: 0 !important;
|
|
1610
|
+
-webkit-user-select: none;
|
|
1611
|
+
-moz-user-select: none;
|
|
1612
|
+
-ms-user-select: none;
|
|
1613
|
+
user-select: none;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.zwp-wrap .zwp__layers .danmuplayer .danmu-layer {
|
|
1617
|
+
position: absolute;
|
|
1618
|
+
z-index: 1;
|
|
1619
|
+
top: 0;
|
|
1620
|
+
left: 0;
|
|
1621
|
+
right: 0;
|
|
1622
|
+
bottom: 0;
|
|
1623
|
+
pointer-events: none;
|
|
1624
|
+
overflow: hidden;
|
|
1625
|
+
-webkit-user-select: none;
|
|
1626
|
+
-moz-user-select: none;
|
|
1627
|
+
-ms-user-select: none;
|
|
1628
|
+
user-select: none;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.zwp-wrap .zwp__layers .danmuplayer .danmu-layer .danmu {
|
|
1632
|
+
position: absolute;
|
|
1633
|
+
display: inline-block;
|
|
1634
|
+
white-space: pre;
|
|
1635
|
+
pointer-events: none;
|
|
1636
|
+
/*opacity: 0.80;*/
|
|
1637
|
+
text-shadow: rgb(0, 0, 0) 1px 0px 1px, rgb(0, 0, 0) 0px 1px 1px, rgb(0, 0, 0) 0px -1px 1px, rgb(0, 0, 0) -1px 0px 1px;
|
|
1638
|
+
/*transform: translateX(-1053px);
|
|
1639
|
+
transition: transform 8.1s linear;
|
|
1640
|
+
|
|
1641
|
+
/*-dynamic-*/
|
|
1642
|
+
left: 979.435px;
|
|
1643
|
+
top: 0px;
|
|
1644
|
+
font-weight: bold;
|
|
1645
|
+
line-height: 1.125;
|
|
1646
|
+
color: rgb(255, 255, 255);
|
|
1647
|
+
font-size: 20px;
|
|
1648
|
+
font-family: SimHei, "Microsoft JhengHei", Arial, Helvetica, sans-serif;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.zwp-wrap .zwp__layers .danmuplayer .danmu-layer .danmu span {
|
|
1652
|
+
display:inline-block;
|
|
1653
|
+
height:100%;
|
|
1654
|
+
line-height:100%;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.zwp-wrap .zwp__layers .danmuplayer .danmu-layer .danmu img {
|
|
1658
|
+
vertical-align: middle;
|
|
1659
|
+
margin-top: -5px;
|
|
1660
|
+
display: inline;
|
|
1661
|
+
width:28px;
|
|
1662
|
+
height:28px;
|
|
1663
|
+
max-width:28px;
|
|
1664
|
+
}
|
|
1665
|
+
/*弹幕CSS END*/
|
|
1666
|
+
|
|
1667
|
+
/*subtitles begin*/
|
|
1668
|
+
.zwp-wrap .zwp-subtitles-show {
|
|
1669
|
+
position: absolute;
|
|
1670
|
+
left: 0 !important;
|
|
1671
|
+
top: 0 !important;
|
|
1672
|
+
width: 100% !important;
|
|
1673
|
+
height: 100% !important;
|
|
1674
|
+
pointer-events: none;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.zwp-wrap .zwp-subtitles-show .zwp-subtitles-viever {
|
|
1678
|
+
left: 5%;
|
|
1679
|
+
max-height: 83%;
|
|
1680
|
+
position: absolute;
|
|
1681
|
+
width: 90%;
|
|
1682
|
+
bottom: 54px;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.zwp-wrap .zwp-subtitles-show.bottom .zwp-subtitles-viever {
|
|
1686
|
+
bottom: 14px;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.zwp-wrap .zwp-subtitles-show.top .zwp-subtitles-viever {
|
|
1690
|
+
top: 14px;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.zwp-wrap .zwp-subtitles-show.middle .zwp-subtitles-viever {
|
|
1694
|
+
top: 50%;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.zwp-wrap .zwp-subtitles-viever .zwp-subtitle {
|
|
1698
|
+
margin-bottom: 4px;
|
|
1699
|
+
font-size: 32px;
|
|
1700
|
+
text-align: center;
|
|
1701
|
+
font-weight: 500;
|
|
1702
|
+
color: #f1f1f1e0;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.zwp-wrap .zwp-subtitles-viever .zwp-subtitle.subtitle-2 {
|
|
1706
|
+
color: #CDDC39;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.zwp-wrap .zwp-subtitles-viever .zwp-subtitle .subtitle-text {
|
|
1710
|
+
word-wrap: break-word;
|
|
1711
|
+
border-radius: 2px;
|
|
1712
|
+
-webkit-box-decoration-break: clone;
|
|
1713
|
+
box-decoration-break: clone;
|
|
1714
|
+
cursor: default;
|
|
1715
|
+
cursor: move;
|
|
1716
|
+
font-family: none;
|
|
1717
|
+
line-height: 1.5;
|
|
1718
|
+
margin-right: -4px;
|
|
1719
|
+
padding: 2px 12px 2px 8px;
|
|
1720
|
+
pointer-events: auto;
|
|
1721
|
+
position: relative;
|
|
1722
|
+
-webkit-user-select: none;
|
|
1723
|
+
-moz-user-select: none;
|
|
1724
|
+
-ms-user-select: none;
|
|
1725
|
+
user-select: none;
|
|
1726
|
+
white-space: normal;
|
|
1727
|
+
text-shadow: -1px -1px 0 #242424, 1px -1px 0 #242424, -1px 1px 0 #242424, 2px 2px 0 #242424;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.zwp-wrap .zwp-subtitles-show .zwp-simple-subtitles-viever {
|
|
1731
|
+
|
|
1732
|
+
}
|
|
1733
|
+
/*subtitles end */
|
|
1734
|
+
|
|
1735
|
+
/*--- control --begin ----*/
|
|
1736
|
+
.zwp_switch {
|
|
1737
|
+
position: relative;
|
|
1738
|
+
margin: 0px 2px;
|
|
1739
|
+
height: 20px;
|
|
1740
|
+
width: 34px;
|
|
1741
|
+
background-color: #101010;
|
|
1742
|
+
border-radius: 20px;
|
|
1743
|
+
cursor: pointer;
|
|
1744
|
+
-webkit-transition: background-color ease .15s;
|
|
1745
|
+
transition: background-color ease .15s;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
.zwp_switch.switch_on {
|
|
1749
|
+
background-color: #649b00;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.zwp_switch .switch_inner {
|
|
1753
|
+
position: absolute;
|
|
1754
|
+
left: 0;
|
|
1755
|
+
width: 20px;
|
|
1756
|
+
height: 20px;
|
|
1757
|
+
background-color: #8d8d8d;
|
|
1758
|
+
border-radius: 20px;
|
|
1759
|
+
-webkit-transition: left ease .1s,background-color ease .2s;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.zwp_switch.switch_on .switch_inner {
|
|
1763
|
+
left: 15px;
|
|
1764
|
+
background-color: #fff;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.zwp_switch .switch_inner::after {
|
|
1768
|
+
content: '';
|
|
1769
|
+
position: absolute;
|
|
1770
|
+
left: 6px;
|
|
1771
|
+
top: 6px;
|
|
1772
|
+
width: 8px;
|
|
1773
|
+
height: 8px;
|
|
1774
|
+
border-radius: 8px;
|
|
1775
|
+
background-color: #294319;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.zwp_switch.switch_on .switch_inner::after {
|
|
1779
|
+
background-color: #649b00;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.zwp_switch_group {
|
|
1783
|
+
height: 50px;
|
|
1784
|
+
text-align: center;
|
|
1785
|
+
color: #aaa;
|
|
1786
|
+
padding-right: 6px;
|
|
1787
|
+
float: left;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.zwp_switch_group .zwp_switch_text {
|
|
1791
|
+
padding: 0px 2px;
|
|
1792
|
+
height: 20px;
|
|
1793
|
+
line-height: 20px;
|
|
1794
|
+
color: #777;
|
|
1795
|
+
display: inline-block;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.zwp_switch_group .zwp_switch_text, .zwp_switch_group .zwp_switch {
|
|
1799
|
+
float: left;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
/*--- control --end ----*/
|
|
1803
|
+
/* zwp-slider --begin */
|
|
1804
|
+
input[type=range].zwp-slider {
|
|
1805
|
+
width: 100%;
|
|
1806
|
+
height: 2px;
|
|
1807
|
+
border-radius: 8px;
|
|
1808
|
+
margin: .8em 0;
|
|
1809
|
+
padding: 0;
|
|
1810
|
+
cursor: pointer;
|
|
1811
|
+
border: 0;
|
|
1812
|
+
background: -webkit-linear-gradient(#FFF, #FFF) no-repeat #999999;
|
|
1813
|
+
background-size: 0% 100%;
|
|
1814
|
+
position: relative;
|
|
1815
|
+
outline: 0;
|
|
1816
|
+
top: 0px;
|
|
1817
|
+
-webkit-appearance: none !important;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
input[type=range].zwp-slider::-webkit-slider-thumb {
|
|
1821
|
+
width: 16px;
|
|
1822
|
+
height: 16px;
|
|
1823
|
+
border-radius: 50%;
|
|
1824
|
+
border: 0;
|
|
1825
|
+
background-color: #03A9F4;
|
|
1826
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.21);
|
|
1827
|
+
-webkit-transition: border-color 0.15s, background-color 0.15s;
|
|
1828
|
+
transition: border-color 0.15s, background-color 0.15s;
|
|
1829
|
+
cursor: pointer;
|
|
1830
|
+
background-clip: padding-box;
|
|
1831
|
+
box-sizing: border-box;
|
|
1832
|
+
-webkit-appearance: none !important;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
input[type=range].zwp-slider::-webkit-slider-thumb:active {
|
|
1836
|
+
border: 0;
|
|
1837
|
+
background-color: #1fb5f9;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
/* zwp-slider --end */
|
|
1841
|
+
|
|
1842
|
+
.row-content input[type=range].zwp-slider {
|
|
1843
|
+
flex-grow: 1;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.row-content .zwp-slider-value {
|
|
1847
|
+
display: inline-block;
|
|
1848
|
+
width: 50px;
|
|
1849
|
+
text-align: center;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
/*-------danmu begin------------*/
|
|
1853
|
+
|
|
1854
|
+
.zwp-barrage_form {
|
|
1855
|
+
position: relative;
|
|
1856
|
+
height:34px;
|
|
1857
|
+
float:left;
|
|
1858
|
+
width:auto;
|
|
1859
|
+
margin-top: 0px;
|
|
1860
|
+
margin-left: 0;
|
|
1861
|
+
margin-right: 0px;
|
|
1862
|
+
background-color: #202020;
|
|
1863
|
+
transition: width ease .15s,margin-left ease .15s;
|
|
1864
|
+
border-radius: 17px;
|
|
1865
|
+
flex-grow: 1;
|
|
1866
|
+
background-color: #28303db3;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.zwp-barrage_inp {
|
|
1870
|
+
height:34px;
|
|
1871
|
+
float: left;
|
|
1872
|
+
position: absolute;
|
|
1873
|
+
left: 0;
|
|
1874
|
+
right: 80px;
|
|
1875
|
+
border-radius: 17px 0 0 17px;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.zwp-barrage_inp .barrage_inp_text {
|
|
1879
|
+
padding:7px 0px;
|
|
1880
|
+
position: absolute;
|
|
1881
|
+
display:none;
|
|
1882
|
+
zoom: 1;
|
|
1883
|
+
left:17px;
|
|
1884
|
+
right:2px;
|
|
1885
|
+
border: none;
|
|
1886
|
+
height:34px;
|
|
1887
|
+
line-height: 20px;
|
|
1888
|
+
font-size: 14px;
|
|
1889
|
+
background: none;
|
|
1890
|
+
color: #999;
|
|
1891
|
+
box-sizing: border-box;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.zwp-barrage_inp.barrage_text {
|
|
1895
|
+
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.zwp-barrage_form .btn_bubble {
|
|
1899
|
+
display: inline-block;
|
|
1900
|
+
padding: 6px 5px;
|
|
1901
|
+
height: 34px;
|
|
1902
|
+
width: 34px;
|
|
1903
|
+
line-height: 22px;
|
|
1904
|
+
text-align: center;
|
|
1905
|
+
position: absolute;
|
|
1906
|
+
right: 48px;
|
|
1907
|
+
color: #787474;
|
|
1908
|
+
font-size: 22px;
|
|
1909
|
+
text-decoration: none;
|
|
1910
|
+
box-sizing: border-box;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.zwp-barrage_form .disabled{
|
|
1914
|
+
color: #333;
|
|
1915
|
+
cursor:default;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
.zwp-barrage_form .btn_bubble:hover {
|
|
1919
|
+
color: #a8a4a4;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.zwp-barrage_form .disabled:hover {
|
|
1923
|
+
color: #333;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
.zwp-barrage_form .btn_bubble:focus {
|
|
1927
|
+
outline: none;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
.zwp-barrage_form .btn_submit {
|
|
1931
|
+
text-align: center;
|
|
1932
|
+
position: absolute;
|
|
1933
|
+
right: 0;
|
|
1934
|
+
top: 0;
|
|
1935
|
+
width: 48px;
|
|
1936
|
+
line-height: 34px;
|
|
1937
|
+
height: 34px;
|
|
1938
|
+
background-color: rgb(41 41 41 / 50%);
|
|
1939
|
+
color: #A8A8A8;
|
|
1940
|
+
border: none;
|
|
1941
|
+
cursor: pointer;
|
|
1942
|
+
border-radius: 0 17px 17px 0;
|
|
1943
|
+
outline: none;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.zwp-barrage_form .btn_submit:hover {
|
|
1947
|
+
background-color: #4c4e59bf;
|
|
1948
|
+
color: #e4e3e3;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.zwp-barrage_form .btn_submit:active {
|
|
1952
|
+
background-color: #585858;
|
|
1953
|
+
color: #d4d3d3;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.zwp-barrage_form .barrage_star {
|
|
1957
|
+
display:none;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.zwp-barrage_form .barrage_login {
|
|
1961
|
+
position:absolute;
|
|
1962
|
+
left:17px;
|
|
1963
|
+
top:0;
|
|
1964
|
+
padding: 5px 0;
|
|
1965
|
+
color: #888;
|
|
1966
|
+
height: 24px;
|
|
1967
|
+
line-height: 24px;
|
|
1968
|
+
cursor:pointer;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
.zwp-barrage_form .barrage_login .barrage_text {
|
|
1972
|
+
color: #bbb;
|
|
1973
|
+
padding-right:4px;
|
|
1974
|
+
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
.zwp-barrage_form .zwp-barrage_inp.logined .barrage_login {
|
|
1978
|
+
display:none;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.zwp-barrage_form .zwp-barrage_inp.logined .barrage_inp_text {
|
|
1982
|
+
display:block;
|
|
1983
|
+
outline: none;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
.zwp-barrage_form .btn_submit.vtb_disabled, .barrage_form .btn_submit.vtb_disabled:hover {
|
|
1987
|
+
opacity: .6;
|
|
1988
|
+
cursor: default;
|
|
1989
|
+
background-color: #414141;
|
|
1990
|
+
color: #A8A8A8;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.lte_ie8 .zwp-barrage_inp .barrage_inp_text {
|
|
1994
|
+
left:6px;
|
|
1995
|
+
width:210px;
|
|
1996
|
+
}
|
|
1997
|
+
/*------*/
|
|
1998
|
+
.danmuform {
|
|
1999
|
+
position: absolute;
|
|
2000
|
+
right: 0;
|
|
2001
|
+
padding-right: 6px;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.zwp-dmform {
|
|
2005
|
+
font: 13px/20px "Microsoft YaHei",PingFangSC-Regular,Lyh-Regular,helvetica,arial, sans-serif !important;
|
|
2006
|
+
position: relative;
|
|
2007
|
+
display: flex;
|
|
2008
|
+
max-width: 540px;
|
|
2009
|
+
min-width: 260px;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.fix {
|
|
2013
|
+
display: block;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.clearfix, .fix {
|
|
2017
|
+
min-height: 1%;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.zwp-dmform .zwp-dmtxtbox {
|
|
2021
|
+
float: left;
|
|
2022
|
+
position: relative;
|
|
2023
|
+
width: 264px;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.w1490 .zwp-dmform .zwp-dmtxtbox {
|
|
2027
|
+
width: 490px;
|
|
2028
|
+
}
|
|
2029
|
+
.w1202 .zwp-dmform .zwp-dmtxtbox {
|
|
2030
|
+
width: 450px;
|
|
2031
|
+
}
|
|
2032
|
+
.w1058 .zwp-dmform .zwp-dmtxtbox {
|
|
2033
|
+
width: 330px;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
.zwp-dmform input, .zwp-dmform button {
|
|
2038
|
+
-webkit-appearance: none;
|
|
2039
|
+
-webkit-border-radius: 0;
|
|
2040
|
+
outline: 0;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.zwp-dmform .zwp-dmtxt {
|
|
2044
|
+
float: left;
|
|
2045
|
+
width: 90%;
|
|
2046
|
+
padding-left: 15px;
|
|
2047
|
+
border-top-left-radius: 20px;
|
|
2048
|
+
border-bottom-left-radius: 20px;
|
|
2049
|
+
height: 32px;
|
|
2050
|
+
color: #909096;
|
|
2051
|
+
background: #333;
|
|
2052
|
+
border: 0 none;
|
|
2053
|
+
padding-right: 10px;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
.w1490 .zwp-dmform .zwp-dmtxt {
|
|
2057
|
+
width: 408px;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.w1202 .zwp-dmform .zwp-dmtxt {
|
|
2061
|
+
width: 368px;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.w1058 .zwp-dmform .zwp-dmtxt {
|
|
2065
|
+
width: 248px;
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.zwp-dmform .zwp_dmadd_button {
|
|
2069
|
+
width: 60px;
|
|
2070
|
+
height: 32px;
|
|
2071
|
+
line-height: 32px;
|
|
2072
|
+
border: 0 none;
|
|
2073
|
+
background: #505056;
|
|
2074
|
+
color: #D0D0D6;
|
|
2075
|
+
cursor: pointer;
|
|
2076
|
+
font-size: 14px;
|
|
2077
|
+
border-top-right-radius: 20px;
|
|
2078
|
+
border-bottom-right-radius: 20px;
|
|
2079
|
+
position: absolute;
|
|
2080
|
+
right: 0;
|
|
2081
|
+
top: 0;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.zwp-dmform .zwp_dmadd_button:hover {
|
|
2085
|
+
color: #fff;
|
|
2086
|
+
background: #2692ff;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
.zwp-dmform .zwp_dmadd_button:active {
|
|
2090
|
+
color: #e2e2e2;
|
|
2091
|
+
background: #056acf;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.zwp-dmform .zwp_dmconfig {
|
|
2095
|
+
width: 28px;
|
|
2096
|
+
height: 28px;
|
|
2097
|
+
display: inline-block;
|
|
2098
|
+
background-position: -81px -17px;
|
|
2099
|
+
float: left;
|
|
2100
|
+
margin: 3px 10px 3px 10px;
|
|
2101
|
+
color: #c3c3c3;
|
|
2102
|
+
cursor: pointer;
|
|
2103
|
+
line-height: 28px;
|
|
2104
|
+
text-align: center;
|
|
2105
|
+
border-radius: 3px;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.zwp-dmform .zwp_dmconfig:hover {
|
|
2109
|
+
background-color: #313131;
|
|
2110
|
+
color: #dddddd;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.zwp-dmform .zwp_dmconfig:active {
|
|
2114
|
+
background-color: #181818;
|
|
2115
|
+
color: #b5b5b5;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
.zwp-dmform .zwp_dmconfig.zwp_dmicon {
|
|
2119
|
+
background-size: 124px;
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
.zwp-dmform .zwp_dmconfig_box {
|
|
2123
|
+
width: 270px;
|
|
2124
|
+
height: 290px;
|
|
2125
|
+
background: #18181e;
|
|
2126
|
+
opacity: 0.98;
|
|
2127
|
+
position: absolute;
|
|
2128
|
+
bottom: 52px;
|
|
2129
|
+
right: 1px;
|
|
2130
|
+
z-index: 12000;
|
|
2131
|
+
border-radius: 3px;
|
|
2132
|
+
display: none;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.zwp_dmswitch_box {
|
|
2136
|
+
margin: 5px 10px 5px 10px;
|
|
2137
|
+
display: inline-block;
|
|
2138
|
+
float: left;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
.zwp_dmswitch_box .zwp_dm_button {
|
|
2142
|
+
position: relative;
|
|
2143
|
+
display: inline-block;
|
|
2144
|
+
width: 36px;
|
|
2145
|
+
height: 22px;
|
|
2146
|
+
line-height: 22px;
|
|
2147
|
+
background: #666666;
|
|
2148
|
+
border-radius: 11px;
|
|
2149
|
+
color: #e5e5e5;
|
|
2150
|
+
font-size: 12px;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
.zwp_dmswitch_box .zwp_dm_button span {
|
|
2154
|
+
position: absolute;
|
|
2155
|
+
left: 0px;
|
|
2156
|
+
top: 0px;
|
|
2157
|
+
line-height: 20px;
|
|
2158
|
+
text-align: center;
|
|
2159
|
+
width: 20px;
|
|
2160
|
+
height: 20px;
|
|
2161
|
+
color: #666;
|
|
2162
|
+
background: #fff;
|
|
2163
|
+
display: inline-block;
|
|
2164
|
+
border-radius: 11px;
|
|
2165
|
+
font-size: 12px;
|
|
2166
|
+
border: 1px solid #666;
|
|
2167
|
+
font-weight: 400;
|
|
2168
|
+
font: 12px/20px "Microsoft YaHei",PingFangSC-Regular,Lyh-Regular,helvetica,arial, sans-serif;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
.zwp_dmswitch_box .enable {
|
|
2172
|
+
background: #2692FF;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.zwp_dmswitch_box .enable span {
|
|
2176
|
+
left: auto;
|
|
2177
|
+
right: 0px;
|
|
2178
|
+
color: #2692FF;
|
|
2179
|
+
border: 1px solid #2692FF;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.zwp-dmform .zwp_switch_group {
|
|
2183
|
+
height: 34px;
|
|
2184
|
+
padding-top: 7px;
|
|
2185
|
+
padding-bottom: 7px;
|
|
2186
|
+
box-sizing: border-box;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2189
|
+
.zwp-barrage-set {
|
|
2190
|
+
position: absolute;
|
|
2191
|
+
left: -54px;
|
|
2192
|
+
top: -236px;
|
|
2193
|
+
width: 310px;
|
|
2194
|
+
height: 220px;
|
|
2195
|
+
filter: alpha(opacity=95);
|
|
2196
|
+
background-color: #000;
|
|
2197
|
+
background-color: rgba(0,0,0,.7);
|
|
2198
|
+
border-radius: 5px;
|
|
2199
|
+
z-index: 310;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.zwp-barrage-set .barrage-set-head {
|
|
2203
|
+
width: 100%;
|
|
2204
|
+
height: 39px;
|
|
2205
|
+
border-bottom: 1px solid #444;
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
.zwp-barrage-set .barrage-tab-ul {
|
|
2209
|
+
padding-left: 25px;
|
|
2210
|
+
*zoom: 1;
|
|
2211
|
+
list-style: none;
|
|
2212
|
+
margin: 0;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.zwp-barrage-set .barrage-tab-ul:after, .zwp-barrage-set .barrage-tab-ul:before {
|
|
2216
|
+
content: " ";
|
|
2217
|
+
display: table;
|
|
2218
|
+
clear: both;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.zwp-barrage-set .barrage-tab-item {
|
|
2222
|
+
float: left;
|
|
2223
|
+
margin-left: 15px;
|
|
2224
|
+
margin-right: 15px;
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
.zwp-barrage-set .barrage-tab-link {
|
|
2228
|
+
display: block;
|
|
2229
|
+
line-height: 40px;
|
|
2230
|
+
font-size: 14px;
|
|
2231
|
+
color: #999;
|
|
2232
|
+
text-align: center;
|
|
2233
|
+
position: relative;
|
|
2234
|
+
text-decoration: none;
|
|
2235
|
+
outline: none;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.zwp-barrage-set .barrage-tab-link:hover {
|
|
2239
|
+
color: #fff;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
.zwp-barrage-set .barrage-tab-item.selected .barrage-tab-link {
|
|
2243
|
+
color: #fff;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
.zwp-barrage-set .bottom-line {
|
|
2247
|
+
width: 30px;
|
|
2248
|
+
height: 2px;
|
|
2249
|
+
background: #fff;
|
|
2250
|
+
display: none;
|
|
2251
|
+
position: absolute;
|
|
2252
|
+
bottom: 0;
|
|
2253
|
+
left: 50%;
|
|
2254
|
+
margin-left: -15px;
|
|
2255
|
+
border-radius: 3px;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.zwp-barrage-set .barrage-tab-item.selected .bottom-line {
|
|
2259
|
+
display: block;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
.zwp-barrage-set .barrage-set-con {
|
|
2263
|
+
height: 142px;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.zwp-barrage-set .barrageSet_fsBox {
|
|
2267
|
+
width: 100%;
|
|
2268
|
+
padding-top: 15px;
|
|
2269
|
+
}
|
|
2270
|
+
.zwp-barrage-set .set-label {
|
|
2271
|
+
padding-left: 20px;
|
|
2272
|
+
font-size: 12px;
|
|
2273
|
+
color: #999;
|
|
2274
|
+
line-height: 28px;
|
|
2275
|
+
width: 80px;
|
|
2276
|
+
box-sizing: border-box;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.zwp-barrage-set .barrage-close-btn {
|
|
2280
|
+
position: absolute;
|
|
2281
|
+
width: 20px;
|
|
2282
|
+
height: 20px;
|
|
2283
|
+
right: 4px;
|
|
2284
|
+
top: 4px;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
.zwp-barrage-set .barrage-close-btn .xicon {
|
|
2288
|
+
font-size: 20px;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
.zwp-barrage-set .barrage-close-btn .btn-close-wind {
|
|
2292
|
+
text-decoration: none;
|
|
2293
|
+
color: #c0c0c0;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.zwp-barrage-set .barrage-close-btn .btn-close-wind:hover {
|
|
2297
|
+
color: #ef3e06;
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
.zwp-barrage-set .barrage-close-btn .btn-close-wind:active {
|
|
2301
|
+
color: #c32f00;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.barrageSet_row {
|
|
2305
|
+
display: flex;
|
|
2306
|
+
width: 100%;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
.zwp-barrage-set .color-box ,.zwp-barrage-set .other-box{
|
|
2310
|
+
overflow: hidden;
|
|
2311
|
+
font-size: 0;
|
|
2312
|
+
width: 220px;
|
|
2313
|
+
padding-left: 10px;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.zwp-barrage-set .color-wrap {
|
|
2317
|
+
display: block;
|
|
2318
|
+
border: 2px solid transparent;
|
|
2319
|
+
border-radius: 50%;
|
|
2320
|
+
width: 24px;
|
|
2321
|
+
height: 24px;
|
|
2322
|
+
float: left;
|
|
2323
|
+
margin-right: 20px;
|
|
2324
|
+
margin-bottom: 4px;
|
|
2325
|
+
position: relative;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.zwp-barrage-set .color-wrap.selected, .zwp-barrage-set .color-wrap:hover {
|
|
2329
|
+
border: 2px solid #999;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
.zwp-barrage-set .color-inner {
|
|
2333
|
+
width: 20px;
|
|
2334
|
+
height: 20px;
|
|
2335
|
+
display: block;
|
|
2336
|
+
position: absolute;
|
|
2337
|
+
left: 50%;
|
|
2338
|
+
top: 50%;
|
|
2339
|
+
margin-left: -10px;
|
|
2340
|
+
margin-top: -10px;
|
|
2341
|
+
border-radius: 50%;
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
.zwp-barrage-set .color-white {
|
|
2345
|
+
background: #fff;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.zwp-barrage-set .color-black {
|
|
2349
|
+
margin-left: -11px;
|
|
2350
|
+
margin-top: -11px;
|
|
2351
|
+
background: #000;
|
|
2352
|
+
border: 1px solid #666;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.zwp-barrage-set .color-yellow {
|
|
2356
|
+
background: #fcf051;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.zwp-barrage-set .color-green {
|
|
2360
|
+
background: #75f94e;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.zwp-barrage-set .color-pink {
|
|
2364
|
+
background: #f094b2;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.zwp-barrage-set .color-blue {
|
|
2368
|
+
background: #5bb8f9;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.zwp-barrage-set .color-purpie {
|
|
2372
|
+
background: #9977f5;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
.zwp-barrage-set .color-red {
|
|
2376
|
+
background: #eb4f47;
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
.zwp-barrage-set .color-glod {
|
|
2380
|
+
background: #b58c55;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.zwp-barrage-set .color-custom1 {
|
|
2384
|
+
background: #30b00a;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.zwp-barrage-set .color-custom2 {
|
|
2388
|
+
background: #b0250a;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.zwp-barrage-set .color-custom3 {
|
|
2392
|
+
background: #687383;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.zwp-barrage-set .checkbox-wrap {
|
|
2396
|
+
display: block;
|
|
2397
|
+
width: 20px;
|
|
2398
|
+
height: 20px;
|
|
2399
|
+
float: left;
|
|
2400
|
+
margin-left: 0px;
|
|
2401
|
+
margin-top: 4px;
|
|
2402
|
+
position: relative;
|
|
2403
|
+
padding:1px;
|
|
2404
|
+
box-sizing: border-box;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
.zwp-barrage-icons {
|
|
2408
|
+
display: inline-block;
|
|
2409
|
+
vertical-align: top;
|
|
2410
|
+
letter-spacing: 0;
|
|
2411
|
+
/*background-image: url(images/barrage_bg.png);
|
|
2412
|
+
background-repeat: no-repeat;*/
|
|
2413
|
+
color: #f0f0f0;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
.zwp-barrage-icons.xicon {
|
|
2417
|
+
font-size: 36px;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.zwp-barrage-icons.xicon.xicon-danmu-smile {
|
|
2421
|
+
font-size: 24px;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.zwp-barrage-icons.color-vip {
|
|
2425
|
+
width: 24px;
|
|
2426
|
+
height: 24px;
|
|
2427
|
+
background-position: -220px 0;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.hy-barrage-set .color-vip-icon {
|
|
2431
|
+
position: absolute;
|
|
2432
|
+
left: 50%;
|
|
2433
|
+
top: 50%;
|
|
2434
|
+
margin-left: -6px;
|
|
2435
|
+
margin-top: -8px;
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
.zwp-barrage-icons.color-vip-icon {
|
|
2439
|
+
width: 12px;
|
|
2440
|
+
height: 15px;
|
|
2441
|
+
background-position: -260px 0;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.hy-barrage-set .color-vip-tit {
|
|
2445
|
+
position: absolute;
|
|
2446
|
+
left: 31px;
|
|
2447
|
+
top: 4px;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.zwp-barrage-icons.color-vip-tit {
|
|
2451
|
+
width: 24px;
|
|
2452
|
+
height: 13px;
|
|
2453
|
+
background-position: -280px 0;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
.zwp-barrage-icons.checkbox-inner {
|
|
2457
|
+
width: 20px;
|
|
2458
|
+
height: 20px;
|
|
2459
|
+
background-position: 0px -269px;
|
|
2460
|
+
border: 1px solid #aaa;
|
|
2461
|
+
border-radius: 3px;
|
|
2462
|
+
position: relative;
|
|
2463
|
+
box-sizing: border-box;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
.zwp-barrage-icons.xicons-danmu-smile {
|
|
2467
|
+
font-size: 28px;
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
.zwp-barrage-icons.xicon-disabled {
|
|
2471
|
+
font-size: 28px;
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
.selected .zwp-barrage-icons.checkbox-inner {
|
|
2475
|
+
background-position: -30px -269px;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
.selected .zwp-barrage-icons.checkbox-inner:after {
|
|
2479
|
+
content: "";
|
|
2480
|
+
width: 5px;
|
|
2481
|
+
height: 10px;
|
|
2482
|
+
border: 2px solid #4CAF50;
|
|
2483
|
+
border-top: 0;
|
|
2484
|
+
border-left: 0;
|
|
2485
|
+
left: 6px;
|
|
2486
|
+
top: 1px;
|
|
2487
|
+
transform: rotate(45deg);
|
|
2488
|
+
display: inline-block;
|
|
2489
|
+
position: absolute;
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.zwp-barrage-set .barrageSet_bfBox {
|
|
2493
|
+
padding: 10px 30px 0;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
.zwp-barrage-set .set-rol {
|
|
2497
|
+
height: 30px;
|
|
2498
|
+
line-height: 30px;
|
|
2499
|
+
font-size: 12px;
|
|
2500
|
+
color: #999;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.zwp-barrage-set .set-rol-left {
|
|
2504
|
+
width: 60px;
|
|
2505
|
+
float: left;
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.zwp-barrage-set .set-rol-con {
|
|
2509
|
+
width: 150px;
|
|
2510
|
+
height: 12px;
|
|
2511
|
+
position: relative;
|
|
2512
|
+
margin-top: 9px;
|
|
2513
|
+
float: left;
|
|
2514
|
+
cursor: pointer;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.zwp-barrage-set .bar-b, .zwp-barrage-set .bar-t {
|
|
2518
|
+
width: 100%;
|
|
2519
|
+
height: 2px;
|
|
2520
|
+
position: absolute;
|
|
2521
|
+
left: 0;
|
|
2522
|
+
top: 5px;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
.zwp-barrage-set .bar-b {
|
|
2526
|
+
background: #666;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.zwp-barrage-set .bar-t {
|
|
2530
|
+
background: #00be06;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.zwp-barrage-set .bar-y {
|
|
2534
|
+
position: absolute;
|
|
2535
|
+
left: 20%;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
.zwp-barrage-icons.bar-y {
|
|
2539
|
+
width: 4px;
|
|
2540
|
+
height: 4px;
|
|
2541
|
+
border: 6px solid #cccccc;
|
|
2542
|
+
border-radius: 50%;
|
|
2543
|
+
background-color: #00be06;
|
|
2544
|
+
top: -2px;
|
|
2545
|
+
box-sizing: content-box;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.zwp-barrage-icons.bar-y:hover {
|
|
2549
|
+
border-color: #ecf6ff;
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
.zwp-barrage-set .set-rol-right {
|
|
2553
|
+
width: 40px;
|
|
2554
|
+
text-align: right;
|
|
2555
|
+
float: left;
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
.zwp-barrage-set .barrageSet_pbBox {
|
|
2559
|
+
padding: 20px 27px 0;
|
|
2560
|
+
text-align: center;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.zwp-barrage-set .barrage-pb-ul {
|
|
2564
|
+
margin-left: -20px;
|
|
2565
|
+
height: 70px;
|
|
2566
|
+
overflow: hidden;
|
|
2567
|
+
list-style: none;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
.zwp-barrage-set .barrage-pb-li {
|
|
2571
|
+
float: left;
|
|
2572
|
+
margin-left: 20px;
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
.zwp-barrage-set .pb-link {
|
|
2576
|
+
position: relative;
|
|
2577
|
+
background: rgba(68,68,68,.7);
|
|
2578
|
+
width: 46px;
|
|
2579
|
+
height: 36px;
|
|
2580
|
+
text-align: center;
|
|
2581
|
+
border: 1px solid transparent;
|
|
2582
|
+
border-radius: 5px;
|
|
2583
|
+
display: block;
|
|
2584
|
+
line-height: 36px;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.zwp-barrage-set .colorfont-icon, .zwp-barrage-set .hongbao-icon, .zwp-barrage-set .phiz-icon, .zwp-barrage-set .top-icon , .zwp-barrage-set .bottom-icon{
|
|
2588
|
+
margin-top: 7px;
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
.zwp-barrage-icons.top-icon {
|
|
2592
|
+
width: 26px;
|
|
2593
|
+
height: 22px;
|
|
2594
|
+
background-position: -260px -50px;
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
.zwp-barrage-icons.bottom-icon {
|
|
2598
|
+
width: 26px;
|
|
2599
|
+
height: 22px;
|
|
2600
|
+
background-position: -260px -20px;
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
.zwp-barrage-icons.colorfont-icon {
|
|
2604
|
+
width: 23px;
|
|
2605
|
+
height: 22px;
|
|
2606
|
+
background-position: -300px -20px;
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2609
|
+
.zwp-barrage-icons.phiz-icon {
|
|
2610
|
+
width: 22px;
|
|
2611
|
+
height: 22px;
|
|
2612
|
+
background-position: -340px -20px;
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
.zwp-barrage-icons.hongbao-icon {
|
|
2616
|
+
width: 18px;
|
|
2617
|
+
height: 22px;
|
|
2618
|
+
background-position: -380px -20px;
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
.zwp-barrage-set .xicon-disabled {
|
|
2622
|
+
position: absolute;
|
|
2623
|
+
bottom: -5px;
|
|
2624
|
+
right: -6px;
|
|
2625
|
+
display: none;
|
|
2626
|
+
font-size: 22px;
|
|
2627
|
+
line-height: 24px;
|
|
2628
|
+
color: #ed4502;
|
|
2629
|
+
font-weight: bold;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
.zwp-barrage-icons.shield-icon {
|
|
2633
|
+
width: 18px;
|
|
2634
|
+
height: 20px;
|
|
2635
|
+
background-position: -400px -20px;
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
.zwp-barrage-set .barrage-pb-li.selected .xicon-disabled {
|
|
2639
|
+
display: inline-block;
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
.zwp-barrage-set .barrage-pb-li.selected .pb-link {
|
|
2643
|
+
border: 1px solid #ff8178;
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
.zwp-barrage-set .pb-title {
|
|
2647
|
+
height: 32px;
|
|
2648
|
+
line-height: 32px;
|
|
2649
|
+
font-size: 12px;
|
|
2650
|
+
color: #bbb9b9;
|
|
2651
|
+
padding: 0;
|
|
2652
|
+
margin: 0;
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
.zwp-barrage-set .barrage-set-bot {
|
|
2656
|
+
height: 22px;
|
|
2657
|
+
text-align: center;
|
|
2658
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
2659
|
+
padding: 8px;
|
|
2660
|
+
border-radius: 0 0 5px 5px;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.zwp-barrage-set .barrage-set-rest {
|
|
2664
|
+
display: inline-block;
|
|
2665
|
+
height: 26px;
|
|
2666
|
+
line-height: 26px;
|
|
2667
|
+
width: 82px;
|
|
2668
|
+
border-radius: 13px;
|
|
2669
|
+
text-align: center;
|
|
2670
|
+
color: #fff;
|
|
2671
|
+
background: #2b2b2b;
|
|
2672
|
+
text-decoration: none;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
.zwp-barrage-set .barrage-set-rest:hover {
|
|
2676
|
+
color: #f5f5f5;
|
|
2677
|
+
background: #2692ff;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
.zwp-barrage-set .barrage-set-rest:active {
|
|
2681
|
+
color: #d8d8d8;
|
|
2682
|
+
background: #0060c2;
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
.zwp-barrage-set .feed-back-link {
|
|
2686
|
+
color: #8e8e8e;
|
|
2687
|
+
font-size: 12px;
|
|
2688
|
+
display: inline-block;
|
|
2689
|
+
margin-right: 22px;
|
|
2690
|
+
margin-left: 40px;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
.hidden {
|
|
2694
|
+
display: none!important;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.zwp_danmuBarDock {
|
|
2698
|
+
flex-grow: 1;
|
|
2699
|
+
padding-left: 20px;
|
|
2700
|
+
padding-right: 10px;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.zwp__time-info .zwp_danmuBarDock .zwp-dmform {
|
|
2704
|
+
padding-top: 2px;
|
|
2705
|
+
margin-left: auto;
|
|
2706
|
+
margin-right: auto;
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
.zwp-vodplayer .zwp__time-info .zwp_danmuBarDock .zwp-dmform {
|
|
2710
|
+
padding-top: 0px;
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
.zwp__time-info .zwp_danmuBarDock.zwp-mini .zwp-dmform {
|
|
2714
|
+
display: none;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
/*-------danmu end -------------*/
|
|
2718
|
+
/*--------zwp-smileview begin--------*/
|
|
2719
|
+
.zwp-smileview {background:#fff;padding:2px;border:1px #b0c8ff solid;z-index: 1038;box-shadow: 0px 1px 4px 1px rgba(139, 139, 139, 0.56);border-radius: 3px;}
|
|
2720
|
+
.zwp-smileview table td{padding:0px;width: 34px;height: 38px;}
|
|
2721
|
+
.zwp-smileview table td img{cursor:pointer;border:1px #fff solid;height: 32px;max-width: unset;}
|
|
2722
|
+
.zwp-smileview table td img:hover{border:1px #0066cc solid;}
|
|
2723
|
+
|
|
2724
|
+
.zwp-smileview:before {
|
|
2725
|
+
position: absolute;
|
|
2726
|
+
content: "";
|
|
2727
|
+
right: 30px;
|
|
2728
|
+
bottom: -8px;
|
|
2729
|
+
border-left: 8px solid transparent;
|
|
2730
|
+
border-right: 8px solid transparent;
|
|
2731
|
+
border-top: 8px solid white;
|
|
2732
|
+
display: inline-block;
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
.zwp-smileview:after {
|
|
2736
|
+
position: absolute;
|
|
2737
|
+
right: 30px;
|
|
2738
|
+
content: "";
|
|
2739
|
+
bottom: -8px;
|
|
2740
|
+
border-left: 8px solid transparent;
|
|
2741
|
+
border-right: 8px solid transparent;
|
|
2742
|
+
border-top: 8px solid white;
|
|
2743
|
+
display: inline-block;
|
|
2744
|
+
}
|
|
2745
|
+
/*--------zwp-smileview end ---------------*/
|
|
2746
|
+
/*checkbox, radio begin*/
|
|
2747
|
+
|
|
2748
|
+
|
|
2749
|
+
/*checkbox, radio end*/
|
|
2750
|
+
|
|
2751
|
+
.zwp-toast {
|
|
2752
|
+
text-align: center;
|
|
2753
|
+
min-height: 48px;
|
|
2754
|
+
min-width: 140px;
|
|
2755
|
+
max-width: 480px;
|
|
2756
|
+
color: #fff;
|
|
2757
|
+
z-index: 9999;
|
|
2758
|
+
background: #33343f;
|
|
2759
|
+
border-radius: 4px;
|
|
2760
|
+
justify-content: center;
|
|
2761
|
+
align-items: center;
|
|
2762
|
+
font-family: PingFang SC,DFPKingGothicGB-Regular,sans-serif;
|
|
2763
|
+
font-weight: 400;
|
|
2764
|
+
-webkit-animation: .15s linear fzlqN8Bl, .15s linear 3s pxcN2aWc;
|
|
2765
|
+
animation: .15s linear fzlqN8Bl, .15s linear 3s pxcN2aWc;
|
|
2766
|
+
display: flex;
|
|
2767
|
+
position: relative;
|
|
2768
|
+
overflow: hidden;
|
|
2769
|
+
padding: 15px 40px!important;
|
|
2770
|
+
box-sizing: border-box;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
.zwp-toast.zwp-lite {
|
|
2774
|
+
padding: 5px 15px!important;
|
|
2775
|
+
min-width: 40px;
|
|
2776
|
+
min-height: 40px;
|
|
2777
|
+
opacity: 0.8;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
.zwp-toast.zwp-center {
|
|
2781
|
+
white-space: nowrap;
|
|
2782
|
+
z-index: 9999;
|
|
2783
|
+
margin: auto;
|
|
2784
|
+
position: absolute;
|
|
2785
|
+
top: 50%;
|
|
2786
|
+
left: 50%;
|
|
2787
|
+
transform: translate(-50%,-50%);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
.zwp-toast .zwp-toast-text {
|
|
2791
|
+
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.zwp-toast .zwp-toast-closebtn {
|
|
2795
|
+
position: absolute;
|
|
2796
|
+
right: 6px;
|
|
2797
|
+
top: 6px;
|
|
2798
|
+
display: inline-block;
|
|
2799
|
+
width: 24px;
|
|
2800
|
+
height: 24px;
|
|
2801
|
+
text-decoration: none;
|
|
2802
|
+
color: #ccc;
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
.zwp-toast .zwp-toast-closebtn:hover {
|
|
2806
|
+
color: #db3c0a;
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
.zwp-toast.zwp-use-close {
|
|
2810
|
+
padding-top: 20px !important;
|
|
2811
|
+
padding-bottom: 20px !important;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.zwp-toast.zwp-confirm {
|
|
2815
|
+
border-radius: 30px;
|
|
2816
|
+
background-color: #33343fb5;
|
|
2817
|
+
padding: 15px 30px!important;
|
|
2818
|
+
overflow: visible;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
.zwp-toast.zwp-confirm a.mutemore {
|
|
2822
|
+
color: #e38102;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
.zwp-toast.zwp-confirm a.mutemore:hover {
|
|
2826
|
+
color: #ffaa3d;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
.zwp-toast.zwp-confirm a.openaudio {
|
|
2830
|
+
color: #b00;
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
.zwp-toast.zwp-confirm a.openaudio:hover {
|
|
2834
|
+
color: #ff0404;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.zwp-toast.zwp-confirm .closeBtn {
|
|
2838
|
+
background-color: transparent;
|
|
2839
|
+
border: 0;
|
|
2840
|
+
color: #f0f0f0;
|
|
2841
|
+
margin-left: 0.5em;
|
|
2842
|
+
cursor: pointer;
|
|
2843
|
+
padding: 0;
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
.zwp-toast.zwp-confirm .closeBtn .xicon{
|
|
2847
|
+
font-size: 20px;
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
.zwp-toast.zwp-confirm .closeBtn:hover {
|
|
2851
|
+
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
.zwp-toast.zwp-confirm .zwp-toast-text{
|
|
2855
|
+
font-size: 18px;
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
.zwp-toast.zwp-confirm .moreInfoBox {
|
|
2859
|
+
position: absolute;
|
|
2860
|
+
left: 2em;
|
|
2861
|
+
right: 2em;
|
|
2862
|
+
bottom: 60px;
|
|
2863
|
+
background-color: #383d4ba8;
|
|
2864
|
+
padding: 10px 15px;
|
|
2865
|
+
border-radius: 5px;
|
|
2866
|
+
font-size: 14px;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
.zwp-toast.zwp-confirm .moreInfoBox .info-text {
|
|
2870
|
+
word-break: break-all;
|
|
2871
|
+
white-space: normal;
|
|
2872
|
+
text-align: left;
|
|
2873
|
+
padding-bottom: 6px;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
.zwp-toast.zwp-confirm .moreInfoBox .info-control {
|
|
2877
|
+
padding: 8px 0 0px;
|
|
2878
|
+
border-top: 1px solid #676060;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.zwp-toast.zwp-confirm .moreInfoBox .info-control .info-btn {
|
|
2882
|
+
background-color: #5f5f5f9e;
|
|
2883
|
+
border: 0;
|
|
2884
|
+
color: #ccc;
|
|
2885
|
+
padding: 6px 15px;
|
|
2886
|
+
border-radius: 5px;
|
|
2887
|
+
width: 90%;
|
|
2888
|
+
cursor: pointer;
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2891
|
+
.zwp-toast.zwp-confirm .moreInfoBox .info-control .info-btn:hover {
|
|
2892
|
+
background-color: #535975c7;
|
|
2893
|
+
color: #fff;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
.zwp-toast.zwp-toast-icon {
|
|
2897
|
+
padding-left: 20px!important;
|
|
2898
|
+
padding-right: 20px!important;
|
|
2899
|
+
min-width: 90px;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
.zwp-toast.zwp-toast-icon .xicon{
|
|
2903
|
+
margin-right: 10px;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
.zwp-toast.zwp-toast-icon .zwp-toast-text {
|
|
2907
|
+
min-width: 30px;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
.zwp-popupmenu {
|
|
2911
|
+
position: absolute;
|
|
2912
|
+
z-index: 9999;
|
|
2913
|
+
background-color: #020202a8;
|
|
2914
|
+
padding: 0.5em 0.2em;
|
|
2915
|
+
border-radius: 5px;
|
|
2916
|
+
min-width: 170px;
|
|
2917
|
+
overflow: hidden;
|
|
2918
|
+
box-shadow: 1px 1px 10px rgb(6 6 6 / 60%);
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
.zwp-popupmenu .zwp-menuitem {
|
|
2922
|
+
display: block;
|
|
2923
|
+
width: 100%;
|
|
2924
|
+
height: 28px;
|
|
2925
|
+
color: #ccc;
|
|
2926
|
+
font-size: 14px;
|
|
2927
|
+
cursor: pointer;
|
|
2928
|
+
padding: 4px 0.6em;
|
|
2929
|
+
line-height: 20px;
|
|
2930
|
+
box-sizing: border-box;
|
|
2931
|
+
text-decoration: none;
|
|
2932
|
+
user-select: none;
|
|
2933
|
+
text-align: left;
|
|
2934
|
+
overflow: hidden;
|
|
2935
|
+
text-overflow: ellipsis;
|
|
2936
|
+
white-space: nowrap;
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
.zwp-popupmenu .zwp-menuseperator {
|
|
2940
|
+
height: 2px;
|
|
2941
|
+
display: block;
|
|
2942
|
+
border-top: 1px solid #1e1a21;
|
|
2943
|
+
border-bottom: 1px solid #655d5d;
|
|
2944
|
+
box-sizing: border-box;
|
|
2945
|
+
margin-top: 3px;
|
|
2946
|
+
margin-bottom: 3px;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
.zwp-popupmenu .zwp-menuitem:hover {
|
|
2950
|
+
background-color: #2196f36e;
|
|
2951
|
+
color: #f0f0f0;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
.zwp-popupmenu .zwp-menuitem .zwp-menuicon {
|
|
2955
|
+
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
.zwp-popupmenu .zwp-menuitem .zwp-menucaption {
|
|
2959
|
+
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.zwp-wrap .zwp__layers .zwp-logo {
|
|
2963
|
+
position: absolute;
|
|
2964
|
+
right: 5%;
|
|
2965
|
+
top: 5%;
|
|
2966
|
+
width: 5%;
|
|
2967
|
+
opacity: 0.5;
|
|
2968
|
+
z-index: 0;
|
|
2969
|
+
user-select: none;
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
.zwp-wrap .zwp__layers .zwp-logo img {
|
|
2973
|
+
vertical-align: middle;
|
|
2974
|
+
border-style: none;
|
|
2975
|
+
border-width: 0px;
|
|
2976
|
+
width: 100%;
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
.zwp-liteicon {
|
|
2980
|
+
display: inline-block;
|
|
2981
|
+
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
.zwp-liteicon .xicon {
|
|
2985
|
+
font-size: 20px;
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
.zwp-lefticon .zwp-liteicon {
|
|
2989
|
+
position: absolute;
|
|
2990
|
+
left: 15px;
|
|
2991
|
+
top: 6px;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
/* small window begin */
|
|
2995
|
+
.zwp-wrap .zwp-container.zwp-smallwindow {
|
|
2996
|
+
position: fixed!important;
|
|
2997
|
+
z-index: 99999!important;
|
|
2998
|
+
width: 416px;
|
|
2999
|
+
height: 234px;
|
|
3000
|
+
right: 80px;
|
|
3001
|
+
bottom: 80px;
|
|
3002
|
+
background-color: #111;
|
|
3003
|
+
box-shadow: 1px 1px 50px rgb(0 0 0 / 50%);
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
.zwp-wrap .zwp-container.zwp-smallwindow .zwp-controlbar {
|
|
3007
|
+
display: none!important;
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
.zwp-container .zwp-captionbar {
|
|
3011
|
+
padding: 0 40px 0 10px;
|
|
3012
|
+
height: 60px;
|
|
3013
|
+
line-height: 39px;
|
|
3014
|
+
font-size: 14px;
|
|
3015
|
+
color: #333;
|
|
3016
|
+
/*background-color: #16161661;*/
|
|
3017
|
+
border-radius: 2px 2px 0 0;
|
|
3018
|
+
position: absolute;
|
|
3019
|
+
left: 0;
|
|
3020
|
+
top: 0;
|
|
3021
|
+
right: 0;
|
|
3022
|
+
font-weight: bold;
|
|
3023
|
+
overflow: hidden;
|
|
3024
|
+
text-overflow: ellipsis;
|
|
3025
|
+
white-space: nowrap;
|
|
3026
|
+
cursor: move;
|
|
3027
|
+
opacity: 0;
|
|
3028
|
+
z-index: 11;
|
|
3029
|
+
display: none;
|
|
3030
|
+
background: linear-gradient(to bottom, #0a0a0a, #00000000);
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
.zwp-container.zwp-smallwindow .zwp-captionbar:hover {
|
|
3034
|
+
opacity: 1;
|
|
3035
|
+
}
|
|
3036
|
+
|
|
3037
|
+
.zwp-gripper-right {
|
|
3038
|
+
position: absolute;
|
|
3039
|
+
top:0;
|
|
3040
|
+
bottom:0;
|
|
3041
|
+
width:6px;
|
|
3042
|
+
right:-6px;
|
|
3043
|
+
cursor: w-resize;
|
|
3044
|
+
z-index: 9;
|
|
3045
|
+
display: none;
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
.zwp-gripper-bottom {
|
|
3049
|
+
position: absolute;
|
|
3050
|
+
width:100%;
|
|
3051
|
+
height:6px;
|
|
3052
|
+
bottom:-6px;
|
|
3053
|
+
cursor: s-resize;
|
|
3054
|
+
z-index: 9;
|
|
3055
|
+
display: none;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.zwp-gripper-bottom-right {
|
|
3059
|
+
position: absolute;
|
|
3060
|
+
width:12px;
|
|
3061
|
+
height:12px;
|
|
3062
|
+
right: -6px;
|
|
3063
|
+
bottom:-6px;
|
|
3064
|
+
cursor: se-resize;
|
|
3065
|
+
z-index: 9;
|
|
3066
|
+
display: none;
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
.zwp-captionbar .closeBtn {
|
|
3070
|
+
position: absolute;
|
|
3071
|
+
width: 24px;
|
|
3072
|
+
height: 24px;
|
|
3073
|
+
display: block;
|
|
3074
|
+
border: 0;
|
|
3075
|
+
background-color: transparent;
|
|
3076
|
+
right: 8px;
|
|
3077
|
+
top: 8px;
|
|
3078
|
+
color: rgb(147 145 145 / 80%);
|
|
3079
|
+
padding: 0;
|
|
3080
|
+
cursor: pointer;
|
|
3081
|
+
z-index: 1;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
.zwp-captionbar .closeBtn:hover {
|
|
3085
|
+
color: #f00;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
.zwp-captionbar .closeBtn:active {
|
|
3089
|
+
color: #c30e0e;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.zwp-captionbar .closeBtn .xicon {
|
|
3093
|
+
font-size: 24px;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
.zwp-smallwindow .zwp-gripper-right,
|
|
3097
|
+
.zwp-smallwindow .zwp-gripper-bottom,
|
|
3098
|
+
.zwp-smallwindow .zwp-gripper-bottom-right,
|
|
3099
|
+
.zwp-smallwindow .zwp-captionbar {
|
|
3100
|
+
display: block;
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
/* small window end */
|