微信小程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

461 wiersze
7.7 KiB

  1. /* pages/regular/index.wxss */
  2. .van-search__content {
  3. border: 1px solid #5CAE77!important;
  4. background: #fff!important;
  5. }
  6. van-search {
  7. flex: 0.8;
  8. }
  9. .search_box{
  10. }
  11. .add_btn{
  12. flex: 0.2;
  13. padding: var(--search-padding,10px 12px);
  14. padding-left: 0;
  15. }
  16. .add_btn text{
  17. background-color: #62AD66;
  18. display: block;
  19. height: 100%;
  20. text-align: center;
  21. line-height: 36px;
  22. color: #fff;
  23. border-radius: 36px;
  24. box-shadow: 0px 5px 5px #ddd;
  25. }
  26. text{display: block;}
  27. .work_plan{
  28. padding: 40rpx 32.5rpx 30rpx;
  29. display: flex;
  30. }
  31. .work_plan .menu_item{
  32. background-color: #fff;
  33. box-shadow: 2px 5px 5px #ddd;
  34. border-radius: 60rpx;
  35. text-align: center;
  36. position: relative;
  37. margin-right: 20px;
  38. padding: 8px 10px;
  39. }
  40. .work_plan .menu_item.active{
  41. background-color: #2C8E68;
  42. color: #fff;
  43. }
  44. .work_plan .menu_item .remind{
  45. height: 30rpx;
  46. background: #e90101;
  47. color: #fff;
  48. font-size: 26rpx;
  49. position: absolute;
  50. line-height: 30rpx;
  51. padding:0 10rpx;
  52. border-radius: 25px;
  53. top: -10rpx;
  54. right: -10rpx;
  55. }
  56. .work_plan .more{
  57. flex: 1;
  58. text-align: center;
  59. line-height: 60rpx;
  60. font-size: 36rpx;
  61. color: #31936c;
  62. }
  63. .deleteBox{
  64. width: 50px;
  65. text-align: center;
  66. height: 100%;
  67. background: #F6F6F6;
  68. align-items: center;
  69. display: flex;
  70. }
  71. .moreBox{
  72. width: 90px;
  73. text-align: center;
  74. height: 100%;
  75. background: #F6F6F6;
  76. align-items: center;
  77. display: flex;
  78. }
  79. .workflow .workflow_list{
  80. height: 150rpx;
  81. background-color: #fff;
  82. border-radius: 24rpx;
  83. box-shadow:0rpx 0rpx 10rpx rgba(0,0,0,.1);
  84. margin-bottom: 20rpx;
  85. padding:15rpx 25rpx 10rpx 35rpx;
  86. }
  87. .workflow .workflow_list .process_intro{
  88. display: flex;
  89. height: 62rpx;
  90. align-items: center;
  91. }
  92. .workflow .process_intro .name{
  93. width: 390rpx;
  94. font-size: 34rpx;
  95. margin-right: 30rpx;
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. .workflow .process_intro .name .name_tit{
  101. width: 290rpx;
  102. overflow: hidden;
  103. text-overflow: ellipsis;
  104. white-space: nowrap;
  105. }
  106. .van-swipe-cell {
  107. width: 94%;
  108. background: #fff;
  109. border-radius: 10px;
  110. box-shadow: 2px 5px 5px #ddd;
  111. margin: 0 auto;
  112. margin-bottom: 15px;
  113. }
  114. .li{
  115. width: 100%;
  116. padding: 14px;
  117. display: flex;
  118. z-index: 1;
  119. }
  120. .tit_box{
  121. display: flex;
  122. align-items: center;
  123. margin-bottom: 10px;
  124. }
  125. .detail_box{
  126. margin-top: 15px;
  127. display: flex;
  128. justify-content: space-between;
  129. }
  130. .li view text{
  131. /* margin-top: 15px; */
  132. }
  133. .li .detail_box view{
  134. display: flex;
  135. align-items: center;
  136. }
  137. .li .detail_box view text{
  138. color: #878787;
  139. line-height: 1;
  140. }
  141. .li view text:nth-child(1){
  142. margin-top: 0px;
  143. }
  144. .li .fksr{
  145. display: flex;
  146. align-items: center;
  147. margin-top: 15px;
  148. color: #2C8E68;
  149. font-size: 16px;
  150. }
  151. .li .wtj{
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. padding: 3px 8px;
  156. border-radius: 5px;
  157. font-size: 14px;
  158. }
  159. .no{
  160. background-color:#fbe3e3;
  161. color: #e90000;
  162. }
  163. .white{
  164. background-color:#feeadc;
  165. color: #fc9a55;
  166. }
  167. .yes{
  168. background-color:#ddeee3;
  169. color: #5cae77;
  170. }
  171. .other{
  172. background-color:#f0f1f6;
  173. color: #878787;
  174. }
  175. .tit_box:nth-child(3) .tit{
  176. color: #5CAE77!important;
  177. }
  178. .li .tit{
  179. font-size: 14px;
  180. color: #444444;
  181. /* line-height: 14px; */
  182. display: -webkit-box;
  183. -webkit-box-orient: vertical;
  184. -webkit-line-clamp: 1;
  185. word-break: break-all;
  186. overflow: hidden;
  187. }
  188. .li .tit:nth-child(2){
  189. font-size: 12px;
  190. color: #B5B5B5;
  191. }
  192. .li .fj_name{
  193. font-size: 14px;
  194. color: #B3DB62;
  195. line-height: 25px;
  196. }
  197. .li .time{
  198. font-size: 14px;
  199. color: #9B9CAA;
  200. }
  201. .li .money{
  202. font-size: 18px;
  203. color: #5CAE77;
  204. }
  205. .van-checkbox__label {
  206. display: flex;
  207. justify-content: space-between;
  208. width: 100%;
  209. }
  210. .van-checkbox__icon-wrap {
  211. border-radius: 5px;
  212. }
  213. .van-checkbox__icon {
  214. border-radius: 5px;
  215. border: 2px solid #2C8E68!important;
  216. background-color: rgba(44, 142, 104, 0.2);
  217. }
  218. .downView{
  219. display: flex;
  220. justify-content: center;
  221. align-items: center;
  222. padding: 0 20px;
  223. border: 1px solid #5CAE77;
  224. border-radius: 50px;
  225. background: #fff;
  226. margin-left: auto;
  227. }
  228. .downView image{
  229. width: 10px;
  230. height: 8px;
  231. margin-left: 10px;
  232. }
  233. .fj-box text{
  234. background-color: #5CAE77;
  235. color: #ffffff;
  236. text-align: center;
  237. border-radius: 5px;
  238. white-space:pre-wrap;
  239. padding: 5rpx 8rpx;
  240. width: 50rpx;
  241. margin: 0px 14px;
  242. font-size: 24rpx;
  243. }
  244. .fj-li{
  245. margin-top: 20px;
  246. display: flex;
  247. /* flex-wrap: wrap; */
  248. }
  249. .fj-li .img_li{
  250. width: 100%;
  251. height: 18.5vw;
  252. }
  253. .fj-li .img_add{
  254. overflow: hidden;
  255. }
  256. .van-icon-description{
  257. font-size: 60px;
  258. }
  259. .van-dropdown-menu {
  260. width:100%;
  261. }
  262. .tit_tab{
  263. color:#FC9A55!important;
  264. background-color: rgb(252,154,85,0.2);
  265. padding:0px 10px;
  266. text-align: right;
  267. border-top-left-radius: 20px;
  268. border-top-right-radius: 20px;
  269. border-bottom-right-radius: 20px;
  270. }
  271. .tit_tab2{
  272. padding:3px 8px;
  273. text-align: right;
  274. border-radius: 20px;
  275. align-self:flex-end;
  276. margin-left:auto;
  277. }
  278. .tit_dhd{
  279. color:#FC9A55!important;
  280. border: 1px solid #FC9A55;
  281. }
  282. .tit_cg{
  283. color:#E90000!important;
  284. border: 1px solid #E90000;
  285. }
  286. .tit_sb{
  287. color:#5CAE77!important;
  288. border: 1px solid #5CAE77;
  289. }
  290. .tit_rgqr{
  291. color:#fff!important;
  292. border: 1px solid #5CAE77;
  293. background-color: #5CAE77;
  294. }
  295. .tit_tab3{
  296. margin-left:auto;
  297. font-size: 16px;
  298. }
  299. .tit_tab3.red{
  300. color: #E90000;
  301. }
  302. .tit_tab3.green{
  303. color: #5CAE77;
  304. }
  305. .money_box{
  306. display: flex;
  307. justify-content: space-between;
  308. margin-top: 10px;
  309. }
  310. .money_box text{
  311. color: #666666;
  312. }
  313. .ll_box{
  314. display: flex;
  315. align-items: center;
  316. }
  317. .ll_box text{
  318. margin-left: 5px;
  319. }
  320. .cell_right{
  321. height: 100%;display: flex;
  322. /* position: relative;
  323. left: -6%; */
  324. }
  325. .button_box{
  326. display: flex;
  327. height: 100%;
  328. align-items: center;
  329. }
  330. .button_box view{
  331. width: 65px;
  332. text-align: center;
  333. align-items: center;
  334. }
  335. .button_box view text{
  336. color: #fff;
  337. }
  338. /* .button_box:nth-child(1){
  339. background-color: #B3DB62;
  340. width: 6%;
  341. } */
  342. .button_box:nth-child(1){
  343. background-color: #B3DB62;
  344. }
  345. .button_box:nth-child(2){
  346. background-color: #5CAE77;
  347. }
  348. .button_box:nth-child(3){
  349. background-color: #2C8E68;
  350. }
  351. .button_box view text{
  352. display: block;
  353. }
  354. .top_view{
  355. display: flex;
  356. justify-content: space-between;
  357. margin-bottom: 15px;
  358. }
  359. .sx_view{
  360. background-color: #fff;
  361. display: flex;
  362. align-items: center;
  363. padding: 0 3%;
  364. width: 18%;
  365. }
  366. .sx_box{
  367. padding: 3% 5%;
  368. }
  369. .checkbox_icon{
  370. background-color: #F6F6F6;
  371. color: #444444;
  372. padding: 5px 15px;
  373. border-radius: 1rem;
  374. border:1px solid #F6F6F6;
  375. margin-top: 10px;
  376. font-size: 14px;
  377. }
  378. .ys_checkbox_icon{
  379. background-color: rgba(92, 174, 119, 0.3);
  380. color: #444444;
  381. padding: 5px 15px;
  382. border-radius: 1rem;
  383. border:1px solid #5CAE77;
  384. color: #5CAE77;
  385. margin-top: 10px;
  386. font-size: 14px;
  387. }
  388. .van-radio-group{
  389. display: flex;
  390. flex-wrap: wrap;
  391. }
  392. .sx_tit{
  393. margin-top: 10px;
  394. }
  395. .sx_input_box {
  396. display: flex;
  397. align-items: center;
  398. margin-top: 10px;
  399. }
  400. .sx_input_box input{
  401. background-color: #F6F6F6;
  402. padding: 0 10px;
  403. border-radius: 30px;
  404. text-align: center;
  405. height: 30px;
  406. }
  407. .sx_input_box text {
  408. margin: 0 10px;
  409. }
  410. .bottom{
  411. width: 84%;
  412. margin: 0 auto;
  413. text-align: center;
  414. margin-top: 50px;
  415. margin-bottom: 50px;
  416. display: flex;
  417. z-index: 999999;
  418. }
  419. .bottom view {
  420. width: 47%;
  421. margin: 0 auto;
  422. border-radius: 30px;
  423. display: inline-block;
  424. }
  425. .bottom .btn1{
  426. border: 1px solid #2C8E68;
  427. padding: 8px 0px;
  428. color: #2C8E68;
  429. }
  430. .bottom .btn2{
  431. border: 1px solid transparent;
  432. padding: 8px 0px;
  433. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  434. margin-left: 6%;
  435. color: #fff;
  436. }
  437. .bottom .btn3{
  438. border: 1px solid transparent;
  439. padding: 8px 0px;
  440. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  441. color: #fff;
  442. width: 100%;
  443. }
  444. .van-button--danger {
  445. background: linear-gradient(to right, #429a68, #9ecf67)!important;
  446. }
  447. .van-dialog__header {
  448. color: #429a68;
  449. font-size: 20px;
  450. }