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,1609 @@
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_red.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(50,50,50,.6);
650
+ position: absolute;
651
+ z-index: 9000;
652
+ font-size:14px ;
653
+ border: 1px #000 solid;
654
+ display: none;
655
+ }
656
+ .ckplayer-ckplayer-menu .ck-li{
657
+ color: #adadad;
658
+ line-height: 35px;
659
+ padding: 0 0 0 5px;
660
+ }
661
+ .ckplayer-ckplayer-menu .ck-li a{
662
+ color: #FFF;
663
+ text-decoration: none;
664
+ }
665
+ .ckplayer-ckplayer-menu .ck-underline{
666
+ border-bottom: 1px #000 solid;
667
+ }
668
+ /*控制栏*/
669
+ .ckplayer-ckplayer .ck-main .ck-bar{
670
+ position:absolute;
671
+ z-index: 260;
672
+ left:0px;
673
+ bottom:0px;
674
+ width: 100%;
675
+ height: 48px;
676
+ background: rgba(0,0,0,.3);
677
+ transition: 0.2s;
678
+ }
679
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar{
680
+ height: 70px;
681
+ }
682
+ .ckplayer-ckplayer .ck-main .ck-bar.ck-bar-out{
683
+ bottom: -50px;
684
+ transition: 0.2s;
685
+ }
686
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar.ck-bar-out{
687
+ bottom: -80px;
688
+ transition: 0.2s;
689
+ }
690
+
691
+ /*按钮公用样式*/
692
+ .ckplayer-ckplayer .ck-main .ck-bar-btn{
693
+ background-color: transparent;
694
+ background-image: url(images/ckplayer_red.48.png);
695
+ background-size: auto 100%;
696
+ border: none;
697
+ outline: none;
698
+ width: 48px;
699
+ height: 48px;
700
+ cursor: pointer;
701
+ background-repeat: no-repeat ;
702
+ }
703
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar-btn{
704
+ background-image: url(images/ckplayer_red.png);
705
+ width: 70px;
706
+ height: 70px;
707
+ }
708
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-btn:hover{
709
+ background-size:auto 100%;
710
+ }
711
+
712
+ /*播放暂停按钮组*/
713
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause{
714
+ float: left;
715
+ }
716
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-play{
717
+ background-position:0px top;
718
+ }
719
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-play:hover{
720
+ background-position:-48px 0;
721
+ }
722
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-play:hover{
723
+ background-position:-70px 0;
724
+ }
725
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-pause{
726
+ background-position:-96px 0;
727
+ }
728
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-pause{
729
+ background-position:-140px 0;
730
+ }
731
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-pause:hover{
732
+ background-position:-144px 0;
733
+ }
734
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-pause:hover{
735
+ background-position:-210px 0;
736
+ }
737
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-refresh{
738
+ background-position:-192px 0;
739
+ }
740
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-refresh{
741
+ background-position:-280px 0;
742
+ }
743
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playandpause .ck-btn-refresh:hover{
744
+ background-position:-240px 0;
745
+ }
746
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playandpause .ck-btn-refresh:hover{
747
+ background-position:-350px 0;
748
+ }
749
+
750
+ /*返回播放按钮*/
751
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive{
752
+ float: left;
753
+ font-size: 16px;
754
+ line-height: 28px;
755
+ border-radius: 3px;
756
+ margin: 10px;
757
+ border: 0px;
758
+ background: rgba(3,60,146,.5);
759
+ color: #FFF;
760
+ cursor: pointer;
761
+ padding: 0 8px;
762
+ }
763
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-btn-backlive{
764
+ font-size: 18px;
765
+ line-height: 36px;
766
+ margin: 17px 10px;
767
+ }
768
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive:hover{
769
+ background: rgba(3,60,146,.9);
770
+ }
771
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-btn-backlive:focus{
772
+ outline:0;
773
+ background: rgba(3,60,146,.6);
774
+ }
775
+ /*静音取消静音按钮组*/
776
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-muted{
777
+ background-position:-288px 0;
778
+ }
779
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-muted{
780
+ background-position:-420px 0;
781
+ }
782
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-muted:hover{
783
+ background-position:-336px 0;
784
+ }
785
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-muted:hover{
786
+ background-position:-490px 0;
787
+ }
788
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-exitmuted{
789
+ background-position:-384px 0;
790
+ }
791
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-exitmuted{
792
+ background-position:-560px 0;
793
+ }
794
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-btn-exitmuted:hover{
795
+ background-position:-432px 0;
796
+ }
797
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-btn-exitmuted:hover{
798
+ background-position:-630px 0;
799
+ }
800
+
801
+ /*全屏按钮组*/
802
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit{
803
+ float: right;
804
+ }
805
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-full{
806
+ background-position:-480px 0;
807
+ }
808
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-full{
809
+ background-position:-700px 0;
810
+ }
811
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-full:hover{
812
+ background-position:-528px 0;
813
+ }
814
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-full:hover{
815
+ background-position:-770px 0;
816
+ }
817
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-exitfull{
818
+ background-position:-672px 0;
819
+ display: none;
820
+ }
821
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-exitfull{
822
+ background-position:-840px 0;
823
+ }
824
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-fullandexit .ck-btn-exitfull:hover{
825
+ background-position:-720px 0;
826
+ }
827
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-fullandexit .ck-btn-exitfull:hover{
828
+ background-position:-910px 0;
829
+ }
830
+
831
+ /*网页全屏按钮组*/
832
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit{
833
+ float: right;
834
+ }
835
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-webfull{
836
+ background-position:-768px 0;
837
+ }
838
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-webfull{
839
+ background-position:-1120px 0;
840
+ }
841
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-webfull:hover{
842
+ background-position:-816px 0;
843
+ }
844
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-webfull:hover{
845
+ background-position:-1190px 0;
846
+ }
847
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull{
848
+ background-position:-864px 0;
849
+ display: none;
850
+ }
851
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull{
852
+ background-position:-1260px 0;
853
+ }
854
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull:hover{
855
+ background-position:-912px 0;
856
+ }
857
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-webfullandexit .ck-btn-exitwebfull:hover{
858
+ background-position:-1330px 0;
859
+ }
860
+
861
+ /*剧场模式按钮组*/
862
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit{
863
+ float: right;
864
+ }
865
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-theatre{
866
+ background-position:-960px 0;
867
+ }
868
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-theatre{
869
+ background-position:-1400px 0;
870
+ }
871
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-theatre:hover{
872
+ background-position:-1008px 0;
873
+ }
874
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-theatre:hover{
875
+ background-position:-1470px 0;
876
+ }
877
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre{
878
+ background-position:-1056px 0;
879
+ display: none;
880
+ }
881
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre{
882
+ background-position:-1540px 0;
883
+ }
884
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre:hover{
885
+ background-position:-1104px 0;
886
+ }
887
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-theatreandexit .ck-btn-exittheatre:hover{
888
+ background-position:-1610px 0;
889
+ }
890
+ /*播放速度*/
891
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box{
892
+ float: right;
893
+ height: 48px;
894
+ line-height: 48px;
895
+ position: relative;
896
+ cursor: pointer;
897
+ }
898
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playbackrate-box{
899
+ height: 70px;
900
+ line-height: 70px;
901
+ }
902
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate{
903
+ height: 100%;
904
+ padding: 0 10px;
905
+ white-space:nowrap;
906
+ font-size: 16px;
907
+ color: #FFF;
908
+ -moz-user-select:none; /*火狐*/
909
+ -webkit-user-select:none; /*webkit浏览器*/
910
+ -ms-user-select:none; /*IE10*/
911
+ -khtml-user-select:none; /*早期浏览器*/
912
+ user-select:none;
913
+ }
914
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate{
915
+ font-size: 18px;
916
+ }
917
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate:hover{
918
+ color: #e80101;
919
+ }
920
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box .ck-bar-playbackrate-bg-box {
921
+ width: auto;
922
+ height: auto;
923
+ }
924
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-playbackrate-box:hover .ck-bar-playbackrate-bg-box {
925
+ display: block;
926
+ }
927
+ /*字幕*/
928
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-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-track-box{
936
+ height: 70px;
937
+ line-height: 70px;
938
+ }
939
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track{
940
+ height: 100%;
941
+ padding: 0 10px;
942
+ white-space:nowrap;
943
+ font-size: 16px;
944
+ color: #FFF;
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-track-box .ck-bar-track{
952
+ font-size: 18px;
953
+ }
954
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track:hover{
955
+ color: #0368d0;
956
+ }
957
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box .ck-bar-track-bg-box {
958
+ width: auto;
959
+ height: auto;
960
+ }
961
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-track-box:hover .ck-bar-track-bg-box {
962
+ display: block;
963
+ }
964
+ /*清晰度*/
965
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-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-definition-box{
973
+ height: 70px;
974
+ line-height: 70px;
975
+ }
976
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition{
977
+ height: 100%;
978
+ padding: 0 10px;
979
+ white-space:nowrap;
980
+ font-size: 16px;
981
+ color: #FFF;
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-definition-box .ck-bar-definition{
989
+ font-size: 18px;
990
+ }
991
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition:hover{
992
+ color: #e80101;
993
+ }
994
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box .ck-bar-definition-bg-box {
995
+ width: auto;
996
+ height: auto;
997
+ }
998
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-definition-box:hover .ck-bar-definition-bg-box {
999
+ display: block;
1000
+ }
1001
+ /*列表切换*/
1002
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box {
1003
+ background: rgba(0,0,0,.001);
1004
+ position: absolute;
1005
+ z-index: 1;
1006
+ bottom: 46px;
1007
+ display: none;
1008
+ -webkit-animation-duration: .2s;
1009
+ animation-duration: .2s;
1010
+ -webkit-animation-name: ck-bounceIn;
1011
+ animation-name: ck-bounceIn;
1012
+ }
1013
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box {
1014
+ bottom: 68px;
1015
+ }
1016
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg{
1017
+ background: rgba(0,0,0,.6);
1018
+ float: left;
1019
+ border-radius: 5px;
1020
+ padding: 10px;
1021
+ margin-bottom: 10px;
1022
+ }
1023
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p{
1024
+ width: 100%;
1025
+ float: left;
1026
+ line-height: 35px;
1027
+ color: #FFF;
1028
+ text-align: center;
1029
+ font-size: 14px;
1030
+ background-color: rgba(0,0,0,0);
1031
+ border: 0px;
1032
+ white-space:nowrap;
1033
+ cursor: pointer;
1034
+ }
1035
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p:hover{
1036
+ color: #e80101;
1037
+ font-size: 16px;
1038
+ }
1039
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p:hover{
1040
+ font-size: 20px;
1041
+ }
1042
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p{
1043
+ font-size: 18px;
1044
+ }
1045
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-list-bg-box .ck-list-bg .ck-list-p-focus{
1046
+ color: #FF0302;
1047
+ }
1048
+ /*下一集按钮*/
1049
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-next{
1050
+ float: left;
1051
+ background-position:-672px 0;
1052
+ }
1053
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-next{
1054
+ background-position:-980px 0;
1055
+ }
1056
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-next:hover{
1057
+ background-position:-720px 0;
1058
+ }
1059
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-next:hover{
1060
+ background-position:-1050px 0;
1061
+ }
1062
+ /*进度栏*/
1063
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress{
1064
+ width: 100%;
1065
+ position:absolute;
1066
+ z-index: 1;
1067
+ height: 12px;
1068
+ top:-11px;
1069
+ transition: 0.2s;
1070
+ }
1071
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg{
1072
+ width: 100%;
1073
+ background: rgba(255,255,255,.3);
1074
+ margin-top: 2px;
1075
+ overflow: hidden;
1076
+ height: 10px;
1077
+ transition: .2s;
1078
+ cursor: pointer;
1079
+ }
1080
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-load{
1081
+ float: left;
1082
+ width: 0px;
1083
+ background: rgba(169,169,169,.7);
1084
+ height: 10px;
1085
+ transition: .2s;
1086
+ }
1087
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-play{
1088
+ width: 0px;
1089
+ background: #e80101;
1090
+ position: absolute;
1091
+ z-index: 1;
1092
+ height: 10px;
1093
+ transition: .2s;
1094
+ cursor: pointer;
1095
+ }
1096
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-mouseline{
1097
+ width: 3px;
1098
+ background: rgba(255,255,255,.6);
1099
+ position: absolute;
1100
+ z-index: 2;
1101
+ display: none;
1102
+ height: 10px;
1103
+ cursor: pointer;
1104
+ }
1105
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg .ck-bar-progress-prompt{
1106
+ background: #FFF;
1107
+ position: absolute;
1108
+ z-index: 3;
1109
+ border-radius: 50%;
1110
+ width: 10px;
1111
+ height: 10px;
1112
+ top:2px;
1113
+ transition: .2s;
1114
+ }
1115
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-slider{
1116
+ border-radius: 50%;
1117
+ overflow: hidden;
1118
+ position: relative;
1119
+ float: left;
1120
+ z-index: 4;
1121
+ left: 0px;
1122
+ cursor: pointer;
1123
+ width: 12px;
1124
+ height: 12px;
1125
+ top: -11px;
1126
+ background: #FFF;
1127
+ box-shadow: 0px 0px 0px 4px rgba(255,255,255,.5);
1128
+ }
1129
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-slider:hover{
1130
+ background: #e80101;
1131
+ }
1132
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress .ck-bar-progress-bg:hover .ck-bar-progress-mouseline{
1133
+ display: block;
1134
+ }
1135
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out{
1136
+ height: 2px;
1137
+ top:-2px;
1138
+ transition: .2s;
1139
+ }
1140
+ .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{
1141
+ height: 2px;
1142
+ transition: .2s;
1143
+ }
1144
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-slider{
1145
+ width: 12px;
1146
+ height: 2px;
1147
+ top: -2px;
1148
+ box-shadow: 0px 0px 0px 0px rgba(255,255,255,0);
1149
+ background: rgba(232,1,1,0);
1150
+ transition: .2s;
1151
+ }
1152
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-progress.ck-bar-progress-out .ck-bar-progress-bg .ck-bar-progress-prompt{
1153
+ height: 2px;
1154
+ border-radius: 0;
1155
+ transition: .2s;
1156
+ }
1157
+ .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{
1158
+ transition: 0s;
1159
+ }
1160
+
1161
+ /*音量调节栏*/
1162
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox{
1163
+ float: right;
1164
+ width: 48px;
1165
+ overflow-x: hidden;
1166
+ }
1167
+ /*音量调节栏*/
1168
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox{
1169
+ width: 70px;
1170
+ }
1171
+ /*默认状态-音量调节总外框*/
1172
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume{
1173
+ width: 48px;
1174
+ height: 215px;
1175
+ background: rgba(0,0,0,.01);
1176
+ position: absolute;
1177
+ z-index: 1;
1178
+ bottom: 46px;
1179
+ display: none;
1180
+ overflow: hidden;
1181
+ }
1182
+ /*全屏状态-音量调节总外框*/
1183
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-bar-volume{
1184
+ width: 70px;
1185
+ bottom: 68px;
1186
+ }
1187
+ /*默认状态-音量调节总外框-鼠标经过时样式*/
1188
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox:hover .ck-bar-volume{
1189
+ display: block;
1190
+ -webkit-animation-fill-mode: both;
1191
+ animation-fill-mode: both;
1192
+ -webkit-animation-duration: .1s;
1193
+ animation-duration: .1s;
1194
+ -webkit-animation-name: ck-bounceIn;
1195
+ animation-name: ck-bounceIn;
1196
+ }
1197
+ /*共用状态-音量调节内部外框*/
1198
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volumex{
1199
+ width: 100%;
1200
+ height: 200px;
1201
+ float: left;
1202
+ background: rgba(0,0,0,.8);
1203
+ border-radius: 5px;
1204
+ }
1205
+ /*共用状态-音量调节顶部文字*/
1206
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-txt{
1207
+ width: 100%;
1208
+ height: 40px;
1209
+ line-height: 40px;
1210
+ color: #FFF;
1211
+ text-align: center;
1212
+ font-size: 1rem;
1213
+ float: left;
1214
+ overflow: hidden;
1215
+ -moz-user-select:none; /*火狐*/
1216
+ -webkit-user-select:none; /*webkit浏览器*/
1217
+ -ms-user-select:none; /*IE10*/
1218
+ -khtml-user-select:none; /*早期浏览器*/
1219
+ user-select:none;
1220
+ }
1221
+ /*共用状态-音量调节背景色*/
1222
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-bg{
1223
+ width: 8px;
1224
+ height: 140px;
1225
+ background: #808080;
1226
+ border-radius: 3px;
1227
+ overflow: hidden;
1228
+ cursor: pointer;
1229
+ margin: auto;
1230
+ }
1231
+ /*共用状态-音量调节前景色*/
1232
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-bg .ck-bar-volume-pp{
1233
+ width: 8px;
1234
+ height: 140px;
1235
+ background: #e80101;
1236
+ margin-top: 140px;
1237
+ }
1238
+ /*共用状态-音量调节拖动小按钮*/
1239
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-slider{
1240
+ width: 10px;
1241
+ height: 10px;
1242
+ background: #FFF;
1243
+ border-radius: 50%;
1244
+ overflow: hidden;
1245
+ box-shadow: 0px 0px 0px 8px rgba(255,255,255,.5);
1246
+ position: absolute;
1247
+ z-index: 1;
1248
+ top: 0px;
1249
+ left: 19px;
1250
+ cursor: pointer;
1251
+ }
1252
+ /*全屏状态-音量调节拖动小按钮*/
1253
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-volumebox .ck-bar-volume .ck-bar-volume-slider{
1254
+ left: 30px;
1255
+ }
1256
+ /*默认状态-显示时间*/
1257
+ .ckplayer-ckplayer .ck-main .ck-bar .ck-bar-time{
1258
+ float: left;
1259
+ line-height: 48px;
1260
+ font-size: 16px;
1261
+ color: #FFF;
1262
+ -moz-user-select:none; /*火狐*/
1263
+ -webkit-user-select:none; /*webkit浏览器*/
1264
+ -ms-user-select:none; /*IE10*/
1265
+ -khtml-user-select:none; /*早期浏览器*/
1266
+ user-select:none;
1267
+ }
1268
+ /*全屏状态-显示时间*/
1269
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-bar .ck-bar-time{
1270
+ float: left;
1271
+ line-height: 70px;
1272
+ font-size: 18px;
1273
+ color: #FFF;
1274
+ }
1275
+ /*右侧控制栏*/
1276
+ .ckplayer-ckplayer .ck-main .ck-right-bar{
1277
+ position: absolute;
1278
+ z-index: 260;
1279
+ top: 0;
1280
+ right: 2px;
1281
+ bottom: 0;
1282
+ margin: auto !important;
1283
+ width: 48px;
1284
+ height: 144px;
1285
+ background: rgba(0,0,0,.3);
1286
+ border-radius: 5px;
1287
+ transition: .2s;
1288
+ }
1289
+ .ckplayer-ckplayer .ck-main .ck-right-bar-hide{
1290
+ right: -48px;
1291
+ transition: .2s;
1292
+ }
1293
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar{
1294
+ width: 70px;
1295
+ height: 210px;
1296
+ }
1297
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar-hide{
1298
+ right: -70px;
1299
+ transition: .2s;
1300
+ }
1301
+ /*截图按钮*/
1302
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-btn-screenshot{
1303
+ float: left;
1304
+ background-position:-1536px 0;
1305
+ }
1306
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-btn-screenshot{
1307
+ background-position:-2240px 0;
1308
+ }
1309
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-btn-screenshot:hover{
1310
+ background-position:-1584px 0;
1311
+ }
1312
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-btn-screenshot:hover{
1313
+ background-position:-2310px 0;
1314
+ }
1315
+ /*小窗口按钮组*/
1316
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows{
1317
+ float: left;
1318
+ }
1319
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows button{
1320
+ float: left;
1321
+ }
1322
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open{
1323
+ background-position:-1248px 0;
1324
+ }
1325
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open{
1326
+ background-position:-1820px 0;
1327
+ }
1328
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open:hover{
1329
+ background-position:-1296px 0;
1330
+ }
1331
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-open:hover{
1332
+ background-position:-1890px 0;
1333
+ }
1334
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close{
1335
+ background-position:-1152px 0;
1336
+ display: none;
1337
+ }
1338
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close{
1339
+ background-position:-1680px 0;
1340
+ }
1341
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close:hover{
1342
+ background-position:-1200px 0;
1343
+ }
1344
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-smallwindows .ck-btn-smallwindows-close:hover{
1345
+ background-position:-1750px 0;
1346
+ }
1347
+ /*循环按钮组*/
1348
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop{
1349
+ float: left;
1350
+ }
1351
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open{
1352
+ background-position:-1440px 0;
1353
+ }
1354
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open{
1355
+ background-position:-2100px 0;
1356
+ }
1357
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open:hover{
1358
+ background-position:-1488px 0;
1359
+ }
1360
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-open:hover{
1361
+ background-position:-2170px 0;
1362
+ }
1363
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close{
1364
+ background-position:-1344px 0;
1365
+ display: none;
1366
+ }
1367
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close{
1368
+ background-position:-1960px 0;
1369
+ }
1370
+ .ckplayer-ckplayer .ck-main .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close:hover{
1371
+ background-position:-1392px 0;
1372
+ }
1373
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-right-bar .ck-right-bar-loop .ck-btn-loop-close:hover{
1374
+ background-position:-2030px 0;
1375
+ }
1376
+ /*顶部显示栏*/
1377
+ .ckplayer-ckplayer .ck-main .ck-top-bar{
1378
+ position: absolute;
1379
+ z-index: 260;
1380
+ top: -36px;
1381
+ width: 100%;
1382
+ height: 36px;
1383
+ background: rgba(0,0,0,.3);
1384
+ transition: .2s;
1385
+ }
1386
+ .ckplayer-ckplayer .ck-main .ck-top-bar-hide{
1387
+ top: -36px;
1388
+ transition: .2s;
1389
+ }
1390
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-top-bar{
1391
+ top: 0;
1392
+ }
1393
+ .ckplayer-ckplayer .ck-main.ck-main-full .ck-top-bar-hide{
1394
+ top: -36px;
1395
+ transition: .2s;
1396
+ }
1397
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom{
1398
+ position: absolute;
1399
+ z-index: 260;
1400
+ }
1401
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container{
1402
+ float: left;
1403
+ margin-left: 10px;
1404
+ margin-top: 9px;
1405
+ cursor: pointer;
1406
+ }
1407
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-left{
1408
+ float: left;
1409
+ width: 20px;
1410
+ height: 18px;
1411
+ border: 1px solid #FFF;
1412
+ box-sizing:content-box;
1413
+ -moz-box-sizing:content-box; /* Firefox */
1414
+ -webkit-box-sizing:content-box; /* Safari */
1415
+ }
1416
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-left,
1417
+ .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{
1418
+ border-color: #e80101;
1419
+ }
1420
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-left div,
1421
+ .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{
1422
+ background: #e80101;
1423
+ }
1424
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container .ck-top-bar-zoom-right{
1425
+ float: left;
1426
+ font-size: 14px;
1427
+ color: #FFF;
1428
+ padding-left: 5px;
1429
+ }
1430
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-zoom .ck-top-bar-zoom-container:hover .ck-top-bar-zoom-right,
1431
+ .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{
1432
+ color: #e80101;
1433
+ }
1434
+ .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{
1435
+ width: 50%;
1436
+ height: 50%;
1437
+ background: #FFF;
1438
+ margin: 4.5px 25%;
1439
+ }
1440
+ .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{
1441
+ width: 75%;
1442
+ height: 50%;
1443
+ background: #FFF;
1444
+ margin: 4.5px 12.5%;
1445
+ }
1446
+ .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{
1447
+ width: 100%;
1448
+ height: 50%;
1449
+ background: #FFF;
1450
+ margin: 4.5px 0;
1451
+ }
1452
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-title{
1453
+ position: absolute;
1454
+ z-index: 1;
1455
+ top: 0px;
1456
+ width: 100%;
1457
+ height: 36px;
1458
+ line-height: 36px;
1459
+ text-align: center;
1460
+ font-size: 18px;
1461
+ color: #FFF;
1462
+ -moz-user-select:none; /*火狐*/
1463
+ -webkit-user-select:none; /*webkit浏览器*/
1464
+ -ms-user-select:none; /*IE10*/
1465
+ -khtml-user-select:none; /*早期浏览器*/
1466
+ user-select:none;
1467
+ }
1468
+ .ckplayer-ckplayer .ck-main .ck-top-bar .ck-top-bar-time{
1469
+ float: right;
1470
+ height: 36px;
1471
+ line-height: 36px;
1472
+ font-size: 14px;
1473
+ color: #FFF;
1474
+ padding: 0 1rem 0;
1475
+ -moz-user-select:none; /*火狐*/
1476
+ -webkit-user-select:none; /*webkit浏览器*/
1477
+ -ms-user-select:none; /*IE10*/
1478
+ -khtml-user-select:none; /*早期浏览器*/
1479
+ user-select:none;
1480
+ }
1481
+ /*以下为缓动效果样式*/
1482
+ .ck-animate {
1483
+ -webkit-animation-fill-mode: both;
1484
+ animation-fill-mode: both;
1485
+ -webkit-animation-duration: .3s;
1486
+ animation-duration: .3s;
1487
+ }
1488
+ .ck-animate-bouncein {
1489
+ -webkit-animation-name: ck-bounceIn;
1490
+ animation-name: ck-bounceIn;
1491
+ }
1492
+
1493
+ @-webkit-keyframes ck-bounceIn {
1494
+ 0% {
1495
+ opacity: 0;
1496
+ -webkit-transform: scale(.5);
1497
+ transform: scale(.5)
1498
+ }
1499
+ 100% {
1500
+ opacity: 1;
1501
+ -webkit-transform: scale(1);
1502
+ transform: scale(1);
1503
+ }
1504
+ }
1505
+
1506
+ @keyframes ck-bounceIn {
1507
+ 0% {
1508
+ opacity: 0;
1509
+ -webkit-transform: scale(.5);
1510
+ -ms-transform: scale(.5);
1511
+ transform: scale(.5);
1512
+ }
1513
+ 100% {
1514
+ opacity: 1;
1515
+ -webkit-transform: scale(1);
1516
+ -ms-transform: scale(1);
1517
+ transform: scale(1);
1518
+ }
1519
+ }
1520
+ .ck-animate-bounceout {
1521
+ -webkit-animation-name: ck-bounceOut;
1522
+ animation-name: ck-bounceOut;
1523
+ }
1524
+
1525
+ @-webkit-keyframes ck-bounceOut {
1526
+ 0% {
1527
+ opacity: 1;
1528
+ -webkit-transform: scale(1);
1529
+ transform: scale(1);
1530
+ }
1531
+ 100% {
1532
+ opacity: 0;
1533
+ -webkit-transform: scale(.5);
1534
+ transform: scale(.5);
1535
+ }
1536
+ }
1537
+
1538
+ @keyframes ck-bounceOut {
1539
+ 0% {
1540
+ opacity: 1;
1541
+ -webkit-transform: scale(1);
1542
+ transform: scale(1);
1543
+ }
1544
+ 100% {
1545
+ opacity: 0;
1546
+ -webkit-transform: scale(.5);
1547
+ transform: scale(.5);
1548
+ }
1549
+ }
1550
+ .ck-animate-circle {
1551
+ animation: ck-Circle 1s linear infinite;
1552
+ -webkit-animation: ck-Circle 1s linear infinite
1553
+ }
1554
+
1555
+ @-webkit-keyframes ck-Circle {
1556
+ 0% {
1557
+ transform: rotate(0deg);
1558
+ -webkit-transform: rotate(0deg);
1559
+ -ms-transform: rotate(0deg)
1560
+ }
1561
+ 25% {
1562
+ transform: rotate(90deg);
1563
+ -webkit-transform: rotate(90deg);
1564
+ -ms-transform: rotate(90deg)
1565
+ }
1566
+ 50% {
1567
+ transform: rotate(180deg);
1568
+ -webkit-transform: rotate(180deg);
1569
+ -ms-transform: rotate(180deg)
1570
+ }
1571
+ 75% {
1572
+ transform: rotate(270deg);
1573
+ -webkit-transform: rotate(270deg);
1574
+ -ms-transform: rotate(270deg)
1575
+ }
1576
+ 100% {
1577
+ transform: rotate(360deg);
1578
+ -webkit-transform: rotate(360deg);
1579
+ -ms-transform: rotate(360deg)
1580
+ }
1581
+ }
1582
+
1583
+ @keyframes ck-Circle {
1584
+ 0% {
1585
+ transform: rotate(0deg);
1586
+ -webkit-transform: rotate(0deg);
1587
+ -ms-transform: rotate(0deg)
1588
+ }
1589
+ 25% {
1590
+ transform: rotate(90deg);
1591
+ -webkit-transform: rotate(90deg);
1592
+ -ms-transform: rotate(90deg)
1593
+ }
1594
+ 50% {
1595
+ transform: rotate(180deg);
1596
+ -webkit-transform: rotate(180deg);
1597
+ -ms-transform: rotate(180deg)
1598
+ }
1599
+ 75% {
1600
+ transform: rotate(270deg);
1601
+ -webkit-transform: rotate(270deg);
1602
+ -ms-transform: rotate(270deg)
1603
+ }
1604
+ 100% {
1605
+ transform: rotate(360deg);
1606
+ -webkit-transform: rotate(360deg);
1607
+ -ms-transform: rotate(360deg)
1608
+ }
1609
+ }