拓恒飞手平台小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
639B

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