index.scss 863 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .custom-list{
  2. display: flex;
  3. flex-direction: column;
  4. height: 100vh;
  5. .search{
  6. width: 100%;
  7. z-index: 2;
  8. border-bottom: 1px solid #e1e1e1;
  9. .van-search{
  10. background-color: #F2F3F4;
  11. }
  12. .van-search__content{
  13. background-color: #fff;
  14. border-radius: 34px;
  15. }
  16. }
  17. .filter{
  18. width: 100%;
  19. border-bottom: 1px solid #e1e1e1;
  20. }
  21. &.has-search{
  22. .custom-van-list{
  23. // margin-top: 54px;
  24. }
  25. }
  26. &.has-filter{
  27. .custom-van-list{
  28. margin-top: 99px;
  29. }
  30. }
  31. }
  32. .mainNobotHasTop{
  33. .custom-list{
  34. height: calc(100vh - 45px);
  35. .search{
  36. top: 45px;
  37. }
  38. .filter{
  39. top: 99px;
  40. }
  41. }
  42. }
  43. .van-pull-refresh {
  44. flex-grow: 1;
  45. }