empty.wxss 468 B

1234567891011121314151617181920212223242526272829303132
  1. .empty-container {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. bottom: 0;
  6. right: 0;
  7. z-index: 10;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. min-height: 375rpx;
  12. }
  13. .empty-wrap {
  14. display: flex;
  15. flex-flow: column nowrap;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .empty-img {
  20. width: 196rpx;
  21. height: auto;
  22. }
  23. .empty-txt {
  24. margin-top: 20rpx;
  25. text-align: center;
  26. font-size: 28rpx;
  27. font-weight: 400;
  28. color: #999;
  29. }