12345678910111213141516171819202122232425262728293031323334353637 |
- page{
- height: 100%;
- }
- .container{
- height: 100%;
- padding-bottom: calc(env(safe-area-inset-bottom) / 2 + 100rpx);
- }
- .store-grid{
- background-color: #ffffff;
- }
- .store-list-row{
- display: flex;
- align-items: center;
- position: relative;
- }
- .store-list-row .store-name{
- font-weight: 600;
- }
- .store-list-row .store-mobile{
- font-size:24rpx;
- color:#999;
- }
- .store-list-row .store-img{
- float:right;
- flex-direction: column;
- align-items: center;
- height:100rpx;
- width:100rpx;
- }
- .store-list-row .store-img image{
- height:100rpx;
- width:100rpx;
- }
|