store.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/store/store.wxss */
  2. .content{
  3. margin: 34rpx 0;
  4. flex: 1;
  5. overflow: auto;
  6. background: url('https://a.bianyifang.com/static/image/baohua4.png') no-repeat;
  7. background-size: 100% 100%;
  8. }
  9. .list-card{
  10. display: flex;
  11. align-items: center;
  12. height: 160rpx;
  13. margin: 0 32rpx 48rpx;
  14. background-color:rgba(255, 255, 255, 0.8);
  15. border-radius: 20rpx;
  16. padding: 32rpx 16rpx;
  17. }
  18. .no-margin{
  19. margin-bottom: 0;
  20. }
  21. .card-img{
  22. width: 160rpx;
  23. height: 160rpx;
  24. border-radius: 28rpx;
  25. margin-right: 18rpx;
  26. }
  27. .card-ri{
  28. flex: 1;
  29. overflow: hidden;
  30. }
  31. .card-ri-title{
  32. font-weight: 500;
  33. font-size: 28rpx;
  34. color: #000000;
  35. line-height: 40rpx;
  36. }
  37. .card-ri-time{
  38. font-weight: 400;
  39. font-size: 24rpx;
  40. color: #666666;
  41. margin: 12rpx 0 28rpx;
  42. box-sizing: border-box;
  43. line-height: 40rpx;
  44. }
  45. .card-ri-address{
  46. display: flex;
  47. align-items: center;
  48. justify-content: space-between;
  49. font-weight: 400;
  50. font-size: 24rpx;
  51. color: #333333;
  52. line-height: 40rpx;
  53. }
  54. .address-text{
  55. margin-right: 10rpx;
  56. }
  57. .loading{
  58. color: #969799;
  59. font-size:24rpx;
  60. text-align: center;
  61. padding-bottom: 15rpx;
  62. }