integralDetail.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /* 积分明细 */
  2. /* page {
  3. height: 100%;
  4. overflow: hidden;
  5. } */
  6. .integral-detail {
  7. position: relative;
  8. }
  9. .integral-detail .number-box {
  10. width: 750rpx;
  11. height: 446rpx;
  12. position: relative;
  13. color: #fff;
  14. }
  15. .integral-detail .number-box .bg1 {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .integral-detail .number-box .bg2 {
  23. position: absolute;
  24. top: 50rpx;
  25. left: 225rpx;
  26. width: 300rpx;
  27. height: 300rpx;
  28. }
  29. .integral-detail .number-box .my-integral {
  30. position: relative;
  31. text-align: center;
  32. width: 300rpx;
  33. margin: auto;
  34. padding-top: 146rpx;
  35. }
  36. .integral-detail .number-box .my-integral .number {
  37. font-size: 60rpx;
  38. }
  39. .integral-detail .number-box .text {
  40. font-size: 30rpx;
  41. }
  42. .integral-detail .number-box .explain {
  43. position: absolute;
  44. right: 0;
  45. top: 30rpx;
  46. padding: 8rpx 16rpx 8rpx 20rpx;
  47. border-radius: 30rpx 0 0 30rpx;
  48. background: rgba(0,0,0,.2);
  49. color: #fff;
  50. font-size: 24rpx;
  51. }
  52. .integral-detail .detail-list {
  53. padding: 0 30rpx;
  54. margin-top: 30rpx;
  55. }
  56. .empty {
  57. display: block;
  58. width: 100%;
  59. height: 200rpx;
  60. line-height: 200rpx;
  61. font-size: 28rpx;
  62. color: #888;
  63. text-align: center;
  64. }
  65. .all {
  66. height: 80rpx;
  67. line-height: 80rpx;
  68. }
  69. .integral-detail .detail-list .item {
  70. display: flex;
  71. padding: 30rpx 0;
  72. border-bottom: 1px solid #eee;
  73. }
  74. .integral-detail .detail-list .item:last-child {
  75. border: 0;
  76. }
  77. .integral-detail .detail-list .item .text-box {
  78. flex: 1;
  79. margin-right: 30rpx;
  80. }
  81. .integral-detail .detail-list .item .text-box .tit {
  82. font-size: 28rpx;
  83. display: -webkit-box;
  84. -webkit-box-orient: vertical;
  85. -webkit-line-clamp: 1;
  86. overflow: hidden;
  87. text-overflow: ellipsis;
  88. }
  89. .integral-detail .detail-list .item .text-box .time {
  90. font-size: 24rpx;
  91. color: #999;
  92. margin-top: 10rpx;
  93. }
  94. .integral-detail .detail-list .item .score {
  95. font-size: 36rpx;
  96. margin-top: 4rpx;
  97. font-family: arial;
  98. }
  99. .integral-detail .detail-list .item .score.add {
  100. color: #e43130;
  101. }
  102. /* 积分明细 end */
  103. /* 积分攻略弹框 */
  104. .score-strategy {
  105. display: block;
  106. z-index: 999;
  107. }
  108. .mask {
  109. position: fixed;
  110. width: 100%;
  111. height: 100%;
  112. top: 0;
  113. left: 0;
  114. background: #000;
  115. opacity: .4;
  116. z-index: 1;
  117. }
  118. .explain-card {
  119. position: fixed;
  120. width: 70%;
  121. height: 60%;
  122. top: 50%;
  123. left: 50%;
  124. transform: translateX(-50%) translateY(-50%);
  125. background: #fff;
  126. border-radius: 6rpx;
  127. padding: 20rpx;
  128. z-index: 2;
  129. }
  130. .pop-tit{
  131. display: flex;
  132. justify-content: space-between;
  133. align-items: center;
  134. }
  135. .cont-title {
  136. font-size: 30rpx;
  137. font-weight: 600;
  138. text-align: center;
  139. position: relative;
  140. width: 100%;
  141. margin-bottom: 4rpx;
  142. }
  143. .close-box {
  144. position: absolute;
  145. right: 20rpx;
  146. top: 22rpx;
  147. }
  148. .close-icon {
  149. display: inline-block;
  150. width: 36rpx;
  151. height: 36rpx;
  152. }
  153. .content-wrap{
  154. height: 90%;
  155. }
  156. .cont-det {
  157. font-size: 28rpx;
  158. color: #555;
  159. display: block;
  160. margin-bottom: 30rpx;
  161. height: 100%;
  162. overflow-y: auto;
  163. text-align: justify;
  164. padding: 0 20rpx;
  165. }
  166. /* /积分攻略弹框 */