myDelivery.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. &-image {
  19. width: 104rpx;
  20. height: 104rpx;
  21. margin-right: 40rpx;
  22. border: solid 1px #E1E1E1;
  23. border-radius: 8rpx;
  24. image {
  25. width: 100%;
  26. height: 100%;
  27. border-radius: 8rpx;
  28. }
  29. }
  30. &-info {
  31. font-size: 26rpx;
  32. font-family: 'Microsoft YaHei';
  33. color: #525252;
  34. line-height: 50rpx;
  35. font-weight: 400;
  36. view {
  37. &:first-child {
  38. color: #000;
  39. font-weight: 600;
  40. font-size: 36rpx;
  41. }
  42. &:last-child {
  43. color: #525252;
  44. }
  45. }
  46. }
  47. }
  48. &-right {
  49. display: flex;
  50. flex-direction: column;
  51. view {
  52. font-size: 26rpx;
  53. font-family: 'Microsoft YaHei';
  54. color: #525252;
  55. font-weight: 400;
  56. }
  57. .salary {
  58. font-size: 28rpx;
  59. color: #EE5A10;
  60. font-weight: 700;
  61. margin-bottom: 70rpx;
  62. }
  63. .off-the-shelf {
  64. color: #525252;
  65. margin-bottom: 70rpx;
  66. }
  67. }
  68. }
  69. }
  70. }