integral.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. /*自定义主题色 */
  27. .fixed-top-box {
  28. width: 100%;
  29. position: fixed;
  30. top: 0;
  31. left: 0;
  32. z-index: 1000;
  33. transition: all 0.5s;
  34. }
  35. .top-cont {
  36. width: 100%;
  37. height: 654rpx;
  38. position: relative;
  39. }
  40. .top-cont .bg {
  41. width: 100%;
  42. height: 100%;
  43. position: absolute;
  44. top: 0;
  45. left: 0;
  46. z-index: 1;
  47. }
  48. .top-cont .top-inner {
  49. width: 100%;
  50. height: 100%;
  51. position: absolute;
  52. top: 0;
  53. left: 0;
  54. z-index: 2;
  55. }
  56. .top-cont .top-inner .back-box {
  57. height: 88rpx;
  58. padding-left: 22rpx;
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. padding: 0 20rpx;
  63. }
  64. .top-cont .top-inner .back-box image {
  65. width: 40rpx;
  66. height: 40rpx;
  67. }
  68. .top-cont .top-inner .back-box .title {
  69. font-size: 36rpx;
  70. font-family: PingFang SC;
  71. font-weight: 500;
  72. color: #FFFFFF;
  73. }
  74. .top-cont .top-inner .available-points {
  75. margin-top: 140rpx;
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. justify-content: center;
  80. }
  81. .top-cont .top-inner .available-points .label {
  82. font-size: 30rpx;
  83. font-family: PingFang SC;
  84. font-weight: bold;
  85. color: #FFFFFF;
  86. line-height: 1;
  87. }
  88. .top-cont .top-inner .available-points .num {
  89. font-size: 80rpx;
  90. font-family: Gilroy;
  91. font-weight: 500;
  92. color: #FFFFFF;
  93. line-height: 1;
  94. margin-top: 28rpx;
  95. }
  96. .top-cont .top-inner .singn-content {
  97. padding: 0 20rpx;
  98. margin-top: 50rpx;
  99. }
  100. .top-cont .top-inner .sign-in-box {
  101. height: 380rpx;
  102. background: #FFFFFF;
  103. border-radius: 16rpx;
  104. }
  105. .top-cont .top-inner .sign-in-box .inner {
  106. padding: 40rpx 30rpx;
  107. }
  108. .top-cont .top-inner .sign-in-box .inner .title-box {
  109. font-size: 26rpx;
  110. font-family: PingFang SC;
  111. font-weight: 500;
  112. color: #666666;
  113. line-height: 1;
  114. }
  115. .top-cont .top-inner .sign-in-box .inner .title-box .num {
  116. font-size: 32rpx;
  117. font-family: PingFang SC;
  118. font-weight: Bold;
  119. color: #FF7511;
  120. margin: 0 10rpx;
  121. line-height: 1;
  122. }
  123. .top-cont .top-inner .sign-in-box .inner .sign-list {
  124. display: flex;
  125. align-items: center;
  126. justify-content: space-between;
  127. margin-top: 40rpx;
  128. }
  129. .top-cont .top-inner .sign-in-box .inner .sign-list .item {
  130. display: flex;
  131. justify-content: center;
  132. }
  133. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right {
  134. display: flex;
  135. flex-direction: column;
  136. align-items: center;
  137. justify-content: center;
  138. }
  139. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right image {
  140. width: 44rpx;
  141. height: 44rpx;
  142. margin-bottom: 20rpx;
  143. }
  144. .top-cont .top-inner .sign-in-box .inner .sign-list .item .right .text {
  145. font-size: 24rpx;
  146. font-family: PingFang SC;
  147. font-weight: 500;
  148. color: #FF7511;
  149. line-height: 1;
  150. white-space: nowrap;
  151. }
  152. .top-cont .top-inner .sign-in-box .inner .sign-list .item .line {
  153. width: 34rpx;
  154. height: 4rpx;
  155. background: #F6CDA7;
  156. border-radius: 2rpx;
  157. margin-top: 22rpx;
  158. }
  159. .top-cont .top-inner .sign-in-box .inner .sign-list .item:first-child .line {
  160. display: none;
  161. }
  162. .top-cont .top-inner .sign-in-box .inner .sign-list .item.active .line {
  163. background: #FF8E3C;
  164. }
  165. .top-cont .top-inner .sign-in-box .sign-btn-box {
  166. padding: 0 14rpx;
  167. }
  168. .top-cont .top-inner .sign-in-box .sign-btn-box .btn {
  169. width: 100%;
  170. height: 88rpx;
  171. box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
  172. background-color: #FF7511;
  173. border-radius: 44rpx;
  174. display: flex;
  175. justify-content: center;
  176. align-items: center;
  177. }
  178. .top-cont .top-inner .sign-in-box .sign-btn-box .btn image {
  179. width: 32rpx;
  180. height: 32rpx;
  181. }
  182. .top-cont .top-inner .sign-in-box .sign-btn-box .btn .text {
  183. font-size: 30rpx;
  184. font-family: PingFang SC;
  185. font-weight: bold;
  186. color: #FFFFFF;
  187. line-height: 1;
  188. }
  189. .content {
  190. margin-top: 20rpx;
  191. padding: 0 20rpx 40rpx;
  192. }
  193. .content .points-cont {
  194. background-color: #FFFFFF;
  195. border-radius: 16rpx;
  196. }
  197. .content .points-cont .pub-tab-box {
  198. padding: 0 80rpx;
  199. }
  200. .content .points-cont .pub-tab-box .tab-inner {
  201. height: 88rpx;
  202. line-height: 88rpx;
  203. display: flex;
  204. align-items: center;
  205. justify-content: space-between;
  206. }
  207. .content .points-cont .pub-tab-box .item {
  208. font-size: 28rpx;
  209. white-space: nowrap;
  210. line-height: 1;
  211. font-family: PingFang SC;
  212. font-weight: 500;
  213. color: #666666;
  214. display: flex;
  215. align-items: center;
  216. justify-content: center;
  217. }
  218. .content .points-cont .pub-tab-box .item.active {
  219. font-weight: bold;
  220. color: #333333;
  221. }
  222. .content .points-cont .pub-tab-box .item .text {
  223. position: relative;
  224. z-index: 1;
  225. }
  226. .content .points-cont .pub-tab-box .item .tab-bg {
  227. width: 72rpx;
  228. height: 28rpx;
  229. position: absolute;
  230. top: 17rpx;
  231. left: 50%;
  232. transform: translateX(-36rpx);
  233. z-index: -1;
  234. }
  235. .content .points-cont .point-list {
  236. padding: 0 30rpx;
  237. }
  238. .content .points-cont .point-list .item {
  239. padding: 30rpx 0;
  240. display: flex;
  241. align-items: center;
  242. justify-content: space-between;
  243. border-bottom: 1px solid #F0F0F0;
  244. }
  245. .content .points-cont .point-list .item:last-child {
  246. border-bottom: none;
  247. }
  248. .content .points-cont .point-list .item .left .title {
  249. font-size: 28rpx;
  250. font-family: PingFang SC;
  251. font-weight: 500;
  252. color: #111111;
  253. line-height: 1;
  254. }
  255. .content .points-cont .point-list .item .left .time {
  256. font-size: 24rpx;
  257. font-family: PingFang SC;
  258. font-weight: 500;
  259. color: #999999;
  260. line-height: 1;
  261. margin-top: 22rpx;
  262. }
  263. .content .points-cont .point-list .item .right .add {
  264. font-size: 28rpx;
  265. font-family: PingFang SC;
  266. font-weight: 500;
  267. color: #111111;
  268. }
  269. .content .points-cont .point-list .item .right .less {
  270. font-size: 28rpx;
  271. font-family: PingFang SC;
  272. font-weight: 500;
  273. color: #F56C6C;
  274. }