微信小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

155 rader
2.8 KiB

  1. /* pages/handle/liist.wxss */
  2. .work_plan{
  3. padding: 40rpx 32.5rpx 30rpx;
  4. display: flex;
  5. }
  6. .work_plan .menu_item{
  7. height: 60rpx;
  8. width: 140rpx;
  9. background-color: #fff;
  10. box-shadow: 0rpx 0rpx 9rpx rgba(0,0,0,.2);
  11. border-radius: 60rpx;
  12. line-height: 60rpx;
  13. text-align: center;
  14. font-size: 32rpx;
  15. position: relative;
  16. margin-right: 16rpx;
  17. }
  18. .work_plan .menu_item.active{
  19. background-color: #5bae78;
  20. color: #fff;
  21. }
  22. .work_plan .menu_item .remind{
  23. height: 30rpx;
  24. background: #e90101;
  25. color: #fff;
  26. font-size: 26rpx;
  27. position: absolute;
  28. line-height: 30rpx;
  29. padding:0 10rpx;
  30. border-radius: 50%;
  31. top: -10rpx;
  32. right: -10rpx;
  33. }
  34. .work_plan .more{
  35. flex: 1;
  36. text-align: center;
  37. line-height: 60rpx;
  38. font-size: 36rpx;
  39. color: #31936c;
  40. }
  41. .workflow{
  42. padding: 10rpx 32.5rpx;
  43. }
  44. .workflow .workflow_list{
  45. height: 150rpx;
  46. background-color: #fff;
  47. border-radius: 24rpx;
  48. box-shadow:0rpx 0rpx 10rpx rgba(0,0,0,.1);
  49. margin-bottom: 20rpx;
  50. padding:15rpx 25rpx 10rpx 35rpx;
  51. }
  52. .workflow .workflow_list .process_intro{
  53. display: flex;
  54. height: 62rpx;
  55. align-items: center;
  56. }
  57. .workflow .process_intro .name{
  58. width: 324rpx;
  59. font-size: 34rpx;
  60. margin-right: 30rpx;
  61. overflow: hidden;
  62. text-overflow: ellipsis;
  63. white-space: nowrap;
  64. }
  65. .workflow .process_intro .state{
  66. width: 93rpx;
  67. height: 42rpx;
  68. background-color: #fbe3e3;
  69. color: #f31e1f;
  70. border-radius: 12rpx;
  71. text-align: center;
  72. line-height: 42rpx;
  73. }
  74. .workflow .process_intro .time{
  75. flex: 1;
  76. text-align: right;
  77. font-size: 32rpx;
  78. color: #9ea1aa;
  79. }
  80. .workflow .workflow_list .process_pay{
  81. display: flex;
  82. height: 52rpx;
  83. align-items: center;
  84. }
  85. .workflow .workflow_list .process_pay .describe{
  86. font-size: 30rpx;
  87. width: 330rpx;
  88. color: #3c9370;
  89. display: flex;
  90. align-items: center;
  91. }
  92. .workflow .workflow_list .process_pay .describe .amount_icon{
  93. width: 32rpx;
  94. height: 32rpx;
  95. margin-right: 12rpx;
  96. }
  97. .workflow .workflow_list .process_pay .amount{
  98. font-size: 38rpx;
  99. flex: 1;
  100. text-align: right;
  101. color: #f31e1f;
  102. }
  103. .workflow .workflow_list .process_pay .amount .unit{
  104. font-size: 26rpx;
  105. }
  106. .work_plan{
  107. padding: 40rpx 32.5rpx 30rpx;
  108. display: flex;
  109. justify-content:space-between
  110. }
  111. .work_plan .menu_item{
  112. height: 60rpx;
  113. width: 180rpx;
  114. background-color: #fff;
  115. box-shadow: 0rpx 0rpx 9rpx rgba(0,0,0,.2);
  116. border-radius: 60rpx;
  117. line-height: 60rpx;
  118. text-align: center;
  119. font-size: 32rpx;
  120. position: relative;
  121. margin-right: 16rpx;
  122. padding:0 10rpx;
  123. display: inline-block;
  124. }
  125. .work_plan .menu_item.active{
  126. background-color: #5bae78;
  127. color: #fff;
  128. }
  129. .remind{
  130. height: 30rpx;
  131. background: #e90101;
  132. color: #fff;
  133. font-size: 26rpx;
  134. position: absolute;
  135. line-height: 30rpx;
  136. padding:0 10rpx;
  137. border-radius: 50%;
  138. top: -10rpx;
  139. right: -10rpx;
  140. }
  141. .textLimit{
  142. overflow: hidden;
  143. text-overflow: ellipsis;
  144. white-space: nowrap;
  145. }