group.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. ::-webkit-scrollbar {
  2. display: none;
  3. }
  4. .group {
  5. height: 100%;
  6. width: 100%;
  7. padding-bottom: 102rpx;
  8. box-sizing: border-box;
  9. }
  10. scroll-view {
  11. height: 100%;
  12. }
  13. .group-container {
  14. width: 100%;
  15. box-sizing: border-box;
  16. padding: 0 18rpx;
  17. background: #fff;
  18. }
  19. .less-group,
  20. .whole-group {
  21. width: 100%;
  22. min-height: 60%;
  23. background: #fff;
  24. }
  25. .whole-group {
  26. margin-top: 32rpx;
  27. padding: 0 18rpx;
  28. box-sizing: border-box;
  29. }
  30. .less-group .title,
  31. .whole-group .title {
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. height: 90rpx;
  36. position: relative;
  37. }
  38. .title .left {
  39. font-size: 32rpx;
  40. padding-left: 52rpx;
  41. }
  42. .quota {
  43. font-size: 28rpx;
  44. color: red;
  45. }
  46. .title .ren {
  47. width: 42rpx;
  48. height: 36rpx;
  49. position: absolute;
  50. left: 0;
  51. }
  52. .title .right {
  53. font-size: 28rpx;
  54. }
  55. .group-box {
  56. display: flex;
  57. width: 105%;
  58. flex-wrap: wrap;
  59. flex-direction: row;
  60. /* justify-content: space-between; */
  61. }
  62. .group-item {
  63. position: relative;
  64. display: flex;
  65. margin-right:35rpx;
  66. flex-direction: column;
  67. }
  68. .group-item .item-img {
  69. width: 214rpx;
  70. height: 278rpx;
  71. }
  72. .group-item .group-num {
  73. position: absolute;
  74. left: 0;
  75. top: 14rpx;
  76. width: 100rpx;
  77. height: 40rpx;
  78. }
  79. .group-item .group-num image {
  80. width: 100%;
  81. height: 100%;
  82. }
  83. .group-item .group-num text {
  84. color: #fff;
  85. position: absolute;
  86. left: 6rpx;
  87. top: 4rpx;
  88. z-index: 3;
  89. font-size: 24rpx;
  90. }
  91. .group-item view:nth-child(2) {
  92. font-size: 32rpx;
  93. color: #E51C23;
  94. }
  95. .group-item view:nth-child(3) {
  96. font-size: 28rpx;
  97. color: #969595;
  98. margin-top: 18rpx;
  99. }
  100. .group-item text {
  101. margin-left: 10rpx;
  102. }
  103. .group-item #grade {
  104. margin-top: 20rpx;
  105. color: #000;
  106. text-align: center;
  107. font-size: 28rpx;
  108. }
  109. .Collage-bottom {
  110. display: flex;
  111. justify-content: space-around;
  112. align-items: center;
  113. height: 102rpx;
  114. position: relative;
  115. }
  116. .Collage-bottomx {
  117. height: 82rpx;
  118. }
  119. .Collage-bottom view image {
  120. width: 42rpx;
  121. height: 50rpx;
  122. vertical-align: middle;
  123. margin-right: 30rpx;
  124. }
  125. .Collage-bottom text {
  126. vertical-align: middle;
  127. }
  128. .Collage-bottom .bg {
  129. position: absolute;
  130. left: 50%;
  131. top: 15%;
  132. width: 4rpx;
  133. height: 70%;
  134. transform: translateX(-50%);
  135. }
  136. .group-popup {
  137. position: absolute;
  138. left: 0;
  139. top: 0;
  140. width: 100%;
  141. height: 100%;
  142. background: rgba(0, 0, 0, .5);
  143. z-index: 99;
  144. }
  145. .group-popup .group-content {
  146. position: absolute;
  147. left: 50%;
  148. top: 50%;
  149. transform: translate(-50%,-50%);
  150. width: 80%;
  151. background: #fff;
  152. border-radius: 20rpx;
  153. }
  154. .group-title {
  155. text-align: center;
  156. margin: 36rpx 0;
  157. }
  158. .group-list {
  159. display: flex;
  160. justify-content: space-between;
  161. flex-wrap: wrap;
  162. padding: 0 62rpx;
  163. }
  164. .group-list .group-item{
  165. position: relative;
  166. display: flex;
  167. margin-right:0;
  168. justify-content: space-between;
  169. /* flex-direction: column; */
  170. }
  171. .group-content-img {
  172. width: 214rpx;
  173. height: 290rpx;
  174. }
  175. .sure {
  176. position: relative;
  177. width: 392rpx;
  178. height: 80rpx;
  179. margin: 36rpx auto 26rpx auto;
  180. }
  181. .sure image {
  182. width: 100%;
  183. height: 100%;
  184. }
  185. .sure text {
  186. position: absolute;
  187. left: 164rpx;
  188. top: 18rpx;
  189. color: #fff;
  190. z-index: 2;
  191. }
  192. .select-img {
  193. position: absolute;
  194. left: 10rpx;
  195. top: 10rpx;
  196. width: 52rpx;
  197. height: 52rpx;
  198. }