integral.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .fixed-top-box {
  27. width: 100%;
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. z-index: 1000;
  32. transition: all 0.5s;
  33. }
  34. .top-cont {
  35. width: 100%;
  36. height: 654rpx;
  37. position: relative;
  38. }
  39. .top-cont .bg {
  40. width: 100%;
  41. height: 100%;
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. z-index: 1;
  46. }
  47. .top-cont .top-inner {
  48. width: 100%;
  49. height: 100%;
  50. position: absolute;
  51. top: 0;
  52. left: 0;
  53. z-index: 2;
  54. }
  55. .top-cont .top-inner .back-box {
  56. height: 88rpx;
  57. padding-left: 22rpx;
  58. display: flex;
  59. align-items: center;
  60. justify-content: space-between;
  61. padding: 0 20rpx;
  62. }
  63. .top-cont .top-inner .back-box image {
  64. width: 40rpx;
  65. height: 40rpx;
  66. }
  67. .top-cont .top-inner .back-box .title {
  68. font-size: 36rpx;
  69. font-family: PingFang SC;
  70. font-weight: 500;
  71. color: #FFFFFF;
  72. }
  73. .top-cont .top-inner .available-points {
  74. margin-top: 140rpx;
  75. display: flex;
  76. flex-direction: column;
  77. align-items: center;
  78. justify-content: center;
  79. }
  80. .top-cont .top-inner .available-points .label {
  81. font-size: 30rpx;
  82. font-family: PingFang SC;
  83. font-weight: bold;
  84. color: #FFFFFF;
  85. line-height: 1;
  86. }
  87. .top-cont .top-inner .available-points .num {
  88. font-size: 80rpx;
  89. font-family: Gilroy;
  90. font-weight: 500;
  91. color: #FFFFFF;
  92. line-height: 1;
  93. margin-top: 28rpx;
  94. }
  95. .top-cont .top-inner .singn-content {
  96. padding: 0 20rpx;
  97. margin-top: 50rpx;
  98. }
  99. .top-cont .top-inner .sign-in-box {
  100. height: 380rpx;
  101. background: #FFFFFF;
  102. border-radius: 16rpx;
  103. }
  104. .top-cont .top-inner .sign-in-box .inner {
  105. padding: 40rpx 30rpx;
  106. }
  107. .top-cont .top-inner .sign-in-box .inner .title-box {
  108. font-size: 26rpx;
  109. font-family: PingFang SC;
  110. font-weight: 500;
  111. color: #666666;
  112. line-height: 1;
  113. }
  114. .top-cont .top-inner .sign-in-box .inner .title-box .num {
  115. font-size: 32rpx;
  116. font-family: PingFang SC;
  117. font-weight: Bold;
  118. color: #FF7511;
  119. margin: 0 10rpx;
  120. line-height: 1;
  121. }
  122. .top-cont .top-inner .sign-in-box .inner .sign-list {
  123. display: flex;
  124. align-items: center;
  125. justify-content: space-between;
  126. margin-top: 40rpx;
  127. }
  128. .top-cont .top-inner .sign-in-box .inner .sign-list .item {
  129. display: flex;
  130. justify-content: center;
  131. }
  132. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right {
  133. display: flex;
  134. flex-direction: column;
  135. align-items: center;
  136. justify-content: center;
  137. }
  138. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right image {
  139. width: 44rpx;
  140. height: 44rpx;
  141. margin-bottom: 20rpx;
  142. }
  143. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right .text {
  144. font-size: 24rpx;
  145. font-family: PingFang SC;
  146. font-weight: 500;
  147. color: #FF7511;
  148. line-height: 1;
  149. white-space: nowrap;
  150. }
  151. .top-cont .top-inner .sign-in-box .inner .sign-list .item .line {
  152. width: 34rpx;
  153. height: 4rpx;
  154. background: #F6CDA7;
  155. border-radius: 2rpx;
  156. margin-top: 22rpx;
  157. }
  158. .top-cont .top-inner .sign-in-box .inner .sign-list .item:first-child .line {
  159. display: none;
  160. }
  161. .top-cont .top-inner .sign-in-box .inner .sign-list .item.active .line {
  162. background: #FF8E3C;
  163. }
  164. .top-cont .top-inner .sign-in-box .sign-btn-box {
  165. padding: 0 14rpx;
  166. }
  167. .top-cont .top-inner .sign-in-box .sign-btn-box .btn {
  168. width: 100%;
  169. height: 88rpx;
  170. box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
  171. background-color: #FF7511;
  172. border-radius: 44rpx;
  173. display: flex;
  174. justify-content: center;
  175. align-items: center;
  176. }
  177. .top-cont .top-inner .sign-in-box .sign-btn-box .btn image {
  178. width: 32rpx;
  179. height: 32rpx;
  180. }
  181. .top-cont .top-inner .sign-in-box .sign-btn-box .btn .text {
  182. font-size: 30rpx;
  183. font-family: PingFang SC;
  184. font-weight: bold;
  185. color: #FFFFFF;
  186. line-height: 1;
  187. }
  188. .content {
  189. margin-top: 20rpx;
  190. padding: 0 20rpx 40rpx;
  191. }
  192. .content .points-cont {
  193. background-color: #FFFFFF;
  194. border-radius: 16rpx;
  195. }
  196. .content .points-cont .pub-tab-box {
  197. padding: 0 80rpx;
  198. }
  199. .content .points-cont .pub-tab-box .tab-inner {
  200. height: 88rpx;
  201. line-height: 88rpx;
  202. display: flex;
  203. align-items: center;
  204. justify-content: space-between;
  205. }
  206. .content .points-cont .pub-tab-box .item {
  207. font-size: 28rpx;
  208. white-space: nowrap;
  209. line-height: 1;
  210. font-family: PingFang SC;
  211. font-weight: 500;
  212. color: #666666;
  213. display: flex;
  214. align-items: center;
  215. justify-content: center;
  216. }
  217. .content .points-cont .pub-tab-box .item.active {
  218. font-weight: bold;
  219. color: #333333;
  220. }
  221. .content .points-cont .pub-tab-box .item .text {
  222. position: relative;
  223. z-index: 1;
  224. }
  225. .content .points-cont .pub-tab-box .item .tab-bg {
  226. width: 72rpx;
  227. height: 28rpx;
  228. position: absolute;
  229. top: 17rpx;
  230. left: 50%;
  231. transform: translateX(-36rpx);
  232. z-index: -1;
  233. }
  234. .content .points-cont .point-list {
  235. padding: 0 30rpx;
  236. }
  237. .content .points-cont .point-list .item {
  238. padding: 30rpx 0;
  239. display: flex;
  240. align-items: center;
  241. justify-content: space-between;
  242. border-bottom: 1px solid #F0F0F0;
  243. }
  244. .content .points-cont .point-list .item:last-child {
  245. border-bottom: none;
  246. }
  247. .content .points-cont .point-list .item .left .title {
  248. font-size: 28rpx;
  249. font-family: PingFang SC;
  250. font-weight: 500;
  251. color: #111111;
  252. line-height: 1;
  253. }
  254. .content .points-cont .point-list .item .left .time {
  255. font-size: 24rpx;
  256. font-family: PingFang SC;
  257. font-weight: 500;
  258. color: #999999;
  259. line-height: 1;
  260. margin-top: 22rpx;
  261. }
  262. .content .points-cont .point-list .item .right .add {
  263. font-size: 28rpx;
  264. font-family: PingFang SC;
  265. font-weight: 500;
  266. color: #111111;
  267. }
  268. .content .points-cont .point-list .item .right .less {
  269. font-size: 28rpx;
  270. font-family: PingFang SC;
  271. font-weight: 500;
  272. color: #F56C6C;
  273. }