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

преди 3 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. font-size: 16px;
  13. position: relative;
  14. margin-right: 20px;
  15. padding: 8px 20px;
  16. }
  17. .work_plan .menu_item.active{
  18. background-color: #2C8E68;
  19. color: #fff;
  20. }
  21. .work_plan .menu_item .remind{
  22. height: 30rpx;
  23. background: #e90101;
  24. color: #fff;
  25. font-size: 26rpx;
  26. position: absolute;
  27. line-height: 30rpx;
  28. padding:0 10rpx;
  29. border-radius: 25px;
  30. top: -10rpx;
  31. right: -10rpx;
  32. }
  33. .work_plan .more{
  34. flex: 1;
  35. text-align: center;
  36. line-height: 60rpx;
  37. font-size: 36rpx;
  38. color: #31936c;
  39. }
  40. .workflow{
  41. padding: 10rpx 32.5rpx;
  42. }
  43. .workflow .workflow_list{
  44. height: 150rpx;
  45. background-color: #fff;
  46. border-radius: 24rpx;
  47. box-shadow:0rpx 0rpx 10rpx rgba(0,0,0,.1);
  48. margin-bottom: 20rpx;
  49. padding:15rpx 25rpx 10rpx 35rpx;
  50. }
  51. .workflow .workflow_list .process_intro{
  52. display: flex;
  53. height: 62rpx;
  54. align-items: center;
  55. }
  56. .workflow .process_intro .name{
  57. width: 390rpx;
  58. font-size: 34rpx;
  59. margin-right: 30rpx;
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. }
  64. .workflow .process_intro .name .name_tit{
  65. width: 290rpx;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. white-space: nowrap;
  69. }
  70. .li{
  71. display: flex;
  72. justify-content: space-between;
  73. width: 94%;
  74. margin: 0 auto;
  75. background: #fff;
  76. padding: 14px;
  77. border-radius: 10px;
  78. box-shadow: 2px 5px 5px #ddd;
  79. margin-bottom: 15px;
  80. }
  81. .li view text{
  82. margin-top: 15px;
  83. }
  84. .li view text:nth-child(1){
  85. margin-top: 0px;
  86. }
  87. .li .fksr{
  88. display: flex;
  89. align-items: center;
  90. margin-top: 15px;
  91. color: #2C8E68;
  92. font-size: 16px;
  93. }
  94. .li .wtj{
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. padding: 3px 8px;
  99. background-color: rgba(233, 0, 0,0.1);
  100. border-radius: 5px;
  101. color: #444444;
  102. font-size: 14px;
  103. }
  104. .li .tit{
  105. font-size: 18px;
  106. color: #444444;
  107. line-height: 25px;
  108. display: -webkit-box;
  109. -webkit-box-orient: vertical;
  110. -webkit-line-clamp: 1;
  111. word-break: break-all;
  112. overflow: hidden;
  113. }
  114. .li .fj_name{
  115. font-size: 14px;
  116. color: #B3DB62;
  117. line-height: 25px;
  118. }
  119. .li .time{
  120. font-size: 14px;
  121. color: #9B9CAA;
  122. }
  123. .li .money{
  124. font-size: 18px;
  125. color: #5CAE77;
  126. }
  127. .van-checkbox__label {
  128. display: flex;
  129. justify-content: space-between;
  130. width: 100%;
  131. }
  132. .van-checkbox__icon-wrap {
  133. border-radius: 5px;
  134. }
  135. .van-checkbox__icon {
  136. border-radius: 5px;
  137. border: 2px solid #2C8E68!important;
  138. background-color: rgba(44, 142, 104, 0.2);
  139. }
  140. .bottom{
  141. width: 100%;
  142. margin: 0 auto;
  143. text-align: center;
  144. padding: 15px 0;
  145. display: flex;
  146. position: fixed;
  147. bottom: 0%;
  148. background: #fff;
  149. box-shadow: 0 0 5px #ddd;
  150. }
  151. .bottom view {
  152. width: 47%;
  153. margin: 0 auto;
  154. border-radius: 30px;
  155. display: inline-block;
  156. }
  157. .bottom .btn2{
  158. border: 1px solid transparent;
  159. padding: 10px 0px;
  160. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  161. color: #fff;
  162. }