index.wxss 564 B

12345678910111213141516171819202122232425262728293031323334353637
  1. page{
  2. height: 100%;
  3. }
  4. .container{
  5. height: 100%;
  6. padding-bottom: calc(env(safe-area-inset-bottom) / 2 + 100rpx);
  7. }
  8. .store-grid{
  9. background-color: #ffffff;
  10. }
  11. .store-list-row{
  12. display: flex;
  13. align-items: center;
  14. position: relative;
  15. }
  16. .store-list-row .store-name{
  17. font-weight: 600;
  18. }
  19. .store-list-row .store-mobile{
  20. font-size:24rpx;
  21. color:#999;
  22. }
  23. .store-list-row .store-img{
  24. float:right;
  25. flex-direction: column;
  26. align-items: center;
  27. height:100rpx;
  28. width:100rpx;
  29. }
  30. .store-list-row .store-img image{
  31. height:100rpx;
  32. width:100rpx;
  33. }