index.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. .score {
  2. position: relative;
  3. font-size: 24rpx;
  4. }
  5. .score .publicview {
  6. background: #fff;
  7. border-bottom: 22rpx solid #f1f1f1;
  8. padding: 40rpx;
  9. }
  10. .score .header {
  11. display: -webkit-box;
  12. display: -webkit-flex;
  13. display: flex;
  14. -webkit-box-pack: justify;
  15. -webkit-justify-content: space-between;
  16. justify-content: space-between;
  17. -webkit-box-align: center;
  18. -webkit-align-items: center;
  19. align-items: center;
  20. }
  21. .score .header .score_userInfo{
  22. }
  23. .score .header .score_userInfo .head{
  24. width: 128rpx;
  25. height: 128rpx;
  26. border-radius: 100%;
  27. overflow: hidden;
  28. }
  29. .score .header .score_userInfo .head image{
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .score .header .userInfo{
  34. flex-shrink: 1;
  35. width: 100%;
  36. margin-left: 1.5rem;
  37. line-height: 1.5;
  38. }
  39. .score .header .userInfo >text{
  40. display: block;
  41. }
  42. .score .header .userInfo p{
  43. margin: 0;
  44. }
  45. .score .header .score_userNum{
  46. text-align: center;
  47. }
  48. .score .header .score_userNum .Integral{
  49. background: url('http://img.bbztx.com/image_test/upload/thumbs/20201228/logo/1609150571604092264.png') no-repeat;
  50. background-size: 100%;
  51. width: 45rpx;
  52. height: 45rpx;
  53. display: inline-block;
  54. }
  55. .score .content {
  56. background: #fff url('http://img.bbztx.com/image_test/upload/thumbs/20201229/logo/1609237289055024798.png') no-repeat;
  57. background-size: 40%;
  58. background-position: 95% 5%;
  59. }
  60. .score .content .body{
  61. height: 450rpx;
  62. overflow-y: auto;
  63. position: relative;
  64. }
  65. .score .content .showBottom{
  66. box-shadow: 0rpx -60rpx 20rpx -30rpx rgba(204, 204, 204, .2) inset;
  67. }
  68. .score .content .progressBar{
  69. width: 110rpx;
  70. height: 1000rpx;
  71. position: absolute;
  72. top: 0;
  73. }
  74. .score .content .progressBar .leftBox{
  75. width: calc(50% - 3rpx);
  76. height: 100%;
  77. float: left;
  78. }
  79. .score .content .progressBar .progressline{
  80. width: 6rpx ;
  81. background: #f9bcbf;
  82. height: 100%;
  83. overflow: hidden;
  84. }
  85. .score .content .progressBar .progressline .arrive{
  86. width: 100%;
  87. height: 0;
  88. background: #ee3a43;
  89. transition: height 2s;
  90. -moz-transition: height 2s; /* Firefox 4 */
  91. -webkit-transition: height 2s; /* Safari 和 Chrome */
  92. -o-transition: height 2s;
  93. }
  94. .score .content .body .allLevel{
  95. height: 1000rpx;
  96. display: flex;
  97. flex-direction:column;
  98. }
  99. .score .content .body .body_Rank{
  100. width: 100%;
  101. flex: 1;
  102. }
  103. .score .content .body .active {
  104. }
  105. .score .content .body .active .left_level .score-image{
  106. width: 100rpx;
  107. height: 100rpx;
  108. }
  109. .score .content .body .active .right_instruct text{
  110. font-size: 32rpx;
  111. font-weight: bold;
  112. }
  113. .score .content .content_top{
  114. overflow: hidden;
  115. line-height: 2;
  116. }
  117. .score .content .left_level{
  118. width: 110rpx;
  119. height: 100%;
  120. float: left;
  121. text-align: center;
  122. position: relative;
  123. }
  124. .score .content .left_level .score-image{
  125. width: 60rpx;
  126. height: 60rpx;
  127. position: absolute;
  128. top: 0;
  129. bottom: 0;
  130. right: 0;
  131. left: 0;
  132. margin: auto;
  133. }
  134. .score .content .right_instruct{
  135. overflow: hidden;
  136. display: flex;
  137. flex-direction: column;
  138. justify-content: center;
  139. height: 100%;
  140. padding-left: 20rpx;
  141. }
  142. .score .content .right_instruct text{
  143. font-size: 24rpx;
  144. margin: 0;
  145. line-height: 1.5;
  146. }
  147. .score .footer {
  148. padding: 40rpx;
  149. line-height: 2;
  150. background:#fff;
  151. }
  152. .score .pad-bot{
  153. padding-bottom: 150rpx;
  154. }
  155. .score .footer > text{
  156. display:inline-block;
  157. font-size: 24rpx;
  158. }
  159. .score .footer view{
  160. color: #ee3a43;
  161. font-size: 28rpx;
  162. font-weight: 600;
  163. }
  164. .score .fixedButton {
  165. width: 50%;
  166. position: fixed;
  167. bottom: 40rpx;
  168. left: 0;
  169. right: 0;
  170. margin: 0 auto;
  171. border-radius: 5px;
  172. overflow: hidden;
  173. }
  174. .score .fixedButton view{
  175. padding: 10rpx;
  176. background: #ee3a43;
  177. text-align: center;
  178. color: #fff;
  179. }
  180. .score .fixedButton view text{
  181. display: inline-block;
  182. }