index.module.scss 603 B

12345678910111213141516171819202122232425262728293031323334
  1. .A3hotList {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 30001;
  8. background-color: rgba(255, 255, 255, 0.4);
  9. backdrop-filter: blur(4px);
  10. padding: 10%;
  11. transition: all 0.3s;
  12. :global {
  13. .A3close {
  14. position: absolute;
  15. top: 20px;
  16. right: 20px;
  17. cursor: pointer;
  18. }
  19. .A3main {
  20. width: 100%;
  21. height: 100%;
  22. background-color: red;
  23. color: #fff;
  24. overflow: auto;
  25. & > div {
  26. cursor: pointer;
  27. margin-bottom: 10px;
  28. &:hover {
  29. color: blue;
  30. }
  31. }
  32. }
  33. }
  34. }