No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

38 líneas
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. }