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.

102 lines
2.6 KiB

1 week ago
  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. .content.data-v-20733e1a {
  27. background: linear-gradient(0deg, rgba(55, 118, 255, 0) 0%, #3776FF 100%) no-repeat #F6F7FA;
  28. background-size: 100% 720rpx;
  29. width: 100%;
  30. min-height: 100vh;
  31. }
  32. .content .card.data-v-20733e1a {
  33. width: 100%;
  34. background: #FFFFFF;
  35. border-radius: 20rpx;
  36. padding: 30rpx;
  37. margin-top: 30rpx;
  38. }
  39. .content .card .echartBox.data-v-20733e1a {
  40. width: 100%;
  41. min-height: 230rpx;
  42. }
  43. .content .card .huiBg.data-v-20733e1a {
  44. width: 100%;
  45. height: 144rpx;
  46. background: #F4F4F4;
  47. border-radius: 20rpx;
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. text-align: center;
  52. }
  53. .content .card .huiBg .li.data-v-20733e1a {
  54. flex: 1;
  55. }
  56. .content .card .huiBg .li .num.data-v-20733e1a {
  57. font-family: DIN;
  58. font-weight: bold;
  59. font-size: 48rpx;
  60. }
  61. .content .card .huiBg .li .lab.data-v-20733e1a {
  62. font-size: 24rpx;
  63. margin-top: 10rpx;
  64. color: #999999;
  65. }
  66. .content .card .btn_row.data-v-20733e1a {
  67. padding-top: 40rpx;
  68. display: flex;
  69. justify-content: space-between;
  70. }
  71. .content .card .btn_row .btn.data-v-20733e1a {
  72. height: 77rpx;
  73. background: linear-gradient(90deg, #FAE0A2 0%, #F6C86F 100%);
  74. border-radius: 39rpx;
  75. color: #6B4229;
  76. font-weight: 500;
  77. font-size: 28rpx;
  78. text-align: center;
  79. line-height: 77rpx;
  80. width: 48%;
  81. }
  82. .content .card .btn_row .btn.lastBtn.data-v-20733e1a {
  83. background: #3776FF;
  84. color: #fff;
  85. }
  86. .card .leftTxt.data-v-20733e1a {
  87. flex: 1;
  88. }
  89. .card .leftTxt .text.data-v-20733e1a {
  90. font-weight: 500;
  91. font-size: 28rpx;
  92. }
  93. .card .leftTxt .tps.data-v-20733e1a {
  94. font-weight: 500;
  95. font-size: 24rpx;
  96. color: #666666;
  97. margin-top: 10rpx;
  98. }
  99. .card .lianxi .lx.data-v-20733e1a {
  100. font-weight: 500;
  101. font-size: 24rpx;
  102. color: #3776FF;
  103. }