123456789101112131415161718192021222324252627282930313233343536 |
- page{
- height: 100%;
- }
- .container{
- height: 100%;
- }
- .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;
- }
|