1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/role/introducerList.wxss */
- 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;
- }
|