group.wxss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. ::-webkit-scrollbar {
  2. display: none;
  3. }
  4. .group {
  5. height: 100%;
  6. width: 100%;
  7. /*
  8. padding-bottom: 102rpx;
  9. box-sizing: border-box;
  10. */
  11. }
  12. scroll-view {
  13. height: 100%;
  14. }
  15. .group-container {
  16. width: 100%;
  17. box-sizing: border-box;
  18. padding: 0 18rpx;
  19. }
  20. .group-bars {
  21. display: flex;
  22. justify-content: space-between;
  23. width: 100%;
  24. height: 188rpx;
  25. background: #fff;
  26. margin-top: 20rpx;
  27. border-radius: 12rpx;
  28. padding: 14rpx 28rpx;
  29. box-sizing: border-box;
  30. }
  31. .group-head {
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .group-head image {
  38. width: 96rpx;
  39. height: 96rpx;
  40. border-radius: 50%;
  41. }
  42. .group-head text {
  43. font-size: 32rpx;
  44. margin-top: 12rpx;
  45. width: 150rpx;
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. white-space: nowrap;
  49. text-align: center;
  50. }
  51. .group-jion {
  52. width: 460rpx;
  53. color:#444;
  54. }
  55. .group-jion .top-title {
  56. display: flex;
  57. justify-content: space-between;
  58. font-size: 32rpx;
  59. }
  60. .group-jion .group-detail {
  61. display: flex;
  62. justify-content: space-between;
  63. width: 100%;
  64. height: 84rpx;
  65. border: 4rpx solid #FFACB6;
  66. border-radius: 12rpx;
  67. overflow: hidden;
  68. margin-top: 26rpx;
  69. }
  70. .group-jion .specialBorder{
  71. border: 4rpx solid #C6C6C6;
  72. }
  73. .group-jion .group-detail .number {
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: center;
  77. margin-left: 22rpx;
  78. font-size: 28rpx;
  79. color: #4A4A4A;
  80. }
  81. .group-jion .group-detail .jion-btn {
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. width: 36%;
  86. height: 100%;
  87. background: #FF3E55;
  88. color: #fff;
  89. font-size: 36rpx;
  90. line-height: 100%;
  91. }
  92. .group-jion .group-detail .specialBtn{
  93. background: #C6C6C6
  94. }
  95. .change {
  96. width: 146rpx;
  97. height: 48rpx;
  98. background: #5BB7FD;
  99. border-radius: 48rpx;
  100. margin: 20rpx auto;
  101. text-align: center;
  102. line-height: 48rpx;
  103. color: #fff;
  104. font-size: 28rpx;
  105. }
  106. .whole-group {
  107. width: 100%;
  108. min-height: 60%;
  109. background: #fff;
  110. }
  111. .whole-group {
  112. padding: 20rpx 18rpx;
  113. box-sizing: border-box;
  114. }
  115. .title {
  116. display: flex;
  117. align-items: center;
  118. justify-content: space-between;
  119. height: 70rpx;
  120. padding: 0 18rpx;
  121. position: relative;
  122. box-sizing: border-box;
  123. color:#444;
  124. }
  125. .title .left {
  126. font-size: 32rpx;
  127. padding-left: 52rpx;
  128. }
  129. .quota {
  130. font-size: 28rpx;
  131. color: red;
  132. }
  133. .title .ren {
  134. width: 42rpx;
  135. height: 36rpx;
  136. position: absolute;
  137. left: 20rpx;
  138. }
  139. .title .right {
  140. display: flex;
  141. /* flex-direction: row; */
  142. align-items: center;
  143. font-size: 28rpx;
  144. color:#444;
  145. }
  146. .title .right image {
  147. width: 16rpx;
  148. height: 28rpx;
  149. margin-left:14rpx;
  150. }
  151. .group-box {
  152. display:flex;
  153. width:106%;
  154. flex-wrap:wrap;
  155. flex-direction:row;
  156. overflow-x:hidden;
  157. }
  158. .group-item {
  159. position: relative;
  160. display: flex;
  161. margin-right: 35rpx;
  162. flex-direction: column;
  163. }
  164. .group-item .item-img {
  165. width: 214rpx;
  166. height: 278rpx;
  167. }
  168. .group-item view:nth-child(2) {
  169. font-size: 32rpx;
  170. color: #E51C23;
  171. }
  172. .group-item view:nth-child(3) {
  173. font-size: 28rpx;
  174. color: #969595;
  175. margin-top: 18rpx;
  176. }
  177. .group-item text {
  178. margin-left: 10rpx;
  179. }
  180. .group-item #grade {
  181. margin-top: 20rpx;
  182. color:#444;
  183. text-align: center;
  184. font-size: 28rpx;
  185. }
  186. .Collage-bottom {
  187. display: flex;
  188. justify-content: space-around;
  189. align-items: center;
  190. height: 102rpx;
  191. position: relative;
  192. }
  193. .Collage-bottomx {
  194. height: 82rpx;
  195. }
  196. .Collage-bottom view image {
  197. width: 42rpx;
  198. height: 50rpx;
  199. vertical-align: middle;
  200. margin-right: 30rpx;
  201. }
  202. .Collage-bottom text {
  203. vertical-align: middle;
  204. }
  205. .Collage-bottom .bg {
  206. position: absolute;
  207. left: 50%;
  208. top: 15%;
  209. width: 4rpx;
  210. height: 70%;
  211. transform: translateX(-50%);
  212. }
  213. .group-popup {
  214. position: absolute;
  215. left: 0;
  216. top: 0;
  217. width: 100%;
  218. height: 100%;
  219. background: rgba(0, 0, 0, .5);
  220. z-index: 99;
  221. }
  222. .group-popup .group-content {
  223. position: absolute;
  224. left: 50%;
  225. top: 50%;
  226. transform: translate(-50%, -50%);
  227. width: 80%;
  228. background: #fff;
  229. border-radius: 20rpx;
  230. }
  231. .group-title {
  232. text-align: center;
  233. margin: 36rpx 0;
  234. }
  235. .group-list {
  236. display: flex;
  237. justify-content: space-between;
  238. flex-wrap: wrap;
  239. padding: 0 62rpx;
  240. }
  241. .group-list .group-item {
  242. position: relative;
  243. display: flex;
  244. margin-right: 0;
  245. justify-content: space-between;
  246. /* flex-direction: column; */
  247. }
  248. .group-content-img {
  249. width: 214rpx;
  250. height: 290rpx;
  251. }
  252. .sure {
  253. position: relative;
  254. width: 392rpx;
  255. height: 80rpx;
  256. margin: 36rpx auto 26rpx auto;
  257. }
  258. .sure image {
  259. width: 100%;
  260. height: 100%;
  261. }
  262. .sure text {
  263. position: absolute;
  264. left: 164rpx;
  265. top: 18rpx;
  266. color: #fff;
  267. z-index: 2;
  268. }
  269. .select-img {
  270. position: absolute;
  271. left: 10rpx;
  272. top: 10rpx;
  273. width: 52rpx;
  274. height: 52rpx;
  275. }