木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.0 KiB

  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. .click-animation.data-v-e5faaea0:active {
  16. -webkit-transform: scale(0.98);
  17. transform: scale(0.98);
  18. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.12);
  19. }
  20. /* 行为相关颜色 */
  21. /* 文字基本颜色 */
  22. /* 背景颜色 */
  23. /* 边框颜色 */
  24. /* 尺寸变量 */
  25. /* 文字尺寸 */
  26. /* 图片尺寸 */
  27. /* Border Radius */
  28. /* 水平间距 */
  29. /* 垂直间距 */
  30. /* 透明度 */
  31. /* 文章场景相关 */
  32. .points-detail.data-v-e5faaea0 {
  33. background: #f8f8f8;
  34. min-height: 100vh;
  35. }
  36. .tab-container.data-v-e5faaea0 {
  37. display: flex;
  38. background: #ffffff;
  39. margin: 20rpx;
  40. border-radius: 50rpx;
  41. padding: 8rpx;
  42. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  43. }
  44. .tab-container .tab-item.data-v-e5faaea0 {
  45. flex: 1;
  46. height: 80rpx;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. border-radius: 40rpx;
  51. transition: all 0.3s ease;
  52. }
  53. .tab-container .tab-item.active.data-v-e5faaea0 {
  54. background: #1488DB;
  55. }
  56. .tab-container .tab-item.active .tab-text.data-v-e5faaea0 {
  57. color: #ffffff;
  58. font-weight: bold;
  59. }
  60. .tab-container .tab-item .tab-text.data-v-e5faaea0 {
  61. font-size: 28rpx;
  62. color: #666666;
  63. transition: all 0.3s ease;
  64. }
  65. .list-container.data-v-e5faaea0 {
  66. padding: 0 20rpx;
  67. }
  68. .list-item.data-v-e5faaea0 {
  69. background: #ffffff;
  70. margin-bottom: 20rpx;
  71. padding: 30rpx;
  72. border-radius: 15rpx;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  77. }
  78. .list-item .item-left.data-v-e5faaea0 {
  79. display: flex;
  80. align-items: center;
  81. flex: 1;
  82. }
  83. .list-item .item-left .item-icon.data-v-e5faaea0 {
  84. width: 60rpx;
  85. height: 60rpx;
  86. margin-right: 20rpx;
  87. border-radius: 50%;
  88. }
  89. .list-item .item-left .item-info.data-v-e5faaea0 {
  90. flex: 1;
  91. }
  92. .list-item .item-left .item-info .item-title.data-v-e5faaea0 {
  93. font-size: 28rpx;
  94. color: #333333;
  95. display: block;
  96. margin-bottom: 10rpx;
  97. line-height: 1.4;
  98. }
  99. .list-item .item-left .item-info .item-time.data-v-e5faaea0 {
  100. font-size: 24rpx;
  101. color: #999999;
  102. display: block;
  103. }
  104. .list-item .item-right .points-text.data-v-e5faaea0 {
  105. font-size: 28rpx;
  106. font-weight: bold;
  107. }
  108. .list-item .item-right .points-text.income.data-v-e5faaea0 {
  109. color: #1488DB;
  110. }
  111. .list-item .item-right .points-text.expense.data-v-e5faaea0 {
  112. color: #ff4757;
  113. }