index.module.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .LookDom {
  2. transition: opacity 0.3s;
  3. position: fixed;
  4. z-index: 10000;
  5. opacity: 0;
  6. pointer-events: none !important;
  7. top: 0;
  8. left: 0;
  9. width: 100vw;
  10. height: 100vh;
  11. // background-color: rgba(0, 0, 0, 0.6);
  12. :global {
  13. .close {
  14. opacity: 0;
  15. color: #fff;
  16. position: absolute;
  17. right: 70px;
  18. top: 70px;
  19. font-size: 30px;
  20. cursor: pointer;
  21. z-index: 1000;
  22. }
  23. .viedoBox {
  24. position: absolute;
  25. top: 50%;
  26. left: 50%;
  27. transform: translate(-50%, -50%);
  28. width: 800px;
  29. height: 500px;
  30. pointer-events: auto;
  31. video {
  32. width: 100%;
  33. height: 100%;
  34. }
  35. }
  36. .audioBox {
  37. position: absolute;
  38. top: 50%;
  39. left: 50%;
  40. transform: translate(-50%, -50%);
  41. width: 500px;
  42. height: 60px;
  43. audio {
  44. width: 100%;
  45. height: 100%;
  46. }
  47. }
  48. .modelBox {
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. width: 100%;
  53. height: 100%;
  54. iframe {
  55. width: 100%;
  56. height: 100%;
  57. }
  58. }
  59. }
  60. }