storeIcon.wxss 944 B

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