index.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .product-item {
  2. background-color: #fff;
  3. box-sizing: border-box;
  4. border-bottom: 1rpx solid #DDDDDD;
  5. margin-bottom: 20rpx;
  6. .product {
  7. padding: 20rpx 30rpx;
  8. box-sizing: border-box;
  9. .mian {
  10. position: relative;
  11. display: flex;
  12. width: 100%;
  13. box-sizing: border-box;
  14. .img {
  15. flex-shrink: 0;
  16. width: 112rpx;
  17. height: 112rpx;
  18. border-radius: 16rpx;
  19. margin-right: 20rpx;
  20. overflow: hidden;
  21. .err {
  22. display: flex;
  23. width: 100%;
  24. height: 100%;
  25. align-items: center;
  26. justify-content: center;
  27. font-size: 22rpx;
  28. border: 1px solid #ddd;
  29. box-sizing: border-box;
  30. color: #666;
  31. }
  32. }
  33. .dec {
  34. flex: 1;
  35. width: 0;
  36. min-height: 128rpx;
  37. height: 100%;
  38. font-size: 24rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. color: #999999;
  41. .title {
  42. display: flex;
  43. width: 90%;
  44. height: 40rpx;
  45. font-size: 28rpx;
  46. font-weight: 600;
  47. color: #333333;
  48. .line-1 {
  49. max-width: 380rpx;
  50. }
  51. .tag {
  52. display: inline-block;
  53. color: #fff;
  54. background-color: #F80700;
  55. padding: 0 20rpx;
  56. margin-left: 20rpx;
  57. border-radius: 20rpx;
  58. font-weight: normal;
  59. font-size: 22rpx;
  60. line-height: 40rpx;
  61. }
  62. }
  63. .subfield {
  64. display: flex;
  65. margin-top: 8rpx;
  66. height: 34rpx;
  67. line-height: 34rpx;
  68. text {
  69. display: inline-block;
  70. width: 48%;
  71. }
  72. }
  73. .price {
  74. font-size: 30rpx;
  75. color: #FF3B30;
  76. }
  77. .old-price {
  78. font-size: 24rpx;
  79. font-family: PingFang SC-Regular, PingFang SC;
  80. color: #999999;
  81. margin-left: 8rpx;
  82. text-decoration-line: line-through;
  83. }
  84. }
  85. .delete {
  86. position: absolute;
  87. width: 68rpx;
  88. height: 68rpx;
  89. line-height: 68rpx;
  90. right: -30rpx;
  91. top: -20rpx;
  92. text-align: center;
  93. font-size: 32rpx;
  94. color: #999;
  95. }
  96. }
  97. }
  98. .bot {
  99. width: 690rpx;
  100. border-top: 1rpx solid #ddd;
  101. margin: 0 auto;
  102. padding-bottom: 20rpx;
  103. .row {
  104. display: flex;
  105. width: 100%;
  106. margin-top: 20rpx;
  107. view {
  108. display: flex;
  109. height: 54rpx;
  110. align-items: center;
  111. .label {
  112. width: 144rpx;
  113. font-size: 24rpx;
  114. font-family: PingFang SC-Regular, PingFang SC;
  115. color: #666666;
  116. text-align-last: justify;
  117. }
  118. }
  119. .input {
  120. height: 54rpx;
  121. background: #FFFFFF;
  122. border-radius: 8rpx;
  123. border: 1rpx solid #CCCCCC;
  124. font-size: 28rpx;
  125. font-family: PingFang SC-Regular, PingFang SC;
  126. color: #333333;
  127. line-height: 44px;
  128. text-align: center;
  129. }
  130. .money {
  131. flex: 1;
  132. display: flex;
  133. justify-content: flex-end;
  134. font-size: 24rpx;
  135. font-family: PingFang SC-Medium, PingFang SC;
  136. color: #666666;
  137. margin-right: 20rpx;
  138. text {
  139. font-size: 28rpx;
  140. color: #FF3B30;
  141. font-weight: 600;
  142. }
  143. }
  144. }
  145. }
  146. }