group-details.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. border-radius: 50%;
  21. margin: 20rpx 22rpx;
  22. }
  23. .headImg-item image {
  24. width: 100%;
  25. height: 100%;
  26. border-radius: 50%;
  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: 24rpx;
  56. height: 40rpx;
  57. }
  58. .shengyu-time .time text{
  59. position: absolute;
  60. left: 2rpx;
  61. top: 0;
  62. z-index: 2;
  63. color: #fff;
  64. font-size: 28rpx;
  65. }
  66. scroll-view {
  67. height: 64%;
  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. margin-bottom: 120rpx;
  113. box-sizing: border-box;
  114. }
  115. .catalog-item {
  116. display: flex;
  117. justify-content: space-between;
  118. align-items: center;
  119. width: 100%;
  120. height: 88rpx;
  121. background: #fff;
  122. padding: 0 20rpx;
  123. box-sizing: border-box;
  124. margin-bottom: 12rpx;
  125. border-radius: 10rpx;
  126. }
  127. .catalog-item .left {
  128. color: #656565;
  129. font-size: 36rpx;
  130. }
  131. .catalog-item .right {
  132. color: #939393;
  133. font-size: 28rpx;
  134. }
  135. .group-details-btn {
  136. position: absolute;
  137. bottom: 0;
  138. display: flex;
  139. width: 100%;
  140. height: 102rpx;
  141. }
  142. .left-btn {
  143. width: 35%;
  144. height: 100%;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. background: #F0F1F5;
  149. }
  150. .right-btn {
  151. width: 65%;
  152. }
  153. .right-btn image{
  154. position: absolute;
  155. right: 0;
  156. top: 0;
  157. width: 65%;
  158. height: 100%;
  159. }
  160. .right-btn text{
  161. position: absolute;
  162. width: 65%;
  163. color: #fff;
  164. text-align: center;
  165. line-height: 102rpx;
  166. }