index.scss 574 B

1234567891011121314151617181920212223242526272829303132333435
  1. #popup {
  2. display: none;
  3. position: relative;
  4. padding: 0;
  5. width: 100%;
  6. height: 100%;
  7. text-align: center;
  8. background: rgba(0, 0, 0, 0.6);
  9. z-index: var(--z-hot-popper);
  10. &.wait {
  11. opacity: 0.1;
  12. }
  13. }
  14. #id1 {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .popup-content {
  19. position: relative;
  20. width: 100%;
  21. height: 100%;
  22. overflow: hidden;
  23. }
  24. #closepop {
  25. position: absolute;
  26. top: 30px;
  27. right: 30px;
  28. width: 60px;
  29. height: 60px;
  30. cursor: pointer;
  31. text-indent: -999em;
  32. background-size: 100% 100%;
  33. background: url('/public/images/close1.png') no-repeat;
  34. }