shoppingCar.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .wrapper {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. padding: 34rpx 0;
  6. }
  7. .list {
  8. display: flex;
  9. align-items: center;
  10. width: 100%;
  11. margin-bottom: 40rpx;
  12. }
  13. .icon-wrap {
  14. display: flex;
  15. width: 114rpx;
  16. padding-left: 30rpx;
  17. image {
  18. width: 34rpx;
  19. height: 32rpx;
  20. background: pink;
  21. }
  22. }
  23. .goods-wrap {
  24. display: flex;
  25. align-items: center;
  26. width: calc(100% - 114rpx);
  27. }
  28. .photo-wrap {
  29. width: 202rpx;
  30. height: 194rpx;
  31. border-radius: 20rpx;
  32. overflow: hidden;
  33. image {
  34. display: block;
  35. width: 100%;
  36. height: 100%;
  37. background: pink;
  38. }
  39. }
  40. .info {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: space-between;
  44. width: calc(100% - 202rpx);
  45. min-height: 194rpx;
  46. padding: 0 30rpx 0 50rpx;
  47. }
  48. .name-wrap {
  49. display: flex;
  50. flex-direction: column;
  51. }
  52. .goods-name {
  53. width: 100%;
  54. font-size: 32rpx;
  55. line-height: 46rpx;
  56. color: rgba(0, 28, 51, 1);
  57. white-space: nowrap;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. }
  61. .partner-name {
  62. width: 100%;
  63. font-size: 24rpx;
  64. line-height: 34rpx;
  65. color: rgba(163, 163, 163, 1);
  66. white-space: nowrap;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. }
  70. .price {
  71. margin-top: 10rpx;
  72. font-size: 28rpx;
  73. line-height: 32rpx;
  74. color: rgba(0, 28, 51, 1);
  75. }
  76. .count-wrap {
  77. display: flex;
  78. align-items: center;
  79. }
  80. .count {
  81. min-width: 69rpx;
  82. font-size: 24rpx;
  83. line-height: 30rpx;
  84. color: rgba(0, 28, 51, 1);
  85. text-align: center;
  86. }
  87. .del,
  88. .add {
  89. width: 38rpx;
  90. height: 36rpx;
  91. background: pink;
  92. }
  93. button.btn-business[type="primary"] {
  94. width: 627rpx;
  95. height: 80rpx;
  96. border-radius: 88rpx;
  97. background: rgba(145, 179, 121, 1);
  98. font-size: 36rpx;
  99. font-weight: 500;
  100. }