您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

38 行
617B

  1. /* components/List/index.wxss */
  2. .list {
  3. box-sizing: border-box;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .min-height {
  8. height: 400rpx;
  9. }
  10. ::-webkit-scrollbar {
  11. display: none;
  12. width: 0;
  13. height: 0;
  14. color: transparent;
  15. }
  16. .empty {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: center;
  21. transform: translateY(100rpx);
  22. }
  23. .empty .image {
  24. height: 201rpx;
  25. width: 306rpx;
  26. }
  27. .empty-text {
  28. font-size: 30rpx;
  29. font-family: "PingFangSC-Regular", "PingFang SC";
  30. font-weight: normal;
  31. color: rgba(0, 0, 0, 0.4);
  32. margin-top: 26rpx;
  33. }