group-details.wxss 2.8 KB

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