微信小程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
3 anos atrás
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. .singleLinHidenEllipsis{
  2. color: black;
  3. text-align: center;
  4. width: auto;
  5. }
  6. .information_header{
  7. /* padding: 30rpx 32rpx 54rpx; */
  8. padding: 10rpx 32rpx 54rpx;
  9. display: flex;
  10. position: relative;
  11. }
  12. .information_header .setup{
  13. width: 38rpx;
  14. height: 38rpx;
  15. position: absolute;
  16. right: 34rpx;
  17. top: 15rpx;
  18. display: block;
  19. }
  20. .information_header .portrait_head{
  21. width: 110rpx;
  22. height: 110rpx;
  23. border-radius: 50%;
  24. overflow: hidden;
  25. }
  26. .information_header .information_main{
  27. flex: 1;
  28. padding-left: 16rpx;
  29. }
  30. .information_header .name_wrap{
  31. display: flex;
  32. height: 54rpx;
  33. align-items: center;
  34. margin-bottom: 10rpx;
  35. }
  36. .information_header .name_wrap .name{
  37. font-size: 46rpx;
  38. }
  39. .information_header .name_wrap .jobs{
  40. margin-left: 18rpx;
  41. /* width: 155rpx; */
  42. height: 40rpx;
  43. background: #5bae75;
  44. border:2rpx solid #2c8e68;
  45. color: #fff;
  46. border-radius: 40rpx;
  47. display: flex;
  48. font-size: 28rpx;
  49. justify-content: center;
  50. align-items: center;
  51. padding: 0 20rpx;
  52. }
  53. .information_header .name_wrap .jobs .icon{
  54. width: 26rpx;
  55. height: 27rpx;
  56. margin-right: 5rpx;
  57. }
  58. .information_header .task_wrap{
  59. display: flex;
  60. height: 44rpx;
  61. margin-bottom: 18rpx;
  62. }
  63. .information_header .unfinished{
  64. margin-left: 12rpx;
  65. }
  66. .information_header .task_wrap .flex_block{
  67. height: 48rpx;
  68. display: flex;
  69. background: #fff;
  70. line-height: 44rpx;
  71. border-radius: 44rpx;
  72. border:2rpx solid #2c8e68;
  73. text-align: center;
  74. font-size: 24rpx;
  75. }
  76. .information_header .task_wrap .flex_block .icon{
  77. width: 30rpx;
  78. height: 30rpx;
  79. vertical-align: sub;
  80. display:inline-block;
  81. }
  82. .information_header .task_wrap .flex_block .desc{
  83. width: 115rpx;
  84. background: #2c8e68;
  85. position:relative;
  86. overflow: hidden;
  87. color: #fff;
  88. line-height: 44rpx;
  89. border-top-left-radius: 44rpx;
  90. border-bottom-left-radius: 44rpx;
  91. margin-top: -1rpx;
  92. margin-left: -1rpx;
  93. }
  94. .information_header .task_wrap .flex_block .desc::before{
  95. position:absolute;
  96. top:-40rpx;
  97. right:-40rpx;
  98. content:"";
  99. z-index:1;
  100. width:110rpx; /*如果需要圆角的话 不用比box的宽度长,如果不需要圆角需要增长*/
  101. height:40rpx;
  102. background-color:#fff;
  103. transform:rotate(-75deg);
  104. transform-origin:right bottom;
  105. border-radius:0px;
  106. }
  107. .information_header .task_wrap .flex_block .event{
  108. color: #2c8e68;
  109. margin-left: -2%;
  110. padding:0 20rpx 0 20rpx;
  111. }
  112. .information_header .address_wrap{
  113. font-size: 26rpx;
  114. color: #2b8e68;
  115. height: 46rpx;
  116. line-height: 46rpx;
  117. }
  118. .navList_main{
  119. width: 685rpx;
  120. height: 228rpx;
  121. background-color: #fff;
  122. border-radius: 24rpx;
  123. margin:0 auto;
  124. display: flex;
  125. box-shadow: 0rpx 0rpx 12rpx rgba(0,0,0,.2);
  126. }
  127. .navList_main .tab_item{
  128. flex: 1;
  129. display: flex;
  130. justify-content: center;
  131. align-items: center;
  132. flex-direction: column;
  133. }
  134. .navList_main .tab_item .icon{
  135. width: 100rpx;
  136. height: 100rpx;
  137. margin-bottom: 12rpx;
  138. }
  139. .navList_main .tab_item .icon_img{
  140. width: 100rpx;
  141. height: 100rpx;
  142. }
  143. .navList_main .tab_item .desc{
  144. font-size: 26rpx;
  145. }
  146. .child_function{
  147. margin: 35rpx 20rpx 0;
  148. display: flex;
  149. flex-wrap: wrap;
  150. align-content:space-between;
  151. }
  152. .child_function .flex_block{
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. flex-direction: column;
  157. width: 20%;
  158. }
  159. .child_function .flex_block:nth-child(n+6){
  160. margin-top: 25rpx;
  161. }
  162. .child_function .flex_block .image{
  163. width: 76rpx;
  164. height: 70rpx;
  165. margin-bottom: 20rpx;
  166. }
  167. .child_function .flex_block .attribute{
  168. width: 76rpx;
  169. height: 70rpx;
  170. }
  171. .child_function .flex_block .desc{
  172. font-size: 26rpx;
  173. }
  174. .work_plan{
  175. padding: 40rpx 32.5rpx 30rpx;
  176. display: flex;
  177. justify-content: space-between;
  178. }
  179. .work_plan .menu_item{
  180. height: 60rpx;
  181. width: 140rpx;
  182. background-color: #fff;
  183. box-shadow: 0rpx 0rpx 9rpx rgba(0,0,0,.2);
  184. border-radius: 60rpx;
  185. line-height: 60rpx;
  186. text-align: center;
  187. font-size: 32rpx;
  188. position: relative;
  189. }
  190. .work_plan .menu_item.active{
  191. background-color: #5bae78;
  192. color: #fff;
  193. }
  194. .work_plan .menu_item .remind{
  195. height: 30rpx;
  196. background: #e90101;
  197. color: #fff;
  198. font-size: 26rpx;
  199. position: absolute;
  200. line-height: 30rpx;
  201. padding:0 10rpx;
  202. border-radius: 50px;
  203. top: -10rpx;
  204. right: -10rpx;
  205. }
  206. .work_plan .more{
  207. flex: 1;
  208. text-align: center;
  209. line-height: 60rpx;
  210. font-size: 36rpx;
  211. color: #31936c;
  212. }
  213. .workflow,.van-swipe-cell {
  214. /* padding: 10rpx 32.5rpx; */
  215. background-color: #fff;
  216. border-radius: 24rpx;
  217. box-shadow: 0rpx 5rpx 5rpx rgba(0,0,0,.1);
  218. margin-bottom: 20rpx;
  219. }
  220. .workflow .workflow_list{
  221. height: 150rpx;
  222. padding:15rpx 25rpx 10rpx 35rpx;
  223. }
  224. .workflow .workflow_list .process_intro{
  225. display: flex;
  226. height: 62rpx;
  227. align-items: center;
  228. }
  229. .workflow .process_intro .name{
  230. width: 390rpx;
  231. font-size: 34rpx;
  232. margin-right: 30rpx;
  233. display: -webkit-box;
  234. -webkit-box-orient: vertical;
  235. -webkit-line-clamp: 1;
  236. word-break: break-all;
  237. overflow: hidden;
  238. }
  239. .workflow .process_intro .name .name_tit{
  240. width: 290rpx;
  241. overflow: hidden;
  242. text-overflow: ellipsis;
  243. white-space: nowrap;
  244. float: left;
  245. }
  246. .workflow .process_intro .state{
  247. width: 93rpx;
  248. height: 42rpx;
  249. background-color: #fbe3e3;
  250. color: #f31e1f;
  251. border-radius: 12rpx;
  252. text-align: center;
  253. line-height: 42rpx;
  254. }
  255. .workflow .process_intro .time{
  256. flex: 1;
  257. text-align: right;
  258. font-size: 32rpx;
  259. color: #9ea1aa;
  260. }
  261. .workflow .workflow_list .process_pay{
  262. display: flex;
  263. height: 52rpx;
  264. align-items: center;
  265. }
  266. .workflow .workflow_list .process_pay .describe{
  267. font-size: 30rpx;
  268. width: 330rpx;
  269. color: #3c9370;
  270. display: flex;
  271. align-items: center;
  272. }
  273. .workflow .workflow_list .process_pay .describe .amount_icon{
  274. width: 32rpx;
  275. height: 32rpx;
  276. margin-right: 12rpx;
  277. }
  278. .workflow .workflow_list .process_pay .amount{
  279. font-size: 38rpx;
  280. flex: 1;
  281. text-align: right;
  282. color: #f31e1f;
  283. }
  284. .workflow .workflow_list .process_pay .amount .unit{
  285. font-size: 26rpx;
  286. }
  287. .textLimit{
  288. overflow: hidden;
  289. text-overflow: ellipsis;
  290. white-space: nowrap;
  291. }
  292. .btn{
  293. width: 100%;
  294. height:90rpx;
  295. padding:0 24rpx;
  296. box-sizing:border-box;
  297. line-height: 90rpx;
  298. text-align: center;
  299. display: flex;
  300. background:rgba(255,255,255,.8);
  301. justify-content: space-between;
  302. }
  303. .address-item {
  304. min-height: 98rpx;
  305. display: flex;
  306. justify-content: flex-start;
  307. align-items: center;
  308. border-bottom: 1px solid #f1f1f1;
  309. padding: 0 32rpx
  310. }
  311. .item-title {
  312. width: 140rpx;
  313. color: #4d4c4c;
  314. font-size: 28rpx;
  315. height: 98rpx;
  316. line-height: 98rpx;
  317. }
  318. .item-content {
  319. width: 520rpx;
  320. white-space: nowrap;
  321. overflow: hidden;
  322. text-overflow: ellipsis;
  323. font-size: 28rpx;
  324. height: 98rpx;
  325. line-height: 98rpx;
  326. color: #4d4c4c;
  327. }
  328. /* 地区级联选择器 */
  329. .picker-view {
  330. width: 100%;
  331. display: flex;
  332. background-color: #fff;
  333. flex-direction: column;
  334. justify-content: center;
  335. align-items: center;
  336. bottom: 0rpx;
  337. left: 0rpx;
  338. }
  339. .picker-item {
  340. line-height: 70rpx;
  341. margin-left: 5rpx;
  342. margin-right: 5rpx;
  343. text-align: center;
  344. }
  345. .picker-view__pane {
  346. height: 100rpx;
  347. width: 100%;
  348. padding: 20rpx 32rpx;
  349. display: flex;
  350. justify-content: space-between;
  351. align-items: center;
  352. box-sizing: border-box;
  353. }
  354. .picker-view__pane text{
  355. color: #00cc88;
  356. font-size: 30rpx;
  357. }
  358. .pick-view__group {
  359. width: 96%;
  360. height: 450rpx;
  361. }
  362. .agree{
  363. background-color: rgba(92, 174, 119, 0.1);
  364. color:#5CAE77 ;
  365. text-align: center;
  366. float: right;
  367. padding: 2px 5px;
  368. border-radius: 5px;
  369. font-size: 12px;
  370. }
  371. .in{
  372. background-color: rgba(245, 163, 39, 0.1);
  373. color:#F5A327 ;
  374. text-align: center;
  375. float: right;
  376. padding: 2px 5px;
  377. border-radius: 5px;
  378. font-size: 12px;
  379. }
  380. .disagree{
  381. background-color: rgba(233, 0, 0, 0.1);
  382. color:#E90000 ;
  383. text-align: center;
  384. float: right;
  385. padding: 2px 5px;
  386. border-radius: 5px;
  387. font-size: 12px;
  388. }
  389. .deleteBox{
  390. width: 65px;
  391. text-align: center;
  392. height: 100%;
  393. background: #F6F6F6;
  394. align-items: center;
  395. display: flex;
  396. }