myDelivery.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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: 26rpx;
  31. font-family: 'Microsoft YaHei';
  32. color: #525252;
  33. line-height: 50rpx;
  34. font-weight: 400;
  35. view {
  36. &:first-child {
  37. color: #000;
  38. font-weight: 600;
  39. font-size: 36rpx;
  40. }
  41. &:last-child {
  42. color: #525252;
  43. }
  44. }
  45. }
  46. }
  47. &-right {
  48. display: flex;
  49. flex-direction: column;
  50. view {
  51. font-size: 26rpx;
  52. font-family: 'Microsoft YaHei';
  53. color: #525252;
  54. font-weight: 400;
  55. }
  56. .salary {
  57. font-size: 28rpx;
  58. color: #EE5A10;
  59. font-weight: 700;
  60. margin-bottom: 70rpx;
  61. }
  62. .off-the-shelf {
  63. color: #525252;
  64. margin-bottom: 70rpx;
  65. }
  66. }
  67. }
  68. }
  69. }