empty.wxss 801 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .empty-content {
  12. display: -webkit-box;
  13. display: -webkit-flex;
  14. display: flex;
  15. -webkit-box-align: center;
  16. -webkit-align-items: center;
  17. align-items: center;
  18. -webkit-box-pack: center;
  19. -webkit-justify-content: center;
  20. justify-content: center;
  21. -webkit-box-orient: vertical;
  22. -webkit-box-direction: normal;
  23. -webkit-flex-direction: column;
  24. flex-direction: column;
  25. position: fixed;
  26. left: 0;
  27. top: 0;
  28. right: 0;
  29. bottom: 0;
  30. background: #f8f8f8;
  31. padding-bottom: 120rpx;
  32. }
  33. .empty-content-image {
  34. width: 200rpx;
  35. height: 200rpx;
  36. }