index.module.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .LookGood {
  2. position: absolute;
  3. z-index: 10;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. opacity: 0.1;
  9. transition: opacity 0.5s;
  10. :global {
  11. .Lcolse {
  12. z-index: 10;
  13. cursor: pointer;
  14. position: absolute;
  15. top: 20px;
  16. right: 20px;
  17. width: 50px;
  18. }
  19. .Lmain {
  20. position: absolute;
  21. top: 50%;
  22. left: 50%;
  23. transform: translate(-50%, -50%);
  24. width: 860px;
  25. height: 560px;
  26. .LmainCen {
  27. width: 100%;
  28. height: 490px;
  29. .Limg {
  30. width: 100%;
  31. height: 100%;
  32. cursor: zoom-in;
  33. & > img {
  34. pointer-events: none;
  35. width: 100%;
  36. height: 100%;
  37. object-fit: contain !important;
  38. }
  39. }
  40. video {
  41. width: 100%;
  42. height: 100%;
  43. }
  44. }
  45. .LmTxt {
  46. font-size: 22px;
  47. font-weight: 700;
  48. display: flex;
  49. align-items: flex-end;
  50. justify-content: center;
  51. height: 70px;
  52. }
  53. }
  54. .LmainFull {
  55. top: 0;
  56. left: 0;
  57. width: 100%;
  58. height: 100%;
  59. transform: translate(0, 0);
  60. .LmainCen {
  61. height: 100%;
  62. overflow: hidden;
  63. iframe {
  64. width: 100%;
  65. height: 100%;
  66. }
  67. }
  68. .LmTxt {
  69. position: absolute;
  70. z-index: 5;
  71. bottom: 40px;
  72. width: 100%;
  73. left: 0;
  74. }
  75. }
  76. }
  77. }