| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .custom-list{
- display: flex;
- flex-direction: column;
- height: 100vh;
- .search{
- width: 100%;
- z-index: 2;
- border-bottom: 1px solid #e1e1e1;
- .van-search{
- background-color: #F2F3F4;
- }
- .van-search__content{
- background-color: #fff;
- border-radius: 34px;
- }
- }
- .filter{
- width: 100%;
- border-bottom: 1px solid #e1e1e1;
- }
- &.has-search{
- .custom-van-list{
- // margin-top: 54px;
- }
- }
-
- &.has-filter{
- .custom-van-list{
- margin-top: 99px;
- }
- }
- }
- .mainNobotHasTop{
- .custom-list{
- height: calc(100vh - 45px);
- .search{
- top: 45px;
- }
- .filter{
- top: 99px;
- }
-
- }
- }
- .van-pull-refresh {
- flex-grow: 1;
- }
|