123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/store/store.wxss */
- .content{
- margin: 34rpx 0;
- flex: 1;
- overflow: auto;
- }
- .list-card{
- display: flex;
- align-items: center;
- height: 160rpx;
- margin: 0 32rpx 48rpx;
- }
- .no-margin{
- margin-bottom: 0;
- }
- .card-img{
- width: 160rpx;
- height: 160rpx;
- border-radius: 28rpx;
- margin-right: 18rpx;
- }
- .card-ri{
- flex: 1;
- overflow: hidden;
- }
- .card-ri-title{
- font-weight: 500;
- font-size: 28rpx;
- color: #000000;
- line-height: 40rpx;
- }
- .card-ri-time{
- font-weight: 400;
- font-size: 24rpx;
- color: #666666;
- margin: 12rpx 0 28rpx;
- box-sizing: border-box;
- line-height: 40rpx;
- }
- .card-ri-address{
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- line-height: 40rpx;
- }
- .address-text{
- margin-right: 10rpx;
- }
- .loading{
- color: #969799;
- font-size:24rpx;
- text-align: center;
- padding-bottom: 15rpx;
- }
|