国外MOSE官网
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.

108 lines
2.8 KiB

4 days ago
  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. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .points-detail.data-v-e5faaea0 {
  28. background: #f8f8f8;
  29. min-height: 100vh;
  30. }
  31. .tab-container.data-v-e5faaea0 {
  32. display: flex;
  33. background: #ffffff;
  34. margin: 20rpx;
  35. border-radius: 50rpx;
  36. padding: 8rpx;
  37. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  38. }
  39. .tab-container .tab-item.data-v-e5faaea0 {
  40. flex: 1;
  41. height: 80rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. border-radius: 40rpx;
  46. transition: all 0.3s ease;
  47. }
  48. .tab-container .tab-item.active.data-v-e5faaea0 {
  49. background: #1488DB;
  50. }
  51. .tab-container .tab-item.active .tab-text.data-v-e5faaea0 {
  52. color: #ffffff;
  53. font-weight: bold;
  54. }
  55. .tab-container .tab-item .tab-text.data-v-e5faaea0 {
  56. font-size: 28rpx;
  57. color: #666666;
  58. transition: all 0.3s ease;
  59. }
  60. .list-container.data-v-e5faaea0 {
  61. padding: 0 20rpx;
  62. }
  63. .list-item.data-v-e5faaea0 {
  64. background: #ffffff;
  65. margin-bottom: 20rpx;
  66. padding: 30rpx;
  67. border-radius: 15rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  72. }
  73. .list-item .item-left.data-v-e5faaea0 {
  74. display: flex;
  75. align-items: center;
  76. flex: 1;
  77. }
  78. .list-item .item-left .item-icon.data-v-e5faaea0 {
  79. width: 60rpx;
  80. height: 60rpx;
  81. margin-right: 20rpx;
  82. border-radius: 50%;
  83. }
  84. .list-item .item-left .item-info.data-v-e5faaea0 {
  85. flex: 1;
  86. }
  87. .list-item .item-left .item-info .item-title.data-v-e5faaea0 {
  88. font-size: 28rpx;
  89. color: #333333;
  90. display: block;
  91. margin-bottom: 10rpx;
  92. line-height: 1.4;
  93. }
  94. .list-item .item-left .item-info .item-time.data-v-e5faaea0 {
  95. font-size: 24rpx;
  96. color: #999999;
  97. display: block;
  98. }
  99. .list-item .item-right .points-text.data-v-e5faaea0 {
  100. font-size: 28rpx;
  101. font-weight: bold;
  102. }
  103. .list-item .item-right .points-text.income.data-v-e5faaea0 {
  104. color: #1488DB;
  105. }
  106. .list-item .item-right .points-text.expense.data-v-e5faaea0 {
  107. color: #ff4757;
  108. }