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

100 lines
2.5 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. .container.data-v-3b5138af {
  27. min-height: 100vh;
  28. background: #f5f5f5;
  29. padding-bottom: calc(140rpx + env(safe-area-inset-bottom));
  30. }
  31. .nav-bar.data-v-3b5138af {
  32. display: flex;
  33. align-items: center;
  34. height: 88rpx;
  35. background: #fff;
  36. padding: 0 30rpx;
  37. }
  38. .nav-bar .back.data-v-3b5138af {
  39. padding: 20rpx;
  40. margin-left: -20rpx;
  41. }
  42. .nav-bar .title.data-v-3b5138af {
  43. flex: 1;
  44. text-align: center;
  45. font-size: 34rpx;
  46. font-weight: 500;
  47. }
  48. .nav-bar .right-btns.data-v-3b5138af {
  49. display: flex;
  50. align-items: center;
  51. gap: 30rpx;
  52. }
  53. .nav-bar .right-btns .more.data-v-3b5138af, .nav-bar .right-btns .target.data-v-3b5138af {
  54. font-size: 40rpx;
  55. color: #333;
  56. }
  57. .form-content.data-v-3b5138af {
  58. padding: 20rpx;
  59. }
  60. .form-card.data-v-3b5138af {
  61. background: #fff;
  62. border-radius: 20rpx;
  63. margin-bottom: 20rpx;
  64. overflow: hidden;
  65. }
  66. .form-card .card-title.data-v-3b5138af {
  67. font-size: 32rpx;
  68. font-weight: bold;
  69. color: #333;
  70. padding: 30rpx;
  71. }
  72. .form-card .form-item.data-v-3b5138af {
  73. padding: 20rpx 30rpx;
  74. border-top: 1rpx solid #f5f5f5;
  75. }
  76. .form-card .form-item .label.data-v-3b5138af {
  77. font-size: 28rpx;
  78. color: #333;
  79. margin-bottom: 20rpx;
  80. display: block;
  81. }
  82. .form-card .form-item .input.data-v-3b5138af {
  83. font-size: 28rpx;
  84. color: #333;
  85. width: 100%;
  86. }
  87. .bottom-btn.data-v-3b5138af {
  88. position: fixed;
  89. bottom: 0;
  90. left: 0;
  91. right: 0;
  92. height: 100rpx;
  93. background: #FFB74D;
  94. color: #fff;
  95. font-size: 32rpx;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. padding-bottom: env(safe-area-inset-bottom);
  100. border-radius: 50rpx;
  101. }