爱简收旧衣按件回收前端代码仓库
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.

118 lines
2.9 KiB

  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. .staff-manage-container.data-v-9b5c981c {
  27. min-height: 100vh;
  28. background: #f7f7f7;
  29. padding-bottom: 40rpx;
  30. }
  31. .refresh-tip-bar.data-v-9b5c981c {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. width: 100vw;
  36. height: 80rpx;
  37. background: #fffbe6;
  38. color: #ffb400;
  39. font-size: 30rpx;
  40. font-weight: 500;
  41. text-align: center;
  42. line-height: 80rpx;
  43. z-index: 9999;
  44. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.03);
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. }
  49. .refresh-loading-icon.data-v-9b5c981c {
  50. margin-right: 16rpx;
  51. }
  52. .refresh-tip-text.data-v-9b5c981c {
  53. font-size: 30rpx;
  54. color: #ffb400;
  55. }
  56. .navbar.data-v-9b5c981c {
  57. position: fixed;
  58. top: 0;
  59. left: 0;
  60. width: 100vw;
  61. height: 100rpx;
  62. background: #fff;
  63. z-index: 10;
  64. display: flex;
  65. align-items: flex-end;
  66. justify-content: space-between;
  67. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  68. padding: 0 32rpx;
  69. }
  70. .navbar .nav-left.data-v-9b5c981c {
  71. flex: 0 0 48rpx;
  72. display: flex;
  73. align-items: center;
  74. height: 100%;
  75. }
  76. .navbar .nav-title.data-v-9b5c981c {
  77. flex: 1;
  78. text-align: center;
  79. font-size: 36rpx;
  80. font-weight: bold;
  81. color: #222;
  82. line-height: 100rpx;
  83. }
  84. .navbar .nav-right.data-v-9b5c981c {
  85. flex: 0 0 80rpx;
  86. display: flex;
  87. align-items: center;
  88. justify-content: flex-end;
  89. height: 100%;
  90. }
  91. .staff-list.data-v-9b5c981c {
  92. margin-top: calc(100rpx + var(--status-bar-height));
  93. padding: 32rpx 0;
  94. min-height: calc(100vh - 100rpx - var(--status-bar-height));
  95. box-sizing: border-box;
  96. }
  97. .staff-card.data-v-9b5c981c {
  98. background: #fff;
  99. border-radius: 40rpx;
  100. margin: 0 32rpx 32rpx 32rpx;
  101. padding: 40rpx 36rpx 36rpx 36rpx;
  102. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  103. }
  104. .staff-info-row.data-v-9b5c981c {
  105. display: flex;
  106. align-items: center;
  107. margin-bottom: 18rpx;
  108. }
  109. .staff-info-row .staff-label.data-v-9b5c981c {
  110. font-size: 30rpx;
  111. color: #b3b3b3;
  112. width: 110rpx;
  113. font-weight: 400;
  114. }
  115. .staff-info-row .staff-value.data-v-9b5c981c {
  116. font-size: 32rpx;
  117. color: #222;
  118. font-weight: 500;
  119. }