1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .LookDom {
- transition: opacity .3s;
- position: fixed;
- z-index: 9991;
- opacity: 0;
- pointer-events: none;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, .6);
- :global {
- .close {
- color: #fff;
- position: absolute;
- right: 70px;
- top: 70px;
- font-size: 30px;
- cursor: pointer;
- z-index: 10;
- }
- .viedoBox {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 800px;
- height: 500px;
- 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%;
- }
- }
- }
- }
|