remember.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. .listAll.data-v-25fad8b2 {
  28. height: 100vh;
  29. background-color: #f8f8f8;
  30. }
  31. .list.data-v-25fad8b2 {
  32. padding: 30rpx;
  33. }
  34. .list ._li.data-v-25fad8b2 {
  35. background-color: #fff;
  36. box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  37. border-radius: 20rpx;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. padding: 20px 10px;
  42. margin-bottom: 30rpx;
  43. }
  44. .list ._li .checked.data-v-25fad8b2 {
  45. width: 35rpx;
  46. height: 35rpx;
  47. border: 1px solid #ccc;
  48. border-radius: 50px;
  49. margin-right: 20rpx;
  50. }
  51. .list ._li .add.data-v-25fad8b2 {
  52. flex: 1;
  53. padding-right: 30px;
  54. }
  55. .list ._li .add .address.data-v-25fad8b2 {
  56. font-size: 32rpx;
  57. color: #333;
  58. font-weight: bold;
  59. margin-bottom: 10rpx;
  60. }
  61. .list ._li .add .namePhone.data-v-25fad8b2 {
  62. font-size: 28rpx;
  63. }
  64. .list ._li .add .namePhone ._span.data-v-25fad8b2 {
  65. color: #a4a6a8;
  66. }
  67. .list ._li .edior.data-v-25fad8b2 {
  68. font-size: 30rpx;
  69. }
  70. .list ._li .edior .edit.data-v-25fad8b2 {
  71. color: #2cb8d4;
  72. font-weight: bold;
  73. margin-bottom: 10px;
  74. }
  75. .list ._li.active .checked.data-v-25fad8b2 {
  76. background-color: #2cb8d4;
  77. box-shadow: inset 0 0 5rpx 10rpx #fff;
  78. }
  79. .list .nodata.data-v-25fad8b2 {
  80. text-align: center;
  81. padding-top: 200rpx;
  82. color: #666;
  83. }
  84. .list .nodata image.data-v-25fad8b2 {
  85. width: 440rpx;
  86. height: 240rpx;
  87. }
  88. .addbtn.data-v-25fad8b2 {
  89. position: fixed;
  90. bottom: 0;
  91. width: 100%;
  92. background-color: #fff;
  93. border-top: 1px solid #ccc;
  94. padding-top: 15px;
  95. padding-bottom: 30px;
  96. }
  97. .addbtn button.data-v-25fad8b2 {
  98. margin: 0 50px;
  99. background-color: #2cb8d4;
  100. border-radius: 50px;
  101. }