myDelivery.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* 我的投递 */
  2. .delivery {
  3. min-height: calc(100vh - 44px);
  4. background-color: #F2F2F2;
  5. &-list {
  6. padding: 28rpx 0;
  7. &-item {
  8. display: flex;
  9. justify-content: space-between;
  10. padding: 26rpx 30rpx;
  11. border-top: solid 1px #f3f3f3;
  12. background-color: #fff;
  13. margin-bottom: 20rpx;
  14. &-left {
  15. display: flex;
  16. align-items: center;
  17. &-image {
  18. width: 104rpx;
  19. height: 104rpx;
  20. margin-right: 40rpx;
  21. border: solid 1px #E1E1E1;
  22. border-radius: 8rpx;
  23. image {
  24. width: 100%;
  25. height: 100%;
  26. border-radius: 8rpx;
  27. }
  28. }
  29. &-info {
  30. font-size: 22rpx;
  31. font-family: 'Microsoft YaHei';
  32. color: #9B9B9B;
  33. line-height: 50rpx;
  34. font-weight: 400;
  35. view {
  36. &:first-child {
  37. color: #000;
  38. font-size: 30rpx;
  39. }
  40. &:last-child {
  41. color: #bbb;
  42. }
  43. }
  44. }
  45. }
  46. &-right {
  47. display: flex;
  48. flex-direction: column;
  49. view {
  50. font-size: 22rpx;
  51. font-family: 'Microsoft YaHei';
  52. color: #BCBCBC;
  53. font-weight: 400;
  54. &:first-child {
  55. color: #EE5A10;
  56. font-weight: 500;
  57. flex: 1;
  58. }
  59. }
  60. }
  61. }
  62. }
  63. }