123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- ul,
- ol {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- margin: 0;
- box-sizing: border-box;
- overflow-x: hidden;
- }
- body {
- font-family: "Trebuchet MS", sans-serif;
- padding: 15px;
- }
- .demoHeaders {
- margin-top: 2em;
- }
- #dialog-link {
- padding: 0.4em 1em 0.4em 20px;
- text-decoration: none;
- position: relative;
- }
- #dialog-link span.ui-icon {
- margin: 0 5px 0 0;
- position: absolute;
- left: 0.2em;
- top: 50%;
- margin-top: -8px;
- }
- #icons {
- margin: 0;
- padding: 0;
- }
- #icons li {
- margin: 2px;
- position: relative;
- padding: 4px 0;
- cursor: pointer;
- float: left;
- list-style: none;
- }
- #icons span.ui-icon {
- float: left;
- margin: 0 4px;
- }
- .fakewindowcontain .ui-widget-overlay {
- position: absolute;
- }
- select {
- width: 200px;
- }
- .panorama-box {
- display: flex;
- fieldset:first-child{
- flex: 1;
- }
- fieldset:last-child{
- width: 300px;
- }
- .video-container {
- border: 1.5px solid #c0c0c0;
- margin-top: 15px;
- display: flex;
- position: relative;
- cursor: pointer;
- canvas {
- width: 100%;
- aspect-ratio: 3840 / 2160;
- }
- .video-tip {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- display: none;
- }
- }
- }
- .tip {
- background-color: #fff3a5;
- padding: 0.5em 1em;
- margin: 1em;
- border-radius: 5px;
- }
- .particulars-box {
- &-list {
- display: flex;
- gap: 15px;
- &-item {
- flex: 1;
- .video-container {
- display: flex;
- cursor: pointer;
- margin-top: 15px;
- border: 1.5px solid #c0c0c0;
- position: relative;
- overflow: hidden;
- aspect-ratio: 16/9;
- canvas {
- aspect-ratio: 16/9;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- cursor: move;
- transform-origin: top left;
- max-width: none;
- }
- .video-tip1,
- .video-tip2 {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- display: none;
- }
- }
- &.active .video-container {
- border-color: red;
- }
- }
- }
- }
- .lx-style {
- animation-name: fadeIn;
- animation-duration: 1s;
- animation-direction: alternate;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
- background: red !important;
- color: #fff !important;
- }
- @keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
|