empty.wxss 526 B

123456789101112131415161718192021222324252627282930
  1. /* component/empty/empty.wxss */
  2. .empty {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .empty-image {
  10. width: 260rpx;
  11. margin-top: 180rpx;
  12. }
  13. .empty-text {
  14. font-size: 34rpx;
  15. font-family: PingFangSC-Medium, PingFang SC;
  16. font-weight: 500;
  17. color: rgba(0, 0, 0, 0.45);
  18. margin-top: 100rpx;
  19. }
  20. .empty-message {
  21. font-size: 28rpx;
  22. font-family: PingFangSC-Regular, PingFang SC;
  23. font-weight: 400;
  24. color: rgba(0, 0, 0, 0.25);
  25. margin-top: 10rpx;
  26. }