joinGroup.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. .container {
  2. position: relative;
  3. }
  4. .backhome {
  5. position: fixed;
  6. top: 10px;
  7. right: 0;
  8. background-color: rgba(0,0,0,0.5);
  9. padding: 2px 5px;
  10. font-size: 28rpx;
  11. border-radius: 16px 0 0 16px;
  12. display: flex;
  13. align-items: center;
  14. z-index: 500;
  15. }
  16. .backhome text {
  17. color: #fff;
  18. }
  19. .backhome image {
  20. width: 15px;
  21. height: 15px;
  22. }
  23. .goods-info{
  24. display: flex;
  25. height: 300rpx;
  26. background-color: #fff;
  27. }
  28. .goods-info .goods-pic{
  29. width: 240rpx;
  30. height: 240rpx;
  31. margin-top: 30rpx;
  32. }
  33. .goods-info .goods-desc{
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: center;
  37. }
  38. .goods-info .goods-desc .goods-title{
  39. display: inline-block;
  40. width: 500rpx;
  41. padding: 20rpx;
  42. }
  43. .goods-info .goods-desc .min-price{
  44. font-size: 50rpx;
  45. color: #FF5778;
  46. padding: 0 20rpx;
  47. }
  48. .goods-info .goods-desc .price{
  49. text-decoration: line-through;
  50. color: #999;
  51. }
  52. .goods-info .goods-desc .price-tag{
  53. margin: 10rpx;
  54. }
  55. .goods-info .goods-desc .price-tag text{
  56. background-color: #FFE7E7;
  57. color: #FF5778;
  58. padding: 10rpx;
  59. margin: 10rpx;
  60. border-radius: 10rpx;
  61. }
  62. .group-info{
  63. width: 90%;
  64. margin: 30rpx auto;
  65. background-color: #FFE7E7;
  66. position: relative;
  67. }
  68. .group-info::after{
  69. position: absolute;
  70. content: '';
  71. width: 0;
  72. height: 0;
  73. border-left: 20rpx solid transparent;
  74. border-right: 20rpx solid transparent;
  75. border-bottom: 20rpx solid #FFE7E7;
  76. top: -18rpx;
  77. left: 50%;
  78. margin-left: -20rpx;
  79. }
  80. .group-info .desc{
  81. text-align: center;
  82. font-size: 30rpx;
  83. padding: 20rpx;
  84. font-weight: bold;
  85. }
  86. .group-info .desc text{
  87. font-size: 40rpx;
  88. color: #FF5778;
  89. padding: 0 10rpx;
  90. }
  91. .group-info .deadline{
  92. text-align: center;
  93. color: #555;
  94. }
  95. .group-info .deadline text{
  96. color: #FF5778;
  97. padding: 0 15rpx;
  98. }
  99. .group-info .member{
  100. padding: 20rpx;
  101. text-align: center;
  102. }
  103. .group-info .member .member-item{
  104. display: inline-block;
  105. width: 80rpx;
  106. height: 80rpx;
  107. border-radius: 50%;
  108. background-size: cover;
  109. background-position: center;
  110. margin: 10rpx;
  111. background-color: #fff;
  112. }
  113. .group-info .member .member-chief{
  114. position: relative;
  115. border: 1px solid #FF5778;
  116. }
  117. .group-info .member .member-group{
  118. border: 1px solid #FF5778;
  119. }
  120. .group-info .member .member-chief::after{
  121. position: absolute;
  122. display: block;
  123. width: 60rpx;
  124. height: 30rpx;
  125. line-height: 30rpx;
  126. content: '团长';
  127. color: #fff;
  128. background-color: #FF5778;
  129. left: 50%;
  130. margin-left: -29rpx;
  131. bottom: -15rpx;
  132. font-size: 20rpx;
  133. border-radius: 20rpx;
  134. }
  135. .group-info .member .member-cell{
  136. text-align: center;
  137. line-height: 80rpx;
  138. font-size: 60rpx;
  139. color: #FFC0CB;
  140. border: 1px dashed #FF5778;
  141. vertical-align: top;
  142. }
  143. .share-btn{
  144. background-color: #07AF12;
  145. width: 400rpx;
  146. height: 100rpx;
  147. line-height: 100rpx;
  148. font-size: 35rpx;
  149. color: #fff;
  150. border-radius: 50rpx;
  151. margin: 50rpx auto;
  152. }
  153. .share-btn image{
  154. width: 60rpx;
  155. height: 60rpx;
  156. margin: 20rpx;
  157. vertical-align: top;
  158. }
  159. .join-btn{
  160. background-color: #FF5778;
  161. width: 90%;
  162. height: 100rpx;
  163. line-height: 100rpx;
  164. font-size: 35rpx;
  165. color: #fff;
  166. border-radius: 10rpx;
  167. margin: 20rpx auto;
  168. }
  169. .attr-pop {
  170. width: 100%;
  171. height: auto;
  172. padding: 31.25rpx;
  173. background: #fff;
  174. position: fixed;
  175. bottom: 100rpx;
  176. z-index: 999;
  177. }
  178. .attr-close{
  179. float: right;
  180. width: 50rpx;
  181. height: 50rpx;
  182. border-radius: 50%;
  183. font-size: 50rpx;
  184. text-align: center;
  185. }
  186. .attr-pop .img-info {
  187. width: 687.5rpx;
  188. height: 177rpx;
  189. overflow: hidden;
  190. margin-bottom: 41.5rpx;
  191. }
  192. .attr-pop .img {
  193. float: left;
  194. height: 177rpx;
  195. width: 177rpx;
  196. background: #f4f4f4;
  197. margin-right: 31.25rpx;
  198. }
  199. .attr-pop .info {
  200. float: left;
  201. height: 177rpx;
  202. display: flex;
  203. align-items: center;
  204. }
  205. .attr-pop .p {
  206. font-size: 33rpx;
  207. color: #333;
  208. height: 33rpx;
  209. line-height: 33rpx;
  210. margin-bottom: 10rpx;
  211. }
  212. .attr-pop .a {
  213. font-size: 29rpx;
  214. color: #333;
  215. height: 40rpx;
  216. line-height: 40rpx;
  217. }
  218. .spec-con {
  219. width: 100%;
  220. height: auto;
  221. overflow: hidden;
  222. }
  223. .spec-con .name {
  224. height: 32rpx;
  225. margin-bottom: 22rpx;
  226. font-size: 29rpx;
  227. color: #333;
  228. }
  229. .spec-con .values {
  230. height: auto;
  231. margin-bottom: 31.25rpx;
  232. font-size: 0;
  233. }
  234. .spec-con .value {
  235. display: inline-block;
  236. height: 62rpx;
  237. padding: 0 35rpx;
  238. line-height: 56rpx;
  239. text-align: center;
  240. margin-right: 25rpx;
  241. margin-bottom: 16.5rpx;
  242. border: 1px solid #333;
  243. font-size: 25rpx;
  244. color: #333;
  245. }
  246. .spec-con .value.disable {
  247. border: 1px solid #ccc;
  248. color: #ccc;
  249. }
  250. .spec-con .value.selected {
  251. border: 1px solid #b4282d;
  252. color: #b4282d;
  253. }
  254. .number-item .selnum {
  255. width: 322rpx;
  256. height: 71rpx;
  257. border: 1px solid #ccc;
  258. display: flex;
  259. }
  260. .number-item .cut {
  261. width: 93.75rpx;
  262. height: 100%;
  263. text-align: center;
  264. line-height: 65rpx;
  265. }
  266. .number-item .number {
  267. flex: 1;
  268. height: 100%;
  269. text-align: center;
  270. line-height: 68.75rpx;
  271. border-left: 1px solid #ccc;
  272. border-right: 1px solid #ccc;
  273. float: left;
  274. }
  275. .number-item .add {
  276. width: 93.75rpx;
  277. height: 100%;
  278. text-align: center;
  279. line-height: 65rpx;
  280. }
  281. .confirm-btn{
  282. background-color: #b4282d;
  283. width: 100%;
  284. height: 100rpx;
  285. line-height: 100rpx;
  286. font-size: 35rpx;
  287. color: #fff;
  288. border-radius: 0;
  289. position: fixed;
  290. bottom: 0;
  291. z-index: 999;
  292. }
  293. .line-through {
  294. text-decoration: line-through;
  295. }
  296. .topic-list .item .imgtt .imgline .priceInfo {
  297. float: left;
  298. text-align: left;
  299. width: 60%;
  300. height: 33rpx;
  301. line-height: 38rpx;
  302. overflow: hidden;
  303. color: #fff;
  304. font-size: 33rpx;
  305. margin-top: 25rpx;
  306. padding-left: 33rpx;
  307. }
  308. .more-group{
  309. height: 100rpx;
  310. line-height: 100rpx;
  311. padding-left: 20rpx;
  312. background-color: #fff;
  313. font-size: 35rpx;
  314. }
  315. .more-group .more-link{
  316. float: right;
  317. padding-right: 20rpx;
  318. color: #888;
  319. font-size: 25rpx;
  320. }