addintention.wxss 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. @charset "UTF-8";
  2. /* 文字尺寸 */
  3. /*文字颜色*/
  4. /* 边框颜色 */
  5. /* 图片加载中颜色 */
  6. /* 行为相关颜色 */
  7. .normal-tip {
  8. font-size: 24rpx;
  9. line-height: 40rpx;
  10. padding: 4rpx 10rpx;
  11. }
  12. .normal-tip.by {
  13. border-radius: 20rpx;
  14. }
  15. .normal-tip.yd {
  16. border-radius: 5rspx;
  17. }
  18. .fixed-page-content {
  19. width: 100%;
  20. height: 100%;
  21. padding-bottom: 120rpx;
  22. box-sizing: border-box;
  23. }
  24. .page-content {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .white-box {
  29. width: 100%;
  30. font-size: 28rpx;
  31. padding: 0 40rpx;
  32. background-color: #ffffff;
  33. box-sizing: border-box;
  34. }
  35. .white-box:not(:last-child) {
  36. margin-bottom: 30rpx;
  37. }
  38. .white-box .flex-item {
  39. align-items: center;
  40. }
  41. .white-box .flex-item .tel-box {
  42. display: flex;
  43. align-items: center;
  44. justify-content: flex-end;
  45. }
  46. .white-box .flex-item .tel-box .custom-tel-component {
  47. margin-left: 20rpx;
  48. }
  49. .white-box .cell-item {
  50. color: var(--Black);
  51. padding: 30rpx 0;
  52. display: flex;
  53. justify-content: space-between;
  54. position: relative;
  55. }
  56. .white-box .cell-item::after {
  57. position: absolute;
  58. box-sizing: border-box;
  59. content: ' ';
  60. pointer-events: none;
  61. right: 0;
  62. bottom: 0;
  63. left: 0;
  64. border-bottom: 2rpx solid #ebedf0;
  65. -webkit-transform: scaleY(0.5);
  66. transform: scaleY(0.5);
  67. }
  68. .white-box .cell-item > .label {
  69. flex: 1;
  70. width: 30%;
  71. }
  72. .white-box .cell-item > .label .tips {
  73. font-size: 22rpx;
  74. color: var(--greyColor);
  75. }
  76. .white-box .cell-item > .label.required {
  77. position: relative;
  78. }
  79. .white-box .cell-item > .label.required::after {
  80. content: '*';
  81. color: var(--Red);
  82. position: absolute;
  83. font-size: 30rpx;
  84. top: -15rpx;
  85. left: -15rpx;
  86. }
  87. .white-box .cell-item > .tit {
  88. color: var(--Black);
  89. flex: 1;
  90. width: 70%;
  91. text-align: right;
  92. }
  93. .white-box .cell-item > .tit .van-radio-group {
  94. display: flex;
  95. justify-content: flex-end;
  96. }
  97. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  98. margin-left: 30rpx;
  99. }
  100. .white-box .block-cell-item {
  101. color: var(--Black);
  102. padding: 30rpx 0;
  103. position: relative;
  104. }
  105. .white-box .block-cell-item::after {
  106. position: absolute;
  107. box-sizing: border-box;
  108. content: " ";
  109. pointer-events: none;
  110. right: 16rpx;
  111. bottom: 0;
  112. left: 16rpx;
  113. border-bottom: 2rpx solid #ebedf0;
  114. -webkit-transform: scaleY(0.5);
  115. transform: scaleY(0.5);
  116. }
  117. .white-box .block-cell-item .label {
  118. width: 100%;
  119. padding-bottom: 30rpx;
  120. }
  121. .white-box .block-cell-item .label.required {
  122. position: relative;
  123. }
  124. .white-box .block-cell-item .label.required::after {
  125. content: '*';
  126. color: var(--Red);
  127. position: absolute;
  128. font-size: 30rpx;
  129. top: -15rpx;
  130. left: -15rpx;
  131. }
  132. .white-box .block-cell-item .label .tips {
  133. font-size: 22rpx;
  134. color: var(--greyColor);
  135. }
  136. .white-box .block-cell-item .tit {
  137. width: 100%;
  138. color: var(--Black);
  139. }
  140. .white-box .block-cell-item .tit .van-radio-group {
  141. display: flex;
  142. justify-content: flex-end;
  143. }
  144. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  145. margin-left: 30rpx;
  146. }
  147. .white-box .block-cell-item .tit .textarea {
  148. background-color: #F8F8F8;
  149. font-size: 30rpx;
  150. color: #B7B7B7;
  151. border-radius: 10rpx;
  152. padding: 30rpx;
  153. word-break: break-all;
  154. }
  155. .white-box .custom-white-box-content {
  156. padding-bottom: 30rpx;
  157. }
  158. .z-bg {
  159. background: #6600ff;
  160. color: #fff;
  161. }
  162. .l-bg {
  163. background: #0000FF;
  164. color: #fff;
  165. }
  166. .h-bg {
  167. background: #F87A7A;
  168. color: #fff;
  169. }
  170. .y-bg {
  171. background: #e4ce6b;
  172. color: #fff;
  173. }
  174. .z-br {
  175. background: #fff;
  176. border: 1px solid #6600ff;
  177. color: #6600ff;
  178. }
  179. .chaochuyincang {
  180. white-space: nowrap;
  181. overflow: hidden;
  182. text-overflow: ellipsis;
  183. }
  184. .inputstyle {
  185. border-color: #e5e5e5;
  186. background-color: #fff;
  187. display: flex;
  188. box-sizing: border-box;
  189. flex-direction: row;
  190. align-items: center;
  191. border: 1px solid #dcdfe6;
  192. border-radius: 4px;
  193. padding-left: 10px;
  194. font-size: 14px;
  195. }
  196. .pickerstyle {
  197. border-color: #e5e5e5;
  198. background-color: #fff;
  199. display: flex;
  200. box-sizing: border-box;
  201. flex-direction: row;
  202. align-items: center;
  203. border: 1px solid #dcdfe6;
  204. border-radius: 4px;
  205. padding-left: 10px;
  206. font-size: 14px;
  207. }
  208. .pickerstyle .picklabel {
  209. height: auto;
  210. padding-top: 15rpx;
  211. background: none;
  212. padding-bottom: 15rpx;
  213. color: #606266;
  214. width: 600rpx;
  215. }
  216. .form_row {
  217. height: 40rpx;
  218. font-weight: 400;
  219. font-size: 24rpx;
  220. }
  221. .uni-select__selector {
  222. box-sizing: border-box;
  223. position: absolute;
  224. top: calc(100% + 12px);
  225. left: 0;
  226. width: 100%;
  227. background-color: #ffffff;
  228. border: 1px solid #ebeef5;
  229. border-radius: 6px;
  230. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  231. z-index: 99999 !important;
  232. padding: 4px 0;
  233. }
  234. .addintention .btn-view {
  235. width: 100%;
  236. height: 100rpx;
  237. padding: 20rpx 10%;
  238. background-color: #ffffff;
  239. position: fixed;
  240. bottom: 0;
  241. left: 0;
  242. z-index: 9999;
  243. }
  244. .addintention .inputstyle {
  245. border: 1px solid #dcdfe6;
  246. border-radius: 4px;
  247. height: 35px;
  248. line-height: 1;
  249. display: flex;
  250. align-items: center;
  251. }
  252. .addintention .btn {
  253. width: 80%;
  254. height: 90rpx;
  255. border-radius: 50rpx 50rpx 50rpx 50rpx;
  256. background: #1d18bc;
  257. line-height: 90rpx;
  258. text-align: center;
  259. color: white;
  260. }
  261. .addintention .uni-forms-item__label text {
  262. font-size: 28rpx;
  263. font-weight: 500;
  264. }
  265. .addintention .zaiti_list {
  266. width: 100%;
  267. min-height: 50rpx;
  268. line-height: 50rpx;
  269. }
  270. .addintention .zaiti {
  271. color: #777777;
  272. }
  273. .addintention .zaiti:first-child {
  274. margin: 0 !important;
  275. }
  276. .addintention .bottom_cell {
  277. float: right;
  278. width: 100%;
  279. height: 42rpx;
  280. display: flex;
  281. justify-content: flex-end;
  282. }
  283. .addintention .button_row {
  284. color: #1d18bc;
  285. width: 96rpx;
  286. height: 42rpx;
  287. border-radius: 60rpx 60rpx 60rpx 60rpx;
  288. opacity: 1;
  289. margin-left: 16rpx;
  290. float: left;
  291. text-align: center;
  292. line-height: 42rpx;
  293. font-size: 24rpx;
  294. border: 2rpx solid #1d18bc;
  295. }
  296. .addintention .project-column {
  297. border-radius: 8rpx 8rpx 0rpx 0rpx;
  298. font-size: 32rpx;
  299. font-family: PingFang SC-Medium, PingFang SC;
  300. font-weight: 500;
  301. color: #333333;
  302. background: #ffffff;
  303. }
  304. .addintention .status_label {
  305. width: 96rpx;
  306. height: 50rpx;
  307. line-height: 50rpx;
  308. background: rgba(29, 24, 188, 0.05);
  309. color: #1d18bc;
  310. font-weight: 500;
  311. font-size: 24rpx;
  312. border-radius: 8rpx 8rpx 8rpx 8rpx;
  313. }
  314. .addintention .first_title {
  315. line-height: 50rpx;
  316. font-weight: 500;
  317. }
  318. .addintention .uni-forms-item {
  319. display: block !important;
  320. margin: 0;
  321. }
  322. .addintention .addyixiang {
  323. color: #3f3fb4;
  324. background: #eaeaf2;
  325. width: 170rpx;
  326. height: 50rpx;
  327. text-align: center;
  328. line-height: 50rpx;
  329. border: 2rpx #a6a6a9 dashed;
  330. }
  331. .addintention .list-row {
  332. width: calc(100% - 64rpx);
  333. padding: 16rpx 32rpx 18rpx 32rpx;
  334. background: #ffffff;
  335. margin-bottom: 16rpx;
  336. display: flex;
  337. border-radius: 8rpx 8rpx 8rpx 8rpx;
  338. }
  339. .addintention .list-row {
  340. width: calc(100% - 64rpx);
  341. padding: 32rpx 32rpx 38rpx 32rpx;
  342. background: #ffffff;
  343. margin-bottom: 16rpx;
  344. display: flex;
  345. border-radius: 8rpx 8rpx 8rpx 8rpx;
  346. }
  347. .addintention .mb32rpx {
  348. margin-bottom: 32rpx;
  349. }
  350. .addintention .second_title {
  351. float: left;
  352. font-size: 28rpx;
  353. font-family: PingFang SC-Medium, PingFang SC;
  354. font-weight: 500;
  355. color: #777777;
  356. width: 100%;
  357. }
  358. .addintention .call_icon {
  359. height: 40rpx;
  360. width: 40rpx;
  361. margin-top: -5rpx;
  362. margin-left: 5rpx;
  363. float: left;
  364. }
  365. .addintention .second_title_2 {
  366. float: left;
  367. width: 38%;
  368. font-size: 28rpx;
  369. font-family: PingFang SC-Medium, PingFang SC;
  370. font-weight: 500;
  371. text-align: right;
  372. color: #777777;
  373. }
  374. .addintention .list {
  375. width: calc(100% - 64rpx);
  376. margin: 32rpx;
  377. }
  378. .addintention .form {
  379. width: calc(100% - 128rpx);
  380. margin: 32rpx;
  381. background: #ffffff;
  382. padding: 32rpx;
  383. }
  384. .addintention .form .label {
  385. height: 53rpx;
  386. line-height: 53rpx;
  387. }
  388. .addintention .checklist-box {
  389. margin: 0 !important;
  390. margin-right: 16rpx !important;
  391. }
  392. .addintention .labelcolmt26 .van-cell {
  393. padding: 0 0 0 28rpx !important;
  394. }
  395. .addintention .labelcolmt26 .van-col {
  396. margin-top: 26rpx !important;
  397. }
  398. .addintention .labelcolmt26 label {
  399. color: #333333;
  400. font-size: 30rpx;
  401. margin-top: 10rpx !important;
  402. }
  403. .addintention .labelcolmt26 .uni-data-checklist {
  404. margin-top: -10rpx !important;
  405. }
  406. .addintention .status .uni-data-checklist {
  407. margin-top: 0rpx !important;
  408. }
  409. .addintention .status label {
  410. color: #333333;
  411. font-size: 30rpx;
  412. padding-right: 0rpx !important;
  413. }