微信小程序
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.

205 lines
3.5 KiB

  1. /* pages/Bookkeeping/Bookkeeping.wxss */
  2. text{display: block;}
  3. .work_plan{
  4. padding: 40rpx 32.5rpx 30rpx;
  5. display: flex;
  6. }
  7. .work_plan .menu_item{
  8. background-color: #fff;
  9. box-shadow: 2px 5px 5px #ddd;
  10. border-radius: 60rpx;
  11. text-align: center;
  12. position: relative;
  13. margin-right: 20px;
  14. padding: 8px 10px;
  15. }
  16. .work_plan .menu_item.active{
  17. background-color: #2C8E68;
  18. color: #fff;
  19. }
  20. .work_plan .menu_item .remind{
  21. height: 30rpx;
  22. background: #e90101;
  23. color: #fff;
  24. font-size: 26rpx;
  25. position: absolute;
  26. line-height: 30rpx;
  27. padding:0 10rpx;
  28. border-radius: 25px;
  29. top: -10rpx;
  30. right: -10rpx;
  31. }
  32. .work_plan .more{
  33. flex: 1;
  34. text-align: center;
  35. line-height: 60rpx;
  36. font-size: 36rpx;
  37. color: #31936c;
  38. }
  39. .deleteBox{
  40. width: 65px;
  41. text-align: center;
  42. height: 100%;
  43. background: #F6F6F6;
  44. align-items: center;
  45. display: flex;
  46. }
  47. .workflow .workflow_list{
  48. height: 150rpx;
  49. background-color: #fff;
  50. border-radius: 24rpx;
  51. box-shadow:0rpx 0rpx 10rpx rgba(0,0,0,.1);
  52. margin-bottom: 20rpx;
  53. padding:15rpx 25rpx 10rpx 35rpx;
  54. }
  55. .workflow .workflow_list .process_intro{
  56. display: flex;
  57. height: 62rpx;
  58. align-items: center;
  59. }
  60. .workflow .process_intro .name{
  61. width: 390rpx;
  62. font-size: 34rpx;
  63. margin-right: 30rpx;
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. }
  68. .workflow .process_intro .name .name_tit{
  69. width: 290rpx;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. }
  74. .van-swipe-cell {
  75. width: 94%;
  76. background: #fff;
  77. border-radius: 10px;
  78. box-shadow: 2px 5px 5px #ddd;
  79. margin: 0 auto;
  80. margin-bottom: 15px;
  81. }
  82. .li{
  83. display: flex;
  84. justify-content: space-between;
  85. width: 100%;
  86. padding: 14px;
  87. }
  88. .li view text{
  89. margin-top: 15px;
  90. }
  91. .li view text:nth-child(1){
  92. margin-top: 0px;
  93. }
  94. .li .fksr{
  95. display: flex;
  96. align-items: center;
  97. margin-top: 15px;
  98. color: #2C8E68;
  99. font-size: 16px;
  100. }
  101. .li .wtj{
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. padding: 3px 8px;
  106. border-radius: 5px;
  107. font-size: 14px;
  108. }
  109. .no{
  110. background-color:#fbe3e3;
  111. color: #e90000;
  112. }
  113. .white{
  114. background-color:#feeadc;
  115. color: #fc9a55;
  116. }
  117. .yes{
  118. background-color:#ddeee3;
  119. color: #5cae77;
  120. }
  121. .other{
  122. background-color:#f0f1f6;
  123. color: #878787;
  124. }
  125. .li .tit{
  126. font-size: 18px;
  127. color: #444444;
  128. line-height: 25px;
  129. display: -webkit-box;
  130. -webkit-box-orient: vertical;
  131. -webkit-line-clamp: 1;
  132. word-break: break-all;
  133. overflow: hidden;
  134. }
  135. .li .fj_name{
  136. font-size: 14px;
  137. color: #B3DB62;
  138. line-height: 25px;
  139. }
  140. .li .time{
  141. font-size: 14px;
  142. color: #9B9CAA;
  143. }
  144. .li .money{
  145. font-size: 18px;
  146. color: #5CAE77;
  147. }
  148. .van-checkbox__label {
  149. display: flex;
  150. justify-content: space-between;
  151. width: 100%;
  152. }
  153. .van-checkbox__icon-wrap {
  154. border-radius: 5px;
  155. }
  156. .van-checkbox__icon {
  157. border-radius: 5px;
  158. border: 2px solid #2C8E68!important;
  159. background-color: rgba(44, 142, 104, 0.2);
  160. }
  161. .bottom{
  162. width: 100%;
  163. margin: 0 auto;
  164. text-align: center;
  165. padding: 15px 0;
  166. display: flex;
  167. position: fixed;
  168. bottom: 0%;
  169. background: #fff;
  170. box-shadow: 0 0 5px #ddd;
  171. }
  172. .bottom view {
  173. width: 47%;
  174. margin: 0 auto;
  175. border-radius: 30px;
  176. display: inline-block;
  177. }
  178. .bottom .btn2{
  179. border: 1px solid transparent;
  180. padding: 10px 0px;
  181. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  182. color: #fff;
  183. }
  184. .downView{
  185. display: flex;
  186. justify-content: center;
  187. align-items: center;
  188. padding: 0 20px;
  189. border: 1px solid #5CAE77;
  190. border-radius: 50px;
  191. background: #fff;
  192. margin-left: auto;
  193. }
  194. .downView image{
  195. width: 10px;
  196. height: 8px;
  197. margin-left: 10px;
  198. }