| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .LookDom {
- transition: opacity 0.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, 0.6);
- :global {
- .close {
- color: #fff;
- position: absolute;
- right: 70px;
- top: 70px;
- font-size: 30px;
- cursor: pointer;
- z-index: 10;
- }
- .closeModel {
- right: aoto;
- left: 40px;
- top: 40px;
- img {
- width: 50px;
- }
- }
- .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 {
- background-color: rgba(0, 0, 0, 0.7);
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- iframe {
- width: 100%;
- height: 100%;
- }
- .modelBtn {
- cursor: pointer;
- position: absolute;
- z-index: 10;
- right: 30px;
- bottom: 50px;
- img {
- display: block;
- margin: 15px 0;
- }
- }
- .modelName {
- pointer-events: none;
- position: absolute;
- z-index: 10;
- bottom: 80px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 18px;
- font-weight: 700;
- color: var(--themeColor);
- letter-spacing: 4px;
- }
- }
- }
- }
|