index.less 390 B

12345678910111213141516171819202122
  1. /* components/w-empty/index.wxss */
  2. .w-empty {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. flex-direction: column;
  7. box-sizing: border-box;
  8. text-align: center;
  9. .w-empty__img {
  10. width: 440rpx;
  11. height: 440rpx;
  12. }
  13. .w-empty__text {
  14. font-size: 32rpx;
  15. color: #999999;
  16. line-height: 44rpx;
  17. text-align: center;
  18. padding-top: 20rpx;
  19. }
  20. }