123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .LookDom {
- transition: opacity 0.3s;
- position: fixed;
- z-index: 10000;
- opacity: 0;
- pointer-events: none !important;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- // background-color: rgba(0, 0, 0, 0.6);
- :global {
- .close {
- opacity: 0;
- color: #fff;
- position: absolute;
- right: 70px;
- top: 70px;
- font-size: 30px;
- cursor: pointer;
- z-index: 1000;
- }
- .viedoBox {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 800px;
- height: 500px;
- pointer-events: auto;
- video {
- width: 100%;
- height: 100%;
- }
- }
- .audioBox {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 500px;
- height: 60px;
- audio {
- width: 100%;
- height: 100%;
- }
- }
- .modelBox {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- iframe {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
|