Pyckplayer 1.0.0__py3-none-any.whl

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.
Files changed (53) hide show
  1. pyckplayer/__init__.py +6 -0
  2. pyckplayer/ckplayer/LICENSE +202 -0
  3. pyckplayer/ckplayer/css/ckplayer.css +1609 -0
  4. pyckplayer/ckplayer/css/ckplayer.ixigua.css +1707 -0
  5. pyckplayer/ckplayer/css/ckplayer.red.css +1609 -0
  6. pyckplayer/ckplayer/css/images/adclose.png +0 -0
  7. pyckplayer/ckplayer/css/images/buffer.png +0 -0
  8. pyckplayer/ckplayer/css/images/ckplayer.48.png +0 -0
  9. pyckplayer/ckplayer/css/images/ckplayer.png +0 -0
  10. pyckplayer/ckplayer/css/images/ckplayer_ixigua.48.png +0 -0
  11. pyckplayer/ckplayer/css/images/ckplayer_ixigua.png +0 -0
  12. pyckplayer/ckplayer/css/images/ckplayer_red.48.png +0 -0
  13. pyckplayer/ckplayer/css/images/ckplayer_red.png +0 -0
  14. pyckplayer/ckplayer/css/images/favicon.ico +0 -0
  15. pyckplayer/ckplayer/css/images/loading.png +0 -0
  16. pyckplayer/ckplayer/css/images/logo.png +0 -0
  17. pyckplayer/ckplayer/css/images/play.png +0 -0
  18. pyckplayer/ckplayer/flv.js/LICENSE +202 -0
  19. pyckplayer/ckplayer/flv.js/README.md +104 -0
  20. pyckplayer/ckplayer/flv.js/flv.js +10585 -0
  21. pyckplayer/ckplayer/flv.js/flv.js.map +1 -0
  22. pyckplayer/ckplayer/flv.js/flv.min.js +10 -0
  23. pyckplayer/ckplayer/flv.js/flv.min.js.map +1 -0
  24. pyckplayer/ckplayer/hls.js/LICENSE +28 -0
  25. pyckplayer/ckplayer/hls.js/README.md +442 -0
  26. pyckplayer/ckplayer/hls.js/hls-demo.js +42195 -0
  27. pyckplayer/ckplayer/hls.js/hls-demo.js.map +1 -0
  28. pyckplayer/ckplayer/hls.js/hls.js +27804 -0
  29. pyckplayer/ckplayer/hls.js/hls.js.d.ts +2837 -0
  30. pyckplayer/ckplayer/hls.js/hls.js.map +1 -0
  31. pyckplayer/ckplayer/hls.js/hls.light.js +20929 -0
  32. pyckplayer/ckplayer/hls.js/hls.light.js.map +1 -0
  33. pyckplayer/ckplayer/hls.js/hls.light.min.js +2 -0
  34. pyckplayer/ckplayer/hls.js/hls.light.min.js.map +1 -0
  35. pyckplayer/ckplayer/hls.js/hls.min.js +2 -0
  36. pyckplayer/ckplayer/hls.js/hls.min.js.map +1 -0
  37. pyckplayer/ckplayer/js/ckplayer.js +7421 -0
  38. pyckplayer/ckplayer/js/ckplayer.min.js +7 -0
  39. pyckplayer/ckplayer/language/en.js +72 -0
  40. pyckplayer/ckplayer/language/zh.cn.js +72 -0
  41. pyckplayer/ckplayer/language/zh.hk.js +72 -0
  42. pyckplayer/ckplayer/mpegts.js/LICENSE +202 -0
  43. pyckplayer/ckplayer/mpegts.js/mpegts.js +9 -0
  44. pyckplayer/ckplayer/mpegts.js/mpegts.js.map +1 -0
  45. pyckplayer/ckplayer/mpegts.js/mpegts.min.js +9 -0
  46. pyckplayer/cli.py +33 -0
  47. pyckplayer/core.py +218 -0
  48. pyckplayer-1.0.0.dist-info/METADATA +114 -0
  49. pyckplayer-1.0.0.dist-info/RECORD +53 -0
  50. pyckplayer-1.0.0.dist-info/WHEEL +5 -0
  51. pyckplayer-1.0.0.dist-info/entry_points.txt +2 -0
  52. pyckplayer-1.0.0.dist-info/licenses/LICENSE +202 -0
  53. pyckplayer-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1707 @@
1
+ .ckplayer-error{
2
+ position: fixed;
3
+ z-index: 9999999;
4
+ left: 10px;
5
+ bottom: 10px;
6
+ width: auto;
7
+ height: 38px;
8
+ line-height: 38px;
9
+ padding: 0 .85rem;
10
+ background: rgb(0,0,0,.9);
11
+ border-radius: .25rem;
12
+ color: #FFF;
13
+ font-size: 14px;
14
+ white-space: nowrap;
15
+ }
16
+ .ckplayer-ckplayer{
17
+ width: 100%;
18
+ height: 100%;
19
+ float: left;
20
+ background: #000;
21
+ overflow: hidden;
22
+ }
23
+ .ckplayer-ckplayer .ck-main.ck-nocursor{
24
+ cursor: none;
25
+ }
26
+ .ckplayer-ckplayer-smallwindow{
27
+ position: fixed;
28
+ z-index: 9999999;
29
+ width: 420px;
30
+ max-width: 100%;
31
+ height: 266px;
32
+ right: 10px;
33
+ bottom: 10px;
34
+ }
35
+ .ckplayer-ckplayer .ck-main{
36
+ width: 100%;
37
+ height: 100%;
38
+ overflow: hidden;
39
+ background: #000;
40
+ position: relative;
41
+ }
42
+ .ckplayer-ckplayer .ck-main .ck-video{
43
+ width: 100%;
44
+ height: 100%;
45
+ overflow: hidden;
46
+ position:absolute;
47
+ z-index: 1;
48
+ top: 0;
49
+ left: 0;
50
+ right: 0;
51
+ bottom: 0;
52
+ margin: auto;
53
+ }
54
+ .ckplayer-ckplayer .ck-main .ck-video video,.ckplayer-ckplayer .ck-main .ck-video canvas{
55
+ width: 100%;
56
+ height: 100%;
57
+ }
58
+ .ckplayer-ckplayer .ck-main .ck-error{
59
+ width: 100%;
60
+ height: 80px;
61
+ line-height: 35px;
62
+ text-align: center;
63
+ color: #FFF;
64
+ position:absolute;
65
+ z-index: 70;
66
+ top: 0;
67
+ left: 0;
68
+ right: 0;
69
+ bottom: 0;
70
+ margin: auto;
71
+ overflow: hidden;
72
+ }
73
+ .ckplayer-ckplayer .ck-main .ck-logo{
74
+ position:absolute;
75
+ right: 20px;
76
+ top:20px;
77
+ z-index: 400;
78
+ }
79
+ .ckplayer-ckplayer .ck-main .ck-loading{
80
+ position:absolute;
81
+ top:0;
82
+ bottom: 0;
83
+ left: 0;
84
+ right: 0;
85
+ margin: auto;
86
+ z-index: 80;
87
+ width: 80px;
88
+ height: 80px;
89
+ border-radius: 50%;
90
+ background: url(images/loading.png) no-repeat center center;
91
+ background-size: 100% 100%;
92
+ animation: ck-Circle 1.5s linear infinite;
93
+ -webkit-animation: ck-Circle 1.5s linear infinite
94
+ }
95
+ .ckplayer-ckplayer .ck-main .ck-center-play{
96
+ background: url(images/play.png) no-repeat 70% center;
97
+ background-size:60% 60%;
98
+ border: 8px solid rgba(255,255,255,.3);
99
+ border-radius: 50%;
100
+ box-sizing:border-box;
101
+ -moz-box-sizing:border-box; /* Firefox */
102
+ -webkit-box-sizing:border-box; /* Safari */
103
+ width: 80px;
104
+ height: 80px;
105
+ position: absolute;
106
+ display: none;
107
+ z-index: 90;
108
+ top: 0;
109
+ left: 0;
110
+ right: 0;
111
+ bottom: 0;
112
+ margin: auto;
113
+ cursor: pointer;
114
+ transition: .2s;
115
+ }
116
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-center-play{
117
+ width: 100px;
118
+ height: 100px;
119
+ }
120
+ .ckplayer-ckplayer .ck-main .ck-center-play:hover{
121
+ width: 100px;
122
+ height: 100px;
123
+ transition: 0.2s;
124
+ }
125
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-center-play:hover{
126
+ width: 120px;
127
+ height: 120px;
128
+ }
129
+ .ckplayer-ckplayer .ck-main .ck-buffer{
130
+ background: url(images/buffer.png) no-repeat center center;
131
+ background-size:100% 100%;
132
+ border-radius: 50%;
133
+ width: 60px;
134
+ height: 60px;
135
+ position: absolute;
136
+ z-index: 100;
137
+ top:0;
138
+ bottom: 0;
139
+ left: 0;
140
+ right: 0;
141
+ margin: auto;
142
+ display: none;
143
+ animation: ck-Circle 1s linear infinite;
144
+ -webkit-animation: ck-Circle 1s linear infinite
145
+ }
146
+ .ckplayer-ckplayer .ck-main .ck-message{
147
+ position: absolute;
148
+ z-index: 240;
149
+ left:5px;
150
+ bottom: 78px;
151
+ padding: 0 1rem;
152
+ line-height: 30px;
153
+ height: 30px;
154
+ width: auto;
155
+ min-width: 1px;
156
+ border-radius: .25rem;
157
+ background: rgba(0,0,0,.6);
158
+ font-size: 14px;
159
+ color: #FFF;
160
+ display: none;
161
+ white-space:nowrap;
162
+ }
163
+ .ckplayer-ckplayer .ck-main .ck-message-right{
164
+ left:auto;
165
+ right: 5px;
166
+ }
167
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-message{
168
+ font-size: 18px;
169
+ bottom: 100px;
170
+ }
171
+ .ckplayer-ckplayer .ck-main .ck-tip{
172
+ width: auto;
173
+ height: auto;
174
+ position: absolute;
175
+ z-index: 230;
176
+ display: none;
177
+ margin-bottom: 1px;
178
+ }
179
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-content{
180
+ width: auto;
181
+ height: auto;
182
+ white-space: nowrap;
183
+ min-width: 1px;
184
+ background: rgba(0,0,0,.6);
185
+ font-size: 14px;
186
+ color: #FFF;
187
+ line-height: 32px;
188
+ height: 32px;
189
+ padding: 0 15px;
190
+ }
191
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-content-float-auto{
192
+ border-radius: 5px;
193
+ margin: auto;
194
+ }
195
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-content-float-left{
196
+ border-radius: 5px;
197
+ float: left;
198
+ }
199
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-tip .ck-content{
200
+ font-size: 18px;
201
+ }
202
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-triangle{
203
+ width: 0px;
204
+ height: 0px;
205
+ }
206
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-triangle-auto{
207
+ border-left: 8px solid transparent;
208
+ border-top: 8px solid rgba(0, 0, 0,.6);
209
+ border-right: 8px solid transparent;
210
+ margin: auto;
211
+ }
212
+ .ckplayer-ckplayer .ck-main .ck-tip .ck-triangle-left{
213
+ border-top: 5px solid transparent;
214
+ border-bottom: 5px solid transparent;
215
+ border-left: 8px solid rgba(0, 0, 0,.6);
216
+ float: left;
217
+ margin-top: 10px;
218
+ }
219
+ .ckplayer-ckplayer .ck-main .ck-preview{
220
+ position: absolute;
221
+ z-index: 210;
222
+ width: 100%;
223
+ left:0;
224
+ bottom: 64px;
225
+ overflow: hidden;
226
+ display: none;
227
+ }
228
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-preview{
229
+ bottom: 86px;
230
+ }
231
+ .ckplayer-ckplayer .ck-main .ck-preview-load-img{
232
+ position: absolute;
233
+ z-index: 210;
234
+ top:110%;
235
+ }
236
+ .ckplayer-ckplayer .ck-main .ck-preview .ck-preview-bg{
237
+ position: absolute;
238
+ z-index: 1;
239
+ top:0;
240
+ float: left;
241
+ transition: .2s;
242
+ }
243
+ .ckplayer-ckplayer .ck-main .ck-preview .ck-preview-bg .ck-preview-img{
244
+ background-repeat: no-repeat ;
245
+ float: left;
246
+ }
247
+ .ckplayer-ckplayer .ck-main .ck-preview .ck-preview-frame{
248
+ position: absolute;
249
+ z-index: 2;
250
+ top:0;
251
+ left:-1000px;
252
+ border:4px solid #0078ff;
253
+ box-sizing:content-box;
254
+ -moz-box-sizing:content-box; /* Firefox */
255
+ -webkit-box-sizing:content-box; /* Safari */
256
+ }
257
+ .ckplayer-ckplayer .ck-main .ck-prompt-words{
258
+ position: absolute;
259
+ z-index: 220;
260
+ width: 213px;
261
+ line-height: 23px;
262
+ font-size: 14px;
263
+ color: #FFF;
264
+ background: rgba(0, 0, 0,.6);
265
+ overflow: hidden;
266
+ display: none;
267
+ margin-bottom: 10px;
268
+ border-radius: 3px;
269
+ -webkit-animation-fill-mode: both;
270
+ animation-fill-mode: both;
271
+ -webkit-animation-duration: .2s;
272
+ animation-duration: .2s;
273
+ -webkit-animation-name: ck-bounceIn;
274
+ animation-name: ck-bounceIn;
275
+ }
276
+ .ckplayer-ckplayer .ck-main .ck-prompt-words .ck-prompt-content{
277
+ padding: 5px;
278
+ }
279
+ .ckplayer-ckplayer .ck-main .ck-layer{
280
+ position: absolute;
281
+ z-index: 101;
282
+ }
283
+ .ckplayer-ckplayer .ck-main .ck-tempTime{
284
+ position: absolute;
285
+ z-index: 20;
286
+ left:10px;
287
+ bottom: 5px;
288
+ display: none;
289
+ font-size: 14px;
290
+ line-height: 28px;
291
+ color: #FFF;
292
+ }
293
+ /*关于*/
294
+ .ckplayer-ckplayer .ck-main .ck-about{
295
+ position: absolute;
296
+ z-index: 200;
297
+ width: 50%;
298
+ max-width: 600px;
299
+ min-width: 400px;
300
+ left: 1rem;
301
+ top: 1rem;
302
+ background: rgba(0,0,0,.6);
303
+ padding: 1rem 0;
304
+ display: none;
305
+ }
306
+ .ckplayer-ckplayer .ck-main .ck-about ul{
307
+ padding: 0;
308
+ margin: 0;
309
+ }
310
+ .ckplayer-ckplayer .ck-main .ck-about ul li{
311
+ list-style:none;
312
+ color: #FFF;
313
+ font-size: 12px;
314
+ line-height: 18px;
315
+ height: 18px;
316
+ padding: 0;
317
+ margin: 0;
318
+ }
319
+ .ckplayer-ckplayer .ck-main .ck-about ul li .ck-about-title{
320
+ width: 100px;
321
+ text-align: right;
322
+ float: left;
323
+ padding-right: .5rem;
324
+ }
325
+ .ckplayer-ckplayer .ck-main .ck-about ul li .ck-about-content{
326
+ width: auto;
327
+ float: left;
328
+ }
329
+ .ckplayer-ckplayer .ck-main .ck-about .ck-about-bar{
330
+ position: absolute;
331
+ z-index: 1;
332
+ top: 0;
333
+ right: 0;
334
+ width: 96px;
335
+ }
336
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-about .ck-about-bar{
337
+ width: 140px;
338
+ }
339
+ .ckplayer-ckplayer .ck-main .ck-about .ck-about-bar .ck-btn-about-copy{
340
+ background-position:-1632px 0;
341
+ }
342
+ .ckplayer-ckplayer .ck-main .ck-about .ck-about-bar .ck-btn-about-copy:hover{
343
+ background-position:-1680px 0;
344
+ }
345
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-about .ck-about-bar .ck-btn-about-copy{
346
+ background-position:-2380px 0;
347
+ }
348
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-about .ck-about-bar .ck-btn-about-copy:hover{
349
+ background-position:-2450px 0;
350
+ }
351
+ .ckplayer-ckplayer .ck-main .ck-about .ck-about-bar .ck-btn-about-close{
352
+ background-position:-1728px 0;
353
+ }
354
+ .ckplayer-ckplayer .ck-main .ck-about .ck-about-bar .ck-btn-about-close:hover{
355
+ background-position:-1776px 0;
356
+ }
357
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-about .ck-about-bar .ck-btn-about-close{
358
+ background-position:-2520px 0;
359
+ }
360
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-about .ck-about-bar .ck-btn-about-close:hover{
361
+ background-position:-2590px 0;
362
+ }
363
+ /*截图显示容器*/
364
+ .ckplayer-ckplayer .ck-main .ck-screenshot{
365
+ position: absolute;
366
+ z-index: 220;
367
+ width: auto;
368
+ height: 144px;
369
+ margin: auto !important;
370
+ top: 0;
371
+ bottom: 0;
372
+ right: 55px;
373
+ display: none;
374
+ }
375
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-screenshot{
376
+ height: 210px;
377
+ right: 77px;
378
+ }
379
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-img{
380
+ position: absolute;
381
+ z-index: 1;
382
+ width: 100%;
383
+ height: 100%;
384
+ }
385
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-img img{
386
+ height: 100%;
387
+ }
388
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar{
389
+ position: absolute;
390
+ z-index: 1;
391
+ width: 100%;
392
+ height: 36px;
393
+ bottom: 5px;
394
+ text-align: center;
395
+ }
396
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar .ck-screenshot-btn{
397
+ display: inline-block;
398
+ overflow: hidden;
399
+ border: 0px solid transparent;
400
+ border-radius: 5px;
401
+ vertical-align: middle;
402
+ text-align: center;
403
+ text-decoration: none;
404
+ white-space: nowrap;
405
+ font-size: 14px;
406
+ line-height: 30px;
407
+ padding: 0px 15px;
408
+ cursor: pointer;
409
+ -webkit-user-select: none;
410
+ -moz-user-select: none;
411
+ -ms-user-select: none;
412
+ user-select: none;
413
+ color: #fff;
414
+ margin: 0 5px;
415
+ }
416
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar .ck-screenshot-btn:hover{
417
+ color: #FFFF00;
418
+ }
419
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar .ck-screenshot-btn:focus{
420
+ outline:0;
421
+ }
422
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar .ck-screenshot-down{
423
+ background-color: #007bff;
424
+ }
425
+ .ckplayer-ckplayer .ck-main .ck-screenshot .ck-screenshot-bar .ck-screenshot-close{
426
+ background-color: #505050;
427
+ color: #fff;
428
+ }
429
+ /*广告*/
430
+ .ckplayer-ckplayer .ck-main .ck-yytf{
431
+ position: absolute;
432
+ z-index: 800;
433
+ width: 100%;
434
+ height: 100%;
435
+ left: 0px;
436
+ top: 0px;
437
+ }
438
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-front-link{
439
+ width: 100%;
440
+ height: 100%;
441
+ display: none;
442
+ cursor: pointer;
443
+ }
444
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-front-picture{
445
+ width: 100%;
446
+ height: 100%;
447
+ background: #000;
448
+ display: none;
449
+ text-align: center;
450
+ line-height: 100%;
451
+ }
452
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-front-picture img{
453
+ max-width: 100%;
454
+ max-height: 100%;
455
+ position: absolute;
456
+ top: 0;
457
+ left: 0;
458
+ right: 0;
459
+ bottom: 0;
460
+ margin: auto;
461
+ }
462
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-top{
463
+ position: absolute;
464
+ z-index: 3;
465
+ top: 10px;
466
+ right: 10px;
467
+ }
468
+
469
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-top div{
470
+ float: right;
471
+ margin-left: 10px;
472
+ font-size: 14px;
473
+ border-radius: 15px;
474
+ background: rgba(0,0,0,.6);
475
+ padding: 0px 10px;
476
+ line-height: 30px;
477
+ height: 30px;
478
+ color: #FFF;
479
+ }
480
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-top div{
481
+ font-size: 18px;
482
+ border-radius: 20px;
483
+ line-height: 40px;
484
+ height: 40px;
485
+ }
486
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-top .ck-yytf-closetime{
487
+ display: none;
488
+ }
489
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-top .ck-yytf-closead{
490
+ cursor: pointer;
491
+ display: none;
492
+ }
493
+
494
+ /*显示广告时的底部内容*/
495
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom{
496
+ position: absolute;
497
+ z-index: 3;
498
+ bottom: 10px;
499
+ right: 10px;
500
+ }
501
+ /*显示广告时的底部按钮-共用*/
502
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-btn{
503
+ background-color: rgba(0,0,0,.6);
504
+ background-image: url(images/ckplayer_ixigua.png);
505
+ background-size: auto 100%;
506
+ border: none;
507
+ outline: none;
508
+ width: 30px;
509
+ height: 30px;
510
+ cursor: pointer;
511
+ background-repeat: no-repeat;
512
+ border-radius: 50%;
513
+ }
514
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-btn{
515
+ width: 40px;
516
+ height: 40px;
517
+ }
518
+ /*显示广告时的静音按钮*/
519
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit{
520
+ float: right;
521
+ width: 30px;
522
+ height: 30px;
523
+ margin-left: 10px;
524
+ overflow: hidden;
525
+ }
526
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit{
527
+ width: 40px;
528
+ height: 40px;
529
+ }
530
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-muted{
531
+ background-position:-180px 0;
532
+ }
533
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-muted:hover{
534
+ background-position:-210px 0;
535
+ }
536
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-exitmuted{
537
+ background-position:-240px 0;
538
+ }
539
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-exitmuted:hover{
540
+ background-position:-270px 0;
541
+ }
542
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-muted{
543
+ background-position:-240px 0;
544
+ }
545
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-muted:hover{
546
+ background-position:-280px 0;
547
+ }
548
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-exitmuted{
549
+ background-position:-320px 0;
550
+ }
551
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-mutedandexit .ck-yytf-mutedandexit-exitmuted:hover{
552
+ background-position:-360px 0;
553
+ }
554
+ /*显示广告时的全屏按钮*/
555
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit{
556
+ float: right;
557
+ width: 30px;
558
+ height: 30px;
559
+ margin-left: 10px;
560
+ overflow: hidden;
561
+ }
562
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit{
563
+ width: 40px;
564
+ height: 40px;
565
+ }
566
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-full{
567
+ background-position:-300px 0;
568
+ }
569
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-full:hover{
570
+ background-position:-330px 0;
571
+ }
572
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-exitfull{
573
+ background-position:-360px 0;
574
+ }
575
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-exitfull:hover{
576
+ background-position:-390px 0;
577
+ }
578
+
579
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-full{
580
+ background-position:-400px 0;
581
+ }
582
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-full:hover{
583
+ background-position:-440px 0;
584
+ }
585
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-exitfull{
586
+ background-position:-480px 0;
587
+ }
588
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-fullandexit .ck-yytf-fullandexit-exitfull:hover{
589
+ background-position:-520px 0;
590
+ }
591
+ /*广告查看详情按钮*/
592
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-details{
593
+ float: right;
594
+ font-size: 14px;
595
+ border-radius: 15px;
596
+ background: rgba(0,0,0,.6);
597
+ padding: 0 10px;
598
+ color: #FFF;
599
+ line-height: 30px;
600
+ height: 30px;
601
+ }
602
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-yytf .ck-yytf-bottom .ck-yytf-details{
603
+ font-size: 18px;
604
+ border-radius: 20px;
605
+ line-height: 40px;
606
+ height: 40px;
607
+ }
608
+ .ckplayer-ckplayer .ck-main .ck-yytf .ck-yytf-bottom .ck-yytf-details a{
609
+ color: #FFF;
610
+ text-decoration: none;
611
+ }
612
+ /*暂停广告容器*/
613
+ .ckplayer-ckplayer .ck-main .ck-pause-yytf{
614
+ display: none;
615
+ position:absolute;
616
+ z-index: 800;
617
+ max-width: 100%;
618
+ max-height: 100%;
619
+ top: 0;
620
+ left: 0;
621
+ right: 0;
622
+ bottom: 0;
623
+ margin: auto;
624
+ }
625
+ .ckplayer-ckplayer .ck-main .ck-pause-yytf img{
626
+ max-width: 100%;
627
+ max-height: 100%;
628
+ }
629
+ .ckplayer-ckplayer .ck-main .ck-pause-close{
630
+ position:absolute;
631
+ z-index: 1;
632
+ right: -15px;
633
+ top:-15px;
634
+ width: 30px;
635
+ height: 30px;
636
+ background-color: transparent;
637
+ background-image: url(images/adclose.png);
638
+ border: none;
639
+ outline: none;
640
+ cursor: pointer;
641
+ background-repeat: no-repeat ;
642
+ }
643
+ .ckplayer-ckplayer .ck-main .ck-pause-close:hover{
644
+ background-position:-30px 0;
645
+ }
646
+ /*右键菜单*/
647
+ .ckplayer-ckplayer-menu{
648
+ width:120px;
649
+ background: rgba(0,0,0,.8);
650
+ position: absolute;
651
+ z-index: 9000;
652
+ font-size:14px ;
653
+ border: 1px #000 solid;
654
+ display: none;
655
+ border-radius: 5px;
656
+ }
657
+ .ckplayer-ckplayer-menu .ck-li{
658
+ color: #adadad;
659
+ line-height: 35px;
660
+ padding: 0 0 0 5px;
661
+ }
662
+ .ckplayer-ckplayer-menu .ck-li a{
663
+ color: #FFF;
664
+ text-decoration: none;
665
+ }
666
+ .ckplayer-ckplayer-menu .ck-underline{
667
+ border-bottom: 1px #000 solid;
668
+ }
669
+ /*控制栏*/
670
+ .ckplayer-ckplayer .ck-main .ck-bar{
671
+ position:absolute;
672
+ z-index: 260;
673
+ left:0px;
674
+ bottom:0px;
675
+ width: 100%;
676
+ height: 48px;
677
+ background: rgba(0,0,0,.3);
678
+ transition: 0.2s;
679
+ }
680
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar{
681
+ height: 70px;
682
+ }
683
+ .ckplayer-ckplayer .ck-main .ck-bar.ck-bar-out{
684
+ bottom: -50px;
685
+ transition: 0.2s;
686
+ }
687
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar.ck-bar-out{
688
+ bottom: -80px;
689
+ transition: 0.2s;
690
+ }
691
+
692
+ /*按钮公用样式*/
693
+ .ckplayer-ckplayer .ck-main .ck-bar-btn{
694
+ background-color: transparent;
695
+ background-image: url(images/ckplayer_ixigua.48.png);
696
+ background-size: auto 100%;
697
+ border: none;
698
+ outline: none;
699
+ width: 48px;
700
+ height: 48px;
701
+ cursor: pointer;
702
+ background-repeat: no-repeat ;
703
+ }
704
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar-btn{
705
+ background-image: url(images/ckplayer_ixigua.png);
706
+ width: 70px;
707
+ height: 70px;
708
+ }
709
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-btn:hover{
710
+ background-size:auto 100%;
711
+ }
712
+
713
+ /*播放暂停按钮组*/
714
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause{
715
+ float: left;
716
+ }
717
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-play{
718
+ background-position:0px top;
719
+ }
720
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-play:hover{
721
+ background-position:-48px 0;
722
+ }
723
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-play:hover{
724
+ background-position:-70px 0;
725
+ }
726
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-pause{
727
+ background-position:-96px 0;
728
+ }
729
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-pause{
730
+ background-position:-140px 0;
731
+ }
732
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-pause:hover{
733
+ background-position:-144px 0;
734
+ }
735
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-pause:hover{
736
+ background-position:-210px 0;
737
+ }
738
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-refresh{
739
+ background-position:-192px 0;
740
+ }
741
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-refresh{
742
+ background-position:-280px 0;
743
+ }
744
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-refresh:hover{
745
+ background-position:-240px 0;
746
+ }
747
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-refresh:hover{
748
+ background-position:-350px 0;
749
+ }
750
+
751
+ /*返回播放按钮*/
752
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive{
753
+ float: left;
754
+ font-size: 16px;
755
+ line-height: 28px;
756
+ border-radius: 3px;
757
+ margin: 10px;
758
+ border: 0px;
759
+ background: rgba(3,60,146,.5);
760
+ color: #FFF;
761
+ cursor: pointer;
762
+ padding: 0 8px;
763
+ }
764
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-btn-backlive{
765
+ font-size: 18px;
766
+ line-height: 36px;
767
+ margin: 17px 10px;
768
+ }
769
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive:hover{
770
+ background: rgba(3,60,146,.9);
771
+ }
772
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive:focus{
773
+ outline:0;
774
+ background: rgba(3,60,146,.6);
775
+ }
776
+ /*静音取消静音按钮组*/
777
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-muted{
778
+ background-position:-288px 0;
779
+ }
780
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-muted{
781
+ background-position:-420px 0;
782
+ }
783
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-muted:hover{
784
+ background-position:-336px 0;
785
+ }
786
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-muted:hover{
787
+ background-position:-490px 0;
788
+ }
789
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-exitmuted{
790
+ background-position:-384px 0;
791
+ }
792
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-exitmuted{
793
+ background-position:-560px 0;
794
+ }
795
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-exitmuted:hover{
796
+ background-position:-432px 0;
797
+ }
798
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-exitmuted:hover{
799
+ background-position:-630px 0;
800
+ }
801
+
802
+ /*全屏按钮组*/
803
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit{
804
+ float: right;
805
+ }
806
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-full{
807
+ background-position:-480px 0;
808
+ }
809
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-full{
810
+ background-position:-700px 0;
811
+ }
812
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-full:hover{
813
+ background-position:-528px 0;
814
+ -webkit-animation-fill-mode: both;
815
+ animation-fill-mode: both;
816
+ -webkit-animation-duration: .5s;
817
+ animation-duration: .5s;
818
+ -webkit-animation-name: ck-button-hover;
819
+ animation-name: ck-button-hover;
820
+ }
821
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-full:hover{
822
+ background-position:-770px 0;
823
+ }
824
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-exitfull{
825
+ background-position:-672px 0;
826
+ display: none;
827
+ }
828
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-exitfull{
829
+ background-position:-840px 0;
830
+ }
831
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-exitfull:hover{
832
+ background-position:-720px 0;
833
+ -webkit-animation-fill-mode: both;
834
+ animation-fill-mode: both;
835
+ -webkit-animation-duration: .5s;
836
+ animation-duration: .5s;
837
+ -webkit-animation-name: ck-button-hover;
838
+ animation-name: ck-button-hover;
839
+ }
840
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-exitfull:hover{
841
+ background-position:-910px 0;
842
+ }
843
+
844
+ /*网页全屏按钮组*/
845
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit{
846
+ float: right;
847
+ }
848
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-webfull{
849
+ background-position:-768px 0;
850
+ }
851
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-webfull{
852
+ background-position:-1120px 0;
853
+ }
854
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-webfull:hover{
855
+ background-position:-816px 0;
856
+ -webkit-animation-fill-mode: both;
857
+ animation-fill-mode: both;
858
+ -webkit-animation-duration: .5s;
859
+ animation-duration: .5s;
860
+ -webkit-animation-name: ck-button-hover;
861
+ animation-name: ck-button-hover;
862
+ }
863
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-webfull:hover{
864
+ background-position:-1190px 0;
865
+ }
866
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull{
867
+ background-position:-864px 0;
868
+ display: none;
869
+ }
870
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull{
871
+ background-position:-1260px 0;
872
+ }
873
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull:hover{
874
+ background-position:-912px 0;
875
+ -webkit-animation-fill-mode: both;
876
+ animation-fill-mode: both;
877
+ -webkit-animation-duration: .5s;
878
+ animation-duration: .5s;
879
+ -webkit-animation-name: ck-button-hover;
880
+ animation-name: ck-button-hover;
881
+ }
882
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull:hover{
883
+ background-position:-1330px 0;
884
+ }
885
+
886
+ /*剧场模式按钮组*/
887
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit{
888
+ float: right;
889
+ }
890
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-theatre{
891
+ background-position:-960px 0;
892
+ }
893
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-theatre{
894
+ background-position:-1400px 0;
895
+ }
896
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-theatre:hover{
897
+ background-position:-1008px 0;
898
+ -webkit-animation-fill-mode: both;
899
+ animation-fill-mode: both;
900
+ -webkit-animation-duration: .5s;
901
+ animation-duration: .5s;
902
+ -webkit-animation-name: ck-button-hover-x;
903
+ animation-name: ck-button-hover-x;
904
+ }
905
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-theatre:hover{
906
+ background-position:-1470px 0;
907
+ }
908
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre{
909
+ background-position:-1056px 0;
910
+ display: none;
911
+ }
912
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre{
913
+ background-position:-1540px 0;
914
+ }
915
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre:hover{
916
+ background-position:-1104px 0;
917
+ -webkit-animation-fill-mode: both;
918
+ animation-fill-mode: both;
919
+ -webkit-animation-duration: .5s;
920
+ animation-duration: .5s;
921
+ -webkit-animation-name: ck-button-hover-x;
922
+ animation-name: ck-button-hover-x;
923
+ }
924
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre:hover{
925
+ background-position:-1610px 0;
926
+ }
927
+ /*播放速度*/
928
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box{
929
+ float: right;
930
+ height: 48px;
931
+ line-height: 48px;
932
+ position: relative;
933
+ cursor: pointer;
934
+ }
935
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playbackrate-box{
936
+ height: 70px;
937
+ line-height: 70px;
938
+ }
939
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate{
940
+ height: 100%;
941
+ padding: 0 10px;
942
+ white-space:nowrap;
943
+ font-size: 16px;
944
+ color: #cfcccc;
945
+ -moz-user-select:none; /*火狐*/
946
+ -webkit-user-select:none; /*webkit浏览器*/
947
+ -ms-user-select:none; /*IE10*/
948
+ -khtml-user-select:none; /*早期浏览器*/
949
+ user-select:none;
950
+ }
951
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate{
952
+ font-size: 18px;
953
+ }
954
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate:hover{
955
+ color: #FFF;
956
+ }
957
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate-bg-box {
958
+ width: auto;
959
+ height: auto;
960
+ }
961
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box:hover .ck-bar-playbackrate-bg-box {
962
+ display: block;
963
+ }
964
+ /*字幕*/
965
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box{
966
+ float: right;
967
+ height: 48px;
968
+ line-height: 48px;
969
+ position: relative;
970
+ cursor: pointer;
971
+ }
972
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-track-box{
973
+ height: 70px;
974
+ line-height: 70px;
975
+ }
976
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track{
977
+ height: 100%;
978
+ padding: 0 10px;
979
+ white-space:nowrap;
980
+ font-size: 16px;
981
+ color: #cfcccc;
982
+ -moz-user-select:none; /*火狐*/
983
+ -webkit-user-select:none; /*webkit浏览器*/
984
+ -ms-user-select:none; /*IE10*/
985
+ -khtml-user-select:none; /*早期浏览器*/
986
+ user-select:none;
987
+ }
988
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-track-box .ck-bar-track{
989
+ font-size: 18px;
990
+ }
991
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track:hover{
992
+ color: #FFF;
993
+ }
994
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track-bg-box {
995
+ width: auto;
996
+ height: auto;
997
+ }
998
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box:hover .ck-bar-track-bg-box {
999
+ display: block;
1000
+ }
1001
+ /*清晰度*/
1002
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box{
1003
+ float: right;
1004
+ height: 48px;
1005
+ line-height: 48px;
1006
+ position: relative;
1007
+ cursor: pointer;
1008
+ }
1009
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-definition-box{
1010
+ height: 70px;
1011
+ line-height: 70px;
1012
+ }
1013
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition{
1014
+ height: 100%;
1015
+ padding: 0 10px;
1016
+ white-space:nowrap;
1017
+ font-size: 16px;
1018
+ color: #cfcccc;
1019
+ -moz-user-select:none; /*火狐*/
1020
+ -webkit-user-select:none; /*webkit浏览器*/
1021
+ -ms-user-select:none; /*IE10*/
1022
+ -khtml-user-select:none; /*早期浏览器*/
1023
+ user-select:none;
1024
+ }
1025
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-definition-box .ck-bar-definition{
1026
+ font-size: 18px;
1027
+ }
1028
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition:hover{
1029
+ color: #FFF;
1030
+ }
1031
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition-bg-box {
1032
+ width: auto;
1033
+ height: auto;
1034
+ }
1035
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box:hover .ck-bar-definition-bg-box {
1036
+ display: block;
1037
+ }
1038
+ /*列表切换*/
1039
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box {
1040
+ background: rgba(0,0,0,.001);
1041
+ position: absolute;
1042
+ z-index: 1;
1043
+ bottom: 46px;
1044
+ display: none;
1045
+ -webkit-animation-duration: .2s;
1046
+ animation-duration: .2s;
1047
+ -webkit-animation-name: ck-bounceIn;
1048
+ animation-name: ck-bounceIn;
1049
+ }
1050
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box {
1051
+ bottom: 68px;
1052
+ }
1053
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg{
1054
+ background: rgba(0,0,0,.6);
1055
+ float: left;
1056
+ border-radius: 5px;
1057
+ padding: 10px;
1058
+ margin-bottom: 10px;
1059
+ }
1060
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p{
1061
+ width: 100%;
1062
+ float: left;
1063
+ line-height: 35px;
1064
+ color: #cfcccc;
1065
+ text-align: center;
1066
+ font-size: 14px;
1067
+ background-color: rgba(0,0,0,0);
1068
+ border: 0px;
1069
+ white-space:nowrap;
1070
+ cursor: pointer;
1071
+ }
1072
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p:hover{
1073
+ color: #FFF;
1074
+ font-size: 16px;
1075
+ }
1076
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p:hover{
1077
+ font-size: 20px;
1078
+ }
1079
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p{
1080
+ font-size: 18px;
1081
+ }
1082
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p-focus{
1083
+ color: #FF0302;
1084
+ }
1085
+ /*下一集按钮*/
1086
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-next{
1087
+ float: left;
1088
+ background-position:-672px 0;
1089
+ }
1090
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-next{
1091
+ background-position:-980px 0;
1092
+ }
1093
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-next:hover{
1094
+ background-position:-720px 0;
1095
+ }
1096
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-next:hover{
1097
+ background-position:-1050px 0;
1098
+ }
1099
+ /*进度栏*/
1100
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress{
1101
+ width: 100%;
1102
+ position:absolute;
1103
+ z-index: 1;
1104
+ height: 12px;
1105
+ top:-11px;
1106
+ transition: 0.2s;
1107
+ }
1108
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg{
1109
+ width: 100%;
1110
+ background: rgba(255,255,255,.3);
1111
+ margin-top: 2px;
1112
+ overflow: hidden;
1113
+ height: 10px;
1114
+ transition: .2s;
1115
+ cursor: pointer;
1116
+ }
1117
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-load{
1118
+ float: left;
1119
+ width: 0px;
1120
+ background: rgba(169,169,169,.7);
1121
+ height: 10px;
1122
+ transition: .2s;
1123
+ }
1124
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-play{
1125
+ width: 0px;
1126
+ background: #e80101;
1127
+ position: absolute;
1128
+ z-index: 1;
1129
+ height: 10px;
1130
+ transition: .2s;
1131
+ cursor: pointer;
1132
+ }
1133
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-mouseline{
1134
+ width: 3px;
1135
+ background: rgba(255,255,255,.6);
1136
+ position: absolute;
1137
+ z-index: 2;
1138
+ display: none;
1139
+ height: 10px;
1140
+ cursor: pointer;
1141
+ }
1142
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-prompt{
1143
+ background: #FFF;
1144
+ position: absolute;
1145
+ z-index: 3;
1146
+ border-radius: 50%;
1147
+ width: 10px;
1148
+ height: 10px;
1149
+ top:2px;
1150
+ transition: .2s;
1151
+ }
1152
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-slider{
1153
+ border-radius: 50%;
1154
+ overflow: hidden;
1155
+ position: relative;
1156
+ float: left;
1157
+ z-index: 4;
1158
+ left: 0px;
1159
+ cursor: pointer;
1160
+ width: 12px;
1161
+ height: 12px;
1162
+ top: -11px;
1163
+ background: #FFF;
1164
+ box-shadow: 0px 0px 0px 4px rgba(255,255,255,.5);
1165
+ }
1166
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-slider:hover{
1167
+ background: #e80101;
1168
+ }
1169
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg:hover .ck-bar-progress-mouseline{
1170
+ display: block;
1171
+ }
1172
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out{
1173
+ height: 2px;
1174
+ top:-2px;
1175
+ transition: .2s;
1176
+ }
1177
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-bg,.ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-load,.ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-bg .ck-bar-progress-play{
1178
+ height: 2px;
1179
+ transition: .2s;
1180
+ }
1181
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-slider{
1182
+ width: 12px;
1183
+ height: 2px;
1184
+ top: -2px;
1185
+ box-shadow: 0px 0px 0px 0px rgba(255,255,255,0);
1186
+ background: rgba(232,1,1,0);
1187
+ transition: .2s;
1188
+ }
1189
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-bg .ck-bar-progress-prompt{
1190
+ height: 2px;
1191
+ border-radius: 0;
1192
+ transition: .2s;
1193
+ }
1194
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-slider-move .ck-bar-progress-play,.ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-slider-move .ck-bar-progress-slider{
1195
+ transition: 0s;
1196
+ }
1197
+
1198
+ /*音量调节栏*/
1199
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox{
1200
+ float: right;
1201
+ width: 48px;
1202
+ overflow-x: hidden;
1203
+ }
1204
+ /*音量调节栏*/
1205
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox{
1206
+ width: 70px;
1207
+ }
1208
+ /*默认状态-音量调节总外框*/
1209
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume{
1210
+ width: 48px;
1211
+ height: 215px;
1212
+ background: rgba(0,0,0,.01);
1213
+ position: absolute;
1214
+ z-index: 1;
1215
+ bottom: 46px;
1216
+ display: none;
1217
+ overflow: hidden;
1218
+ }
1219
+ /*全屏状态-音量调节总外框*/
1220
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-bar-volume{
1221
+ width: 70px;
1222
+ bottom: 68px;
1223
+ }
1224
+ /*默认状态-音量调节总外框-鼠标经过时样式*/
1225
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox:hover .ck-bar-volume{
1226
+ display: block;
1227
+ -webkit-animation-fill-mode: both;
1228
+ animation-fill-mode: both;
1229
+ -webkit-animation-duration: .1s;
1230
+ animation-duration: .1s;
1231
+ -webkit-animation-name: ck-bounceIn;
1232
+ animation-name: ck-bounceIn;
1233
+ }
1234
+ /*共用状态-音量调节内部外框*/
1235
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volumex{
1236
+ width: 100%;
1237
+ height: 200px;
1238
+ float: left;
1239
+ background: rgba(0,0,0,.8);
1240
+ border-radius: 5px;
1241
+ }
1242
+ /*共用状态-音量调节顶部文字*/
1243
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-txt{
1244
+ width: 100%;
1245
+ height: 40px;
1246
+ line-height: 40px;
1247
+ color: #FFF;
1248
+ text-align: center;
1249
+ font-size: 1rem;
1250
+ float: left;
1251
+ overflow: hidden;
1252
+ -moz-user-select:none; /*火狐*/
1253
+ -webkit-user-select:none; /*webkit浏览器*/
1254
+ -ms-user-select:none; /*IE10*/
1255
+ -khtml-user-select:none; /*早期浏览器*/
1256
+ user-select:none;
1257
+ }
1258
+ /*共用状态-音量调节背景色*/
1259
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-bg{
1260
+ width: 8px;
1261
+ height: 140px;
1262
+ background: #808080;
1263
+ border-radius: 3px;
1264
+ overflow: hidden;
1265
+ cursor: pointer;
1266
+ margin: auto;
1267
+ }
1268
+ /*共用状态-音量调节前景色*/
1269
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-bg .ck-bar-volume-pp{
1270
+ width: 8px;
1271
+ height: 140px;
1272
+ background: #e80101;
1273
+ margin-top: 140px;
1274
+ }
1275
+ /*共用状态-音量调节拖动小按钮*/
1276
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-slider{
1277
+ width: 10px;
1278
+ height: 10px;
1279
+ background: #FFF;
1280
+ border-radius: 50%;
1281
+ overflow: hidden;
1282
+ box-shadow: 0px 0px 0px 8px rgba(255,255,255,.5);
1283
+ position: absolute;
1284
+ z-index: 1;
1285
+ top: 0px;
1286
+ left: 19px;
1287
+ cursor: pointer;
1288
+ }
1289
+ /*全屏状态-音量调节拖动小按钮*/
1290
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-slider{
1291
+ left: 30px;
1292
+ }
1293
+ /*默认状态-显示时间*/
1294
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-time{
1295
+ float: left;
1296
+ line-height: 48px;
1297
+ font-size: 16px;
1298
+ color: #cfcccc;
1299
+ -moz-user-select:none; /*火狐*/
1300
+ -webkit-user-select:none; /*webkit浏览器*/
1301
+ -ms-user-select:none; /*IE10*/
1302
+ -khtml-user-select:none; /*早期浏览器*/
1303
+ user-select:none;
1304
+ }
1305
+ /*全屏状态-显示时间*/
1306
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-time{
1307
+ float: left;
1308
+ line-height: 70px;
1309
+ font-size: 18px;
1310
+ color: #cfcccc;
1311
+ }
1312
+ /*右侧控制栏*/
1313
+ .ckplayer-ckplayer .ck-main .ck-right-bar{
1314
+ position: absolute;
1315
+ z-index: 260;
1316
+ top: 0;
1317
+ right: 2px;
1318
+ bottom: 0;
1319
+ margin: auto !important;
1320
+ width: 48px;
1321
+ height: 144px;
1322
+ background: rgba(0,0,0,.3);
1323
+ border-radius: 5px;
1324
+ transition: .2s;
1325
+ }
1326
+ .ckplayer-ckplayer .ck-main .ck-right-bar-hide{
1327
+ right: -48px;
1328
+ transition: .2s;
1329
+ }
1330
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar{
1331
+ width: 70px;
1332
+ height: 210px;
1333
+ }
1334
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar-hide{
1335
+ right: -70px;
1336
+ transition: .2s;
1337
+ }
1338
+ /*截图按钮*/
1339
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-btn-screenshot{
1340
+ float: left;
1341
+ background-position:-1536px 0;
1342
+ }
1343
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-btn-screenshot{
1344
+ background-position:-2240px 0;
1345
+ }
1346
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-btn-screenshot:hover{
1347
+ background-position:-1584px 0;
1348
+ }
1349
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-btn-screenshot:hover{
1350
+ background-position:-2310px 0;
1351
+ }
1352
+ /*小窗口按钮组*/
1353
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows{
1354
+ float: left;
1355
+ }
1356
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows button{
1357
+ float: left;
1358
+ }
1359
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open{
1360
+ background-position:-1248px 0;
1361
+ }
1362
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open{
1363
+ background-position:-1820px 0;
1364
+ }
1365
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open:hover{
1366
+ background-position:-1296px 0;
1367
+ }
1368
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open:hover{
1369
+ background-position:-1890px 0;
1370
+ }
1371
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close{
1372
+ background-position:-1152px 0;
1373
+ display: none;
1374
+ }
1375
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close{
1376
+ background-position:-1680px 0;
1377
+ }
1378
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close:hover{
1379
+ background-position:-1200px 0;
1380
+ }
1381
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close:hover{
1382
+ background-position:-1750px 0;
1383
+ }
1384
+ /*循环按钮组*/
1385
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop{
1386
+ float: left;
1387
+ }
1388
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open{
1389
+ background-position:-1440px 0;
1390
+ }
1391
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open{
1392
+ background-position:-2100px 0;
1393
+ }
1394
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open:hover{
1395
+ background-position:-1488px 0;
1396
+ }
1397
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open:hover{
1398
+ background-position:-2170px 0;
1399
+ }
1400
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close{
1401
+ background-position:-1344px 0;
1402
+ display: none;
1403
+ }
1404
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close{
1405
+ background-position:-1960px 0;
1406
+ }
1407
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close:hover{
1408
+ background-position:-1392px 0;
1409
+ }
1410
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close:hover{
1411
+ background-position:-2030px 0;
1412
+ }
1413
+ /*顶部显示栏*/
1414
+ .ckplayer-ckplayer .ck-main .ck-top-bar{
1415
+ position: absolute;
1416
+ z-index: 260;
1417
+ top: -36px;
1418
+ width: 100%;
1419
+ height: 36px;
1420
+ background: rgba(0,0,0,.3);
1421
+ transition: .2s;
1422
+ }
1423
+ .ckplayer-ckplayer .ck-main .ck-top-bar-hide{
1424
+ top: -36px;
1425
+ transition: .2s;
1426
+ }
1427
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-top-bar{
1428
+ top: 0;
1429
+ }
1430
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-top-bar-hide{
1431
+ top: -36px;
1432
+ transition: .2s;
1433
+ }
1434
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom{
1435
+ position: absolute;
1436
+ z-index: 260;
1437
+ }
1438
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container{
1439
+ float: left;
1440
+ margin-left: 10px;
1441
+ margin-top: 9px;
1442
+ cursor: pointer;
1443
+ }
1444
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-left{
1445
+ float: left;
1446
+ width: 20px;
1447
+ height: 18px;
1448
+ border: 1px solid #FFF;
1449
+ box-sizing:content-box;
1450
+ -moz-box-sizing:content-box; /* Firefox */
1451
+ -webkit-box-sizing:content-box; /* Safari */
1452
+ }
1453
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-left,
1454
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container.ck-top-bar-zoom-container-focus .ck-top-bar-zoom-left{
1455
+ border-color: #e80101;
1456
+ }
1457
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-left div,
1458
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container.ck-top-bar-zoom-container-focus .ck-top-bar-zoom-left div{
1459
+ background: #e80101;
1460
+ }
1461
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-right{
1462
+ float: left;
1463
+ font-size: 14px;
1464
+ color: #FFF;
1465
+ padding-left: 5px;
1466
+ }
1467
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-right,
1468
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container.ck-top-bar-zoom-container-focus .ck-top-bar-zoom-right{
1469
+ color: #e80101;
1470
+ }
1471
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-left .ck-top-bar-zoom-button-50{
1472
+ width: 50%;
1473
+ height: 50%;
1474
+ background: #FFF;
1475
+ margin: 4.5px 25%;
1476
+ }
1477
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-left .ck-top-bar-zoom-button-75{
1478
+ width: 75%;
1479
+ height: 50%;
1480
+ background: #FFF;
1481
+ margin: 4.5px 12.5%;
1482
+ }
1483
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-left .ck-top-bar-zoom-button-100{
1484
+ width: 100%;
1485
+ height: 50%;
1486
+ background: #FFF;
1487
+ margin: 4.5px 0;
1488
+ }
1489
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-title{
1490
+ position: absolute;
1491
+ z-index: 1;
1492
+ top: 0px;
1493
+ width: 100%;
1494
+ height: 36px;
1495
+ line-height: 36px;
1496
+ text-align: center;
1497
+ font-size: 18px;
1498
+ color: #FFF;
1499
+ -moz-user-select:none; /*火狐*/
1500
+ -webkit-user-select:none; /*webkit浏览器*/
1501
+ -ms-user-select:none; /*IE10*/
1502
+ -khtml-user-select:none; /*早期浏览器*/
1503
+ user-select:none;
1504
+ }
1505
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-time{
1506
+ float: right;
1507
+ height: 36px;
1508
+ line-height: 36px;
1509
+ font-size: 14px;
1510
+ color: #FFF;
1511
+ padding: 0 1rem 0;
1512
+ -moz-user-select:none; /*火狐*/
1513
+ -webkit-user-select:none; /*webkit浏览器*/
1514
+ -ms-user-select:none; /*IE10*/
1515
+ -khtml-user-select:none; /*早期浏览器*/
1516
+ user-select:none;
1517
+ }
1518
+ /*以下为缓动效果样式*/
1519
+ .ck-animate {
1520
+ -webkit-animation-fill-mode: both;
1521
+ animation-fill-mode: both;
1522
+ -webkit-animation-duration: .3s;
1523
+ animation-duration: .3s;
1524
+ }
1525
+ .ck-animate-bouncein {
1526
+ -webkit-animation-name: ck-bounceIn;
1527
+ animation-name: ck-bounceIn;
1528
+ }
1529
+
1530
+ @-webkit-keyframes ck-bounceIn {
1531
+ 0% {
1532
+ opacity: 0;
1533
+ -webkit-transform: scale(.5);
1534
+ transform: scale(.5)
1535
+ }
1536
+ 100% {
1537
+ opacity: 1;
1538
+ -webkit-transform: scale(1);
1539
+ transform: scale(1);
1540
+ }
1541
+ }
1542
+
1543
+ @keyframes ck-bounceIn {
1544
+ 0% {
1545
+ opacity: 0;
1546
+ -webkit-transform: scale(.5);
1547
+ -ms-transform: scale(.5);
1548
+ transform: scale(.5);
1549
+ }
1550
+ 100% {
1551
+ opacity: 1;
1552
+ -webkit-transform: scale(1);
1553
+ -ms-transform: scale(1);
1554
+ transform: scale(1);
1555
+ }
1556
+ }
1557
+ .ck-animate-bounceout {
1558
+ -webkit-animation-name: ck-bounceOut;
1559
+ animation-name: ck-bounceOut;
1560
+ }
1561
+
1562
+ @-webkit-keyframes ck-bounceOut {
1563
+ 0% {
1564
+ opacity: 1;
1565
+ -webkit-transform: scale(1);
1566
+ transform: scale(1);
1567
+ }
1568
+ 100% {
1569
+ opacity: 0;
1570
+ -webkit-transform: scale(.5);
1571
+ transform: scale(.5);
1572
+ }
1573
+ }
1574
+
1575
+ @keyframes ck-bounceOut {
1576
+ 0% {
1577
+ opacity: 1;
1578
+ -webkit-transform: scale(1);
1579
+ transform: scale(1);
1580
+ }
1581
+ 100% {
1582
+ opacity: 0;
1583
+ -webkit-transform: scale(.5);
1584
+ transform: scale(.5);
1585
+ }
1586
+ }
1587
+
1588
+ .ck-animate-circle {
1589
+ animation: ck-Circle 1s linear infinite;
1590
+ -webkit-animation: ck-Circle 1s linear infinite
1591
+ }
1592
+
1593
+ @-webkit-keyframes ck-Circle {
1594
+ 0% {
1595
+ transform: rotate(0deg);
1596
+ -webkit-transform: rotate(0deg);
1597
+ -ms-transform: rotate(0deg)
1598
+ }
1599
+ 25% {
1600
+ transform: rotate(90deg);
1601
+ -webkit-transform: rotate(90deg);
1602
+ -ms-transform: rotate(90deg)
1603
+ }
1604
+ 50% {
1605
+ transform: rotate(180deg);
1606
+ -webkit-transform: rotate(180deg);
1607
+ -ms-transform: rotate(180deg)
1608
+ }
1609
+ 75% {
1610
+ transform: rotate(270deg);
1611
+ -webkit-transform: rotate(270deg);
1612
+ -ms-transform: rotate(270deg)
1613
+ }
1614
+ 100% {
1615
+ transform: rotate(360deg);
1616
+ -webkit-transform: rotate(360deg);
1617
+ -ms-transform: rotate(360deg)
1618
+ }
1619
+ }
1620
+
1621
+ @keyframes ck-Circle {
1622
+ 0% {
1623
+ transform: rotate(0deg);
1624
+ -webkit-transform: rotate(0deg);
1625
+ -ms-transform: rotate(0deg)
1626
+ }
1627
+ 25% {
1628
+ transform: rotate(90deg);
1629
+ -webkit-transform: rotate(90deg);
1630
+ -ms-transform: rotate(90deg)
1631
+ }
1632
+ 50% {
1633
+ transform: rotate(180deg);
1634
+ -webkit-transform: rotate(180deg);
1635
+ -ms-transform: rotate(180deg)
1636
+ }
1637
+ 75% {
1638
+ transform: rotate(270deg);
1639
+ -webkit-transform: rotate(270deg);
1640
+ -ms-transform: rotate(270deg)
1641
+ }
1642
+ 100% {
1643
+ transform: rotate(360deg);
1644
+ -webkit-transform: rotate(360deg);
1645
+ -ms-transform: rotate(360deg)
1646
+ }
1647
+ }
1648
+
1649
+ @-webkit-keyframes ck-button-hover {
1650
+ 0% {
1651
+ -webkit-transform: scale(1);
1652
+ transform: scale(1);
1653
+ }
1654
+ 50% {
1655
+ -webkit-transform: scale(1.2);
1656
+ transform: scale(1.2);
1657
+ }
1658
+ 100% {
1659
+ -webkit-transform: scale(1);
1660
+ transform: scale(1);
1661
+ }
1662
+ }
1663
+
1664
+ @keyframes ck-button-hover {
1665
+ 0% {
1666
+ -webkit-transform: scale(1);
1667
+ transform: scale(1);
1668
+ }
1669
+ 50% {
1670
+ -webkit-transform: scale(1.2);
1671
+ transform: scale(1.2);
1672
+ }
1673
+ 100% {
1674
+ -webkit-transform: scale(1);
1675
+ transform: scale(1);
1676
+ }
1677
+ }
1678
+
1679
+ @-webkit-keyframes ck-button-hover-x {
1680
+ 0% {
1681
+ -webkit-transform: scale(1);
1682
+ transform: scale(1);
1683
+ }
1684
+ 50% {
1685
+ -webkit-transform: scale(1.2,1);
1686
+ transform: scale(1.2,1);
1687
+ }
1688
+ 100% {
1689
+ -webkit-transform: scale(1);
1690
+ transform: scale(1);
1691
+ }
1692
+ }
1693
+
1694
+ @keyframes ck-button-hover-x {
1695
+ 0% {
1696
+ -webkit-transform: scale(1);
1697
+ transform: scale(1);
1698
+ }
1699
+ 50% {
1700
+ -webkit-transform: scale(1.2,1);
1701
+ transform: scale(1.2,1);
1702
+ }
1703
+ 100% {
1704
+ -webkit-transform: scale(1);
1705
+ transform: scale(1);
1706
+ }
1707
+ }