nomore.wxss 395 B

1234567891011121314151617181920212223
  1. /* components/nomore/nomore.wxss */
  2. .empty {
  3. height: 85rpx;
  4. font-size: 26rpx;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. color: #999999;
  9. }
  10. .empty::after {
  11. content: '';
  12. width: 74rpx;
  13. margin-left: 14rpx;
  14. background: #D8D8D8;
  15. height: 2rpx;
  16. }
  17. .empty::before {
  18. content: '';
  19. width: 74rpx;
  20. margin-right: 14rpx;
  21. background: #D8D8D8;
  22. height: 2rpx;
  23. }