myDelivery.scss 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* 我的投递 */
  2. .delivery {
  3. &-list {
  4. &-item {
  5. display: flex;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 18rpx 20rpx;
  9. border-top: solid 1px #f3f3f3;
  10. &-left {
  11. display: flex;
  12. align-items: center;
  13. &-image {
  14. width: 104rpx;
  15. height: 104rpx;
  16. margin-right: 40rpx;
  17. image {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. }
  22. &-info {
  23. font-size: 22rpx;
  24. font-family: 'Microsoft YaHei';
  25. color: #a6a6a6;
  26. line-height: 50rpx;
  27. view {
  28. &:first-child {
  29. color: #383838;
  30. font-size: 30rpx;
  31. font-weight: bold;
  32. }
  33. }
  34. }
  35. }
  36. &-right {
  37. view {
  38. font-size: 22rpx;
  39. font-family: 'Microsoft YaHei';
  40. color: #a6a6a6;
  41. &:first-child {
  42. color: #ff5733;
  43. margin-bottom: 20rpx;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }