group-details.wxss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. /* pages/group-details/group-details.wxss */
  2. /**基础风格样式**/
  3. @import '../../../towxml/style/main.wxss';
  4. /**如果页面有动态主题切换,则需要将使用到的样式全部引入**/
  5. /**主题配色(浅色样式)**/
  6. @import '../../../towxml/style/theme/light.wxss';
  7. /**主题配色(深色样式)**/
  8. @import '../../../towxml/style/theme/dark.wxss';
  9. .group-details {
  10. height: 100%;
  11. width: 100%;
  12. background: rgba(240, 241, 245, 1);
  13. }
  14. .details-head {
  15. width: 100%;
  16. background: #fff;
  17. }
  18. .headImg {
  19. display: flex;
  20. flex-wrap: wrap;
  21. justify-content: center;
  22. padding: 40rpx 0;
  23. box-sizing: border-box;
  24. }
  25. .headImg-item {
  26. position: relative;
  27. width:104rpx;
  28. height:104rpx;
  29. border-radius: 50%;
  30. margin: 20rpx 22rpx;
  31. }
  32. .headImg-item image {
  33. width: 100%;
  34. height: 100%;
  35. border-radius: 50%;
  36. }
  37. .headImg-item .tuanzhangIcon {
  38. position:absolute;
  39. right:13rpx;
  40. width:78rpx;
  41. height:30rpx;
  42. bottom:-10rpx;
  43. border-radius:0;
  44. }
  45. .bg-boder {
  46. border: 2px solid #61CA54;
  47. }
  48. .shengyu {
  49. display: flex;
  50. flex-direction: column;
  51. color: #696969;
  52. padding-bottom: 20px;
  53. }
  54. .shengyu-num {
  55. text-align: center;
  56. }
  57. .shengyu-num text {
  58. color: #FF4330;
  59. }
  60. .shengyu-time {
  61. display: flex;
  62. justify-content: center;
  63. align-items: center;
  64. margin-top: 8rpx;
  65. }
  66. .shengyu-time .time {
  67. position: relative;
  68. width: 32rpx;
  69. height: 36rpx;
  70. margin: 0 8rpx;
  71. }
  72. .shengyu-time .time image {
  73. position: absolute;
  74. left: 0;
  75. top: 0;
  76. width: 24rpx;
  77. height: 40rpx;
  78. }
  79. .shengyu-time .time text {
  80. position: absolute;
  81. left: 4rpx;
  82. top: 0;
  83. /* z-index: 2; */
  84. color: #fff;
  85. font-size: 28rpx;
  86. width: 32rpx;
  87. height: 36rpx;
  88. line-height: 36rpx;
  89. background: #ff9209;
  90. text-align: center;
  91. border-radius: 4rpx;
  92. }
  93. scroll-view {
  94. /* height: 74%; */
  95. width: 100%;
  96. }
  97. .grade-details {
  98. background: #fff;
  99. display: flex;
  100. flex-direction: column;
  101. padding: 24rpx;
  102. }
  103. .grade-details image {
  104. width: 100%;
  105. height: 290rpx;
  106. border-radius: 20rpx;
  107. }
  108. .catalog {
  109. display: flex;
  110. align-items: center;
  111. width: 100%;
  112. height: 110rpx;
  113. background: #fff;
  114. position: relative;
  115. }
  116. .catalog image {
  117. position: absolute;
  118. left: 374rpx;
  119. top: 20rpx;
  120. width: 2rpx;
  121. height: 66rpx;
  122. }
  123. .catalog text {
  124. flex: 1;
  125. height: 60rpx;
  126. text-align: center;
  127. font-size: 36rpx;
  128. margin: 0 90rpx;
  129. box-sizing: border-box;
  130. }
  131. .catalog .select {
  132. border-bottom: 2rpx solid #61CA54;
  133. color: #61CA54;
  134. }
  135. .catalog-list {
  136. width: 100%;
  137. padding: 18rpx;
  138. margin-bottom: 120rpx;
  139. box-sizing: border-box;
  140. }
  141. .know {
  142. padding: 18rpx 18rpx 120rpx 18rpx;
  143. box-sizing: border-box;
  144. background: #fff;
  145. margin-top: 12rpx;
  146. }
  147. .catalog-item {
  148. display: flex;
  149. justify-content: space-between;
  150. align-items: center;
  151. width: 100%;
  152. height: 88rpx;
  153. background: #fff;
  154. padding: 0 20rpx;
  155. box-sizing: border-box;
  156. margin-bottom: 12rpx;
  157. border-radius: 10rpx;
  158. }
  159. .catalog-item .left {
  160. color: #656565;
  161. font-size: 36rpx;
  162. }
  163. .catalog-item .right {
  164. color: #939393;
  165. font-size: 28rpx;
  166. }
  167. .catalog-item .right image {
  168. width: 16rpx;
  169. height: 28rpx;
  170. vertical-align: middle;
  171. margin-right: 6rpx;
  172. }
  173. .catalog-item .right text {
  174. vertical-align: middle;
  175. }
  176. .group-details-btn {
  177. position: fixed;
  178. bottom: 0;
  179. display: flex;
  180. align-items: center;
  181. width: 100%;
  182. height: 100rpx;
  183. background: #FF9209;
  184. color: #fff;
  185. z-index: 99;
  186. }
  187. .bottomx {
  188. bottom: 20rpx;
  189. }
  190. .left-btn,
  191. .right-btn,
  192. .only-one-btn
  193. {
  194. flex: 1;
  195. height: 54rpx;
  196. display: flex;
  197. justify-content: center;
  198. align-items: center;
  199. }
  200. .left-btn {
  201. border-right: 2rpx solid #fff;
  202. }
  203. .group-popup {
  204. position: absolute;
  205. left: 0;
  206. top: 0;
  207. width: 100%;
  208. height: 100%;
  209. background: rgba(0, 0, 0, .5);
  210. z-index: 99;
  211. }
  212. .group-popup .group-content {
  213. position: absolute;
  214. left: 50%;
  215. top: 50%;
  216. transform: translate(-50%, -50%);
  217. width: 80%;
  218. background: #fff;
  219. border-radius: 20rpx;
  220. }
  221. .group-title {
  222. text-align: center;
  223. margin: 36rpx 0;
  224. }
  225. .group-list {
  226. display: flex;
  227. justify-content: space-between;
  228. flex-wrap: wrap;
  229. padding: 0 62rpx;
  230. }
  231. .group-list .group-item {
  232. position: relative;
  233. display: flex;
  234. margin-right: 0;
  235. justify-content: space-between;
  236. flex-direction: column;
  237. }
  238. .group-content-img {
  239. width: 214rpx;
  240. height: 290rpx;
  241. }
  242. .sure {
  243. position: relative;
  244. width: 392rpx;
  245. height: 80rpx;
  246. margin: 36rpx auto 26rpx auto;
  247. }
  248. .sure image {
  249. width: 100%;
  250. height: 100%;
  251. }
  252. .sure text {
  253. position: absolute;
  254. left: 164rpx;
  255. top: 18rpx;
  256. color: #fff;
  257. z-index: 2;
  258. }
  259. .select-img {
  260. position: absolute;
  261. bottom: 56rpx;
  262. right: 10rpx;
  263. width: 52rpx;
  264. height: 52rpx;
  265. z-index: 99;
  266. }
  267. .group-item .item-img {
  268. width: 214rpx;
  269. height: 278rpx;
  270. }