微信小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  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: flex;
  234. justify-content: space-between;
  235. align-items: center;
  236. }
  237. .workflow .process_intro .name .name_tit{
  238. width: 290rpx;
  239. overflow: hidden;
  240. text-overflow: ellipsis;
  241. white-space: nowrap;
  242. }
  243. .workflow .process_intro .state{
  244. width: 93rpx;
  245. height: 42rpx;
  246. background-color: #fbe3e3;
  247. color: #f31e1f;
  248. border-radius: 12rpx;
  249. text-align: center;
  250. line-height: 42rpx;
  251. }
  252. .workflow .process_intro .time{
  253. flex: 1;
  254. text-align: right;
  255. font-size: 32rpx;
  256. color: #9ea1aa;
  257. }
  258. .workflow .workflow_list .process_pay{
  259. display: flex;
  260. height: 52rpx;
  261. align-items: center;
  262. }
  263. .workflow .workflow_list .process_pay .describe{
  264. font-size: 30rpx;
  265. width: 330rpx;
  266. color: #3c9370;
  267. display: flex;
  268. align-items: center;
  269. }
  270. .workflow .workflow_list .process_pay .describe .amount_icon{
  271. width: 32rpx;
  272. height: 32rpx;
  273. margin-right: 12rpx;
  274. }
  275. .workflow .workflow_list .process_pay .amount{
  276. font-size: 38rpx;
  277. flex: 1;
  278. text-align: right;
  279. color: #f31e1f;
  280. }
  281. .workflow .workflow_list .process_pay .amount .unit{
  282. font-size: 26rpx;
  283. }
  284. .textLimit{
  285. overflow: hidden;
  286. text-overflow: ellipsis;
  287. white-space: nowrap;
  288. }
  289. .btn{
  290. width: 100%;
  291. height:90rpx;
  292. padding:0 24rpx;
  293. box-sizing:border-box;
  294. line-height: 90rpx;
  295. text-align: center;
  296. display: flex;
  297. background:rgba(255,255,255,.8);
  298. justify-content: space-between;
  299. }
  300. .address-item {
  301. min-height: 98rpx;
  302. display: flex;
  303. justify-content: flex-start;
  304. align-items: center;
  305. border-bottom: 1px solid #f1f1f1;
  306. padding: 0 32rpx
  307. }
  308. .item-title {
  309. width: 140rpx;
  310. color: #4d4c4c;
  311. font-size: 28rpx;
  312. height: 98rpx;
  313. line-height: 98rpx;
  314. }
  315. .item-content {
  316. width: 520rpx;
  317. white-space: nowrap;
  318. overflow: hidden;
  319. text-overflow: ellipsis;
  320. font-size: 28rpx;
  321. height: 98rpx;
  322. line-height: 98rpx;
  323. color: #4d4c4c;
  324. }
  325. /* 地区级联选择器 */
  326. .picker-view {
  327. width: 100%;
  328. display: flex;
  329. background-color: #fff;
  330. flex-direction: column;
  331. justify-content: center;
  332. align-items: center;
  333. bottom: 0rpx;
  334. left: 0rpx;
  335. }
  336. .picker-item {
  337. line-height: 70rpx;
  338. margin-left: 5rpx;
  339. margin-right: 5rpx;
  340. text-align: center;
  341. }
  342. .picker-view__pane {
  343. height: 100rpx;
  344. width: 100%;
  345. padding: 20rpx 32rpx;
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. box-sizing: border-box;
  350. }
  351. .picker-view__pane text{
  352. color: #00cc88;
  353. font-size: 30rpx;
  354. }
  355. .pick-view__group {
  356. width: 96%;
  357. height: 450rpx;
  358. }
  359. .agree{
  360. background-color: rgba(92, 174, 119, 0.1);
  361. color:#5CAE77 ;
  362. text-align: center;
  363. float: right;
  364. padding: 2px 5px;
  365. border-radius: 5px;
  366. font-size: 12px;
  367. }
  368. .in{
  369. background-color: rgba(245, 163, 39, 0.1);
  370. color:#F5A327 ;
  371. text-align: center;
  372. float: right;
  373. padding: 2px 5px;
  374. border-radius: 5px;
  375. font-size: 12px;
  376. }
  377. .disagree{
  378. background-color: rgba(233, 0, 0, 0.1);
  379. color:#E90000 ;
  380. text-align: center;
  381. float: right;
  382. padding: 2px 5px;
  383. border-radius: 5px;
  384. font-size: 12px;
  385. }
  386. .deleteBox{
  387. width: 65px;
  388. text-align: center;
  389. height: 100%;
  390. background: #F6F6F6;
  391. align-items: center;
  392. display: flex;
  393. }