emptyPage.wxss 756 B

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