diff --git a/index.html b/index.html
index 49446e4..f02ad9c 100644
--- a/index.html
+++ b/index.html
@@ -14,13 +14,9 @@
-
-
-
+
+
+
diff --git a/public/css/leaflet.css b/public/css/leaflet.css
new file mode 100644
index 0000000..9ade8dc
--- /dev/null
+++ b/public/css/leaflet.css
@@ -0,0 +1,661 @@
+/* required styles */
+
+.leaflet-pane,
+.leaflet-tile,
+.leaflet-marker-icon,
+.leaflet-marker-shadow,
+.leaflet-tile-container,
+.leaflet-pane > svg,
+.leaflet-pane > canvas,
+.leaflet-zoom-box,
+.leaflet-image-layer,
+.leaflet-layer {
+ position: absolute;
+ left: 0;
+ top: 0;
+ }
+.leaflet-container {
+ overflow: hidden;
+ }
+.leaflet-tile,
+.leaflet-marker-icon,
+.leaflet-marker-shadow {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ -webkit-user-drag: none;
+ }
+/* Prevents IE11 from highlighting tiles in blue */
+.leaflet-tile::selection {
+ background: transparent;
+}
+/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
+.leaflet-safari .leaflet-tile {
+ image-rendering: -webkit-optimize-contrast;
+ }
+/* hack that prevents hw layers "stretching" when loading new tiles */
+.leaflet-safari .leaflet-tile-container {
+ width: 1600px;
+ height: 1600px;
+ -webkit-transform-origin: 0 0;
+ }
+.leaflet-marker-icon,
+.leaflet-marker-shadow {
+ display: block;
+ }
+/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
+/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
+.leaflet-container .leaflet-overlay-pane svg {
+ max-width: none !important;
+ max-height: none !important;
+ }
+.leaflet-container .leaflet-marker-pane img,
+.leaflet-container .leaflet-shadow-pane img,
+.leaflet-container .leaflet-tile-pane img,
+.leaflet-container img.leaflet-image-layer,
+.leaflet-container .leaflet-tile {
+ max-width: none !important;
+ max-height: none !important;
+ width: auto;
+ padding: 0;
+ }
+
+.leaflet-container img.leaflet-tile {
+ /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
+ mix-blend-mode: plus-lighter;
+}
+
+.leaflet-container.leaflet-touch-zoom {
+ -ms-touch-action: pan-x pan-y;
+ touch-action: pan-x pan-y;
+ }
+.leaflet-container.leaflet-touch-drag {
+ -ms-touch-action: pinch-zoom;
+ /* Fallback for FF which doesn't support pinch-zoom */
+ touch-action: none;
+ touch-action: pinch-zoom;
+}
+.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
+ -ms-touch-action: none;
+ touch-action: none;
+}
+.leaflet-container {
+ -webkit-tap-highlight-color: transparent;
+}
+.leaflet-container a {
+ -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
+}
+.leaflet-tile {
+ filter: inherit;
+ visibility: hidden;
+ }
+.leaflet-tile-loaded {
+ visibility: inherit;
+ }
+.leaflet-zoom-box {
+ width: 0;
+ height: 0;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ z-index: 800;
+ }
+/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
+.leaflet-overlay-pane svg {
+ -moz-user-select: none;
+ }
+
+.leaflet-pane { z-index: 400; }
+
+.leaflet-tile-pane { z-index: 200; }
+.leaflet-overlay-pane { z-index: 400; }
+.leaflet-shadow-pane { z-index: 500; }
+.leaflet-marker-pane { z-index: 600; }
+.leaflet-tooltip-pane { z-index: 650; }
+.leaflet-popup-pane { z-index: 700; }
+
+.leaflet-map-pane canvas { z-index: 100; }
+.leaflet-map-pane svg { z-index: 200; }
+
+.leaflet-vml-shape {
+ width: 1px;
+ height: 1px;
+ }
+.lvml {
+ behavior: url(#default#VML);
+ display: inline-block;
+ position: absolute;
+ }
+
+
+/* control positioning */
+
+.leaflet-control {
+ position: relative;
+ z-index: 800;
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
+ pointer-events: auto;
+ }
+.leaflet-top,
+.leaflet-bottom {
+ position: absolute;
+ z-index: 1000;
+ pointer-events: none;
+ }
+.leaflet-top {
+ top: 0;
+ }
+.leaflet-right {
+ right: 0;
+ }
+.leaflet-bottom {
+ bottom: 0;
+ }
+.leaflet-left {
+ left: 0;
+ }
+.leaflet-control {
+ float: left;
+ clear: both;
+ }
+.leaflet-right .leaflet-control {
+ float: right;
+ }
+.leaflet-top .leaflet-control {
+ margin-top: 10px;
+ }
+.leaflet-bottom .leaflet-control {
+ margin-bottom: 10px;
+ }
+.leaflet-left .leaflet-control {
+ margin-left: 10px;
+ }
+.leaflet-right .leaflet-control {
+ margin-right: 10px;
+ }
+
+
+/* zoom and fade animations */
+
+.leaflet-fade-anim .leaflet-popup {
+ opacity: 0;
+ -webkit-transition: opacity 0.2s linear;
+ -moz-transition: opacity 0.2s linear;
+ transition: opacity 0.2s linear;
+ }
+.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
+ opacity: 1;
+ }
+.leaflet-zoom-animated {
+ -webkit-transform-origin: 0 0;
+ -ms-transform-origin: 0 0;
+ transform-origin: 0 0;
+ }
+svg.leaflet-zoom-animated {
+ will-change: transform;
+}
+
+.leaflet-zoom-anim .leaflet-zoom-animated {
+ -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
+ -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
+ transition: transform 0.25s cubic-bezier(0,0,0.25,1);
+ }
+.leaflet-zoom-anim .leaflet-tile,
+.leaflet-pan-anim .leaflet-tile {
+ -webkit-transition: none;
+ -moz-transition: none;
+ transition: none;
+ }
+
+.leaflet-zoom-anim .leaflet-zoom-hide {
+ visibility: hidden;
+ }
+
+
+/* cursors */
+
+.leaflet-interactive {
+ cursor: pointer;
+ }
+.leaflet-grab {
+ cursor: -webkit-grab;
+ cursor: -moz-grab;
+ cursor: grab;
+ }
+.leaflet-crosshair,
+.leaflet-crosshair .leaflet-interactive {
+ cursor: crosshair;
+ }
+.leaflet-popup-pane,
+.leaflet-control {
+ cursor: auto;
+ }
+.leaflet-dragging .leaflet-grab,
+.leaflet-dragging .leaflet-grab .leaflet-interactive,
+.leaflet-dragging .leaflet-marker-draggable {
+ cursor: move;
+ cursor: -webkit-grabbing;
+ cursor: -moz-grabbing;
+ cursor: grabbing;
+ }
+
+/* marker & overlays interactivity */
+.leaflet-marker-icon,
+.leaflet-marker-shadow,
+.leaflet-image-layer,
+.leaflet-pane > svg path,
+.leaflet-tile-container {
+ pointer-events: none;
+ }
+
+.leaflet-marker-icon.leaflet-interactive,
+.leaflet-image-layer.leaflet-interactive,
+.leaflet-pane > svg path.leaflet-interactive,
+svg.leaflet-image-layer.leaflet-interactive path {
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
+ pointer-events: auto;
+ }
+
+/* visual tweaks */
+
+.leaflet-container {
+ background: #ddd;
+ outline-offset: 1px;
+ }
+.leaflet-container a {
+ color: #0078A8;
+ }
+.leaflet-zoom-box {
+ border: 2px dotted #38f;
+ background: rgba(255,255,255,0.5);
+ }
+
+
+/* general typography */
+.leaflet-container {
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ font-size: 0.75rem;
+ line-height: 1.5;
+ }
+
+
+/* general toolbar styles */
+
+.leaflet-bar {
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
+ border-radius: 4px;
+ }
+.leaflet-bar a {
+ background-color: #fff;
+ border-bottom: 1px solid #ccc;
+ width: 26px;
+ height: 26px;
+ line-height: 26px;
+ display: block;
+ text-align: center;
+ text-decoration: none;
+ color: black;
+ }
+.leaflet-bar a,
+.leaflet-control-layers-toggle {
+ background-position: 50% 50%;
+ background-repeat: no-repeat;
+ display: block;
+ }
+.leaflet-bar a:hover,
+.leaflet-bar a:focus {
+ background-color: #f4f4f4;
+ }
+.leaflet-bar a:first-child {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+ }
+.leaflet-bar a:last-child {
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+ border-bottom: none;
+ }
+.leaflet-bar a.leaflet-disabled {
+ cursor: default;
+ background-color: #f4f4f4;
+ color: #bbb;
+ }
+
+.leaflet-touch .leaflet-bar a {
+ width: 30px;
+ height: 30px;
+ line-height: 30px;
+ }
+.leaflet-touch .leaflet-bar a:first-child {
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ }
+.leaflet-touch .leaflet-bar a:last-child {
+ border-bottom-left-radius: 2px;
+ border-bottom-right-radius: 2px;
+ }
+
+/* zoom control */
+
+.leaflet-control-zoom-in,
+.leaflet-control-zoom-out {
+ font: bold 18px 'Lucida Console', Monaco, monospace;
+ text-indent: 1px;
+ }
+
+.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
+ font-size: 22px;
+ }
+
+
+/* layers control */
+
+.leaflet-control-layers {
+ box-shadow: 0 1px 5px rgba(0,0,0,0.4);
+ background: #fff;
+ border-radius: 5px;
+ }
+.leaflet-control-layers-toggle {
+ background-image: url(images/layers.png);
+ width: 36px;
+ height: 36px;
+ }
+.leaflet-retina .leaflet-control-layers-toggle {
+ background-image: url(images/layers-2x.png);
+ background-size: 26px 26px;
+ }
+.leaflet-touch .leaflet-control-layers-toggle {
+ width: 44px;
+ height: 44px;
+ }
+.leaflet-control-layers .leaflet-control-layers-list,
+.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
+ display: none;
+ }
+.leaflet-control-layers-expanded .leaflet-control-layers-list {
+ display: block;
+ position: relative;
+ }
+.leaflet-control-layers-expanded {
+ padding: 6px 10px 6px 6px;
+ color: #333;
+ background: #fff;
+ }
+.leaflet-control-layers-scrollbar {
+ overflow-y: scroll;
+ overflow-x: hidden;
+ padding-right: 5px;
+ }
+.leaflet-control-layers-selector {
+ margin-top: 2px;
+ position: relative;
+ top: 1px;
+ }
+.leaflet-control-layers label {
+ display: block;
+ font-size: 13px;
+ font-size: 1.08333em;
+ }
+.leaflet-control-layers-separator {
+ height: 0;
+ border-top: 1px solid #ddd;
+ margin: 5px -10px 5px -6px;
+ }
+
+/* Default icon URLs */
+.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
+ background-image: url(images/marker-icon.png);
+ }
+
+
+/* attribution and scale controls */
+
+.leaflet-container .leaflet-control-attribution {
+ background: #fff;
+ background: rgba(255, 255, 255, 0.8);
+ margin: 0;
+ }
+.leaflet-control-attribution,
+.leaflet-control-scale-line {
+ padding: 0 5px;
+ color: #333;
+ line-height: 1.4;
+ }
+.leaflet-control-attribution a {
+ text-decoration: none;
+ }
+.leaflet-control-attribution a:hover,
+.leaflet-control-attribution a:focus {
+ text-decoration: underline;
+ }
+.leaflet-attribution-flag {
+ display: inline !important;
+ vertical-align: baseline !important;
+ width: 1em;
+ height: 0.6669em;
+ }
+.leaflet-left .leaflet-control-scale {
+ margin-left: 5px;
+ }
+.leaflet-bottom .leaflet-control-scale {
+ margin-bottom: 5px;
+ }
+.leaflet-control-scale-line {
+ border: 2px solid #777;
+ border-top: none;
+ line-height: 1.1;
+ padding: 2px 5px 1px;
+ white-space: nowrap;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ background: rgba(255, 255, 255, 0.8);
+ text-shadow: 1px 1px #fff;
+ }
+.leaflet-control-scale-line:not(:first-child) {
+ border-top: 2px solid #777;
+ border-bottom: none;
+ margin-top: -2px;
+ }
+.leaflet-control-scale-line:not(:first-child):not(:last-child) {
+ border-bottom: 2px solid #777;
+ }
+
+.leaflet-touch .leaflet-control-attribution,
+.leaflet-touch .leaflet-control-layers,
+.leaflet-touch .leaflet-bar {
+ box-shadow: none;
+ }
+.leaflet-touch .leaflet-control-layers,
+.leaflet-touch .leaflet-bar {
+ border: 2px solid rgba(0,0,0,0.2);
+ background-clip: padding-box;
+ }
+
+
+/* popup */
+
+.leaflet-popup {
+ position: absolute;
+ text-align: center;
+ margin-bottom: 20px;
+ }
+.leaflet-popup-content-wrapper {
+ padding: 1px;
+ text-align: left;
+ border-radius: 12px;
+ }
+.leaflet-popup-content {
+ margin: 13px 24px 13px 20px;
+ line-height: 1.3;
+ font-size: 13px;
+ font-size: 1.08333em;
+ min-height: 1px;
+ }
+.leaflet-popup-content p {
+ margin: 17px 0;
+ margin: 1.3em 0;
+ }
+.leaflet-popup-tip-container {
+ width: 40px;
+ height: 20px;
+ position: absolute;
+ left: 50%;
+ margin-top: -1px;
+ margin-left: -20px;
+ overflow: hidden;
+ pointer-events: none;
+ }
+.leaflet-popup-tip {
+ width: 17px;
+ height: 17px;
+ padding: 1px;
+
+ margin: -10px auto 0;
+ pointer-events: auto;
+
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+ }
+.leaflet-popup-content-wrapper,
+.leaflet-popup-tip {
+ background: white;
+ color: #333;
+ box-shadow: 0 3px 14px rgba(0,0,0,0.4);
+ }
+.leaflet-container a.leaflet-popup-close-button {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: none;
+ text-align: center;
+ width: 24px;
+ height: 24px;
+ font: 16px/24px Tahoma, Verdana, sans-serif;
+ color: #757575;
+ text-decoration: none;
+ background: transparent;
+ }
+.leaflet-container a.leaflet-popup-close-button:hover,
+.leaflet-container a.leaflet-popup-close-button:focus {
+ color: #585858;
+ }
+.leaflet-popup-scrolled {
+ overflow: auto;
+ }
+
+.leaflet-oldie .leaflet-popup-content-wrapper {
+ -ms-zoom: 1;
+ }
+.leaflet-oldie .leaflet-popup-tip {
+ width: 24px;
+ margin: 0 auto;
+
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
+ }
+
+.leaflet-oldie .leaflet-control-zoom,
+.leaflet-oldie .leaflet-control-layers,
+.leaflet-oldie .leaflet-popup-content-wrapper,
+.leaflet-oldie .leaflet-popup-tip {
+ border: 1px solid #999;
+ }
+
+
+/* div icon */
+
+.leaflet-div-icon {
+ background: #fff;
+ border: 1px solid #666;
+ }
+
+
+/* Tooltip */
+/* Base styles for the element that has a tooltip */
+.leaflet-tooltip {
+ position: absolute;
+ padding: 6px;
+ background-color: #fff;
+ border: 1px solid #fff;
+ border-radius: 3px;
+ color: #222;
+ white-space: nowrap;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ pointer-events: none;
+ box-shadow: 0 1px 3px rgba(0,0,0,0.4);
+ }
+.leaflet-tooltip.leaflet-interactive {
+ cursor: pointer;
+ pointer-events: auto;
+ }
+.leaflet-tooltip-top:before,
+.leaflet-tooltip-bottom:before,
+.leaflet-tooltip-left:before,
+.leaflet-tooltip-right:before {
+ position: absolute;
+ pointer-events: none;
+ border: 6px solid transparent;
+ background: transparent;
+ content: "";
+ }
+
+/* Directions */
+
+.leaflet-tooltip-bottom {
+ margin-top: 6px;
+}
+.leaflet-tooltip-top {
+ margin-top: -6px;
+}
+.leaflet-tooltip-bottom:before,
+.leaflet-tooltip-top:before {
+ left: 50%;
+ margin-left: -6px;
+ }
+.leaflet-tooltip-top:before {
+ bottom: 0;
+ margin-bottom: -12px;
+ border-top-color: #fff;
+ }
+.leaflet-tooltip-bottom:before {
+ top: 0;
+ margin-top: -12px;
+ margin-left: -6px;
+ border-bottom-color: #fff;
+ }
+.leaflet-tooltip-left {
+ margin-left: -6px;
+}
+.leaflet-tooltip-right {
+ margin-left: 6px;
+}
+.leaflet-tooltip-left:before,
+.leaflet-tooltip-right:before {
+ top: 50%;
+ margin-top: -6px;
+ }
+.leaflet-tooltip-left:before {
+ right: 0;
+ margin-right: -12px;
+ border-left-color: #fff;
+ }
+.leaflet-tooltip-right:before {
+ left: 0;
+ margin-left: -12px;
+ border-right-color: #fff;
+ }
+
+/* Printing */
+
+@media print {
+ /* Prevent printers from removing background-images of controls. */
+ .leaflet-control {
+ -webkit-print-color-adjust: exact;
+ print-color-adjust: exact;
+ }
+ }
diff --git a/public/css/veplayer.css b/public/css/veplayer.css
new file mode 100644
index 0000000..25ff08c
--- /dev/null
+++ b/public/css/veplayer.css
@@ -0,0 +1 @@
+@charset "UTF-8";.xgplayer.not-allow-autoplay .xgplayer-controls,.xgplayer.xgplayer-nostart .xgplayer-controls,.xgplayer.xgplayer-inactive .controls-autohide{pointer-events:none;visibility:hidden;cursor:default;opacity:0}.xgplayer.not-allow-autoplay .xgplayer-controls-initshow,.xgplayer.xgplayer-nostart .xgplayer-controls-initshow{pointer-events:auto;visibility:visible;opacity:1}.xgplayer .xgplayer-controls{display:block;position:absolute;visibility:visible;height:48px;left:0;right:0;bottom:0;opacity:1;z-index:10;background-image:linear-gradient(180deg,transparent,rgba(0,0,0,.37),rgba(0,0,0,.75),rgba(0,0,0,.75));transition:opacity .5s ease,visibility .5s ease}.xgplayer .xgplayer-controls.show{display:block;opacity:1;visibility:visible;pointer-events:auto}.xgplayer .xg-inner-controls{position:absolute;height:40px;bottom:0;justify-content:space-between;display:flex}.xgplayer .xg-left-grid,.xgplayer .xg-right-grid{position:relative;display:flex;flex-wrap:wrap;flex-shrink:1;height:100%;z-index:1}.xgplayer .xg-right-grid{flex-direction:row-reverse}.xgplayer .xg-right-grid>:first-child{margin-right:0}.xgplayer .xg-right-grid xg-icon{margin-left:0}.xgplayer .xg-left-grid>:first-child{margin-left:0}.xgplayer .xg-left-grid xg-icon{margin-right:0}.xgplayer .xg-center-grid{display:block;position:absolute;left:0;right:0;outline:none;top:-20px;padding:5px 0;text-align:center}.xgplayer .flex-controls .xg-inner-controls{justify-content:space-around;display:flex;bottom:8px}.xgplayer .flex-controls .xg-center-grid{display:flex;flex:1;position:relative;top:0;height:100%;justify-content:space-between;align-items:center;left:0;right:0;padding:0 16px}.xgplayer.xgplayer-mobile .xg-center-grid{z-index:2}.xgplayer.xgplayer-mobile .flex-controls .xg-center-grid{padding:0 8px}.xgplayer .bottom-controls .xg-center-grid{top:20px;padding:0}.xgplayer .bottom-controls .xg-left-grid,.xgplayer .bottom-controls .xg-right-grid{bottom:10px}.xgplayer .mini-controls{background-image:none}.xgplayer .mini-controls .xg-inner-controls{bottom:0;left:0;right:0}.xgplayer .mini-controls .xg-center-grid{bottom:-28px;top:auto;padding:0}.xgplayer .mini-controls .xg-left-grid,.xgplayer .mini-controls .xg-right-grid{display:none}.xgplayer .controls-follow{bottom:70px;transition:bottom .3s ease}.xgplayer.flex-controls .controls-follow{bottom:45px}.xgplayer.xgplayer-inactive .controls-follow,.xgplayer.no-controls .controls-follow,.xgplayer.mini-controls .controls-follow{bottom:10px}.xgplayer-fullscreen-parent{position:fixed;left:0;top:0;width:100%;height:100%;z-index:9999}.xgplayer-fullscreen-parent .xgplayer.xgplayer-is-cssfullscreen,.xgplayer-fullscreen-parent .xgplayer.xgplayer-is-fullscreen{z-index:10;position:absolute}.xgplayer-rotate-parent{position:fixed;top:0;left:100%;bottom:0;right:0;width:100vh;height:100vw;z-index:9999;transform-origin:top left;transform:rotate(90deg)}.xgplayer-rotate-parent .xgplayer.xgplayer-rotate-fullscreen{position:absolute;top:0;left:0;z-index:10;margin:0;padding:0;width:100%;height:100%;transform:rotate(0)}.xgplayer-rotate-parent .xgplayer-mobile video{z-index:-1}.xgplayer{position:relative;width:100%;height:100%;overflow:hidden;font-family:PingFang SC,Helvetica Neue,Helvetica,STHeiTi,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;font-size:14px;font-weight:400;background:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.xgplayer *{margin:0;padding:0;border:0;vertical-align:baseline;white-space:normal;word-wrap:normal;overflow-wrap:normal}.xgplayer ul,.xgplayer li{list-style:none}.xgplayer .xgplayer-none{display:none}.xgplayer.xgplayer-is-fullscreen{position:fixed;top:0;left:0;width:100%;height:100%;margin:0;padding:0;z-index:9999}.xgplayer.xgplayer-is-cssfullscreen{position:fixed;left:0;top:0;width:100%;height:100%;z-index:9999}.xgplayer.xgplayer-rotate-fullscreen{position:fixed;top:0;left:100%;bottom:0;right:0;width:100vh;height:100vw;transform-origin:top left;transform:rotate(90deg);z-index:9999}.xgplayer.xgplayer-rotate-fullscreen.xgplayer-mobile video{z-index:-1}.xgplayer xg-video-container.xg-video-container{position:absolute;top:0;bottom:48px;display:block;width:100%}.xgplayer video{position:absolute;top:0;left:0;width:100%;height:100%;outline:none}.xgplayer[data-xgfill=contain] video{-o-object-fit:contain;object-fit:contain}.xgplayer[data-xgfill=cover] video{-o-object-fit:cover;object-fit:cover}.xgplayer[data-xgfill=fill] video{-o-object-fit:fill;object-fit:fill}.xgplayer .xg-pos{left:10px;right:10px}.xgplayer .xg-margin{margin-left:16px;margin-right:16px}.xgplayer .xg-bottom{bottom:0}.xgplayer .btn-text{position:relative;top:50%;height:24px;font-size:13px;text-align:center}.xgplayer .btn-text span{display:inline-block;min-width:52px;height:24px;line-height:24px;background:rgba(0,0,0,.38);border-radius:12px}.xgplayer xg-icon{position:relative;box-sizing:border-box;height:40px;margin-left:16px;margin-right:16px;cursor:pointer;color:rgba(255,255,255,.8);fill:#fff}.xgplayer xg-icon.xg-icon-disable{cursor:not-allowed}.xgplayer xg-icon .xg-tips{top:-30px;left:50%;transform:translate(-50%)}.xgplayer xg-icon:active .xg-tips,.xgplayer xg-icon:hover .xg-tips{display:block}.xgplayer xg-icon:active .xg-tips.hide,.xgplayer xg-icon:hover .xg-tips.hide{display:none}.xgplayer xg-icon .xgplayer-icon{position:relative;top:50%;transform:translateY(-50%);cursor:pointer}.xgplayer xg-icon .xg-icon-disable{cursor:not-allowed}.xgplayer xg-icon .xg-img{width:100%}.xgplayer xg-icon svg,.xgplayer xg-icon img{height:100%;display:block}.xgplayer xg-bar{display:block}.xgplayer.xgplayer-inactive xg-bar,.xgplayer.xgplayer-mini xg-bar{display:none}.xgplayer.xgplayer-inactive .xg-top-bar{display:flex}.xgplayer.xgplayer-inactive .xg-top-bar.top-bar-autohide{display:none}.xgplayer .xg-top-bar{position:absolute;z-index:10;top:0;padding:0 16px;display:flex;height:50px}.xgplayer .xg-top-bar xg-icon{position:relative;top:10px;left:0;width:34px;margin-top:0}.xgplayer .xg-top-bar xg-icon:first-child{margin-left:0}.xgplayer .xg-left-bar,.xgplayer .xg-right-bar{position:absolute;z-index:9;top:50px;bottom:50px;width:50px}.xgplayer .xg-left-bar{left:0}.xgplayer .xg-right-bar{right:0}.xgplayer .xg-tips{display:none;position:absolute;padding:4px 6px;background:rgba(0,0,0,.54);border-radius:4px;font-size:12px;color:#fff;text-align:center;white-space:nowrap;opacity:.85}.xgplayer .xg-margin{left:0px;right:0px}.xgplayer-mobile{-webkit-tap-highlight-color:rgba(0,0,0,0)}.xgplayer-mobile *{text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.xgplayer-mobile.xgplayer-rotate-fullscreen .xg-top-bar,.xgplayer-mobile.xgplayer-rotate-fullscreen .xg-pos{left:6%;right:6%}.xgplayer-mobile xg-icon:hover .xg-tips{display:none}.xg-list-slide-scroll::-webkit-scrollbar-track{background-color:transparent;display:none}.xg-list-slide-scroll:hover::-webkit-scrollbar-track{display:block}.xg-list-slide-scroll::-webkit-scrollbar{-webkit-appearance:none;appearance:none;background:rgba(0,0,0,0);height:4px;width:4px}.xg-list-slide-scroll::-webkit-scrollbar-corner{background:transparent;display:none}.xg-list-slide-scroll::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.5);border-radius:3px;display:none;width:4px}.xg-list-slide-scroll:hover::-webkit-scrollbar-thumb{display:block}@media only screen and (max-width: 480px){.xgplayer-mobile xg-icon{margin-right:10px;margin-left:10px}.xgplayer-mobile .xg-top-bar{left:10px;right:10px}}@media screen and (orientation: portrait){.xgplayer-mobile.xgplayer-is-fullscreen .xgplayer-controls,.xgplayer-mobile.xgplayer-is-cssfullscreen .xgplayer-controls{bottom:34px;bottom:constant(safe-area-inset-bottom);bottom:env(safe-area-inset-bottom)}.xgplayer-mobile.xgplayer-is-fullscreen .xg-top-bar,.xgplayer-mobile.xgplayer-is-cssfullscreen .xg-top-bar{top:34px;top:constant(safe-area-inset-top);top:env(safe-area-inset-top)}}@media only screen and (orientation: landscape){.xgplayer-mobile.xgplayer-is-fullscreen .xg-top-bar,.xgplayer-mobile.xgplayer-is-fullscreen .xg-pos{left:6%;right:6%}.xgplayer-mobile.xgplayer-rotate-fullscreen{left:0;width:100vw;height:100vh;transform:rotate(0)}}.xgplayer .xgplayer-screen-container{display:block;width:100%}@keyframes xg_right_options_active{0%{transform:translate(50%)}to{transform:translate(-50%)}}@keyframes xg_right_options_hide{0%{transform:translate(-50%)}to{transform:translate(50%)}}@keyframes xg_left_options_active{0%{transform:translate(-50%)}to{transform:translate(50%)}}@keyframes xg_left_options_hide{0%{transform:translate(50%)}to{transform:translate(-50%)}}.xgplayer .xg-options-list{display:none;position:absolute;z-index:5;width:78px;right:50%;bottom:100%;background:rgba(0,0,0,.54);border-radius:1px;transform:translate(50%);cursor:pointer;overflow:auto;height:0;opacity:.85;font-size:14px;color:rgba(255,255,255,.8)}.xgplayer .xg-options-list li{height:20px;line-height:20px;position:relative;padding:4px 0;text-align:center;color:rgba(255,255,255,.8)}.xgplayer .xg-options-list li:hover,.xgplayer .xg-options-list li.selected{color:red;opacity:1}.xgplayer .xg-options-list li:nth-child(1){position:relative;margin-top:12px}.xgplayer .xg-options-list li:last-child{position:relative;margin-bottom:12px}.xgplayer .xg-options-list.xg-side-list{width:20%;height:100%;bottom:0;background:rgba(0,0,0,.9);display:flex;flex-direction:column;box-sizing:border-box}.xgplayer .xg-options-list.xg-side-list li{flex:1;width:100%;padding:0;position:relative}.xgplayer .xg-options-list.xg-side-list li span{display:block;position:relative;top:50%;transform:translateY(-50%);pointer-events:none}.xgplayer .xg-options-list.xg-side-list li:nth-child(1){margin-top:20px}.xgplayer .xg-options-list.xg-side-list li:last-child{margin-bottom:20px}.xgplayer .xg-options-list.xg-right-side{right:-10.5%}.xgplayer .xg-options-list.xg-right-side.active{height:100%;animation:xg_right_options_active .2s ease-out forwards}.xgplayer .xg-options-list.xg-right-side.hide{height:100%;animation:xg_right_options_hide .2s ease-in forwards}.xgplayer .xg-options-list.xg-left-side{left:-10.5%;transform:translate(-50%)}.xgplayer .xg-options-list.xg-left-side.active{height:100%;animation:xg_left_options_active .2s ease-out forwards}.xgplayer .xg-options-list.xg-left-side.hide{height:100%;animation:xg_left_options_hide .2s ease-in forwards}@media only screen and (max-width: 480px){.xgplayer-mobile .xg-options-icon.portrait{display:none}.xgplayer-mobile .xg-options-list li:hover{color:rgba(255,255,255,.8)}.xgplayer-mobile .xg-options-list li.selected{color:red}}.xgplayer-replay{display:none}.xgplayer .xgplayer-replay{display:none;position:absolute;left:50%;top:50%;width:100px;height:100px;justify-content:center;align-items:center;flex-direction:column;z-index:5;transform:translate(-50%,-50%);cursor:pointer}.xgplayer .xgplayer-replay .xgplayer-replay-txt{display:inline-block;font-size:14px;color:#fff;line-height:34px;text-align:center}.xgplayer.xgplayer-mobile .xgplayer-replay-svg{width:50px;height:50px}.xgplayer.xgplayer-mobile .xgplayer-replay-txt{line-height:24px;font-size:12px}.xgplayer .xgplayer-poster{display:block;opacity:1;visibility:visible;position:absolute;left:0;top:0;width:100%;height:100%;background-position:center center;background-size:100% auto;background-repeat:no-repeat;transition:opacity .3s ease,visibility .3s ease;pointer-events:none}.xgplayer .xgplayer-poster.hide,.xgplayer.xgplayer-playing .xgplayer-poster{opacity:0;visibility:hidden}.xgplayer.xgplayer-playing .xg-not-hidden,.xgplayer.xgplayer-is-enter .xgplayer-poster.xg-showplay,.xgplayer.xgplayer-playing .xgplayer-poster.xg-showplay,.xgplayer.xgplayer-nostart .xgplayer-poster,.xgplayer.xgplayer-ended .xgplayer-poster,.xgplayer.not-allow-autoplay .xgplayer-poster{opacity:1;visibility:visible}.xgplayer.xgplayer-nostart .xgplayer-poster.hide,.xgplayer.xgplayer-ended .xgplayer-poster.hide,.xgplayer.not-allow-autoplay .xgplayer-poster.hide{opacity:0;visibility:hidden}@keyframes playPause{0%{transform:scale(1);opacity:1}99%{transform:scale(1.3);opacity:0}to{transform:scale(1);opacity:0}}.xgplayer xg-start-inner{display:block;width:100%;height:100%;overflow:hidden;border-radius:50%;background:rgba(0,0,0,.38)}.xgplayer .xgplayer-start{width:70px;height:70px;position:absolute;left:50%;top:50%;z-index:5;transform:translate(-50%,-50%);cursor:pointer}.xgplayer .xgplayer-start svg{width:100%;height:100%}.xgplayer .xgplayer-start.hide,.xgplayer .xgplayer-start.focus-hide{display:none;pointer-events:none}.xgplayer .xgplayer-start:hover{opacity:.85}.xgplayer .xgplayer-start .xg-icon-play{display:block}.xgplayer .xgplayer-start .xg-icon-pause,.xgplayer .xgplayer-start[data-state=pause] .xg-icon-play{display:none}.xgplayer .xgplayer-start[data-state=pause] .xg-icon-pause,.xgplayer .xgplayer-start.interact{display:block}.xgplayer .xgplayer-start.interact xg-start-inner{animation:playPause .4s .1s ease-out forwards}.xgplayer .xgplayer-start.show{display:block}.xgplayer.xgplayer-mobile xg-start-inner{background:initial;border-radius:0}.xgplayer.xgplayer-mobile .xgplayer-start{height:50px;width:50px}.xgplayer.xgplayer-mobile .xgplayer-start:hover{opacity:1}.xgplayer.xgplayer-inactive .xgplayer-start.auto-hide,.xgplayer.xgplayer-is-enter .xgplayer-start.auto-hide,.xgplayer.xgplayer-isloading.xgplayer-playing .xgplayer-start,.xgplayer.xgplayer-is-enter .xgplayer-start,.xgplayer.xgplayer-is-error .xgplayer-start,.xgplayer.xgplayer-is-enter .xgplayer-start.show,.xgplayer.xgplayer-is-error .xgplayer-start.show{display:none}.xgplayer-enter{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.8);z-index:5;pointer-events:none}.xgplayer-enter .show{display:block}.xgplayer-enter .xgplayer-enter-spinner{display:block;position:absolute;z-index:1;left:50%;top:50%;height:100px;width:100px;transform:translate(-50%,-50%)}.xgplayer-enter .xgplayer-enter-spinner div{width:6%;height:13%;background-color:rgba(255,255,255,.7);position:absolute;left:45%;top:45%;opacity:0;border-radius:30px;animation:fade 1s linear infinite}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar1{transform:rotate(0) translateY(-140%);animation-delay:-0s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar2{transform:rotate(30deg) translateY(-140%);animation-delay:-.9163s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar3{transform:rotate(60deg) translateY(-140%);animation-delay:-.833s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar4{transform:rotate(90deg) translateY(-140%);animation-delay:-.7497s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar5{transform:rotate(120deg) translateY(-140%);animation-delay:-.6664s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar6{transform:rotate(150deg) translateY(-140%);animation-delay:-.5831s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar7{transform:rotate(180deg) translateY(-140%);animation-delay:-.4998s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar8{transform:rotate(210deg) translateY(-140%);animation-delay:-.4165s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar9{transform:rotate(240deg) translateY(-140%);animation-delay:-.3332s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar10{transform:rotate(270deg) translateY(-140%);animation-delay:-.2499s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar11{transform:rotate(300deg) translateY(-140%);animation-delay:-.1666s}.xgplayer-enter .xgplayer-enter-spinner div.xgplayer-enter-bar12{transform:rotate(330deg) translateY(-142%);animation-delay:-.0833s}@keyframes fade{0%{opacity:1}to{opacity:.25}}.xgplayer.xgplayer-is-enter .xgplayer-enter{display:block;opacity:1;transition:opacity .3s}.xgplayer.xgplayer-nostart .xgplayer-enter{display:none}.xgplayer.xgplayer-mobile .xgplayer-enter .xgplayer-enter-spinner{width:70px;height:70px}.xg-mini-layer{display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:11;background:linear-gradient(180deg,rgba(57,57,57,.9),rgba(57,57,57,0) 50.27%)}.xg-mini-layer .mask{pointer-events:none;position:absolute;top:0;left:0;height:100%;width:100%;background-color:rgba(0,0,0,.4)}.xg-mini-layer xg-mini-header{display:flex;top:0;left:0;right:40px;box-sizing:border-box;padding:10px 3px 0 8px;justify-content:space-between;color:#fff;font-size:14px;position:absolute;z-index:22}.xg-mini-layer xg-mini-header .xgplayer-pip-disableBtn{pointer-events:all}.xg-mini-layer xg-mini-header #disabledMini{display:none;position:relative}.xg-mini-layer xg-mini-header #disabledMini+label{cursor:pointer;position:relative;display:flex;align-items:center}.xg-mini-layer xg-mini-header #disabledMini+label:before{content:"";color:#ff142b;background-color:transparent;border-radius:2px;border:solid 1px #cdcdcd;width:16px;height:16px;display:inline-block;text-align:center;vertical-align:middle;line-height:16px;margin-right:7px}.xg-mini-layer xg-mini-header #disabledMini:checked+label{color:#ff142b}.xg-mini-layer xg-mini-header #disabledMini:checked+label:before{border-color:#ff142b}.xg-mini-layer xg-mini-header #disabledMini:checked+label:after{content:"";position:absolute;width:4px;height:8px;border-color:#ff142b;border-style:solid;border-width:0px 2px 2px 0px;transform:rotate(45deg);left:6px;top:5px}.xg-mini-layer xg-mini-header .xgplayer-mini-disableBtn xg-tips{position:absolute;padding:4px 6px;white-space:nowrap;bottom:-30px;right:15px;border-radius:4px;background-color:rgba(0,0,0,.54);display:none}.xg-mini-layer xg-mini-header .xgplayer-mini-disableBtn:hover #disabledMini+label:before{border-color:#ff142b}.xg-mini-layer xg-mini-header .xgplayer-mini-disableBtn:hover #disabledMini+label{color:#ff142b}.xg-mini-layer xg-mini-header .xgplayer-mini-disableBtn:hover xg-tips{display:block}.xg-mini-layer .mini-cancel-btn{cursor:pointer;display:block;color:#fff;width:40px;height:38px;position:absolute;right:0;top:0;text-align:center;line-height:38px}.xg-mini-layer .play-icon{cursor:pointer;height:48px;width:48px;position:absolute;background:rgba(0,0,0,.54);border-radius:24px;top:50%;left:50%;margin:-24px 0 0 -24px}.xg-mini-layer .play-icon svg,.xg-mini-layer .play-icon img{width:50px;height:50px;fill:#faf7f7}.xg-mini-layer .xg-icon-play{display:none}.xg-mini-layer .xg-icon-pause,.xg-mini-layer[data-state=pause] .xg-icon-play{display:block}.xg-mini-layer[data-state=pause] .xg-icon-pause{display:none}.xgplayer-miniicon{position:relative;outline:none;display:block}.xgplayer-miniicon .name{text-align:center;font-size:13px;line-height:20px;height:20px;color:rgba(255,255,255,.8);line-height:40px}.xgplayer-miniicon .name span{font-size:13px;width:60px;height:20px;line-height:20px;background:rgba(0,0,0,.38);border-radius:10px;display:inline-block;vertical-align:middle}.xgplayer-mini{position:fixed;width:320px;height:180px;z-index:91;box-shadow:0 4px 7px 2px rgba(0,0,0,.2)}.xgplayer-mini:hover{cursor:move}.xgplayer-mini:hover .xg-mini-layer{display:block}.xgplayer-mini.xgplayer-ended .xg-mini-layer{display:none}.xgplayer-mobile .xg-mini-layer .play-icon{background:none;border-radius:initial}.xgplayer.xgplayer-inactive{cursor:none}.xgplayer xg-thumbnail{display:block}.xgplayer xg-trigger{-webkit-user-select:none;-moz-user-select:none;user-select:none;position:absolute;top:0;left:0;height:100%;width:100%}.xgplayer xg-trigger .time-preview{display:none;position:absolute;width:200px;margin:0 auto;padding:0 20px 30px;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;text-shadow:0 0 1px rgba(0,0,0,.54);font-size:18px;text-align:center;pointer-events:none}.xgplayer xg-trigger .time-preview span{line-height:24px}.xgplayer xg-trigger .time-preview .xg-cur{color:red}.xgplayer xg-trigger .time-preview .xg-separator{font-size:14px}.xgplayer xg-trigger .time-preview .xg-seek-show{transform:translate(-10px)}.xgplayer xg-trigger .time-preview .xg-seek-show.xg-back .xg-seek-pre{transform:rotate(180deg) translate(-5px)}.xgplayer xg-trigger .time-preview .xg-seek-show.hide-seek-icon .xg-seek-icon{display:none}.xgplayer xg-trigger .time-preview .xg-bar{width:96px;height:2px;margin:8px auto 0;border-radius:10px;box-sizing:content-box;background:rgba(255,255,255,.3)}.xgplayer xg-trigger .time-preview .xg-bar .xg-curbar{width:0;height:100%;background-color:red}.xgplayer xg-trigger .time-preview .xg-bar.hide{display:none}.xgplayer xg-trigger .mobile-thumbnail{position:relative;left:50%;transform:translate(-50%)}.xgplayer xg-trigger .xg-top-note{position:absolute;height:32px;width:135px;top:26px;left:50%;margin-left:-78px;background:rgba(0,0,0,.3);border-radius:100px;color:#fff}.xgplayer xg-trigger .xg-top-note span{display:block;line-height:32px;height:32px;font-size:13px;text-align:center}.xgplayer xg-trigger .xg-top-note i{color:red;margin:0 5px}.xgplayer xg-trigger .xg-playbackrate{display:none}.xgplayer xg-trigger[data-xg-action=seeking] .time-preview{display:block}.xgplayer xg-trigger[data-xg-action=playbackrate] .xg-playbackrate{display:block}.xgplayer .gradient{display:none;position:absolute;top:0;left:0;height:100%;width:100%;pointer-events:none;background-image:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.36) 20%,rgba(0,0,0,0) 36%,rgba(0,0,0,0) 70%,rgba(0,0,0,.24) 77%,rgba(0,0,0,.36) 83%,rgba(0,0,0,.6))}.xgplayer .gradient.top{background-image:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.36) 20%,rgba(0,0,0,0) 36%,rgba(0,0,0,0) 70%)}.xgplayer .gradient.bottom{background-image:linear-gradient(rgba(0,0,0,0) 70%,rgba(0,0,0,.24) 77%,rgba(0,0,0,.36) 83%,rgba(0,0,0,.6))}.xgplayer .gradient.none,.xgplayer-mobile .xgplayer-controls{background-image:initial}.xgplayer-mobile.xgplayer-playing .gradient{display:block}.xgplayer-mobile.xgplayer-inactive .gradient{background-image:initial}.xgplayer-mobile .xgmask{position:absolute;height:100%;z-index:10;top:0;left:0;width:100%;pointer-events:none;background-color:rgba(0,0,0,0)}@media (prefers-color-scheme: dark){.xgplayer-mobile xg-trigger .time-preview{color:#fff}.xgplayer-mobile xg-trigger .time-preview span.xg-cur{color:red}.xgplayer-mobile xg-trigger .time-preview .xg-bar{background-color:rgba(255,255,255,.3)}.xgplayer-mobile xg-trigger .time-preview .xg-bar.xg-curbar{background-color:red}}@keyframes loadingRotate{0%{transform:rotate(0)}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}to{transform:rotate(360deg)}}@keyframes loadingDashOffset{0%{stroke-dashoffset:236}to{stroke-dashoffset:0}}xg-loading-inner{display:block;height:100%;width:100%;transform-origin:center;animation:loadingRotate 1s .1s linear infinite}.xgplayer-loading{display:none;width:70px;height:70px;overflow:hidden;position:absolute;z-index:10;left:50%;top:50%;transform:translate(-50%,-50%);pointer-events:none}.xgplayer-loading svg,.xgplayer-loading img{width:100%;height:100%}.xgplayer-mobile .xgplayer-loading{width:50px;height:50px}.xgplayer-isloading .xgplayer-loading{display:block}.xgplayer-nostart .xgplayer-loading,.xgplayer-pause .xgplayer-loading,.xgplayer-is-enter .xgplayer-loading,.xgplayer-is-ended .xgplayer-loading,.xgplayer-is-error .xgplayer-loading{display:none}.xgplayer .xgplayer-progress{display:flex;align-items:center;position:relative;min-width:10px;height:20px;left:0;right:0;top:0;outline:none;flex:1;cursor:pointer}.xgplayer .xgplayer-progress-outer{position:relative;width:100%;height:2px;border-radius:3px;cursor:pointer}.xgplayer .progress-list{display:flex;height:100%;width:100%;border-radius:inherit}.xgplayer .xgplayer-progress-inner{position:relative;flex:1;height:100%;background:rgba(255,255,255,.3);transition:height .2s ease-in,opacity .2s ease-out;border-radius:inherit;margin-right:2px;pointer-events:none}.xgplayer .xgplayer-progress-inner:last-child,.xgplayer .xgplayer-progress-inner:only-child{margin-right:0}.xgplayer .inner-focus-point{background:#fff;position:relative}.xgplayer .inner-focus-point:before,.xgplayer .inner-focus-point:after{position:absolute;top:0;content:" ";display:block;width:2px;height:300%;top:50%;z-index:1;transform:translateY(-50%);border-radius:3px;background:#fff}.xgplayer .inner-focus-point:before{left:0}.xgplayer .inner-focus-point:after{right:0}.xgplayer .xgplayer-progress-cache,.xgplayer .xgplayer-progress-played{display:block;height:100%;width:0;position:absolute;top:0;left:0;border-radius:inherit}.xgplayer .xgplayer-progress-played{background:linear-gradient(-90deg,#FA1F41 0%,#E31106 100%)}.xgplayer .xgplayer-progress-cache{background:rgba(255,255,255,.5)}.xgplayer .xgplayer-progress-btn{display:block;background:rgba(255,94,94,.304093);border:.5px solid rgba(255,94,94,.056545);box-shadow:0 0 1px rgba(255,0,0,.384);width:20px;height:20px;border-radius:30px;left:0;top:50%;position:absolute;z-index:1;transform:translate(-50%,-50%);box-sizing:border-box;pointer-events:none}.xgplayer .xgplayer-progress-btn:before{content:" ";display:block;position:relative;width:12px;height:12px;left:50%;top:50%;transform:translate(-50%,-50%);border-radius:30px;background:#FFFFFF}.xgplayer .xgplayer-progress-btn.active{border:4px solid rgba(255,94,94,.064057)}.xgplayer .xgplayer-progress-btn.active:before{box-shadow:0 0 3px rgba(248,89,89,.69)}.xgplayer .xgplayer-progress-dot{display:inline-block;position:absolute;height:100%;width:5px;top:0px;background:white;border-radius:6px;z-index:16}.xgplayer .xgplayer-progress-dot .xgplayer-progress-tip{position:absolute;left:25%;top:-40px;height:auto;line-height:30px;width:auto;transform:scale(.8) translate(-50%);background:rgba(0,0,0,.3);border-radius:6px;border:1px solid rgba(0,0,0,.8);cursor:default;white-space:nowrap;display:none}.xgplayer .xgplayer-progress-dot:hover .xgplayer-progress-tip{display:block}.xgplayer .flex-controls .xgplayer-progress{transform:translateY(0)}.xgplayer.xgplayer-pc .xgplayer-progress-btn{transform:translate(-50%,-50%) scale(0)}.xgplayer.xgplayer-pc .xgplayer-progress-outer{height:3px}.xgplayer.xgplayer-pc .xgplayer-progress-inner{margin-right:4px}.xgplayer.xgplayer-pc .xgplayer-progress-inner:last-child,.xgplayer.xgplayer-pc .xgplayer-progress-inner:only-child{margin-right:0}.xgplayer.xgplayer-pc .inner-focus-point:before,.xgplayer.xgplayer-pc .inner-focus-point:after{width:3px}.xgplayer.xgplayer-pc .inner-focus-highlight{background:rgba(255,255,255,.8)}.xgplayer.xgplayer-pc .xgplayer-progress.active .xgplayer-progress-outer{height:6px;margin-bottom:3px;transition:height .3s ease,margin-bottom .3s ease}.xgplayer.xgplayer-pc .xgplayer-progress.active .xgplayer-progress-btn{transform:translate(-50%,-50%) scale(1)}.xgplayer.xgplayer-pc .xgplayer-progress.active .inner-focus-point:before,.xgplayer.xgplayer-pc .xgplayer-progress.active .inner-focus-point:after{width:6px}.xgplayer .xgplayer-progress-bottom .xgplayer-progress-outer{top:9px}.xgplayer .xgplayer-progress-bottom .xgplayer-progress-btn:before{height:6px;width:6px}.xgplayer.xgplayer-mobile .xgplayer-progress-bottom .xgplayer-progress-outer{height:4px}@media (prefers-color-scheme: dark){.xgplayer .xgplayer-progress .xgplayer-progress-inner{background-color:rgba(255,255,255,.3)}.xgplayer .xgplayer-progress .inner-focus-highlight{background:rgba(255,255,255,.8)}.xgplayer .xgplayer-progress .xgplayer-progress-btn{background:rgba(255,94,94,.304093);border:.5px solid rgba(255,94,94,.056545);box-shadow:0 0 1px rgba(255,0,0,.384)}.xgplayer .xgplayer-progress .xgplayer-progress-btn:before{background-color:#fff}.xgplayer .xgplayer-progress .xgplayer-progress-played{background-color:linear-gradient(-90deg,#FA1F41 0%,#E31106 100%)}.xgplayer .xgplayer-progress .xgplayer-progress-cache{background-color:rgba(255,255,255,.5)}}.xg-mini-progress{display:none;position:absolute;height:2px;left:0;right:0;bottom:0px;pointer-events:none}.xg-mini-progress xg-mini-progress-played,.xg-mini-progress xg-mini-progress-cache{height:100%;width:0;position:absolute;top:0;left:0;border-radius:inherit}.xg-mini-progress xg-mini-progress-played{background:linear-gradient(-90deg,#FA1F41 0%,#E31106 100%)}.xg-mini-progress xg-mini-progress-cache{background:rgba(255,255,255,.5)}.xg-mini-progress-show,.xgplayer-inactive .xg-mini-progress,.xgplayer-mini .xg-mini-progress{display:block}.xgplayer .xgplayer-play .xg-icon-play{display:none}.xgplayer .xgplayer-play .xg-icon-pause,.xgplayer .xgplayer-play[data-state=pause] .xg-icon-play{display:block}.xgplayer .xgplayer-play[data-state=pause] .xg-icon-pause,.xgplayer .xgplayer-fullscreen .xg-exit-fullscreen{display:none}.xgplayer .xgplayer-fullscreen .xg-get-fullscreen,.xgplayer .xgplayer-fullscreen[data-state=full] .xg-exit-fullscreen{display:block}.xgplayer .xgplayer-fullscreen[data-state=full] .xg-get-fullscreen{display:none}.xgplayer .xg-top-bar .xgplayer-back{position:relative;left:0;top:16px;width:34px;height:40px;display:none}.xgplayer .xg-top-bar .xgplayer-back.show{display:block}.xgplayer .xgplayer-time{pointer-events:none;min-width:40px;font-size:14px;font-family:PingFangSC-Semibold;color:#fff;text-align:center;display:inline-block;line-height:40px}.xgplayer .xgplayer-time span{display:inline-block;line-height:40px;height:40px}.xgplayer .xgplayer-time span .time-min-width{text-align:center;min-width:2ch}.xgplayer .xgplayer-time span .time-min-width:first-child{text-align:right}.xgplayer .xgplayer-time span .time-min-width:last-child{text-align:left}.xgplayer .xgplayer-time .time-duration{color:rgba(255,255,255,.5)}.xgplayer .xgplayer-time .time-live-tag{display:none}.xgplayer .xgplayer-time.xg-time-left{margin-left:0}.xgplayer .xgplayer-time.xg-time-right{margin-right:0}.xgplayer.xgplayer-mobile .xgplayer-time{min-width:30px;font-size:12px}.xgplayer.xgplayer-mobile .xgplayer-time.xg-time-left{margin-right:8px}.xgplayer.xgplayer-mobile .xgplayer-time.xg-time-right{margin-left:8px}.xgplayer .xgplayer-volume.slide-show .xgplayer-slider{display:block}.xgplayer .xgplayer-slider{display:none;position:absolute;width:28px;height:92px;background:rgba(0,0,0,.54);border-radius:1px;bottom:40px;outline:none}.xgplayer .xgplayer-slider:after{content:" ";display:block;height:15px;width:28px;position:absolute;bottom:-15px;left:0;z-index:20;cursor:initial}.xgplayer .xgplayer-value-label{position:absolute;left:0;right:0;bottom:100%;padding:5px 0 0;font-size:12px;background-color:rgba(0,0,0,.54);color:#fff;text-align:center}.xgplayer .xgplayer-bar,.xgplayer .xgplayer-drag{display:block;position:absolute;bottom:6px;left:12px;background:rgba(255,255,255,.3);border-radius:100px;width:4px;height:76px;outline:none;cursor:pointer}.xgplayer .xgplayer-drag{bottom:0;left:0;background:#FA1F41;max-height:76px}.xgplayer .xgplayer-drag:after{content:" ";display:inline-block;width:8px;height:8px;background:#fff;box-shadow:0 0 5px rgba(0,0,0,.26);position:absolute;border-radius:50%;left:-2px;top:-4px}.xgplayer .xgplayer-volume[data-state=normal] .xg-volume{display:block}.xgplayer .xgplayer-volume[data-state=normal] .xg-volume-small,.xgplayer .xgplayer-volume[data-state=normal] .xg-volume-mute,.xgplayer .xgplayer-volume[data-state=small] .xg-volume{display:none}.xgplayer .xgplayer-volume[data-state=small] .xg-volume-small{display:block}.xgplayer .xgplayer-volume[data-state=small] .xg-volume-mute,.xgplayer .xgplayer-volume[data-state=mute] .xg-volume,.xgplayer .xgplayer-volume[data-state=mute] .xg-volume-small{display:none}.xgplayer .xgplayer-volume[data-state=mute] .xg-volume-mute{display:block}.xgplayer.xgplayer-mobile .xgplayer-volume .xgplayer-slider,.xgplayer .xgplayer-pip .xg-exit-pip{display:none}.xgplayer .xgplayer-pip .xg-get-pip,.xgplayer .xgplayer-pip[data-state=pip] .xg-exit-pip{display:block}.xgplayer .xgplayer-pip[data-state=pip] .xg-get-pip{display:none}.xgplayer .xgplayer-playnext{position:relative;display:none;cursor:pointer}.xgplayer .xgplayer-playnext .xgplayer-tips .xgplayer-tip-playnext{display:block}.xgplayer .xgplayer-playnext:hover{opacity:.85}.xgplayer .xgplayer-playnext:hover .xgplayer-tips{display:block}.lang-is-en .xgplayer-playnext .xgplayer-tips{margin-left:-25px}.lang-is-jp .xgplayer-playnext .xgplayer-tips{margin-left:-38px}.xgplayer .xgplayer-download{position:relative;display:block;cursor:pointer}.lang-is-en .xgplayer-download .xgplayer-tips{margin-left:-32px}.lang-is-jp .xgplayer-download .xgplayer-tips{margin-left:-40px}.xgplayer .xgplayer-shot{display:none}.xgplayer-definition{display:none;cursor:pointer}.xgplayer .xgplayer-playbackrate{display:none;cursor:default}.xgplayer .xgplayer-cssfullscreen .xg-get-cssfull{display:block}.xgplayer .xgplayer-cssfullscreen .xg-exit-cssfull,.xgplayer .xgplayer-cssfullscreen[data-state=full] .xg-get-cssfull{display:none}.xgplayer .xgplayer-cssfullscreen[data-state=full] .xg-exit-cssfull{display:block}.xgplayer-error{background:#000;display:none;position:absolute;left:0;top:0;width:100%;height:100%;z-index:6;color:#fff;text-align:center;line-height:100%;justify-content:center;align-items:center}.xgplayer-error .xgplayer-error-refresh{color:#fa1f41;padding:0 3px;cursor:pointer}.xgplayer-error .xgplayer-error-text{line-height:18px;margin:auto 6px 20px;display:block}.xgplayer-is-error .xgplayer-error{display:flex}.xgplayer .xgplayer-prompt{display:block;pointer-events:none;position:absolute;z-index:1;padding:6px 12px 5px;opacity:0;left:10px;background:rgba(0,0,0,.5);border-radius:50px;font-size:12px;line-height:17px;text-align:center;color:#fff}.xgplayer .xgplayer-prompt.show{display:block;opacity:1;z-index:10;pointer-events:initial}.xgplayer .xgplayer-prompt.arrow{transform:translate(-50%)}.xgplayer .xgplayer-prompt.arrow:after{content:"";display:block;position:absolute;left:50%;bottom:0;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-top:8px solid rgba(0,0,0,.5);transform:translate(-50%,100%)}.xgplayer .xgplayer-prompt .highlight{display:inline-block;margin-left:6px;color:red;cursor:pointer}.xgplayer.xgplayer-is-error .xgplayer-prompt.show{display:none;opacity:1}.xgplayer .xgplayer-spot{position:absolute;top:0;left:0;height:100%;background:#fff;border-radius:12px}.xgplayer .xgplayer-spot.mini{min-width:6px;transform:translate(-50%)}.xgplayer .xgplayer-spot.active .xgplayer-spot-pop{display:block;opacity:1;pointer-events:initial}.xgplayer .xgplayer-spot-pop{display:block;opacity:0;pointer-events:none;position:absolute;left:50%;bottom:5px;padding-bottom:5px;transform:translate(-50%)}.xgplayer-mobile .xgplayer-spot{height:3px;min-width:3px;top:50%;opacity:1;transform:translateY(-50%)}.xgplayer-mobile .xgplayer-spot.mini{min-width:3px;transform:translate(-50%,-50%)}.xgplayer .xgplayer-progress.active .xgplayer-spot{opacity:1;transition:opacity .3s;visibility:visible}.xgplayer .xg-spot-info{position:absolute;left:0;bottom:100%;display:none}.xgplayer .xg-spot-info.short-line .xg-spot-line{height:6px}.xgplayer .xg-spot-info.short-line .xg-spot-content{bottom:-4px}.xgplayer .xg-spot-info.no-thumbnail .xg-spot-thumbnail{display:none}.xgplayer .xg-spot-info.no-thumbnail .xgplayer-progress-point{display:block}.xgplayer .xg-spot-info.no-timepoint .xgplayer-progress-point,.xgplayer .xg-spot-info.hide{display:none}.xgplayer .xgplayer-progress.active .xg-spot-info{display:block}.xgplayer .xgplayer-progress.active .xg-spot-info.hide{display:none}.xgplayer .xg-spot-line{position:relative;bottom:-7px;margin-left:50%;display:block;width:1px;height:41px;background-color:#fff;pointer-events:none}.xgplayer .xgplayer-progress-point{display:none;position:relative;bottom:-4px;left:50%;transform:translate(-50%);background:rgba(0,0,0,.54);font-size:11px;color:#fff;padding:4px 6px;border-radius:4px;text-align:center;opacity:.85;white-space:nowrap}.xgplayer .xg-spot-content{position:relative;bottom:-7px;color:#fff;border-radius:2px 2px 0 0}.xgplayer .xg-spot-ext-text{position:relative;bottom:-7px}.xgplayer .xg-spot-thumbnail{position:relative;background-color:#111010;pointer-events:none;border-radius:2px 2px 0 0}.xgplayer .xg-spot-time{position:absolute;bottom:2px;font-size:12px;line-height:16.8px;left:50%;transform:translate(-50%);pointer-events:none}.xgplayer .progress-thumbnail{margin:0 auto;display:block}.xgplayer .xg-spot-text{display:none;padding:5px 8px;background:rgba(0,0,0,.8);border-radius:0 0 2px 2px;pointer-events:none;box-sizing:border-box}.xgplayer .spot-inner-text{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:20px;font-size:12px;max-height:40px}.xgplayer .xg-spot-content.show-text .xg-spot-text{display:block}.xgplayer .product .xg-spot-text{background:#3370FF}.xgplayer .product .xg-spot-line{border-left:10px solid transparent;border-right:10px solid transparent;border-top:7px solid #3370FF;width:0;height:15px;left:-10px;background:none}.xgplayer .xgvideo-preview{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;visibility:hidden;transition:visibility .3s,opacity .3s;background-color:#000}.xgplayer .xgvideo-preview .xgvideo-thumbnail{position:relative;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:0}.xgplayer .xgvideo-preview.show{opacity:1;visibility:visible}.xgplayer-dynamic-bg,.xgplayer-dynamic-bg canvas,.xgplayer-dynamic-bg xgmask,.xgplayer-dynamic-bg xgfilter{display:block;position:absolute;top:0;left:0;height:100%;width:100%;pointer-events:none}.xgplayer-dynamic-bg canvas{transform:translateZ(0)}.xgplayer-dynamic-bg xgmask{background:rgba(0,0,0,.7)}.veplayer-error{position:absolute;top:0;left:0;z-index:6;display:none;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;line-height:100%;text-align:center;background:#000000}.veplayer-error .veplayer-error-cover{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.veplayer-error .veplayer-error-cover .veplayer-error-img{display:flex;align-items:center;justify-content:center;width:120px;height:120px;margin-bottom:16px}.veplayer-error .veplayer-error-cover .veplayer-error-img img{display:block;width:100%;height:100%}.veplayer-error .veplayer-error-cover .veplayer-error-tips{margin-bottom:16px;font-size:16px}.veplayer-error .veplayer-error-cover .veplayer-error-refresh{display:block;height:35px;padding:0 24px;font-size:16px;line-height:35px;text-align:center;background-color:rgba(34,33,33,.643);border-radius:20px;cursor:pointer}.veplayer-error .veplayer-error-cover .veplayer-error-refresh:hover{background-color:#5a5a5a}.veplayer-error .veplayer-error-cover .veplayer-error-detail-info{margin-top:15px}.xgplayer-mobile .veplayer-error .veplayer-error-cover .veplayer-error-img{width:60px;height:60px;margin-bottom:0}.xgplayer-mobile .veplayer-error .veplayer-error-tips{margin-bottom:12px;font-size:14px}.xgplayer-mobile .veplayer-error .veplayer-error-refresh{font-size:14px}.veplayer-toast{position:absolute;bottom:50px;left:16px;z-index:203}.veplayer-toast .veplayer-toast-container{display:flex;box-sizing:content-box;height:28px;margin-top:8px;padding:4px 10px;color:#fff;font-size:14px;line-height:20px;background:rgba(0,0,0,.4);border-radius:8px}.veplayer-toast .veplayer-toast-container .veplayer-toast-txt{display:flex;align-items:center}.veplayer-toast .veplayer-toast-container .veplayer-toast-txt .veplayer-toast-txt-bt{margin-left:8px;color:#338fff}.veplayer-toast .veplayer-toast-container .veplayer-toast-txt .veplayer-toast-txt-bt:hover{color:rgba(51,143,255,.875)}.veplayer-toast .veplayer-toast-container .veplayer-toast-close{display:flex;align-items:center;justify-content:center;width:25px;height:25px;margin-left:15px;font-weight:bolder;font-size:16px}.xgplayer-mobile .xgplayer-sdk-toast .veplayer-toast-container{height:20px;padding:4px 8px;font-size:12px}.xgplayer-mobile .xgplayer-sdk-toast .veplayer-toast-container .veplayer-toast-close-bt{width:20px;height:20px;margin-left:8px;font-size:14px}.xg-mobile-panel{width:auto;height:auto}.xg-mobile-panel.panel-bottom{position:fixed;top:0;right:0;bottom:0;left:0;z-index:100;display:none}@keyframes xg_panel_active_normal{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes xg_panel_hide_normal{0%{transform:translateY(0)}to{display:none;transform:translateY(100%)}}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content{position:absolute;bottom:0;z-index:101;display:block;width:100%;height:auto;overflow-y:auto;background-color:#202124}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content .xg-mobile-panel-title{display:inline-block;box-sizing:border-box;width:100%;height:40px;color:#fff;font-size:15px;line-height:50px;text-align:center}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content .item-list-panel-content{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-around;box-sizing:border-box;width:100%;padding:20px;color:#d2d3d3;background-color:#202124}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content .item-list-panel-content:after{width:45%;content:""}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content .item-list-panel-content .panel-item{display:flex;align-items:center;justify-content:center;width:45%;height:36px;margin-bottom:15px;background:hsla(0,0%,100%,.16);border-radius:4px}.xg-mobile-panel.panel-bottom .xg-mobile-panel-content .item-list-panel-content .panel-item.select-in{color:#4086ff;background-color:rgba(64,134,255,.1)}.xg-mobile-panel.panel-bottom.hide{animation:xg_panel_hide_normal .3s ease-out forwards}.xg-mobile-panel.panel-bottom.active{display:flex;animation:xg_panel_active_normal .3s ease-out forwards}.xg-mobile-panel.panel-inner{position:absolute;top:0;left:0;z-index:100;display:none;width:100%;height:100%;background-color:rgba(0,0,0,.6)}.xg-mobile-panel.panel-inner.hide{display:none}.xg-mobile-panel.panel-inner.active{display:block}.xg-mobile-panel.panel-inner .xg-mobile-panel-content{width:100%;height:100%}.xg-mobile-panel.panel-inner .item-list-panel-content{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-around;box-sizing:border-box;width:100%;height:100%;padding:20px;color:#d2d3d3;background-color:transparent}.xg-mobile-panel.panel-inner .item-list-panel-content:after{width:45%;content:""}.xg-mobile-panel.panel-inner .item-list-panel-content .panel-item{display:flex;align-items:center;justify-content:center;width:45%;height:36px;margin-bottom:15px;background-color:rgba(255,255,255,.3);border-radius:4px}.xg-mobile-panel.panel-inner .item-list-panel-content .panel-item.select-in{color:#4086ff;background-color:rgba(64,134,255,.3)}.xg-mobile-panel.panel-fullscreen{position:absolute;top:0;left:0;z-index:100;display:none;width:100%;height:100%;animation:xg_panel_active .3s ease-out forwards}@keyframes xg_panel_active{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes xg_panel_hide{0%{transform:translate(0)}to{display:none;transform:translate(100%)}}.xg-mobile-panel.panel-fullscreen .xg-mobile-panel-content{position:absolute;right:0;z-index:101;display:block;min-width:50%;height:100%;overflow-y:auto;background-color:rgba(0,0,0,.6)}.xg-mobile-panel.panel-fullscreen .xg-mobile-panel-content .xg-mobile-panel-title{display:inline-block;box-sizing:border-box;width:100%;height:40px;color:#fff;font-size:13px;line-height:50px;text-align:center}.xg-mobile-panel.panel-fullscreen .xg-mobile-panel-content .item-list-panel-content{display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;justify-content:space-around;box-sizing:border-box;width:100%;padding:10px}.xg-mobile-panel.panel-fullscreen .xg-mobile-panel-content .item-list-panel-content .panel-item{display:flex;align-items:center;justify-content:center;width:100px;height:30px;margin-bottom:15px;color:#fff;background:hsla(0,0%,100%,.16)}.xg-mobile-panel.panel-fullscreen .xg-mobile-panel-content .item-list-panel-content .panel-item.select-in{color:#94c2ff;background-color:rgba(64,134,255,.21)}.xg-mobile-panel.panel-fullscreen.hide{animation:xg_panel_hide .3s ease-out forwards}.xg-mobile-panel.panel-fullscreen.active{display:block;animation:xg_panel_active .3s ease-out forwards}.xgplayer .xg-options-icon{display:none;cursor:pointer}.xgplayer .xg-options-icon.show{display:block}@keyframes xg_options_active{0%{transform:translate(0)}to{transform:translate(-50%)}}@keyframes xg_options_hide{0%{transform:translate(-50%)}to{transform:translate(50%)}}.xgplayer .xg-options-list{position:absolute;right:50%;bottom:100%;z-index:5;display:none;width:78px;height:0;overflow:hidden;color:#fff;font-size:14px;background:rgba(0,0,0,.7);border-radius:4px;transform:translate(50%);cursor:pointer;opacity:.85}.xgplayer .xg-options-list li{position:relative;display:flex;align-items:center;justify-content:center;height:34px;padding:0;line-height:20px;text-align:center}.xgplayer .xg-options-list li.selected{color:#3370ff;opacity:1}.xgplayer .xg-options-list li:hover{color:#3370ff;background-color:rgba(255,255,255,.2);opacity:1}.xgplayer .xg-options-list li:first-child{margin-top:0;border-top-left-radius:4px;border-top-right-radius:4px}.xgplayer .xg-options-list li:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.xgplayer .xg-options-list:hover{opacity:1}.xgplayer .xg-options-list.active{display:block;height:auto}.xgplayer .xg-options-list.right-side{right:-10.5%;bottom:0;display:flex;flex-direction:column;box-sizing:border-box;width:20%;height:100%;background:rgba(0,0,0,.9)}.xgplayer .xg-options-list.right-side li{position:relative;flex:1;width:100%;padding:0}.xgplayer .xg-options-list.right-side li span{position:relative;top:50%;display:block;transform:translateY(-50%);pointer-events:none}.xgplayer .xg-options-list.right-side li:nth-child(1){margin-top:20px}.xgplayer .xg-options-list.right-side li:last-child{margin-bottom:20px}.xgplayer .xg-options-list.right-side.active{height:100%;animation:xg_options_active .3s ease-out forwards}.xgplayer .xg-options-list.right-side.hide{height:100%;animation:xg_options_hide .3s ease-in forwards}@media only screen and (max-width: 480px){.xgplayer-mobile .xg-options-icon.portrait{display:none}}.veplayer-unmute{position:absolute;top:0;z-index:10;display:flex;align-items:center;justify-content:center;width:100%;height:100%;pointer-events:none}.veplayer-unmute .veplayer-unmute-bt{display:flex;align-items:center;justify-content:center;width:180px;height:60px;color:#fff;font-size:16px;background-color:rgba(0,0,0,.5);border:.5px white solid;border-radius:5px;pointer-events:auto}.veplayer-unmute .veplayer-unmute-bt:hover{color:#3370ff;background-color:rgba(0,0,0,.3);border:.5px #3370ff solid}.veplayer-unmute .veplayer-unmute-bt:active{background-color:rgba(0,0,0,.3)}.xgplayer-mobile .veplayer-unmute-bt{width:150px;height:40px;font-size:14px}.xgplayer-ended .veplayer-unmute,.xgplayer-pause .veplayer-unmute,.xgplayer-isloading .veplayer-unmute,.xgplayer-is-error .veplayer-unmute{display:none}.xgplayer .xg-right-grid.xgplayer-rightTop-iconList{position:absolute;right:0;display:flex}.xgplayer .xg-right-grid.xgplayer-rightTop-iconList xg-icon{margin-right:0;margin-left:0}.xgplayer .xg-right-grid.xgplayer-rightTop-iconList .xgplayer-icon{display:flex;flex-direction:column;align-items:center;justify-content:center;margin-left:10px}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content,.xg-mobile-panel.more-panel-content .item-list-panel-content{display:flex}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content .panel-item,.xg-mobile-panel.more-panel-content .item-list-panel-content .panel-item{width:auto;height:auto;background:none}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content .panel-item .panel-icon-bt,.xg-mobile-panel.more-panel-content .item-list-panel-content .panel-item .panel-icon-bt{display:flex;flex-direction:column;align-items:center;margin:0 5px}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content .panel-item .panel-icon-bt.hide,.xg-mobile-panel.more-panel-content .item-list-panel-content .panel-item .panel-icon-bt.hide{display:none}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content .panel-item .panel-icon-bt .panel-icon-svg,.xg-mobile-panel.more-panel-content .item-list-panel-content .panel-item .panel-icon-bt .panel-icon-svg{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%}.xg-mobile-panel.more-panel-content .xg-mobile-panel-content .item-list-panel-content .panel-item .panel-icon-bt .panel-icon-bt-text,.xg-mobile-panel.more-panel-content .item-list-panel-content .panel-item .panel-icon-bt .panel-icon-bt-text{display:flex;justify-content:center;margin-top:5px;color:#fff;font-size:12px}.xg-mobile-panel.panel-fullscreen.more-panel-content .item-list-panel-content,.xg-mobile-panel.panel-inner.more-panel-content .item-list-panel-content{flex-direction:initial;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;height:100%}.xg-mobile-panel.panel-fullscreen.more-panel-content .item-list-panel-content:after,.xg-mobile-panel.panel-inner.more-panel-content .item-list-panel-content:after{display:none}.xg-mobile-panel.panel-fullscreen .panel-icon-svg,.xg-mobile-panel.panel-inner .panel-icon-svg{background-color:rgba(255,255,255,.4)}.xg-mobile-panel.panel-bottom.more-panel-content .item-list-panel-content{flex-wrap:nowrap;align-items:center;justify-content:initial;box-sizing:border-box;height:100px;padding-left:10px;overflow-x:auto;overflow-y:hidden;background-color:#202124}.xg-mobile-panel.panel-bottom .panel-icon-bt .panel-icon-svg{background-color:rgba(255,255,255,.05)}.xg-mobile-panel.panel-bottom .panel-icon-bt .panel-icon-bt-text{color:rgba(255,255,255,.5)}.xgplayer-pc .xg-options-icon .icon-text{min-width:unset;color:#fff;font-weight:500;font-size:14px;background:transparent;border:none;border-radius:0}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider{left:50%;width:63px;height:125px;background:rgba(0,0,0,.5);border-radius:8px;transform:translate(-50%)}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider:after{content:none}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-bar{top:auto;bottom:12px;left:30px;height:98px;transform:none}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-drag{max-height:98px;background-image:linear-gradient(120deg,#6aa6ff 0%,#1664ff 100%)}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-drag.dragging:before,.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-drag:hover:before{position:absolute;top:-10px;left:-8px;width:20px;height:20px;border-radius:50%;content:""}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-drag:after{top:-5px;left:-3px;width:10px;height:10px;box-shadow:none}.xgplayer-pc .xgplayer-volume xg-slider.xgplayer-slider .xgplayer-volume-text{margin-top:12px;font-size:14px;line-height:22px;text-align:center}.xgplayer-pc .xgplayer-progress .xgplayer-progress-outer{transition:unset}.xgplayer-pc .xgplayer-progress .xgplayer-progress-btn{width:16px;height:16px;background:#346aff41;box-shadow:0 0 1px rgba(0,0,0,.094)}.xgplayer-pc .xgplayer-progress .xgplayer-progress-played{background:#3469ff}.xgplayer-pc .xgplayer-replay{height:unset}.xgplayer-pc .xgplayer-replay .xgplayer-replay-txt{display:none}.xgplayer-pc .xgplayer-replay:hover circle{fill-opacity:.5}.xgplayer-pc.xgplayer-is-error .xgplayer-start{display:none}.xgplayer-mobile .xgplayer-progress .xgplayer-progress-played{background:#3469ff}.xgplayer-mobile .xgplayer-progress .xgplayer-progress-outer{transition:unset}.xgplayer-mobile .xgplayer-progress .xgplayer-progress-btn{width:14px;height:14px;background-color:rgba(255,255,255,.4);box-shadow:0 0 1px rgba(52,106,255,.32)}.xgplayer-mobile .xgplayer-progress .xgplayer-progress-btn:before{width:7px;height:7px}.xgplayer-mobile .xgplayer-replay{height:unset}.xgplayer-mobile .xgplayer-replay .xgplayer-replay-txt{display:none}.xgplayer-mobile .xgplayer-replay svg{width:50px;height:50px}.xgplayer-mobile .xgplayer-replay:hover circle{fill-opacity:.5}.xgplayer-mobile .time-preview .xg-cur{color:#3469ff}.xgplayer-mobile .time-preview .xg-curbar{background-color:#3469ff}.xgplayer-mobile .xg-top-bar{justify-content:flex-end}.xgplayer-mobile.xgplayer-is-error .xgplayer-start{display:none}.veplayer-logo{display:none;position:absolute;visibility:visible;width:70px;height:20px;right:20px;top:20px;opacity:1;z-index:10}.veplayer-logo svg{width:100%;height:100%}.veplayer-logo img{width:100%}.xgplayer .veplayer-refresh{margin-left:12px}.veplayer-live-panel{position:absolute;z-index:8;display:none;box-sizing:border-box;width:-moz-fit-content;width:fit-content;max-width:40%;height:100%;padding:10px;overflow-y:scroll;color:#fff;font-weight:400;font-size:12px;background:rgba(0,0,0,.5);scrollbar-width:none;-ms-overflow-style:none}.veplayer-live-panel::-webkit-scrollbar{display:none}.veplayer-live-panel-row{display:block;overflow:hidden;line-height:20px;white-space:nowrap;text-overflow:ellipsis}.veplayer-live-panel-row-label{display:inline-block;width:70px;color:#c9cdd4}.veplayer-live-panel-row-title{display:inline-block;padding-top:30px}
diff --git a/public/css/widgets.css b/public/css/widgets.css
new file mode 100644
index 0000000..df675d5
--- /dev/null
+++ b/public/css/widgets.css
@@ -0,0 +1,1342 @@
+/* packages/widgets/Source/shared.css */
+.cesium-svgPath-svg {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+}
+.cesium-button {
+ display: inline-block;
+ position: relative;
+ background: #303336;
+ border: 1px solid #444;
+ color: #edffff;
+ fill: #edffff;
+ border-radius: 4px;
+ padding: 5px 12px;
+ margin: 2px 3px;
+ cursor: pointer;
+ overflow: hidden;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.cesium-button:focus {
+ color: #fff;
+ fill: #fff;
+ border-color: #ea4;
+ outline: none;
+}
+.cesium-button:hover {
+ color: #fff;
+ fill: #fff;
+ background: #48b;
+ border-color: #aef;
+ box-shadow: 0 0 8px #fff;
+}
+.cesium-button:active {
+ color: #000;
+ fill: #000;
+ background: #adf;
+ border-color: #fff;
+ box-shadow: 0 0 8px #fff;
+}
+.cesium-button:disabled,
+.cesium-button-disabled,
+.cesium-button-disabled:focus,
+.cesium-button-disabled:hover,
+.cesium-button-disabled:active {
+ background: #303336;
+ border-color: #444;
+ color: #646464;
+ fill: #646464;
+ box-shadow: none;
+ cursor: default;
+}
+.cesium-button option {
+ background-color: #000;
+ color: #eee;
+}
+.cesium-button option:disabled {
+ color: #777;
+}
+.cesium-button input,
+.cesium-button label {
+ cursor: pointer;
+}
+.cesium-button input {
+ vertical-align: sub;
+}
+.cesium-toolbar-button {
+ box-sizing: border-box;
+ width: 32px;
+ height: 32px;
+ border-radius: 14%;
+ padding: 0;
+ vertical-align: middle;
+ z-index: 0;
+}
+.cesium-performanceDisplay-defaultContainer {
+ position: absolute;
+ top: 50px;
+ right: 10px;
+ text-align: right;
+}
+.cesium-performanceDisplay {
+ background-color: rgba(40, 40, 40, 0.7);
+ padding: 7px;
+ border-radius: 5px;
+ border: 1px solid #444;
+ font: bold 12px sans-serif;
+}
+.cesium-performanceDisplay-fps {
+ color: #e52;
+}
+.cesium-performanceDisplay-throttled {
+ color: #a42;
+}
+.cesium-performanceDisplay-ms {
+ color: #de3;
+}
+
+/* packages/widgets/Source/Animation/Animation.css */
+.cesium-animation-theme {
+ visibility: hidden;
+ display: block;
+ position: absolute;
+ z-index: -100;
+}
+.cesium-animation-themeNormal {
+ color: #222;
+}
+.cesium-animation-themeHover {
+ color: #4488b0;
+}
+.cesium-animation-themeSelect {
+ color: #242;
+}
+.cesium-animation-themeDisabled {
+ color: #333;
+}
+.cesium-animation-themeKnob {
+ color: #222;
+}
+.cesium-animation-themePointer {
+ color: #2e2;
+}
+.cesium-animation-themeSwoosh {
+ color: #8ac;
+}
+.cesium-animation-themeSwooshHover {
+ color: #aef;
+}
+.cesium-animation-svgText {
+ fill: #edffff;
+ font-family: Sans-Serif;
+ font-size: 15px;
+ text-anchor: middle;
+}
+.cesium-animation-blank {
+ fill: #000;
+ fill-opacity: 0.01;
+ stroke: none;
+}
+.cesium-animation-rectButton {
+ cursor: pointer;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.cesium-animation-rectButton .cesium-animation-buttonGlow {
+ fill: #fff;
+ stroke: none;
+ display: none;
+}
+.cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
+ display: block;
+}
+.cesium-animation-rectButton .cesium-animation-buttonPath {
+ fill: #edffff;
+}
+.cesium-animation-rectButton .cesium-animation-buttonMain {
+ stroke: #444;
+ stroke-width: 1.2;
+}
+.cesium-animation-rectButton:hover .cesium-animation-buttonMain {
+ stroke: #aef;
+}
+.cesium-animation-rectButton:active .cesium-animation-buttonMain {
+ fill: #abd6ff;
+}
+.cesium-animation-buttonDisabled {
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.cesium-animation-buttonDisabled .cesium-animation-buttonMain {
+ stroke: #555;
+}
+.cesium-animation-buttonDisabled .cesium-animation-buttonPath {
+ fill: #818181;
+}
+.cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
+ display: none;
+}
+.cesium-animation-buttonToggled .cesium-animation-buttonGlow {
+ display: block;
+ fill: #2e2;
+}
+.cesium-animation-buttonToggled .cesium-animation-buttonMain {
+ stroke: #2e2;
+}
+.cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
+ fill: #fff;
+}
+.cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
+ stroke: #2e2;
+}
+.cesium-animation-shuttleRingG {
+ cursor: pointer;
+}
+.cesium-animation-shuttleRingPointer {
+ cursor: pointer;
+}
+.cesium-animation-shuttleRingPausePointer {
+ cursor: pointer;
+}
+.cesium-animation-shuttleRingBack {
+ fill: #181818;
+ fill-opacity: 0.8;
+ stroke: #333;
+ stroke-width: 1.2;
+}
+.cesium-animation-shuttleRingSwoosh line {
+ stroke: #8ac;
+ stroke-width: 3;
+ stroke-opacity: 0.2;
+ stroke-linecap: round;
+}
+.cesium-animation-knobOuter {
+ cursor: pointer;
+ stroke: #444;
+ stroke-width: 1.2;
+}
+.cesium-animation-knobInner {
+ cursor: pointer;
+}
+
+/* packages/widgets/Source/BaseLayerPicker/BaseLayerPicker.css */
+.cesium-baseLayerPicker-selected {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: none;
+}
+.cesium-baseLayerPicker-dropDown {
+ display: block;
+ position: absolute;
+ box-sizing: content-box;
+ top: auto;
+ right: 0;
+ width: 320px;
+ max-height: 500px;
+ margin-top: 5px;
+ background-color: rgba(38, 38, 38, 0.75);
+ border: 1px solid #444;
+ padding: 6px;
+ overflow: auto;
+ border-radius: 10px;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ transform: translate(0, -20%);
+ visibility: hidden;
+ opacity: 0;
+ transition:
+ visibility 0s 0.2s,
+ opacity 0.2s ease-in,
+ transform 0.2s ease-in;
+}
+.cesium-baseLayerPicker-dropDown-visible {
+ transform: translate(0, 0);
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.2s ease-out, transform 0.2s ease-out;
+}
+.cesium-baseLayerPicker-sectionTitle {
+ display: block;
+ font-family: sans-serif;
+ font-size: 16pt;
+ text-align: left;
+ color: #edffff;
+ margin-bottom: 4px;
+}
+.cesium-baseLayerPicker-choices {
+ margin-bottom: 5px;
+}
+.cesium-baseLayerPicker-categoryTitle {
+ color: #edffff;
+ font-size: 11pt;
+}
+.cesium-baseLayerPicker-choices {
+ display: block;
+ border: 1px solid #888;
+ border-radius: 5px;
+ padding: 5px 0;
+}
+.cesium-baseLayerPicker-item {
+ display: inline-block;
+ vertical-align: top;
+ margin: 2px 5px;
+ width: 64px;
+ text-align: center;
+ cursor: pointer;
+}
+.cesium-baseLayerPicker-itemLabel {
+ display: block;
+ font-family: sans-serif;
+ font-size: 8pt;
+ text-align: center;
+ vertical-align: middle;
+ color: #edffff;
+ cursor: pointer;
+ word-wrap: break-word;
+}
+.cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemLabel,
+.cesium-baseLayerPicker-item:focus .cesium-baseLayerPicker-itemLabel {
+ text-decoration: underline;
+}
+.cesium-baseLayerPicker-itemIcon {
+ display: inline-block;
+ position: relative;
+ width: inherit;
+ height: auto;
+ background-size: 100% 100%;
+ border: solid 1px #444;
+ border-radius: 9px;
+ color: #edffff;
+ margin: 0;
+ padding: 0;
+ cursor: pointer;
+ box-sizing: border-box;
+}
+.cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon {
+ border-color: #fff;
+ box-shadow: 0 0 8px #fff, 0 0 8px #fff;
+}
+.cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel {
+ color: rgb(189, 236, 248);
+}
+.cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon {
+ border: double 4px rgb(189, 236, 248);
+}
+
+/* packages/engine/Source/Widget/CesiumWidget.css */
+.cesium-widget {
+ font-family: sans-serif;
+ font-size: 16px;
+ overflow: hidden;
+ display: block;
+ position: relative;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+.cesium-widget,
+.cesium-widget canvas {
+ width: 100%;
+ height: 100%;
+ touch-action: none;
+}
+.cesium-widget-credits {
+ display: block;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ color: #fff;
+ font-size: 10px;
+ text-shadow: 0px 0px 2px #000000;
+ padding-right: 5px;
+}
+.cesium-widget-errorPanel {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ text-align: center;
+ background: rgba(0, 0, 0, 0.7);
+ z-index: 99999;
+}
+.cesium-widget-errorPanel:before {
+ display: inline-block;
+ vertical-align: middle;
+ height: 100%;
+ content: "";
+}
+.cesium-widget-errorPanel-content {
+ width: 75%;
+ max-width: 500px;
+ display: inline-block;
+ text-align: left;
+ vertical-align: middle;
+ border: 1px solid #510c00;
+ border-radius: 7px;
+ background-color: #f0d9d5;
+ font-size: 14px;
+ color: #510c00;
+}
+.cesium-widget-errorPanel-content.expanded {
+ max-width: 75%;
+}
+.cesium-widget-errorPanel-header {
+ font-size: 18px;
+ font-family:
+ "Open Sans",
+ Verdana,
+ Geneva,
+ sans-serif;
+ background: #d69d93;
+ border-bottom: 2px solid #510c00;
+ padding-bottom: 10px;
+ border-radius: 3px 3px 0 0;
+ padding: 15px;
+}
+.cesium-widget-errorPanel-scroll {
+ overflow: auto;
+ font-family:
+ "Open Sans",
+ Verdana,
+ Geneva,
+ sans-serif;
+ white-space: pre-wrap;
+ padding: 0 15px;
+ margin: 10px 0 20px 0;
+}
+.cesium-widget-errorPanel-buttonPanel {
+ padding: 0 15px;
+ margin: 10px 0 20px 0;
+ text-align: right;
+}
+.cesium-widget-errorPanel-buttonPanel button {
+ border-color: #510c00;
+ background: #d69d93;
+ color: #202020;
+ margin: 0;
+}
+.cesium-widget-errorPanel-buttonPanel button:focus {
+ border-color: #510c00;
+ background: #f0d9d5;
+ color: #510c00;
+}
+.cesium-widget-errorPanel-buttonPanel button:hover {
+ border-color: #510c00;
+ background: #f0d9d5;
+ color: #510c00;
+}
+.cesium-widget-errorPanel-buttonPanel button:active {
+ border-color: #510c00;
+ background: #b17b72;
+ color: #510c00;
+}
+.cesium-widget-errorPanel-more-details {
+ text-decoration: underline;
+ cursor: pointer;
+}
+.cesium-widget-errorPanel-more-details:hover {
+ color: #2b0700;
+}
+
+/* packages/widgets/Source/CesiumInspector/CesiumInspector.css */
+.cesium-cesiumInspector {
+ border-radius: 5px;
+ transition: width ease-in-out 0.25s;
+ background: rgba(48, 51, 54, 0.8);
+ border: 1px solid #444;
+ color: #edffff;
+ display: inline-block;
+ position: relative;
+ padding: 4px 12px;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ overflow: hidden;
+}
+.cesium-cesiumInspector-button {
+ text-align: center;
+ font-size: 11pt;
+}
+.cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
+ border-bottom: 1px solid #aaa;
+ padding-bottom: 3px;
+}
+.cesium-cesiumInspector input:enabled,
+.cesium-cesiumInspector-button {
+ cursor: pointer;
+}
+.cesium-cesiumInspector-visible {
+ width: 185px;
+ height: auto;
+}
+.cesium-cesiumInspector-hidden {
+ width: 122px;
+ height: 17px;
+}
+.cesium-cesiumInspector-sectionContent {
+ max-height: 600px;
+}
+.cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionContent {
+ max-height: 0;
+ padding: 0 !important;
+ overflow: hidden;
+}
+.cesium-cesiumInspector-dropDown {
+ margin: 5px 0;
+ font-family: sans-serif;
+ font-size: 10pt;
+ width: 185px;
+}
+.cesium-cesiumInspector-frustumStatistics {
+ padding-left: 10px;
+ padding: 5px;
+ background-color: rgba(80, 80, 80, 0.75);
+}
+.cesium-cesiumInspector-pickButton {
+ background-color: rgba(0, 0, 0, 0.3);
+ border: 1px solid #444;
+ color: #edffff;
+ border-radius: 5px;
+ padding: 3px 7px;
+ cursor: pointer;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ margin: 0 auto;
+}
+.cesium-cesiumInspector-pickButton:focus {
+ outline: none;
+}
+.cesium-cesiumInspector-pickButton:active,
+.cesium-cesiumInspector-pickButtonHighlight {
+ color: #000;
+ background: #adf;
+ border-color: #fff;
+ box-shadow: 0 0 8px #fff;
+}
+.cesium-cesiumInspector-center {
+ text-align: center;
+}
+.cesium-cesiumInspector-sectionHeader {
+ font-weight: bold;
+ font-size: 10pt;
+ margin: 0;
+ cursor: pointer;
+}
+.cesium-cesiumInspector-pickSection {
+ border: 1px solid #aaa;
+ border-radius: 5px;
+ padding: 3px;
+ margin-bottom: 5px;
+}
+.cesium-cesiumInspector-sectionContent {
+ margin-bottom: 10px;
+ transition: max-height 0.25s;
+}
+.cesium-cesiumInspector-tileText {
+ padding-bottom: 10px;
+ border-bottom: 1px solid #aaa;
+}
+.cesium-cesiumInspector-relativeText {
+ padding-top: 10px;
+}
+.cesium-cesiumInspector-sectionHeader::before {
+ margin-right: 5px;
+ content: "-";
+ width: 1ch;
+ display: inline-block;
+}
+.cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionHeader::before {
+ content: "+";
+}
+
+/* packages/widgets/Source/Cesium3DTilesInspector/Cesium3DTilesInspector.css */
+ul.cesium-cesiumInspector-statistics {
+ margin: 0;
+ padding-top: 3px;
+ padding-bottom: 3px;
+}
+ul.cesium-cesiumInspector-statistics + ul.cesium-cesiumInspector-statistics {
+ border-top: 1px solid #aaa;
+}
+.cesium-cesiumInspector-slider {
+ margin-top: 5px;
+}
+.cesium-cesiumInspector-slider input[type=number] {
+ text-align: left;
+ background-color: #222;
+ outline: none;
+ border: 1px solid #444;
+ color: #edffff;
+ width: 100px;
+ border-radius: 3px;
+ padding: 1px;
+ margin-left: 10px;
+ cursor: auto;
+}
+.cesium-cesiumInspector-slider input[type=number]::-webkit-outer-spin-button,
+.cesium-cesiumInspector-slider input[type=number]::-webkit-inner-spin-button {
+ -webkit-appearance: none;
+ margin: 0;
+}
+.cesium-cesiumInspector-slider input[type=range] {
+ margin-left: 5px;
+ vertical-align: middle;
+}
+.cesium-cesiumInspector-hide .cesium-cesiumInspector-styleEditor {
+ display: none;
+}
+.cesium-cesiumInspector-styleEditor {
+ padding: 10px;
+ border-radius: 5px;
+ background: rgba(48, 51, 54, 0.8);
+ border: 1px solid #444;
+}
+.cesium-cesiumInspector-styleEditor textarea {
+ width: 100%;
+ height: 300px;
+ background: transparent;
+ color: #edffff;
+ border: none;
+ padding: 0;
+ white-space: pre;
+ overflow-wrap: normal;
+ overflow-x: auto;
+}
+.cesium-3DTilesInspector {
+ width: 300px;
+ pointer-events: all;
+}
+.cesium-3DTilesInspector-statistics {
+ font-size: 11px;
+}
+.cesium-3DTilesInspector-disabledElementsInfo {
+ margin: 5px 0 0 0;
+ padding: 0 0 0 20px;
+ color: #eed202;
+}
+.cesium-3DTilesInspector div,
+.cesium-3DTilesInspector input[type=range] {
+ width: 100%;
+ box-sizing: border-box;
+}
+.cesium-cesiumInspector-error {
+ color: #ff9e9e;
+ overflow: auto;
+}
+.cesium-3DTilesInspector .cesium-cesiumInspector-section {
+ margin-top: 3px;
+}
+.cesium-3DTilesInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
+ border-top: 1px solid white;
+}
+input.cesium-cesiumInspector-url {
+ overflow: hidden;
+ white-space: nowrap;
+ overflow-x: scroll;
+ background-color: transparent;
+ color: white;
+ outline: none;
+ border: none;
+ height: 1em;
+ width: 100%;
+}
+.cesium-cesiumInspector .field-group {
+ display: table;
+}
+.cesium-cesiumInspector .field-group > label {
+ display: table-cell;
+ font-weight: bold;
+}
+.cesium-cesiumInspector .field-group > .field {
+ display: table-cell;
+ width: 100%;
+}
+
+/* packages/widgets/Source/VoxelInspector/VoxelInspector.css */
+.cesium-VoxelInspector {
+ width: 300px;
+ pointer-events: all;
+}
+.cesium-VoxelInspector div,
+.cesium-VoxelInspector input[type=range] {
+ width: 100%;
+ box-sizing: border-box;
+}
+.cesium-VoxelInspector .cesium-cesiumInspector-section {
+ margin-top: 3px;
+}
+.cesium-VoxelInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
+ border-top: 1px solid white;
+}
+
+/* packages/widgets/Source/FullscreenButton/FullscreenButton.css */
+.cesium-button.cesium-fullscreenButton {
+ display: block;
+ width: 100%;
+ height: 100%;
+ margin: 0;
+ border-radius: 0;
+}
+
+/* packages/widgets/Source/VRButton/VRButton.css */
+.cesium-button.cesium-vrButton {
+ display: block;
+ width: 100%;
+ height: 100%;
+ margin: 0;
+ border-radius: 0;
+}
+
+/* packages/widgets/Source/Geocoder/Geocoder.css */
+.cesium-viewer-geocoderContainer .cesium-geocoder-input {
+ border: solid 1px #444;
+ background-color: rgba(40, 40, 40, 0.7);
+ color: white;
+ display: inline-block;
+ vertical-align: middle;
+ width: 0;
+ height: 32px;
+ margin: 0;
+ padding: 0 32px 0 0;
+ border-radius: 0;
+ box-sizing: border-box;
+ transition: width ease-in-out 0.25s, background-color 0.2s ease-in-out;
+ -webkit-appearance: none;
+}
+.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input {
+ border-color: #aef;
+ box-shadow: 0 0 8px #fff;
+}
+.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
+ border-color: #ea4;
+ background-color: rgba(15, 15, 15, 0.9);
+ box-shadow: none;
+ outline: none;
+}
+.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,
+.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,
+.cesium-viewer-geocoderContainer .cesium-geocoder-input-wide {
+ padding-left: 4px;
+ width: 250px;
+}
+.cesium-viewer-geocoderContainer .search-results {
+ position: absolute;
+ background-color: #000;
+ color: #eee;
+ overflow-y: auto;
+ opacity: 0.8;
+ width: 100%;
+}
+.cesium-viewer-geocoderContainer .search-results ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+.cesium-viewer-geocoderContainer .search-results ul li {
+ font-size: 14px;
+ padding: 3px 10px;
+}
+.cesium-viewer-geocoderContainer .search-results ul li:hover {
+ cursor: pointer;
+}
+.cesium-viewer-geocoderContainer .search-results ul li.active {
+ background: #48b;
+}
+.cesium-geocoder-searchButton {
+ background-color: #303336;
+ display: inline-block;
+ position: absolute;
+ cursor: pointer;
+ width: 32px;
+ top: 1px;
+ right: 1px;
+ height: 30px;
+ vertical-align: middle;
+ fill: #edffff;
+}
+.cesium-geocoder-searchButton:hover {
+ background-color: #48b;
+}
+
+/* packages/widgets/Source/InfoBox/InfoBox.css */
+.cesium-infoBox {
+ display: block;
+ position: absolute;
+ top: 50px;
+ right: 0;
+ width: 40%;
+ max-width: 480px;
+ background: rgba(38, 38, 38, 0.95);
+ color: #edffff;
+ border: 1px solid #444;
+ border-right: none;
+ border-top-left-radius: 7px;
+ border-bottom-left-radius: 7px;
+ box-shadow: 0 0 10px 1px #000;
+ transform: translate(100%, 0);
+ visibility: hidden;
+ opacity: 0;
+ transition:
+ visibility 0s 0.2s,
+ opacity 0.2s ease-in,
+ transform 0.2s ease-in;
+}
+.cesium-infoBox-visible {
+ transform: translate(0, 0);
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.2s ease-out, transform 0.2s ease-out;
+}
+.cesium-infoBox-title {
+ display: block;
+ height: 20px;
+ padding: 5px 30px 5px 25px;
+ background: rgba(84, 84, 84, 1);
+ border-top-left-radius: 7px;
+ text-align: center;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ box-sizing: content-box;
+}
+.cesium-infoBox-bodyless .cesium-infoBox-title {
+ border-bottom-left-radius: 7px;
+}
+button.cesium-infoBox-camera {
+ display: block;
+ position: absolute;
+ top: 4px;
+ left: 4px;
+ width: 22px;
+ height: 22px;
+ background: transparent;
+ border-color: transparent;
+ border-radius: 3px;
+ padding: 0 5px;
+ margin: 0;
+}
+button.cesium-infoBox-close {
+ display: block;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ height: 20px;
+ background: transparent;
+ border: none;
+ border-radius: 2px;
+ font-weight: bold;
+ font-size: 16px;
+ padding: 0 5px;
+ margin: 0;
+ color: #edffff;
+}
+button.cesium-infoBox-close:focus {
+ background: rgba(238, 136, 0, 0.44);
+ outline: none;
+}
+button.cesium-infoBox-close:hover {
+ background: #888;
+ color: #000;
+}
+button.cesium-infoBox-close:active {
+ background: #a00;
+ color: #000;
+}
+.cesium-infoBox-bodyless .cesium-infoBox-iframe {
+ display: none;
+}
+.cesium-infoBox-iframe {
+ border: none;
+ width: 100%;
+ width: calc(100% - 2px);
+}
+
+/* packages/widgets/Source/SceneModePicker/SceneModePicker.css */
+span.cesium-sceneModePicker-wrapper {
+ display: inline-block;
+ position: relative;
+ margin: 0 3px;
+}
+.cesium-sceneModePicker-visible {
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.25s linear;
+}
+.cesium-sceneModePicker-hidden {
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility 0s 0.25s, opacity 0.25s linear;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-none {
+ display: none;
+}
+.cesium-sceneModePicker-slide-svg {
+ transition: left 2s;
+ top: 0;
+ left: 0;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 3px 0;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D,
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView,
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D {
+ margin: 0 0 3px 0;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-icon2D {
+ left: 100%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-iconColumbusView {
+ left: 200%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon3D {
+ left: -200%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon2D {
+ left: -100%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-icon3D {
+ left: -100%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-iconColumbusView {
+ left: 100%;
+}
+.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-selected {
+ border-color: #2e2;
+ box-shadow: 0 0 8px #fff, 0 0 8px #fff;
+}
+
+/* packages/widgets/Source/ProjectionPicker/ProjectionPicker.css */
+span.cesium-projectionPicker-wrapper {
+ display: inline-block;
+ position: relative;
+ margin: 0 3px;
+}
+.cesium-projectionPicker-visible {
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.25s linear;
+}
+.cesium-projectionPicker-hidden {
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility 0s 0.25s, opacity 0.25s linear;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-none {
+ display: none;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 3px 0;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic {
+ margin: 0 0 3px 0;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic {
+ left: 100%;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective {
+ left: -100%;
+}
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-selected {
+ border-color: #2e2;
+ box-shadow: 0 0 8px #fff, 0 0 8px #fff;
+}
+
+/* packages/widgets/Source/PerformanceWatchdog/PerformanceWatchdog.css */
+.cesium-performance-watchdog-message-area {
+ position: relative;
+ background-color: yellow;
+ color: black;
+ padding: 10px;
+}
+.cesium-performance-watchdog-message {
+ margin-right: 30px;
+}
+.cesium-performance-watchdog-message-dismiss {
+ position: absolute;
+ right: 0;
+ margin: 0 10px 0 0;
+}
+
+/* packages/widgets/Source/NavigationHelpButton/NavigationHelpButton.css */
+.cesium-navigationHelpButton-wrapper {
+ position: relative;
+ display: inline-block;
+}
+.cesium-navigation-help {
+ visibility: hidden;
+ position: absolute;
+ top: 38px;
+ right: 2px;
+ width: 250px;
+ border-radius: 10px;
+ transform: scale(0.01);
+ transform-origin: 234px -10px;
+ transition: visibility 0s 0.25s, transform 0.25s ease-in;
+}
+.cesium-navigation-help-visible {
+ visibility: visible;
+ transform: scale(1);
+ transition: transform 0.25s ease-out;
+}
+.cesium-navigation-help-instructions {
+ border: 1px solid #444;
+ background-color: rgba(38, 38, 38, 0.75);
+ padding-bottom: 5px;
+ border-radius: 0 0 10px 10px;
+}
+.cesium-click-navigation-help {
+ display: none;
+}
+.cesium-touch-navigation-help {
+ display: none;
+ padding-top: 5px;
+}
+.cesium-click-navigation-help-visible {
+ display: block;
+}
+.cesium-touch-navigation-help-visible {
+ display: block;
+}
+.cesium-navigation-help-pan {
+ color: #66ccff;
+ font-weight: bold;
+}
+.cesium-navigation-help-zoom {
+ color: #65fd00;
+ font-weight: bold;
+}
+.cesium-navigation-help-rotate {
+ color: #ffd800;
+ font-weight: bold;
+}
+.cesium-navigation-help-tilt {
+ color: #d800d8;
+ font-weight: bold;
+}
+.cesium-navigation-help-details {
+ color: #ffffff;
+}
+.cesium-navigation-button {
+ color: #fff;
+ background-color: transparent;
+ border-bottom: none;
+ border-top: 1px solid #444;
+ border-right: 1px solid #444;
+ margin: 0;
+ width: 50%;
+ cursor: pointer;
+}
+.cesium-navigation-button-icon {
+ vertical-align: middle;
+ padding: 5px 1px;
+}
+.cesium-navigation-button:focus {
+ outline: none;
+}
+.cesium-navigation-button-left {
+ border-radius: 10px 0 0 0;
+ border-left: 1px solid #444;
+}
+.cesium-navigation-button-right {
+ border-radius: 0 10px 0 0;
+ border-left: none;
+}
+.cesium-navigation-button-selected {
+ background-color: rgba(38, 38, 38, 0.75);
+}
+.cesium-navigation-button-unselected {
+ background-color: rgba(0, 0, 0, 0.75);
+}
+.cesium-navigation-button-unselected:hover {
+ background-color: rgba(76, 76, 76, 0.75);
+}
+
+/* packages/widgets/Source/SelectionIndicator/SelectionIndicator.css */
+.cesium-selection-wrapper {
+ position: absolute;
+ width: 160px;
+ height: 160px;
+ pointer-events: none;
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility 0s 0.2s, opacity 0.2s ease-in;
+}
+.cesium-selection-wrapper-visible {
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.2s ease-out;
+}
+.cesium-selection-wrapper svg {
+ fill: #2e2;
+ stroke: #000;
+ stroke-width: 1.1px;
+}
+
+/* packages/widgets/Source/Timeline/Timeline.css */
+.cesium-timeline-main {
+ position: relative;
+ left: 0;
+ bottom: 0;
+ overflow: hidden;
+ border: solid 1px #888;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.cesium-timeline-trackContainer {
+ width: 100%;
+ overflow: auto;
+ border-top: solid 1px #888;
+ position: relative;
+ top: 0;
+ left: 0;
+}
+.cesium-timeline-tracks {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+}
+.cesium-timeline-needle {
+ position: absolute;
+ left: 0;
+ top: 1.7em;
+ bottom: 0;
+ width: 1px;
+ background: #f00;
+}
+.cesium-timeline-bar {
+ position: relative;
+ left: 0;
+ top: 0;
+ overflow: hidden;
+ cursor: pointer;
+ width: 100%;
+ height: 1.7em;
+ background:
+ linear-gradient(
+ to bottom,
+ rgba(116, 117, 119, 0.8) 0%,
+ rgba(58, 68, 82, 0.8) 11%,
+ rgba(46, 50, 56, 0.8) 46%,
+ rgba(53, 53, 53, 0.8) 81%,
+ rgba(53, 53, 53, 0.8) 100%);
+}
+.cesium-timeline-ruler {
+ visibility: hidden;
+ white-space: nowrap;
+ font-size: 80%;
+ z-index: -200;
+}
+.cesium-timeline-highlight {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ background: #08f;
+}
+.cesium-timeline-ticLabel {
+ position: absolute;
+ top: 0;
+ left: 0;
+ white-space: nowrap;
+ font-size: 80%;
+ color: #eee;
+}
+.cesium-timeline-ticMain {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 1px;
+ height: 50%;
+ background: #eee;
+}
+.cesium-timeline-ticSub {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 1px;
+ height: 33%;
+ background: #aaa;
+}
+.cesium-timeline-ticTiny {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 1px;
+ height: 25%;
+ background: #888;
+}
+.cesium-timeline-icon16 {
+ display: block;
+ position: absolute;
+ width: 16px;
+ height: 16px;
+ background-image: url(data:text/plain;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIDBITKIVzLEMAAAKNSURBVEjHxdXNSxRhHAfw7zzrqhuoWJnSkrippUVSEKsHI9BTUYdAJA/RoYMREV26rAdn6tAfUARi16hQqkOBQRgUEYFWEC3OwczMjdZd92VmdWfmeelgTjO7q7gb0VzmmZnn85vvPPPMM8B/3qTcE2PPpuTZKB1eWuUQACgXYACYwVFbCTTVeZXB/i55o4LFelcAZfStYD4vpAoPGAGo4GBcQEgSOAUMQyAezwK6iQfDPXnhS/FkHZ+/8VLMWxxqWkfH3gbMRNOYi2roavbja0zHQmoFPYf8ED4Ko4aivm9MOG/u9I8mwrafeK7a/tVrNc/bARYN5noadeq7q0342vXw9CIMU6BmW8rVP9cPBPe52uu+v3O/y9sB4gkTWs6Qsk0mj5ExXMelejvA8WafYmkmGPHanTijdtvif8rx5RiCjdWKs2Cp3jWRDl96KhrbqlBeJqBOLyLQXg0IgbkZDS0dO8EZxZfPSTA9jvDDK3mT0OmP1FXh3XwEEAKdTX5MRWLgjCK4pwH3xt/YnjgLHAv4lHTCAKMMu/wV+KZGob6PoKyMQ0+sgBpZVJZn0NterxQaVqef/DRn+/EXYds/mZx2eVeAW9d65dhCEsaKCb7K8HH0gqTevyh9GDkn0VULRiaLzJKGBu9swfdaiie5RVo9ESURN8E8BE0n7ggACJy8KzghSCzp6DmwWxkaCm24EBXr8wI8Hrkq06QBiRC0t24HALS11IBTCyJl4vb1AXmzpbVYTwoVOXN0h7L8Mwtm8bXPybIQ/5FCX3dA2cr6XowvGCA02CvztAnz9+JiZk1AMxG6fEreSoBiPNmoyNnuWiWVzAIAtISO08E6pZi/3N96AIDn4E3h3P8L/wshP+txtEs4JAAAAABJRU5ErkJggg==);
+ background-repeat: no-repeat;
+}
+
+/* packages/widgets/Source/Viewer/Viewer.css */
+.cesium-viewer {
+ font-family: sans-serif;
+ font-size: 16px;
+ overflow: hidden;
+ display: block;
+ position: relative;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+.cesium-viewer-cesiumWidgetContainer {
+ width: 100%;
+ height: 100%;
+}
+.cesium-viewer-bottom {
+ display: block;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ padding-right: 5px;
+}
+.cesium-viewer .cesium-widget-credits {
+ display: inline;
+ position: static;
+ bottom: auto;
+ left: auto;
+ padding-right: 0;
+ color: #ffffff;
+ font-size: 10px;
+ text-shadow: 0 0 2px #000000;
+}
+.cesium-viewer-timelineContainer {
+ position: absolute;
+ bottom: 0;
+ left: 169px;
+ right: 29px;
+ height: 27px;
+ padding: 0;
+ margin: 0;
+ overflow: hidden;
+ font-size: 14px;
+}
+.cesium-viewer-animationContainer {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ width: 169px;
+ height: 112px;
+}
+.cesium-viewer-fullscreenContainer {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ padding: 0;
+ width: 29px;
+ height: 29px;
+ overflow: hidden;
+}
+.cesium-viewer-vrContainer {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ padding: 0;
+ width: 29px;
+ height: 29px;
+ overflow: hidden;
+}
+.cesium-viewer-toolbar {
+ display: block;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+}
+.cesium-viewer-cesiumInspectorContainer {
+ display: block;
+ position: absolute;
+ top: 50px;
+ right: 10px;
+}
+.cesium-viewer-geocoderContainer {
+ position: relative;
+ display: inline-block;
+ margin: 0 3px;
+}
+.cesium-viewer-cesium3DTilesInspectorContainer {
+ display: block;
+ position: absolute;
+ top: 50px;
+ right: 10px;
+ max-height: calc(100% - 120px);
+ box-sizing: border-box;
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+.cesium-viewer-voxelInspectorContainer {
+ display: block;
+ position: absolute;
+ top: 50px;
+ right: 10px;
+ max-height: calc(100% - 120px);
+ box-sizing: border-box;
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+
+/* packages/widgets/Source/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorer.css */
+.cesium-viewer-i3s-explorer ul {
+ list-style-type: none;
+}
+.cesium-viewer-i3s-explorer .layersList {
+ padding: 0;
+}
+.cesium-viewer-i3s-explorer input {
+ margin: 0 3px 0 0;
+}
+.cesium-viewer-i3s-explorer .expandItem {
+ cursor: pointer;
+ user-select: none;
+ width: 20px;
+}
+.cesium-viewer-i3s-explorer .nested,
+.cesium-viewer-i3s-explorer #bsl-wrapper {
+ display: none;
+}
+.cesium-viewer-i3s-explorer .active {
+ display: block;
+}
+.cesium-viewer-i3s-explorer .li-wrapper {
+ display: flex;
+ flex-direction: row;
+ align-content: center;
+}
+
+/* packages/widgets/Source/widgets.css */