@besovideo/webrtc-player 0.8.87 → 0.8.89

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.
@@ -0,0 +1,1064 @@
1
+ /* sass-plugin-1:G:\develop\bvweb-player\node_modules\.pnpm\tippy.js@6.3.7\node_modules\tippy.js\dist\tippy.css */
2
+ .tippy-box[data-animation=fade][data-state=hidden] {
3
+ opacity: 0;
4
+ }
5
+ [data-tippy-root] {
6
+ max-width: calc(100vw - 10px);
7
+ }
8
+ .tippy-box {
9
+ position: relative;
10
+ background-color: #333;
11
+ color: #fff;
12
+ border-radius: 4px;
13
+ font-size: 14px;
14
+ line-height: 1.4;
15
+ white-space: normal;
16
+ outline: 0;
17
+ transition-property:
18
+ transform,
19
+ visibility,
20
+ opacity;
21
+ }
22
+ .tippy-box[data-placement^=top] > .tippy-arrow {
23
+ bottom: 0;
24
+ }
25
+ .tippy-box[data-placement^=top] > .tippy-arrow:before {
26
+ bottom: -7px;
27
+ left: 0;
28
+ border-width: 8px 8px 0;
29
+ border-top-color: currentColor;
30
+ border-top-color: initial;
31
+ transform-origin: center top;
32
+ }
33
+ .tippy-box[data-placement^=bottom] > .tippy-arrow {
34
+ top: 0;
35
+ }
36
+ .tippy-box[data-placement^=bottom] > .tippy-arrow:before {
37
+ top: -7px;
38
+ left: 0;
39
+ border-width: 0 8px 8px;
40
+ border-bottom-color: currentColor;
41
+ border-bottom-color: initial;
42
+ transform-origin: center bottom;
43
+ }
44
+ .tippy-box[data-placement^=left] > .tippy-arrow {
45
+ right: 0;
46
+ }
47
+ .tippy-box[data-placement^=left] > .tippy-arrow:before {
48
+ border-width: 8px 0 8px 8px;
49
+ border-left-color: currentColor;
50
+ border-left-color: initial;
51
+ right: -7px;
52
+ transform-origin: center left;
53
+ }
54
+ .tippy-box[data-placement^=right] > .tippy-arrow {
55
+ left: 0;
56
+ }
57
+ .tippy-box[data-placement^=right] > .tippy-arrow:before {
58
+ left: -7px;
59
+ border-width: 8px 8px 8px 0;
60
+ border-right-color: currentColor;
61
+ border-right-color: initial;
62
+ transform-origin: center right;
63
+ }
64
+ .tippy-box[data-inertia][data-state=visible] {
65
+ transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
66
+ }
67
+ .tippy-arrow {
68
+ width: 16px;
69
+ height: 16px;
70
+ color: #333;
71
+ }
72
+ .tippy-arrow:before {
73
+ content: "";
74
+ position: absolute;
75
+ border-color: transparent;
76
+ border-style: solid;
77
+ }
78
+ .tippy-content {
79
+ position: relative;
80
+ padding: 5px 9px;
81
+ z-index: 1;
82
+ }
83
+
84
+ /* sass-plugin-1:G:\develop\bvweb-player\node_modules\.pnpm\tippy.js@6.3.7\node_modules\tippy.js\animations\shift-away.css */
85
+ .tippy-box[data-animation=shift-away][data-state=hidden] {
86
+ opacity: 0;
87
+ }
88
+ .tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
89
+ transform: translateY(10px);
90
+ }
91
+ .tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
92
+ transform: translateY(-10px);
93
+ }
94
+ .tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
95
+ transform: translateX(10px);
96
+ }
97
+ .tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
98
+ transform: translateX(-10px);
99
+ }
100
+
101
+ /* sass-plugin-1:G:\develop\bvweb-player\src\styles\contextmenu.css */
102
+ .cm_container {
103
+ position: absolute;
104
+ opacity: 0;
105
+ transform: scale(0);
106
+ transition: transform 0.1s;
107
+ transform-origin: top left;
108
+ padding: 0;
109
+ }
110
+ .cm_container.display {
111
+ opacity: 1;
112
+ transform: scale(1);
113
+ }
114
+ .cm_container,
115
+ .cm_container * {
116
+ box-sizing: border-box;
117
+ }
118
+ .cm_container * {
119
+ position: relative;
120
+ }
121
+ .cm_container ul {
122
+ list-style-type: none;
123
+ padding: 0;
124
+ margin: 0;
125
+ color: white;
126
+ background-color: rgba(22, 27, 29, 0.8);
127
+ font-size: 14px;
128
+ box-shadow: 0 0 5px #333;
129
+ }
130
+ .cm_container li {
131
+ padding: 5px 10px;
132
+ padding-right: 1.7em;
133
+ cursor: pointer;
134
+ white-space: nowrap;
135
+ }
136
+ .cm_container li:hover {
137
+ background-color: rgba(85, 87, 88, 0.3);
138
+ }
139
+ .cm_container li .cm_icon_span {
140
+ width: 1.5em;
141
+ height: 1.2em;
142
+ vertical-align: bottom;
143
+ display: inline-block;
144
+ border-right: 1px solid #aaa;
145
+ margin-right: 5px;
146
+ padding-right: 5px;
147
+ text-align: center;
148
+ }
149
+ .cm_container li .cm_sub_span {
150
+ width: 1em;
151
+ display: inline-block;
152
+ text-align: center;
153
+ position: absolute;
154
+ top: 50%;
155
+ right: 0.5em;
156
+ transform: translateY(-50%);
157
+ }
158
+ .cm_container li > ul {
159
+ position: absolute;
160
+ top: 0;
161
+ left: 100%;
162
+ opacity: 0;
163
+ transition: opacity 0.2s;
164
+ visibility: hidden;
165
+ }
166
+ .cm_container li:hover > ul {
167
+ opacity: 1;
168
+ visibility: visible;
169
+ }
170
+ .cm_container li.cm_divider {
171
+ border-bottom: 1px solid #aaa;
172
+ margin: 5px;
173
+ padding: 0;
174
+ cursor: default;
175
+ }
176
+ .cm_container li.cm_divider:hover {
177
+ background-color: inherit;
178
+ }
179
+ .cm_container.cm_border_right > ul ul {
180
+ left: unset;
181
+ right: 100%;
182
+ }
183
+ .cm_container.cm_border_bottom > ul ul {
184
+ top: unset;
185
+ bottom: 0;
186
+ }
187
+ .cm_container li[disabled=""] {
188
+ color: #777;
189
+ cursor: default;
190
+ }
191
+ .cm_container li[disabled=""]:hover {
192
+ background-color: inherit;
193
+ }
194
+
195
+ /* sass-plugin-1:G:\develop\bvweb-player\src\styles\main.scss */
196
+ .bvplayer-common-flex-space {
197
+ display: inline-block;
198
+ flex: 1;
199
+ }
200
+ .tippy-box[data-theme~=bvplayer] {
201
+ background-color: #2e3e4e;
202
+ color: rgba(255, 255, 255, 0.8);
203
+ padding: 0;
204
+ margin: 0;
205
+ }
206
+ .tippy-box[data-theme~=bvplayer] .tippy-content {
207
+ font-size: 12px;
208
+ }
209
+ .tippy-box[data-theme~=bvplayer] .tippy-arrow {
210
+ outline: none;
211
+ }
212
+ .tippy-box[data-theme~=bvplayer][data-placement^=right] .tippy-content {
213
+ padding: 0px 5px;
214
+ }
215
+ .tippy-box[data-theme~=bvplayer][data-placement^=right] .tippy-arrow::before {
216
+ transform: translateY(-2px) scale(0.65);
217
+ border-right-color: #2e3e4e;
218
+ }
219
+ .tippy-box[data-theme~=bvplayer][data-placement^=top] .tippy-content {
220
+ padding: 3px 5px;
221
+ }
222
+ .tippy-box[data-theme~=bvplayer][data-placement^=top] .tippy-arrow::before {
223
+ border-top-color: #2e3e4e;
224
+ }
225
+ .bvplayer-icon {
226
+ display: inline-block;
227
+ height: 22px;
228
+ width: 100%;
229
+ vertical-align: middle;
230
+ }
231
+ .bvplayer-icon svg {
232
+ height: 100%;
233
+ width: 100%;
234
+ }
235
+ .bvplayer-button {
236
+ cursor: pointer;
237
+ -webkit-appearance: none;
238
+ appearance: none;
239
+ outline: none;
240
+ border: 0;
241
+ line-height: 0;
242
+ display: inline-block;
243
+ padding: 3px 5px;
244
+ border-radius: 5px;
245
+ color: inherit;
246
+ }
247
+ .bvplayer-button .bvplayer-icon {
248
+ height: 1em;
249
+ }
250
+ .bvplayer-button--text {
251
+ background: none;
252
+ }
253
+ .bvplayer-button--default {
254
+ outline: none;
255
+ }
256
+ .bvplayer-button--primary {
257
+ color: rgba(255, 255, 255, 0.8);
258
+ background-color: rgba(46, 62, 78, 0.6);
259
+ }
260
+ .bvplayer-input {
261
+ font-size: inherit;
262
+ font-family: inherit;
263
+ padding: 2px 4px;
264
+ background-color: #fff;
265
+ border: 1px solid #8b8a8b;
266
+ border-radius: 3px;
267
+ transition: box-shadow 180ms ease-in-out;
268
+ }
269
+ .bvplayer-input:not(textarea) {
270
+ line-height: 1;
271
+ }
272
+ .bvplayer-input[readonly] {
273
+ cursor: not-allowed;
274
+ border-style: dotted;
275
+ color: #777;
276
+ }
277
+ .bvplayer-input[disabled] {
278
+ border-color: #ccc;
279
+ background-color: #eee;
280
+ cursor: not-allowed;
281
+ }
282
+ .bvplayer-input:focus {
283
+ border-color: #68747d;
284
+ box-shadow: 0 0 3px 1px rgba(213, 217, 220, 0.5);
285
+ outline: 1px solid transparent;
286
+ }
287
+ .bvplayer-modal {
288
+ position: absolute;
289
+ top: 0;
290
+ left: 0;
291
+ padding: 12px 16px;
292
+ font-size: 14px;
293
+ border: 1px solid #2b303b;
294
+ border-radius: 3px;
295
+ background: rgba(22, 27, 29, 0.8);
296
+ color: #ffffff;
297
+ box-shadow: 0 0px 20px -6px rgba(0, 0, 0, 0.7);
298
+ -webkit-backdrop-filter: blur(8px);
299
+ backdrop-filter: blur(8px);
300
+ overflow: hidden;
301
+ visibility: hidden;
302
+ opacity: 0;
303
+ transform: scale(0);
304
+ will-change: transform, opacity;
305
+ transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
306
+ pointer-events: none;
307
+ }
308
+ .bvplayer-modal.bvplayer-common-is-visible {
309
+ visibility: visible;
310
+ opacity: 1;
311
+ transform: scale(1);
312
+ transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
313
+ }
314
+ .bvplayer-modal--center {
315
+ top: 50%;
316
+ left: 50%;
317
+ margin: auto;
318
+ transform: translate(-50%, -50%) scale(0);
319
+ }
320
+ .bvplayer-modal--center.bvplayer-common-is-visible {
321
+ transform: translate(-50%, -50%);
322
+ }
323
+ .bvplayer-modal_title-bar {
324
+ display: flex;
325
+ justify-content: space-between;
326
+ margin-bottom: 8px;
327
+ font-size: 16px;
328
+ }
329
+ .bvplayer-modal_title-bar_close {
330
+ cursor: pointer;
331
+ pointer-events: auto;
332
+ }
333
+ .bvplayer-modal_body {
334
+ padding: 8px;
335
+ overflow: hidden;
336
+ overflow-y: auto;
337
+ }
338
+ .bvplayer-spinner {
339
+ position: absolute;
340
+ top: 0;
341
+ left: 0;
342
+ height: 100%;
343
+ width: 100%;
344
+ }
345
+ .bvplayer-spinner > span {
346
+ display: inline-block;
347
+ position: absolute;
348
+ top: 50%;
349
+ left: 50%;
350
+ margin: -18px 0 0 -18px;
351
+ height: 36px;
352
+ width: 36px;
353
+ -webkit-mask-repeat: no-repeat;
354
+ mask-repeat: no-repeat;
355
+ -webkit-mask-position: center;
356
+ mask-position: center;
357
+ -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%0D%0A viewBox="0 0 24 30" style="enable-background:new 0 0 50 50" xml:space="preserve">%0D%0A <rect x="0" y="7.6416" width="4" height="14.7168" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A <rect x="8" y="5.1416" width="4" height="19.7168" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A <rect x="16" y="7.3584" width="4" height="15.2832" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A </svg>');
358
+ mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%0D%0A viewBox="0 0 24 30" style="enable-background:new 0 0 50 50" xml:space="preserve">%0D%0A <rect x="0" y="7.6416" width="4" height="14.7168" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A <rect x="8" y="5.1416" width="4" height="19.7168" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0.15s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A <rect x="16" y="7.3584" width="4" height="15.2832" opacity="0.2">%0D%0A <animate attributeName="opacity" attributeType="XML" values="0.2; 1; .2" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="height" attributeType="XML" values="10; 20; 10" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A <animate attributeName="y" attributeType="XML" values="10; 5; 10" begin="0.3s" dur="0.6s"%0D%0A repeatCount="indefinite"></animate>%0D%0A </rect>%0D%0A </svg>');
359
+ }
360
+ .bvplayer-spinner > span svg {
361
+ height: 100%;
362
+ }
363
+ .bvplayer-mask {
364
+ height: 100%;
365
+ width: 100%;
366
+ position: absolute;
367
+ top: 0;
368
+ left: 0;
369
+ display: grid;
370
+ align-content: center;
371
+ justify-content: center;
372
+ place-content: center;
373
+ background-color: #000000;
374
+ color: #fff;
375
+ font-size: 14px;
376
+ }
377
+ .bvplayer-slider {
378
+ cursor: pointer;
379
+ position: relative;
380
+ width: 100%;
381
+ height: 3px;
382
+ line-height: 3px;
383
+ background: #aaa;
384
+ transition: all 0.3s ease-in-out;
385
+ }
386
+ .bvplayer-slider_inner {
387
+ position: absolute;
388
+ bottom: 0;
389
+ left: 0;
390
+ height: 100%;
391
+ transition: all 0.1s ease;
392
+ background: #fff;
393
+ }
394
+ .bvplayer-slider_thumb {
395
+ cursor: pointer;
396
+ position: absolute;
397
+ top: 0;
398
+ right: 5px;
399
+ margin-top: -4px;
400
+ margin-right: -10px;
401
+ height: 11px;
402
+ width: 11px;
403
+ border-radius: 50%;
404
+ transition: all 0.3s ease-in-out;
405
+ background: #fff;
406
+ }
407
+ .bvplayer-slider_suffix {
408
+ position: absolute;
409
+ visibility: visible;
410
+ display: inline-block;
411
+ width: calc(100% + 28px);
412
+ text-align: right;
413
+ color: #fff;
414
+ opacity: 0.8;
415
+ font-size: 12px;
416
+ }
417
+ .bvplayer-toast {
418
+ position: absolute;
419
+ top: 0;
420
+ left: 0;
421
+ height: 100%;
422
+ width: 100%;
423
+ }
424
+ .bvplayer-toast > span {
425
+ display: inline-block;
426
+ position: absolute;
427
+ left: calc(50% - 100px);
428
+ bottom: 72px;
429
+ margin: -18px 0 0 0px;
430
+ height: 32px;
431
+ width: 200px;
432
+ line-height: 32px;
433
+ -webkit-mask-repeat: no-repeat;
434
+ mask-repeat: no-repeat;
435
+ -webkit-mask-position: center;
436
+ mask-position: center;
437
+ text-align: center;
438
+ border-radius: 5px;
439
+ font-size: 14px;
440
+ }
441
+ .bvplayer-recordState {
442
+ position: absolute;
443
+ top: 0;
444
+ left: 0;
445
+ }
446
+ .bvplayer-recordState > span {
447
+ display: inline-block;
448
+ position: absolute;
449
+ left: 10px;
450
+ top: 10px;
451
+ height: 30px;
452
+ line-height: 32px;
453
+ font-size: 14px;
454
+ background-color: white;
455
+ width: 100px;
456
+ border-radius: 5px;
457
+ }
458
+ .bvplayer-video {
459
+ display: block;
460
+ box-sizing: border-box;
461
+ width: 100%;
462
+ height: 100%;
463
+ }
464
+ .bvplayer-video_screen {
465
+ pointer-events: none;
466
+ width: 100%;
467
+ height: 100%;
468
+ }
469
+ .bvplayer-controller {
470
+ position: absolute;
471
+ bottom: 0;
472
+ left: 0;
473
+ right: 0;
474
+ width: 100%;
475
+ height: 98px;
476
+ color: #fff;
477
+ -webkit-user-select: none;
478
+ user-select: none;
479
+ pointer-events: none;
480
+ visibility: hidden;
481
+ opacity: 0;
482
+ transform: translateY(100%);
483
+ will-change:
484
+ visibility,
485
+ opacity,
486
+ transform;
487
+ transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
488
+ }
489
+ .bvplayer-controller.bvplayer-common-is-visible {
490
+ visibility: visible;
491
+ opacity: 1;
492
+ transform: translateY(0);
493
+ }
494
+ .bvplayer-controller_mask {
495
+ position: absolute;
496
+ bottom: 0;
497
+ height: 100%;
498
+ width: 100%;
499
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==) repeat-x bottom;
500
+ }
501
+ .bvplayer-controller_inner {
502
+ position: absolute;
503
+ bottom: 0;
504
+ left: 0;
505
+ right: 0;
506
+ width: 100%;
507
+ height: 41px;
508
+ padding: 0 20px;
509
+ display: flex;
510
+ align-items: stretch;
511
+ justify-content: space-between;
512
+ }
513
+ .bvplayer-controller_inner_bar {
514
+ display: block;
515
+ }
516
+ .bvplayer-controller_inner_bar * {
517
+ vertical-align: middle;
518
+ pointer-events: auto;
519
+ }
520
+ .bvplayer-controller_inner_left {
521
+ cursor: default;
522
+ }
523
+ .bvplayer-controller_inner_right {
524
+ cursor: default;
525
+ }
526
+ .bvplayer-controller_button {
527
+ cursor: pointer;
528
+ display: inline-block;
529
+ -webkit-appearance: none;
530
+ appearance: none;
531
+ width: 36px;
532
+ height: 100%;
533
+ border: none;
534
+ outline: none;
535
+ padding: 0px;
536
+ background: none;
537
+ color: inherit;
538
+ }
539
+ .bvplayer-controller_button:not(:last-child) {
540
+ margin-right: 8px;
541
+ }
542
+ .bvplayer-controller_button > * {
543
+ transition: all 0.2s ease-in-out;
544
+ opacity: 0.8;
545
+ }
546
+ .bvplayer-controller_button:hover > * {
547
+ opacity: 1;
548
+ }
549
+ .bvplayer-controller_volume {
550
+ display: inline-block;
551
+ }
552
+ .bvplayer-controller_volume--active .bvplayer-slider,
553
+ .bvplayer-controller_volume:hover .bvplayer-slider {
554
+ width: 45px !important;
555
+ }
556
+ .bvplayer-controller_volume--active .bvplayer-slider_thumb,
557
+ .bvplayer-controller_volume:hover .bvplayer-slider_thumb {
558
+ transform: scale(1) !important;
559
+ }
560
+ .bvplayer-controller_volume--active .bvplayer-slider_suffix,
561
+ .bvplayer-controller_volume:hover .bvplayer-slider_suffix {
562
+ visibility: visible;
563
+ }
564
+ .bvplayer-controller_volume .bvplayer-controller_button {
565
+ margin-right: 5px;
566
+ }
567
+ .bvplayer-controller_volume .bvplayer-slider {
568
+ display: inline-block;
569
+ width: 0;
570
+ }
571
+ .bvplayer-controller_volume .bvplayer-slider_thumb {
572
+ transform: scale(0);
573
+ }
574
+ .bvplayer-controller_volume .bvplayer-slider_suffix {
575
+ visibility: hidden;
576
+ }
577
+ .bvplayer-ptz {
578
+ position: absolute;
579
+ top: 0;
580
+ left: 0;
581
+ width: 100%;
582
+ height: 100%;
583
+ pointer-events: none;
584
+ visibility: hidden;
585
+ }
586
+ .bvplayer-ptz.bvplayer-common-is-visible {
587
+ visibility: visible;
588
+ }
589
+ .bvplayer-ptz.bvplayer-common-is-visible .bvplayer-ptz_control {
590
+ opacity: 1;
591
+ transform: translate(-50%, 0);
592
+ }
593
+ .bvplayer-ptz-control-button {
594
+ cursor: pointer;
595
+ -webkit-appearance: none;
596
+ appearance: none;
597
+ outline: none;
598
+ border: 0;
599
+ padding: 3px 5px;
600
+ border-radius: 3px;
601
+ overflow: hidden;
602
+ color: rgba(255, 255, 255, 0.8);
603
+ opacity: 1;
604
+ transform: scale(1);
605
+ transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
606
+ }
607
+ .bvplayer-ptz-control-button--press {
608
+ transform: scale(0.9);
609
+ opacity: 0.8;
610
+ }
611
+ .bvplayer-ptz-speed-slider {
612
+ width: 20px;
613
+ height: 100%;
614
+ display: inline-block;
615
+ -webkit-user-select: none;
616
+ user-select: none;
617
+ }
618
+ .bvplayer-ptz-speed-slider_header,
619
+ .bvplayer-ptz-speed-slider_footer {
620
+ position: relative;
621
+ font-size: 12px;
622
+ }
623
+ .bvplayer-ptz-speed-slider_header::before,
624
+ .bvplayer-ptz-speed-slider_footer::before {
625
+ content: "";
626
+ position: absolute;
627
+ bottom: 0;
628
+ left: 0;
629
+ width: 100%;
630
+ border-bottom: 1px solid rgba(255, 255, 255, 0.45);
631
+ transform: scaleX(0.3);
632
+ }
633
+ .bvplayer-ptz-speed-slider_header::after,
634
+ .bvplayer-ptz-speed-slider_footer::after {
635
+ content: attr(data-text);
636
+ position: absolute;
637
+ font-size: 12px;
638
+ opacity: 0.8;
639
+ }
640
+ .bvplayer-ptz-speed-slider_header {
641
+ margin-bottom: 1px;
642
+ }
643
+ .bvplayer-ptz-speed-slider_header::after {
644
+ right: -20px;
645
+ top: -7px;
646
+ }
647
+ .bvplayer-ptz-speed-slider_footer {
648
+ margin-top: 1px;
649
+ }
650
+ .bvplayer-ptz-speed-slider_footer::after {
651
+ right: -10px;
652
+ top: -10px;
653
+ }
654
+ .bvplayer-ptz-speed-slider_main {
655
+ height: 100%;
656
+ position: relative;
657
+ overflow: hidden;
658
+ text-align: center;
659
+ }
660
+ .bvplayer-ptz-speed-slider-track {
661
+ display: inline-block;
662
+ width: 2px;
663
+ height: 100%;
664
+ background-color: rgba(255, 255, 255, 0.45);
665
+ border-radius: 3px;
666
+ }
667
+ .bvplayer-ptz-speed-slider-thumb {
668
+ cursor: pointer;
669
+ display: inline-block;
670
+ position: absolute;
671
+ top: 0;
672
+ left: 50%;
673
+ transform: translateX(-50%);
674
+ display: flex;
675
+ padding: 4px 5px;
676
+ border-radius: 2px;
677
+ background-color: #2e3e4e;
678
+ color: rgba(255, 255, 255, 0.8);
679
+ box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 4px, rgba(0, 0, 0, 0.25) 0px 2px 4px;
680
+ }
681
+ .bvplayer-ptz-speed-slider-thumb span {
682
+ display: inline-block;
683
+ height: 4px;
684
+ width: 1px;
685
+ background-color: white;
686
+ }
687
+ .bvplayer-ptz-speed-slider-thumb span:not(:last-child) {
688
+ margin-right: 3px;
689
+ }
690
+ .bvplayer-ptz_control {
691
+ opacity: 0;
692
+ pointer-events: auto;
693
+ position: absolute;
694
+ left: 50%;
695
+ bottom: 40px;
696
+ transform: translate(-50%, calc(100% + 40px));
697
+ will-change: transform opacity;
698
+ transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
699
+ display: flex;
700
+ justify-content: space-between;
701
+ height: 30%;
702
+ min-height: 110px;
703
+ max-height: 150px;
704
+ width: 60%;
705
+ max-width: 380px;
706
+ overflow: hidden;
707
+ padding: 8px 12px;
708
+ font-size: 12px;
709
+ color: #fff;
710
+ background: rgba(22, 27, 29, 0.4);
711
+ -webkit-backdrop-filter: blur(5px);
712
+ backdrop-filter: blur(5px);
713
+ border: 1px solid rgba(255, 255, 255, 0.2);
714
+ border-radius: 3px;
715
+ box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.7);
716
+ }
717
+ .bvplayer-ptz_control > :not(:last-child) {
718
+ margin-right: 8px;
719
+ }
720
+ .bvplayer-ptz_control_direction-grid {
721
+ position: relative;
722
+ display: grid;
723
+ grid-template-rows: repeat(3, minmax(25px, 1fr));
724
+ grid-template-columns: repeat(3, minmax(25px, 1fr));
725
+ grid-gap: 8px;
726
+ gap: 8px;
727
+ width: 35%;
728
+ min-width: 100px;
729
+ max-width: 170px;
730
+ overflow: hidden;
731
+ }
732
+ .bvplayer-ptz_control_direction-grid_item {
733
+ outline: none;
734
+ }
735
+ .bvplayer-ptz_control_speed-option {
736
+ flex: 1;
737
+ overflow: hidden;
738
+ text-align: left;
739
+ padding: 6px 0;
740
+ }
741
+ .bvplayer-ptz_control_camera-option {
742
+ display: flex;
743
+ flex-direction: column;
744
+ justify-content: center;
745
+ overflow: hidden;
746
+ }
747
+ .bvplayer-ptz_control_camera-option_item {
748
+ white-space: nowrap;
749
+ }
750
+ .bvplayer-ptz_control_camera-option_item:not(:last-child) {
751
+ margin-bottom: 4%;
752
+ }
753
+ .bvplayer-ptz_control_camera-option_item_label {
754
+ display: inline-block;
755
+ width: 60px;
756
+ margin-right: 5px;
757
+ white-space: nowrap;
758
+ overflow: hidden;
759
+ text-overflow: ellipsis;
760
+ vertical-align: top;
761
+ text-align-last: justify;
762
+ }
763
+ .bvplayer-ptz_control_camera-option_item_value {
764
+ display: inline-block;
765
+ white-space: normal;
766
+ word-break: break-all;
767
+ }
768
+ .bvplayer-ptz_control_camera-option_item_value > :not(:last-child) {
769
+ margin-right: 8px;
770
+ }
771
+ .bvplayer-ptz_control_direction-button {
772
+ height: 100%;
773
+ width: 100%;
774
+ max-width: 60px;
775
+ max-height: 60px;
776
+ background-color: rgba(46, 62, 78, 0.8);
777
+ box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
778
+ }
779
+ .bvplayer-ptz_control_direction-button .bvplayer-icon {
780
+ height: 50%;
781
+ min-height: 18px;
782
+ }
783
+ .bvplayer-ptz_control_direction-button.bvplayer-ptz-control-button--press {
784
+ box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
785
+ }
786
+ .bvplayer-ptz_control_operator-button {
787
+ padding: 2px;
788
+ background-color: rgba(46, 62, 78, 0.8);
789
+ box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
790
+ }
791
+ .bvplayer-ptz_control_operator-button .bvplayer-icon {
792
+ height: 16px;
793
+ }
794
+ .bvplayer-ptz_control_close-button {
795
+ position: absolute;
796
+ top: 2px;
797
+ right: 2px;
798
+ font-size: 16px;
799
+ padding: 0;
800
+ will-change: transform;
801
+ transition: transform 0.3s;
802
+ }
803
+ .bvplayer-ptz_control_close-button:hover {
804
+ transform: scale(1.1);
805
+ }
806
+ .bvplayer-player {
807
+ position: relative;
808
+ height: 100%;
809
+ width: 100%;
810
+ background-color: #000;
811
+ overflow: hidden;
812
+ }
813
+ .bvplayer-player * {
814
+ box-sizing: border-box;
815
+ }
816
+ .bvplayer-player .bvplayer-video {
817
+ position: absolute;
818
+ }
819
+ .bvplayer-player .bvplayer-modal {
820
+ min-width: 120px;
821
+ min-height: 100px;
822
+ }
823
+ .bvplayer-player-fit--contain .bvplayer-video_screen {
824
+ -o-object-fit: contain;
825
+ object-fit: contain;
826
+ }
827
+ .bvplayer-player-fit--fill .bvplayer-video_screen {
828
+ -o-object-fit: fill;
829
+ object-fit: fill;
830
+ }
831
+ .bvplayer-player-fit--cover .bvplayer-video_screen {
832
+ -o-object-fit: cover;
833
+ object-fit: cover;
834
+ }
835
+ .bvplayer-player-fit--scale-down .bvplayer-video_screen {
836
+ -o-object-fit: scale-down;
837
+ object-fit: scale-down;
838
+ }
839
+ .bvplayer-player-fit--none .bvplayer-video_screen {
840
+ -o-object-fit: none;
841
+ object-fit: none;
842
+ }
843
+ .bvplayer-player_info-modal_content {
844
+ width: 280px;
845
+ min-height: 180px;
846
+ display: flex;
847
+ flex-direction: column;
848
+ }
849
+ .bvplayer-player_info-modal_section:not(:last-child) {
850
+ margin-bottom: 16px;
851
+ }
852
+ .bvplayer-player_info-modal_section_title {
853
+ display: inline-block;
854
+ font-weight: bold;
855
+ font-size: 12px;
856
+ margin-bottom: 8px;
857
+ margin-left: 16px;
858
+ position: absolute;
859
+ }
860
+ .bvplayer-player_info-modal_section_main {
861
+ width: 100%;
862
+ display: flex;
863
+ flex-direction: column;
864
+ align-items: end;
865
+ margin-left: 70px;
866
+ width: calc(100% - 70px);
867
+ }
868
+ .bvplayer-player_info-modal_list {
869
+ min-width: 210px;
870
+ font-size: 12px;
871
+ }
872
+ .bvplayer-player_info-modal_list_item {
873
+ white-space: nowrap;
874
+ }
875
+ .bvplayer-player_info-modal_list_item:not(:last-child) {
876
+ margin-bottom: 8px;
877
+ }
878
+ .bvplayer-player_info-modal_list_item_label {
879
+ display: inline-block;
880
+ width: 90px;
881
+ margin-right: 14px;
882
+ white-space: nowrap;
883
+ overflow: hidden;
884
+ text-overflow: ellipsis;
885
+ vertical-align: top;
886
+ }
887
+ .bvplayer-player_info-modal_list_item_value {
888
+ display: inline-block;
889
+ white-space: normal;
890
+ word-break: break-all;
891
+ }
892
+ .bvplayer-blaybackbar {
893
+ position: absolute;
894
+ top: 0;
895
+ left: 0;
896
+ height: 100%;
897
+ width: 100%;
898
+ }
899
+ .bvplayer-blaybackbar .right-options {
900
+ position: absolute;
901
+ right: 16px;
902
+ top: 14px;
903
+ }
904
+ .bvplayer-blaybackbar .optionsContent {
905
+ position: absolute;
906
+ right: 85px;
907
+ bottom: 30px;
908
+ padding: 10px 5px;
909
+ border-radius: 5px;
910
+ height: 130px;
911
+ background-color: white;
912
+ color: black;
913
+ display: none;
914
+ box-sizing: content-box;
915
+ }
916
+ .bvplayer-blaybackbar .options-item select {
917
+ vertical-align: text-bottom;
918
+ }
919
+ .bvplayer-blaybackbar .options-item {
920
+ text-align: center;
921
+ padding: 2px 12px;
922
+ -webkit-user-select: none;
923
+ user-select: none;
924
+ }
925
+ .bvplayer-blaybackbar .options-item[data-selected=true] {
926
+ background-color: #cfcfcf;
927
+ }
928
+ .bvplayer-blaybackbar .options-item:hover {
929
+ cursor: pointer;
930
+ background-color: #dfdfdf;
931
+ border-radius: 3px;
932
+ }
933
+ .bvplayer-blaybackbar .svg-sound {
934
+ color: white;
935
+ cursor: pointer;
936
+ display: inline-block;
937
+ width: -moz-fit-content;
938
+ width: fit-content;
939
+ vertical-align: super;
940
+ padding: 5px;
941
+ padding: 5px 8px;
942
+ border-radius: 15px;
943
+ }
944
+ .bvplayer-blaybackbar .svg-sound .range-input {
945
+ width: 0px;
946
+ vertical-align: middle;
947
+ margin-right: 2px;
948
+ transition: width 0.5s;
949
+ display: none;
950
+ }
951
+ .bvplayer-blaybackbar .svg-sound .range-input::-webkit-slider-thumb {
952
+ background: #ffffff;
953
+ }
954
+ .bvplayer-blaybackbar .svg-sound svg {
955
+ vertical-align: middle;
956
+ }
957
+ .bvplayer-blaybackbar .svg-sound:hover {
958
+ background-color: rgba(44, 44, 44, 0.61);
959
+ }
960
+ .bvplayer-blaybackbar .svg-sound:hover .range-input {
961
+ display: inline-block;
962
+ width: 60px;
963
+ margin-right: 10px;
964
+ }
965
+ .bvplayer-markerhandle {
966
+ height: 100%;
967
+ }
968
+ .bvplayer-markerhandle .mark-timeline-title > span {
969
+ width: 25%;
970
+ display: inline-block;
971
+ text-align: center;
972
+ font-weight: bolder;
973
+ color: #989898;
974
+ font-size: small;
975
+ line-height: 32px;
976
+ }
977
+ .bvplayer-markerhandle .mark-timeline-line {
978
+ border-bottom: 1px solid #e0e0e0;
979
+ }
980
+ .bvplayer-markerhandle .mark-timeline-line-content {
981
+ line-height: 40px;
982
+ }
983
+ .bvplayer-markerhandle .mark-timeline-line-content > span {
984
+ color: #858585;
985
+ }
986
+ .bvplayer-markerhandle .mark-timeline-line-content:hover {
987
+ background-color: #ecf5ff;
988
+ transition: background 0.3s;
989
+ }
990
+ .bvplayer-markerhandle .input-handle-marker {
991
+ padding-top: 5px;
992
+ }
993
+ .bvplayer-markerhandle .input-handle-marker .custom_input {
994
+ display: flex;
995
+ align-items: center;
996
+ position: relative;
997
+ max-width: 100%;
998
+ }
999
+ .bvplayer-markerhandle .input-handle-marker .input {
1000
+ font-size: 12px;
1001
+ padding: 0px 10px;
1002
+ margin-right: 5px;
1003
+ width: calc(100% - 240px);
1004
+ line-height: 30px;
1005
+ outline: none;
1006
+ background: #ffffff;
1007
+ color: #000000;
1008
+ border: 1px solid #c4d1eb;
1009
+ border-radius: 5px;
1010
+ transition: 0.3s ease;
1011
+ }
1012
+ .bvplayer-markerhandle .input-handle-marker .input:focus {
1013
+ background: #f2f2f2;
1014
+ border: 1px solid #6e98ec;
1015
+ border-radius: 5px;
1016
+ }
1017
+ .bvplayer-markerhandle .input-handle-marker .input::placeholder {
1018
+ color: #dddddd;
1019
+ }
1020
+ .bvplayer-markerhandle .input-handle-marker .show-wrapper {
1021
+ vertical-align: middle;
1022
+ margin-right: 5px;
1023
+ margin-left: 1px;
1024
+ cursor: pointer;
1025
+ }
1026
+ .bvplayer-markerhandle .testbutton {
1027
+ cursor: pointer;
1028
+ font-family: "times new roman";
1029
+ color: #02050a !important;
1030
+ font-size: 12px;
1031
+ text-shadow: 0px 0px 0px #7cacde;
1032
+ box-shadow: 0px 0px 0px #f5f5f5;
1033
+ padding: 7px 15px;
1034
+ border-radius: 3px;
1035
+ line-height: 16px;
1036
+ border: 1px solid #c4c4c4;
1037
+ background: #ffffff;
1038
+ }
1039
+ .bvplayer-markerhandle .testbutton:hover {
1040
+ color: #409eff !important;
1041
+ background: #ecf5ff;
1042
+ }
1043
+ .bvplayer-markerhandle .opt-controls {
1044
+ z-index: 1;
1045
+ padding: 5px 0px;
1046
+ border: 1px solid lightgray;
1047
+ border-radius: 4px;
1048
+ top: 36px;
1049
+ left: 5px;
1050
+ width: 80px;
1051
+ color: #bebebe;
1052
+ }
1053
+ .bvplayer-markerhandle .testbutton-noborder {
1054
+ border: 0px;
1055
+ }
1056
+ .bvplayer-markerhandle .marker-display-panel {
1057
+ position: absolute;
1058
+ top: 0px;
1059
+ left: 0px;
1060
+ height: 80%;
1061
+ width: 100%;
1062
+ pointer-events: none;
1063
+ overflow: hidden;
1064
+ }