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.

120 lines
2.8 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. .ard_row.data-v-1cf27b2a {
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. padding: 20rpx;
  31. border-radius: 10rpx;
  32. background: #EDF8FF;
  33. }
  34. .ard_row .leftBox.data-v-1cf27b2a {
  35. display: flex;
  36. align-items: center;
  37. }
  38. .ard_row .leftBox .text.data-v-1cf27b2a {
  39. color: #333;
  40. font-size: 28rpx;
  41. margin-left: 6rpx;
  42. }
  43. .moreBox.data-v-1cf27b2a {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .moreBox .txt.data-v-1cf27b2a {
  48. font-size: 28rpx;
  49. color: #1989FA;
  50. margin-right: 8rpx;
  51. }
  52. image.data-v-1cf27b2a {
  53. display: block;
  54. width: 100%;
  55. height: 100%;
  56. }
  57. .btnBox.data-v-1cf27b2a {
  58. position: fixed;
  59. bottom: 70rpx;
  60. left: 0;
  61. padding: 20px;
  62. width: 100%;
  63. }
  64. .content.data-v-1cf27b2a {
  65. width: 100%;
  66. padding-top: 100rpx;
  67. }
  68. .content .tit.data-v-1cf27b2a {
  69. padding: 60rpx 0rpx 30rpx 0;
  70. font-size: 28rpx;
  71. color: #333;
  72. font-weight: 700;
  73. }
  74. .content .ul.data-v-1cf27b2a {
  75. display: flex;
  76. flex-wrap: wrap;
  77. justify-content: space-between;
  78. }
  79. .content .ul .li.data-v-1cf27b2a {
  80. width: 190rpx;
  81. padding: 20rpx 0;
  82. border-radius: 10rpx;
  83. position: relative;
  84. display: flex;
  85. align-items: center;
  86. margin: 30rpx 0rpx 0 0;
  87. flex-direction: column;
  88. }
  89. .content .ul .li.active.data-v-1cf27b2a {
  90. background: #EDF8FF;
  91. }
  92. .content .ul .li .checkBox.data-v-1cf27b2a {
  93. position: absolute;
  94. top: 0;
  95. right: 0;
  96. width: 36rpx;
  97. height: 36rpx;
  98. background: #4DBEFF;
  99. border-radius: 0px 10rpx 0px 10rpx;
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. }
  104. .content .ul .li .checkBox image.data-v-1cf27b2a {
  105. display: block;
  106. width: 32rpx;
  107. height: 23rpx;
  108. }
  109. .content .ul .li .icon.data-v-1cf27b2a {
  110. width: 106rpx;
  111. height: 68rpx;
  112. }
  113. .content .ul .li .name.data-v-1cf27b2a {
  114. font-size: 28rpx;
  115. margin: 4rpx 0;
  116. }
  117. .content .ul .li .carType.data-v-1cf27b2a {
  118. font-size: 24rpx;
  119. color: #ccc;
  120. padding: 4rpx;
  121. }