empty-page.wxss 448 B

1234567891011121314151617181920212223242526272829303132
  1. /* components/empty-page/empty-page.wxss */
  2. /* 空白页 */
  3. .no_data {
  4. width: 100%;
  5. padding-top: 35%;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. flex-direction: column;
  10. }
  11. .white {
  12. width: 208rpx;
  13. height: 320rpx;
  14. }
  15. .no_text {
  16. color: #666;
  17. font-size: 34rpx;
  18. margin-top: 58rpx;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. }
  23. .no_text .text {
  24. color: #999;
  25. font-size: 28rpx;
  26. margin-top: 16rpx;
  27. }