confirm-receiving.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. @import "../../../../themes/page.scss";
  2. @import "../../searc-list.scss";
  3. /* module/article/pages/confirm-receiving/confirm-receiving.scss */
  4. .confirm-receive-container {
  5. // background: #f7f8fa;
  6. background: white;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: stretch;
  10. padding-bottom: 48rpx;
  11. }
  12. .order-goods-list {
  13. margin-top: 32rpx;
  14. }
  15. .goods-card {
  16. display: flex;
  17. background: #fff;
  18. border-radius: 20rpx;
  19. // box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.04);
  20. margin: 0 24rpx 24rpx 24rpx;
  21. padding: 24rpx;
  22. align-items: center;
  23. gap: 24rpx;
  24. }
  25. .goods-img {
  26. width: 140rpx;
  27. height: 140rpx;
  28. border-radius: 12rpx;
  29. object-fit: cover;
  30. margin-right: 16rpx;
  31. }
  32. .goods-info {
  33. flex: 1;
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-between;
  37. margin-left: 10rpx;
  38. min-height: 115rpx;
  39. }
  40. .goods-checkbox {
  41. flex-shrink: 0;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46. .goods-title {
  47. font-size: 30rpx;
  48. font-weight: 600;
  49. color: #222;
  50. margin-bottom: 8rpx;
  51. line-height: 1.2;
  52. }
  53. .goods-count {
  54. font-size: 26rpx;
  55. color: #888;
  56. margin-bottom: 12rpx;
  57. }
  58. .goods-express {
  59. display: flex;
  60. align-items: center;
  61. font-size: 26rpx;
  62. }
  63. .express-label {
  64. color: #888;
  65. }
  66. .express-no {
  67. color: #2a7cff;
  68. margin-left: 8rpx;
  69. text-decoration: underline;
  70. }
  71. .express-none {
  72. color: #bbb;
  73. margin-left: 8rpx;
  74. }
  75. .confirm-title {
  76. margin: 64rpx 0 16rpx 0;
  77. text-align: center;
  78. font-size: 32rpx;
  79. font-weight: 600;
  80. color: #222;
  81. }
  82. .confirm-desc {
  83. text-align: center;
  84. color: #bbb;
  85. font-size: 26rpx;
  86. margin-bottom: 120rpx;
  87. }
  88. .confirm-footer {
  89. display: flex;
  90. justify-content: center;
  91. gap: 32rpx;
  92. position: fixed;
  93. left: 0;
  94. bottom: 0;
  95. width: 100vw;
  96. background: #fff;
  97. padding: 24rpx 0 32rpx 0;
  98. box-shadow: 0 -2rpx 8rpx rgba(0,0,0,0.04);
  99. z-index: 100;
  100. .footer-btn {
  101. flex: 1;
  102. margin: 0 24rpx;
  103. font-size: 30rpx;
  104. border-radius: 12rpx;
  105. height: 88rpx;
  106. }
  107. }