empty.wxss 736 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-empty {
  29. display: flex;
  30. flex-direction: column;
  31. }
  32. .t-empty__content {
  33. text-align: center;
  34. }
  35. .t-empty__img {
  36. width: 100rpx;
  37. height: 100rpx;
  38. }
  39. .t-empty__description {
  40. margin-top: 48rpx;
  41. text-align: center;
  42. color: rgba(0, 0, 0, 0.4);
  43. font-size: 28rpx;
  44. line-height: 44rpx;
  45. }
  46. .t-empty__description + .t-empty__actions:not(:empty) {
  47. margin-top: 48rpx;
  48. }