index.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. .page-wrap.data-v-b1e38ccc {
  28. padding: 0 20rpx;
  29. overflow-y: auto;
  30. }
  31. .page-wrap .pageTabs.data-v-b1e38ccc {
  32. background-color: #fff;
  33. }
  34. .page-wrap .head.data-v-b1e38ccc {
  35. margin-top: 20rpx;
  36. }
  37. .page-wrap .head .handle.data-v-b1e38ccc {
  38. display: inline-block;
  39. color: #777777;
  40. text-align: center;
  41. padding: 16rpx 20rpx;
  42. border-radius: 30rpx;
  43. font-size: 28rpx;
  44. line-height: 1;
  45. box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  46. }
  47. .page-wrap .head .addbt.data-v-b1e38ccc {
  48. width: 100rpx;
  49. height: 100rpx;
  50. border-radius: 50%;
  51. color: #fff;
  52. background-color: rgba(64, 158, 255, 0.6);
  53. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.6);
  54. position: fixed;
  55. right: 10rpx;
  56. bottom: 20%;
  57. z-index: 99;
  58. text-align: center;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. }
  63. .page-wrap .head .addbt .word.data-v-b1e38ccc {
  64. width: 80rpx;
  65. height: 80rpx;
  66. border-radius: 50%;
  67. margin: 5rpx auto;
  68. font-size: 28rpx;
  69. letter-spacing: 2px;
  70. display: flex;
  71. justify-content: center;
  72. align-items: center;
  73. }
  74. .page-wrap .pageMain.data-v-b1e38ccc {
  75. margin-top: 20rpx;
  76. background-color: #f5f5f5;
  77. padding-bottom: 50rpx;
  78. }
  79. .page-wrap .pageMain .slot-button.data-v-b1e38ccc {
  80. width: 400rpx;
  81. height: 100%;
  82. display: flex;
  83. flex-direction: row;
  84. justify-content: center;
  85. align-items: center;
  86. color: #fff;
  87. padding-left: 10px;
  88. }
  89. .page-wrap .pageMain .slot-button .bt.data-v-b1e38ccc {
  90. width: 50%;
  91. height: 100%;
  92. font-size: 30rpx;
  93. box-sizing: border-box;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. .page-wrap .pageMain .slot-button .bt.edit.data-v-b1e38ccc {
  99. background-color: #007aff;
  100. }
  101. .page-wrap .pageMain .slot-button .bt.del.data-v-b1e38ccc {
  102. background-color: #F56C6C;
  103. }
  104. .page-wrap .pageMain .slot-button .bt.detail.data-v-b1e38ccc {
  105. background-color: #e6a23c;
  106. }
  107. .page-wrap .pageMain .item.data-v-b1e38ccc {
  108. color: #666;
  109. }
  110. .page-wrap .pageMain .item .name.data-v-b1e38ccc {
  111. font-size: 32rpx;
  112. color: #222222;
  113. line-height: 1;
  114. padding-bottom: 10rpx;
  115. }
  116. .page-wrap .pageMain .item image.icon.data-v-b1e38ccc {
  117. width: 30rpx;
  118. height: 30rpx;
  119. display: block;
  120. }
  121. .page-wrap .pageMain .item .item-row.data-v-b1e38ccc {
  122. display: flex;
  123. align-items: center;
  124. padding-top: 14rpx;
  125. }
  126. .page-wrap .pageMain .item .item-row.space-between.data-v-b1e38ccc {
  127. justify-content: space-between;
  128. }
  129. .page-wrap .pageMain .item .icon-item.data-v-b1e38ccc {
  130. display: flex;
  131. align-items: center;
  132. }
  133. .page-wrap .pageMain .item .icon-item .word.data-v-b1e38ccc {
  134. margin-left: 8rpx;
  135. font-size: 24rpx;
  136. }