memberArea.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /**index.wxss**/
  2. .flex-box{
  3. display: flex;
  4. }
  5. .flex-btn{
  6. flex: 1;
  7. }
  8. .list{
  9. /* border-bottom: 1rpx solid #e5e5e5; */
  10. padding: 40rpx 21rpx;
  11. box-sizing: border-box;
  12. position: relative;
  13. width: 100%;
  14. background: white;
  15. border-radius: 20rpx;
  16. overflow: hidden;
  17. margin-bottom: 15rpx;
  18. }
  19. .list-img{
  20. width: 130rpx;
  21. height: 180rpx;
  22. /* margin-right: 20rpx; */
  23. position: relative;
  24. display:flex;
  25. align-items:flex-start;
  26. }
  27. .list-img .img{
  28. width: 96rpx;
  29. height: 96rpx;
  30. }
  31. .list-play{
  32. position: absolute;
  33. left: 45rpx;
  34. top: 70rpx;
  35. width: 40rpx;
  36. height: 40rpx;
  37. }
  38. .list-title{
  39. height: 52rpx;
  40. }
  41. .list-title text{
  42. font-size: 15px;
  43. line-height: 52rpx;
  44. color: #000;
  45. width: 500rpx;
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. white-space: nowrap;
  49. }
  50. .list-brief .star{
  51. border:1px solid #D7D7D7;
  52. padding:0 4px;
  53. line-height: 38rpx;
  54. }
  55. .list-brief .sale{
  56. border:1px solid #D7D7D7;
  57. padding:4rpx 12rpx;
  58. margin-left:8rpx;
  59. }
  60. .list-brief .sale:first-child{
  61. margin-left:0rpx;
  62. }
  63. .list-brief .price{
  64. font-size: 15px;
  65. color:#FF8000;
  66. font-family:PingFang-SC-Bold;
  67. font-weight: bold;
  68. padding-left:18rpx;
  69. }
  70. .list-brief .txt{
  71. font-size: 13px;
  72. color:#FF8000;
  73. font-family:PingFang-SC-Bold;
  74. }
  75. .i-imax{
  76. width: 52rpx;
  77. height: 28rpx;
  78. margin-left: 10rpx;
  79. }
  80. .list-size{
  81. height: 40rpx;
  82. font-size: 14px;
  83. color: #8a869e;
  84. }
  85. .list-size .star{
  86. width: 100rpx;
  87. height: 20rpx;
  88. /* background: url(../../images/i-star.png) no-repeat; */
  89. background-size: 100rpx;
  90. display: inline-block;
  91. margin-right: 10rpx;
  92. }
  93. .stars{
  94. width: 100rpx;
  95. height: 20rpx;
  96. /* background: url(../../images/i-stars.png) no-repeat; */
  97. background-size: 100rpx;
  98. float: left;
  99. margin-right: 10rpx;
  100. }
  101. .list-brief{
  102. font-size: 12px;
  103. line-height: 56rpx;
  104. color: #666;
  105. overflow: hidden;
  106. text-overflow: ellipsis;
  107. white-space: nowrap;
  108. width: 350rpx;
  109. font-size: 28rpx;
  110. }
  111. .list-brief .area{
  112. overflow: hidden;
  113. text-overflow: ellipsis;
  114. white-space: nowrap;
  115. width: 350rpx;
  116. font-size: 28rpx;
  117. color: #999999;
  118. }
  119. .list-brief .wish{
  120. padding-right: 10rpx;
  121. margin-right: 10rpx;
  122. }
  123. .list-main{
  124. position: relative;
  125. }
  126. .list-sale{
  127. position: absolute;
  128. right: 21rpx;
  129. bottom: 43rpx;
  130. }
  131. .list-status{
  132. width: 131rpx;
  133. height: 50rpx;
  134. opacity: 1;
  135. border: 2px solid #ffffff;
  136. border-radius: 27rpx;
  137. color:#ffffff;
  138. font-size: 28rpx;
  139. font-family: PingFang SC, PingFang SC-Regular;
  140. font-weight: 400;
  141. display: flex;
  142. justify-content: center;
  143. align-items: center;
  144. }
  145. .list-fulls{
  146. background: #6517FF;
  147. }
  148. .list-joins{
  149. background: #9DDB52;
  150. }
  151. .list-sale text{
  152. /* padding:10rpx 18rpx;
  153. font-size:12px; */
  154. display: flex;
  155. width: 131rpx;
  156. height: 50rpx;
  157. margin-right: 21rpx;
  158. border-radius:30rpx;
  159. font-size: 28rpx;
  160. font-family: PingFang SC, PingFang SC-Regular;
  161. font-weight: 400;
  162. color: #ffffff;
  163. line-height: 50rpx;
  164. }
  165. .bg-full{
  166. background:#6517FF
  167. }
  168. .bg-yollow{
  169. background:#FFDE00;
  170. color:#292929;
  171. }
  172. .bg-red{
  173. background:#F53E37;
  174. }
  175. .list-full{
  176. position: absolute;
  177. right: 10rpx;
  178. top: 97rpx;
  179. }
  180. .list-full text{
  181. padding: 10rpx 18rpx;
  182. border: 1rpx solid #F53E37;
  183. font-size: 14px;
  184. color: #FFFFFF;
  185. border-radius: 25rpx;
  186. background: #F53E37;
  187. }
  188. .list-sale .pre-sale{
  189. border: 1rpx solid #fea54c;
  190. color: #fea54c;
  191. }
  192. .list-price{
  193. display: flex;
  194. flex-direction: column;
  195. justify-content: center;
  196. align-items: center;
  197. position: absolute;
  198. top:26rpx;
  199. right:21rpx;
  200. }
  201. .list-price .txt{
  202. font-size: 20rpx;
  203. color:#EC2E26;
  204. }