index.wxss 498 B

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