groupFlow.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. page{
  2. padding-bottom: 180rpx;
  3. }
  4. /* 拼团失败图片 */
  5. .fail-image{
  6. text-align: center;
  7. margin-top: 40rpx;
  8. margin-bottom: 24rpx;
  9. }
  10. .fail-image image{
  11. width: 200rpx;
  12. height: 200rpx;
  13. }
  14. /* 拼团提醒 */
  15. .group-tip{
  16. text-align: center;
  17. color: #333;
  18. font-size: 32rpx;
  19. font-weight: 600;
  20. margin-bottom: 40rpx;
  21. }
  22. /* 拼团说明 */
  23. .group-explain{
  24. width: 710rpx;
  25. height: 260rpx;
  26. background-color: #fff;
  27. border-radius: 24rpx;
  28. margin-left: 20rpx;
  29. margin-bottom: 20rpx;
  30. padding: 24rpx;
  31. box-sizing: border-box;
  32. }
  33. .group-explain view{
  34. font-size: 28rpx;
  35. color: #333;
  36. }
  37. /* 拼团商品 */
  38. .group-product{
  39. height: 208rpx;
  40. width: 710rpx;
  41. margin-left: 20rpx;
  42. display: flex;
  43. background-color: #fff;
  44. border-radius: 12px;
  45. padding: 24rpx;
  46. box-sizing: border-box;
  47. }
  48. .product-item-left image{
  49. width: 160rpx;
  50. height: 160rpx;
  51. border-radius: 20rpx;
  52. margin-right: 20rpx;
  53. }
  54. .product-item-right{
  55. flex: 1;
  56. height: 160rpx;
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: space-between;
  60. }
  61. .item-right-title{
  62. height: 80rpx;
  63. width: 100%;
  64. font-size: 28rpx;
  65. color: #333333;
  66. }
  67. .item-right-price{
  68. text-align: right;
  69. }
  70. .item-right-price text{
  71. text-align: right;
  72. font-size: 20rpx;
  73. color: #333333;
  74. }
  75. .item-right-price .price__big{
  76. font-size: 36rpx;
  77. color: #333333;
  78. }
  79. /* 拼团列表 */
  80. .groupList {
  81. width: 710rpx;
  82. height: 320rpx;
  83. background-color: #fff;
  84. margin-left: 20rpx;
  85. margin-top: 20rpx;
  86. padding: 20rpx 24rpx;
  87. box-sizing: border-box;
  88. border-radius: 24rpx;
  89. }
  90. .groupList .group-title {
  91. display: flex;
  92. justify-content: space-between;
  93. margin-bottom: 20rpx;
  94. }
  95. .newGroup {
  96. color: #333333;
  97. font-size: 28rpx;
  98. font-weight: 600;
  99. }
  100. .Checkmore {
  101. font-size: 24rpx;
  102. color: #666666;
  103. }
  104. .groupList .groupList-box .groupList-item {
  105. display: flex;
  106. align-items: center;
  107. }
  108. .groupList .groupList-box .item-image image {
  109. width: 60rpx;
  110. height: 60rpx;
  111. border-radius: 50%;
  112. margin-right: 20rpx;
  113. }
  114. .groupList-item .item-content {
  115. flex: 1;
  116. color: #333333;
  117. font-size: 20rpx;
  118. }
  119. .groupList-item .item-content text {
  120. color: #FA7D22;
  121. font-size: 20rpx;
  122. }
  123. .groupList-item .item-goGroup {
  124. width: 92rpx;
  125. height: 40rpx;
  126. background-color: #FA7D22;
  127. font-size: 28rpx;
  128. border-radius: 8rpx;
  129. font-size: 20rpx;
  130. color: #fff;
  131. text-align: center;
  132. line-height: 40rpx;
  133. }
  134. /* 支付 */
  135. .bottom {
  136. display: flex;
  137. position: fixed;
  138. bottom: 0;
  139. height: 140rpx;
  140. /* align-items: center; */
  141. padding-top: 10rpx;
  142. box-sizing: border-box;
  143. width: 100%;
  144. background-color: #fff;
  145. }
  146. .bottom .oneselfBuy,
  147. .toGroupBuy {
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: center;
  151. align-items: center;
  152. }
  153. .bottom .oneselfBuy {
  154. width: 334rpx;
  155. height: 84rpx;
  156. background-color: #FF9F58;
  157. border-radius: 42px 0px 0px 42px;
  158. margin-left: 40rpx;
  159. }
  160. .bottom .toGroupBuy {
  161. height: 84rpx;
  162. width: 334rpx;
  163. background-color: #FA7D22;
  164. border-radius: 0px 42px 42px 0px;
  165. }
  166. .bottom-price {
  167. color: #fff;
  168. font-size: 32rpx;
  169. }
  170. .bottom-type {
  171. color: #fff;
  172. font-size: 28rpx;
  173. }