nomore.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .tui-loadmore {
  2. width: 48%;
  3. margin: 1.5em auto;
  4. line-height: 1.5em;
  5. font-size: 24rpx;
  6. text-align: center;
  7. }
  8. .tui-nomore {
  9. position: relative;
  10. text-align: center;
  11. display: flex;
  12. justify-content: center;
  13. margin-top: 10rpx;
  14. padding-bottom: 44rpx;
  15. }
  16. .tui-nomore::before {
  17. content: '';
  18. position: absolute;
  19. border-bottom: 1rpx solid #e5e5e5;
  20. -webkit-transform: scaleY(0.5);
  21. transform: scaleY(0.5);
  22. width: 360rpx;
  23. top: 18rpx;
  24. }
  25. .tui-text {
  26. position: absolute;
  27. color: #999;
  28. font-size: 24rpx;
  29. text-align: center;
  30. padding: 0 18rpx;
  31. height: 36rpx;
  32. line-height: 36rpx;
  33. z-index: 1;
  34. }
  35. .tui-nomore-dot {
  36. position: relative;
  37. text-align: center;
  38. display: flex;
  39. justify-content: center;
  40. margin-top: 10rpx;
  41. padding-bottom: 40rpx;
  42. }
  43. .tui-nomore-dot::before {
  44. content: '';
  45. position: absolute;
  46. border-bottom: 1rpx solid #e5e5e5;
  47. -webkit-transform: scaleY(0.5);
  48. transform: scaleY(0.5);
  49. width: 360rpx;
  50. top: 18rpx;
  51. }
  52. .tui-dot-text {
  53. position: absolute;
  54. color: #e5e5e5;
  55. font-size: 10px;
  56. text-align: center;
  57. width: 50rpx;
  58. height: 36rpx;
  59. line-height: 36rpx;
  60. transform: scale(0.8);
  61. transform-origin: center center;
  62. z-index: 1;
  63. }