store.wxss 953 B

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