index.module.scss 1.0 KB

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