group-details.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /* pages/group-details/group-details.wxss */
  2. .group-details {
  3. height: 100%;
  4. width: 100%;
  5. background:rgba(240,241,245,1);
  6. }
  7. .details-head {
  8. width: 100%;
  9. background: #fff;
  10. }
  11. .headImg {
  12. display: flex;
  13. flex-wrap: wrap;
  14. padding: 40rpx 0;
  15. box-sizing: border-box;
  16. }
  17. .headImg-item {
  18. position: relative;
  19. width: 106rpx;
  20. height: 106rpx;
  21. border-radius: 50%;
  22. margin: 20rpx 22rpx;
  23. }
  24. .headImg-item image {
  25. width: 100%;
  26. height: 100%;
  27. border-radius: 50%;
  28. }
  29. .headImg-item .tuanzhangIcon {
  30. position: absolute;
  31. right: -20rpx;
  32. top: -10rpx;
  33. width: 80rpx;
  34. height: 30rpx;
  35. }
  36. .bg-boder {
  37. border: 2px solid #000;
  38. }
  39. .shengyu {
  40. display: flex;
  41. flex-direction: column;
  42. color: #696969;
  43. padding-bottom:20px;
  44. }
  45. .shengyu-num {
  46. text-align:center;
  47. }
  48. .shengyu-num text {
  49. color: #FF4330;
  50. }
  51. .shengyu-time {
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. margin-top: 8rpx;
  56. }
  57. .shengyu-time .time {
  58. position: relative;
  59. width: 20rpx;
  60. height: 40rpx;
  61. margin: 0 8rpx;
  62. }
  63. .shengyu-time .time image {
  64. position: absolute;
  65. left: 0;
  66. top: 0;
  67. width: 24rpx;
  68. height: 40rpx;
  69. }
  70. .shengyu-time .time text{
  71. position: absolute;
  72. left: 4rpx;
  73. top: 0;
  74. z-index: 2;
  75. color: #fff;
  76. font-size: 28rpx;
  77. }
  78. scroll-view {
  79. height: 80%;
  80. width: 100%;
  81. }
  82. .grade-details {
  83. margin: 12rpx 0;
  84. background: #fff;
  85. display: flex;
  86. flex-direction: column;
  87. padding: 24rpx;
  88. }
  89. .grade-details image{
  90. width: 100%;
  91. height: 290rpx;
  92. border-radius: 20rpx;
  93. }
  94. .grade-details text {
  95. font-size: 32rpx;
  96. }
  97. .grade-details text:nth-child(2) {
  98. margin: 12rpx 0;
  99. }
  100. .catalog {
  101. width: 100%;
  102. height: 62rpx;
  103. background: #fff;
  104. position: relative;
  105. }
  106. .catalog image {
  107. position: absolute;
  108. left: 24rpx;
  109. top: 10rpx;
  110. width: 208rpx;
  111. height: 42rpx;
  112. }
  113. .catalog text {
  114. position: absolute;
  115. left: 34rpx;
  116. top: 7rpx;
  117. z-index: 2;
  118. color: #fff;
  119. font-size: 36rpx;
  120. }
  121. .catalog-list {
  122. width: 100%;
  123. padding: 18rpx;
  124. margin-bottom: 120rpx;
  125. box-sizing: border-box;
  126. }
  127. .catalog-item {
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. width: 100%;
  132. height: 88rpx;
  133. background: #fff;
  134. padding: 0 20rpx;
  135. box-sizing: border-box;
  136. margin-bottom: 12rpx;
  137. border-radius: 10rpx;
  138. }
  139. .catalog-item .left {
  140. color: #656565;
  141. font-size: 36rpx;
  142. }
  143. .catalog-item .right {
  144. color: #939393;
  145. font-size: 28rpx;
  146. }
  147. .group-details-btn {
  148. position: fixed;
  149. bottom: 0;
  150. display: flex;
  151. width: 100%;
  152. height: 102rpx;
  153. }
  154. .left-btn {
  155. width: 35%;
  156. height: 100%;
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. background: #F0F1F5;
  161. }
  162. .right-btn {
  163. width: 65%;
  164. }
  165. .right-btn image{
  166. position: absolute;
  167. right: 0;
  168. top: 0;
  169. width: 65%;
  170. height: 100%;
  171. }
  172. .right-btn text{
  173. position: absolute;
  174. width: 65%;
  175. color: #fff;
  176. text-align: center;
  177. line-height: 102rpx;
  178. }