myDelivery.scss 1.3 KB

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