empty.wxss 442 B

12345678910111213141516171819202122
  1. .empty-content {
  2. display: flex;
  3. -webkit-box-align: center;
  4. align-items: center;
  5. -webkit-box-pack: center;
  6. justify-content: center;
  7. -webkit-box-orient: vertical;
  8. -webkit-box-direction: normal;
  9. flex-direction: column;
  10. position: fixed;
  11. left: 0;
  12. top: 0;
  13. right: 0;
  14. bottom: 0;
  15. background: #f8f8f8;
  16. padding-bottom: 120rpx;
  17. }
  18. .empty-content-image {
  19. width: 200rpx;
  20. height: 200rpx;
  21. }