side.wxss 501 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. page {
  2. background: #f1f1f1;
  3. }
  4. .side {
  5. background: #f1f1f1;
  6. position: fixed;
  7. top: 0;
  8. width: 650rpx;
  9. height: 100%;
  10. box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  11. left: 0;
  12. overflow-y: auto;
  13. }
  14. .side-right {
  15. left: auto;
  16. right: 0;
  17. }
  18. .side-list {
  19. width: 400rpx;
  20. }
  21. .side-close {
  22. background: rgba(0, 0, 0, 0.1);
  23. width: 350rpx;
  24. height: 100%;
  25. position: fixed;
  26. z-index: 997;
  27. right: 0rpx;
  28. top: 0rpx;
  29. }
  30. .side-right .side-close{
  31. width: 100rpx;
  32. left: 0rpx;
  33. right: auto;
  34. }