1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .LookGood {
- position: absolute;
- z-index: 10;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0.1;
- transition: opacity 0.5s;
- :global {
- .Lcolse {
- z-index: 10;
- cursor: pointer;
- position: absolute;
- top: 20px;
- right: 20px;
- width: 50px;
- }
- .Lmain {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 860px;
- height: 560px;
- .LmainCen {
- width: 100%;
- height: 490px;
- .Limg {
- width: 100%;
- height: 100%;
- cursor: zoom-in;
- & > img {
- pointer-events: none;
- width: 100%;
- height: 100%;
- object-fit: contain !important;
- }
- }
- video {
- width: 100%;
- height: 100%;
- }
- }
- .LmTxt {
- font-size: 22px;
- font-weight: 700;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- height: 70px;
- }
- }
- .LmainFull {
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- transform: translate(0, 0);
- .LmainCen {
- height: 100%;
- overflow: hidden;
- iframe {
- width: 100%;
- height: 100%;
- }
- }
- .LmTxt {
- position: absolute;
- z-index: 5;
- bottom: 40px;
- width: 100%;
- left: 0;
- }
- }
- }
- }
|