confirm.wxss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. @charset "UTF-8";
  2. /* 文字尺寸 */
  3. /*文字颜色*/
  4. /* 边框颜色 */
  5. /* 图片加载中颜色 */
  6. /* 行为相关颜色 */
  7. .normal-tip.data-v-4b00534e {
  8. font-size: 24rpx;
  9. line-height: 40rpx;
  10. padding: 4rpx 10rpx;
  11. }
  12. .normal-tip.by.data-v-4b00534e {
  13. border-radius: 20rpx;
  14. }
  15. .normal-tip.yd.data-v-4b00534e {
  16. border-radius: 5rspx;
  17. }
  18. .fixed-page-content.data-v-4b00534e {
  19. width: 100%;
  20. height: 100%;
  21. padding-bottom: 120rpx;
  22. box-sizing: border-box;
  23. }
  24. .page-content.data-v-4b00534e {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .white-box.data-v-4b00534e {
  29. width: 100%;
  30. font-size: 28rpx;
  31. padding: 0 40rpx;
  32. background-color: #ffffff;
  33. box-sizing: border-box;
  34. }
  35. .white-box.data-v-4b00534e:not(:last-child) {
  36. margin-bottom: 30rpx;
  37. }
  38. .white-box .flex-item.data-v-4b00534e {
  39. align-items: center;
  40. }
  41. .white-box .flex-item .tel-box.data-v-4b00534e {
  42. display: flex;
  43. align-items: center;
  44. justify-content: flex-end;
  45. }
  46. .white-box .flex-item .tel-box .custom-tel-component.data-v-4b00534e {
  47. margin-left: 20rpx;
  48. }
  49. .white-box .cell-item.data-v-4b00534e {
  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.data-v-4b00534e::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.data-v-4b00534e {
  69. flex: 1;
  70. width: 30%;
  71. }
  72. .white-box .cell-item > .label .tips.data-v-4b00534e {
  73. font-size: 22rpx;
  74. color: var(--greyColor);
  75. }
  76. .white-box .cell-item > .label.required.data-v-4b00534e {
  77. position: relative;
  78. }
  79. .white-box .cell-item > .label.required.data-v-4b00534e::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.data-v-4b00534e {
  88. color: var(--Black);
  89. flex: 1;
  90. width: 70%;
  91. text-align: right;
  92. }
  93. .white-box .cell-item > .tit .van-radio-group.data-v-4b00534e {
  94. display: flex;
  95. justify-content: flex-end;
  96. }
  97. .white-box .cell-item > .tit .van-radio-group .van-radio.data-v-4b00534e:not(:first-child) {
  98. margin-left: 30rpx;
  99. }
  100. .white-box .block-cell-item.data-v-4b00534e {
  101. color: var(--Black);
  102. padding: 30rpx 0;
  103. position: relative;
  104. }
  105. .white-box .block-cell-item.data-v-4b00534e::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.data-v-4b00534e {
  118. width: 100%;
  119. padding-bottom: 30rpx;
  120. }
  121. .white-box .block-cell-item .label.required.data-v-4b00534e {
  122. position: relative;
  123. }
  124. .white-box .block-cell-item .label.required.data-v-4b00534e::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.data-v-4b00534e {
  133. font-size: 22rpx;
  134. color: var(--greyColor);
  135. }
  136. .white-box .block-cell-item .tit.data-v-4b00534e {
  137. width: 100%;
  138. color: var(--Black);
  139. }
  140. .white-box .block-cell-item .tit .van-radio-group.data-v-4b00534e {
  141. display: flex;
  142. justify-content: flex-end;
  143. }
  144. .white-box .block-cell-item .tit .van-radio-group .van-radio.data-v-4b00534e:not(:first-child) {
  145. margin-left: 30rpx;
  146. }
  147. .white-box .block-cell-item .tit .textarea.data-v-4b00534e {
  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.data-v-4b00534e {
  156. padding-bottom: 30rpx;
  157. }
  158. .z-bg.data-v-4b00534e {
  159. background: #6600ff;
  160. color: #fff;
  161. }
  162. .l-bg.data-v-4b00534e {
  163. background: #0000FF;
  164. color: #fff;
  165. }
  166. .h-bg.data-v-4b00534e {
  167. background: #F87A7A;
  168. color: #fff;
  169. }
  170. .y-bg.data-v-4b00534e {
  171. background: #e4ce6b;
  172. color: #fff;
  173. }
  174. .z-br.data-v-4b00534e {
  175. background: #fff;
  176. border: 1px solid #6600ff;
  177. color: #6600ff;
  178. }
  179. .chaochuyincang.data-v-4b00534e {
  180. white-space: nowrap;
  181. overflow: hidden;
  182. text-overflow: ellipsis;
  183. }
  184. .btn-view.data-v-4b00534e {
  185. width: 100%;
  186. height: 100rpx;
  187. padding: 20rpx 10%;
  188. background-color: #ffffff;
  189. position: fixed;
  190. bottom: 0;
  191. left: 0;
  192. }
  193. .btn.data-v-4b00534e {
  194. width: 80%;
  195. height: 90rpx;
  196. border-radius: 50rpx 50rpx 50rpx 50rpx;
  197. background: #1d18bc;
  198. line-height: 90rpx;
  199. color: white;
  200. }
  201. .save_button.data-v-4b00534e {
  202. width: calc(100% - 64rpx);
  203. margin: 64rpx 32rpx 0 32rpx;
  204. background: #1d18bc;
  205. border-radius: 50rpx;
  206. height: 88rpx;
  207. color: white;
  208. text-align: center;
  209. line-height: 88rpx;
  210. }
  211. .form.data-v-4b00534e {
  212. width: calc(100% - 64rpx);
  213. background: #ffffff;
  214. padding: 32rpx;
  215. margin-top: 64rpx;
  216. }
  217. .form .label.data-v-4b00534e {
  218. height: 53rpx;
  219. line-height: 53rpx;
  220. }
  221. .form_row.data-v-4b00534e {
  222. height: 40rpx;
  223. font-weight: 400;
  224. font-size: 24rpx;
  225. }
  226. .zaiti_list.data-v-4b00534e {
  227. width: 100%;
  228. height: 50rpx;
  229. line-height: 50rpx;
  230. }
  231. .idclass.data-v-4b00534e {
  232. width: 147rpx;
  233. height: 100rpx;
  234. }
  235. .dengjibutton.data-v-4b00534e {
  236. margin-top: 24rpx;
  237. margin-left: 60rpx;
  238. margin-right: 60rpx;
  239. width: calc(100% - 120rpx);
  240. height: 60rpx;
  241. text-align: center;
  242. background: #1d18bc;
  243. color: white;
  244. line-height: 60rpx;
  245. }
  246. .addcompany.data-v-4b00534e {
  247. margin-bottom: 200rpx;
  248. }
  249. .addcompany .detailstitle.data-v-4b00534e {
  250. height: 42rpx;
  251. font-size: 30rpx;
  252. font-weight: 500;
  253. color: #333333;
  254. padding-bottom: 16rpx;
  255. }
  256. .addcompany .typestitle.data-v-4b00534e {
  257. height: 42rpx;
  258. font-size: 24rpx;
  259. font-weight: 500;
  260. padding-bottom: 16rpx;
  261. margin-bottom: 16rpx;
  262. }
  263. @charset "UTF-8";
  264. /* 文字尺寸 */
  265. /*文字颜色*/
  266. /* 边框颜色 */
  267. /* 图片加载中颜色 */
  268. /* 行为相关颜色 */
  269. .normal-tip {
  270. font-size: 24rpx;
  271. line-height: 40rpx;
  272. padding: 4rpx 10rpx;
  273. }
  274. .normal-tip.by {
  275. border-radius: 20rpx;
  276. }
  277. .normal-tip.yd {
  278. border-radius: 5rspx;
  279. }
  280. .fixed-page-content {
  281. width: 100%;
  282. height: 100%;
  283. padding-bottom: 120rpx;
  284. box-sizing: border-box;
  285. }
  286. .page-content {
  287. width: 100%;
  288. height: 100%;
  289. }
  290. .white-box {
  291. width: 100%;
  292. font-size: 28rpx;
  293. padding: 0 40rpx;
  294. background-color: #ffffff;
  295. box-sizing: border-box;
  296. }
  297. .white-box:not(:last-child) {
  298. margin-bottom: 30rpx;
  299. }
  300. .white-box .flex-item {
  301. align-items: center;
  302. }
  303. .white-box .flex-item .tel-box {
  304. display: flex;
  305. align-items: center;
  306. justify-content: flex-end;
  307. }
  308. .white-box .flex-item .tel-box .custom-tel-component {
  309. margin-left: 20rpx;
  310. }
  311. .white-box .cell-item {
  312. color: var(--Black);
  313. padding: 30rpx 0;
  314. display: flex;
  315. justify-content: space-between;
  316. position: relative;
  317. }
  318. .white-box .cell-item::after {
  319. position: absolute;
  320. box-sizing: border-box;
  321. content: ' ';
  322. pointer-events: none;
  323. right: 0;
  324. bottom: 0;
  325. left: 0;
  326. border-bottom: 2rpx solid #ebedf0;
  327. -webkit-transform: scaleY(0.5);
  328. transform: scaleY(0.5);
  329. }
  330. .white-box .cell-item > .label {
  331. flex: 1;
  332. width: 30%;
  333. }
  334. .white-box .cell-item > .label .tips {
  335. font-size: 22rpx;
  336. color: var(--greyColor);
  337. }
  338. .white-box .cell-item > .label.required {
  339. position: relative;
  340. }
  341. .white-box .cell-item > .label.required::after {
  342. content: '*';
  343. color: var(--Red);
  344. position: absolute;
  345. font-size: 30rpx;
  346. top: -15rpx;
  347. left: -15rpx;
  348. }
  349. .white-box .cell-item > .tit {
  350. color: var(--Black);
  351. flex: 1;
  352. width: 70%;
  353. text-align: right;
  354. }
  355. .white-box .cell-item > .tit .van-radio-group {
  356. display: flex;
  357. justify-content: flex-end;
  358. }
  359. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  360. margin-left: 30rpx;
  361. }
  362. .white-box .block-cell-item {
  363. color: var(--Black);
  364. padding: 30rpx 0;
  365. position: relative;
  366. }
  367. .white-box .block-cell-item::after {
  368. position: absolute;
  369. box-sizing: border-box;
  370. content: " ";
  371. pointer-events: none;
  372. right: 16rpx;
  373. bottom: 0;
  374. left: 16rpx;
  375. border-bottom: 2rpx solid #ebedf0;
  376. -webkit-transform: scaleY(0.5);
  377. transform: scaleY(0.5);
  378. }
  379. .white-box .block-cell-item .label {
  380. width: 100%;
  381. padding-bottom: 30rpx;
  382. }
  383. .white-box .block-cell-item .label.required {
  384. position: relative;
  385. }
  386. .white-box .block-cell-item .label.required::after {
  387. content: '*';
  388. color: var(--Red);
  389. position: absolute;
  390. font-size: 30rpx;
  391. top: -15rpx;
  392. left: -15rpx;
  393. }
  394. .white-box .block-cell-item .label .tips {
  395. font-size: 22rpx;
  396. color: var(--greyColor);
  397. }
  398. .white-box .block-cell-item .tit {
  399. width: 100%;
  400. color: var(--Black);
  401. }
  402. .white-box .block-cell-item .tit .van-radio-group {
  403. display: flex;
  404. justify-content: flex-end;
  405. }
  406. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  407. margin-left: 30rpx;
  408. }
  409. .white-box .block-cell-item .tit .textarea {
  410. background-color: #F8F8F8;
  411. font-size: 30rpx;
  412. color: #B7B7B7;
  413. border-radius: 10rpx;
  414. padding: 30rpx;
  415. word-break: break-all;
  416. }
  417. .white-box .custom-white-box-content {
  418. padding-bottom: 30rpx;
  419. }
  420. .z-bg {
  421. background: #6600ff;
  422. color: #fff;
  423. }
  424. .l-bg {
  425. background: #0000FF;
  426. color: #fff;
  427. }
  428. .h-bg {
  429. background: #F87A7A;
  430. color: #fff;
  431. }
  432. .y-bg {
  433. background: #e4ce6b;
  434. color: #fff;
  435. }
  436. .z-br {
  437. background: #fff;
  438. border: 1px solid #6600ff;
  439. color: #6600ff;
  440. }
  441. .chaochuyincang {
  442. white-space: nowrap;
  443. overflow: hidden;
  444. text-overflow: ellipsis;
  445. }
  446. .selectzhenggai van-radio {
  447. float: left;
  448. margin-left: 32rpx;
  449. }
  450. .selectzhenggai .van-radio-group {
  451. display: flex;
  452. }
  453. .is-open + .uni-collapse-item__wrap {
  454. height: auto !important;
  455. }
  456. .uni-collapse-item__wrap-content {
  457. height: auto !important;
  458. }
  459. .pageconfig {
  460. background: #ffffff;
  461. padding: 32rpx;
  462. }
  463. .input_title {
  464. width: 40%;
  465. font-size: 28rpx;
  466. height: 40rpx;
  467. line-height: 40rpx;
  468. color: #333333;
  469. }
  470. .input_value {
  471. width: 60%;
  472. font-size: 28rpx;
  473. height: 40rpx;
  474. line-height: 40rpx;
  475. color: #777777;
  476. }
  477. .uni-collapse-item__title-box {
  478. padding: 0 !important;
  479. }
  480. .uni-collapse-item__title-text {
  481. color: #1d18bc !important;
  482. font-size: 32rpx !important;
  483. }
  484. @charset "UTF-8";
  485. /* 文字尺寸 */
  486. /*文字颜色*/
  487. /* 边框颜色 */
  488. /* 图片加载中颜色 */
  489. /* 行为相关颜色 */
  490. .normal-tip {
  491. font-size: 24rpx;
  492. line-height: 40rpx;
  493. padding: 4rpx 10rpx;
  494. }
  495. .normal-tip.by {
  496. border-radius: 20rpx;
  497. }
  498. .normal-tip.yd {
  499. border-radius: 5rspx;
  500. }
  501. .fixed-page-content {
  502. width: 100%;
  503. height: 100%;
  504. padding-bottom: 120rpx;
  505. box-sizing: border-box;
  506. }
  507. .page-content {
  508. width: 100%;
  509. height: 100%;
  510. }
  511. .white-box {
  512. width: 100%;
  513. font-size: 28rpx;
  514. padding: 0 40rpx;
  515. background-color: #ffffff;
  516. box-sizing: border-box;
  517. }
  518. .white-box:not(:last-child) {
  519. margin-bottom: 30rpx;
  520. }
  521. .white-box .flex-item {
  522. align-items: center;
  523. }
  524. .white-box .flex-item .tel-box {
  525. display: flex;
  526. align-items: center;
  527. justify-content: flex-end;
  528. }
  529. .white-box .flex-item .tel-box .custom-tel-component {
  530. margin-left: 20rpx;
  531. }
  532. .white-box .cell-item {
  533. color: var(--Black);
  534. padding: 30rpx 0;
  535. display: flex;
  536. justify-content: space-between;
  537. position: relative;
  538. }
  539. .white-box .cell-item::after {
  540. position: absolute;
  541. box-sizing: border-box;
  542. content: ' ';
  543. pointer-events: none;
  544. right: 0;
  545. bottom: 0;
  546. left: 0;
  547. border-bottom: 2rpx solid #ebedf0;
  548. -webkit-transform: scaleY(0.5);
  549. transform: scaleY(0.5);
  550. }
  551. .white-box .cell-item > .label {
  552. flex: 1;
  553. width: 30%;
  554. }
  555. .white-box .cell-item > .label .tips {
  556. font-size: 22rpx;
  557. color: var(--greyColor);
  558. }
  559. .white-box .cell-item > .label.required {
  560. position: relative;
  561. }
  562. .white-box .cell-item > .label.required::after {
  563. content: '*';
  564. color: var(--Red);
  565. position: absolute;
  566. font-size: 30rpx;
  567. top: -15rpx;
  568. left: -15rpx;
  569. }
  570. .white-box .cell-item > .tit {
  571. color: var(--Black);
  572. flex: 1;
  573. width: 70%;
  574. text-align: right;
  575. }
  576. .white-box .cell-item > .tit .van-radio-group {
  577. display: flex;
  578. justify-content: flex-end;
  579. }
  580. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  581. margin-left: 30rpx;
  582. }
  583. .white-box .block-cell-item {
  584. color: var(--Black);
  585. padding: 30rpx 0;
  586. position: relative;
  587. }
  588. .white-box .block-cell-item::after {
  589. position: absolute;
  590. box-sizing: border-box;
  591. content: " ";
  592. pointer-events: none;
  593. right: 16rpx;
  594. bottom: 0;
  595. left: 16rpx;
  596. border-bottom: 2rpx solid #ebedf0;
  597. -webkit-transform: scaleY(0.5);
  598. transform: scaleY(0.5);
  599. }
  600. .white-box .block-cell-item .label {
  601. width: 100%;
  602. padding-bottom: 30rpx;
  603. }
  604. .white-box .block-cell-item .label.required {
  605. position: relative;
  606. }
  607. .white-box .block-cell-item .label.required::after {
  608. content: '*';
  609. color: var(--Red);
  610. position: absolute;
  611. font-size: 30rpx;
  612. top: -15rpx;
  613. left: -15rpx;
  614. }
  615. .white-box .block-cell-item .label .tips {
  616. font-size: 22rpx;
  617. color: var(--greyColor);
  618. }
  619. .white-box .block-cell-item .tit {
  620. width: 100%;
  621. color: var(--Black);
  622. }
  623. .white-box .block-cell-item .tit .van-radio-group {
  624. display: flex;
  625. justify-content: flex-end;
  626. }
  627. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  628. margin-left: 30rpx;
  629. }
  630. .white-box .block-cell-item .tit .textarea {
  631. background-color: #F8F8F8;
  632. font-size: 30rpx;
  633. color: #B7B7B7;
  634. border-radius: 10rpx;
  635. padding: 30rpx;
  636. word-break: break-all;
  637. }
  638. .white-box .custom-white-box-content {
  639. padding-bottom: 30rpx;
  640. }
  641. .z-bg {
  642. background: #6600ff;
  643. color: #fff;
  644. }
  645. .l-bg {
  646. background: #0000FF;
  647. color: #fff;
  648. }
  649. .h-bg {
  650. background: #F87A7A;
  651. color: #fff;
  652. }
  653. .y-bg {
  654. background: #e4ce6b;
  655. color: #fff;
  656. }
  657. .z-br {
  658. background: #fff;
  659. border: 1px solid #6600ff;
  660. color: #6600ff;
  661. }
  662. .chaochuyincang {
  663. white-space: nowrap;
  664. overflow: hidden;
  665. text-overflow: ellipsis;
  666. }
  667. .example-body {
  668. padding: 10px;
  669. padding-top: 0;
  670. }
  671. .custom-image-box {
  672. display: flex;
  673. flex-direction: row;
  674. justify-content: space-between;
  675. align-items: center;
  676. }
  677. .text {
  678. font-size: 14px;
  679. color: #333;
  680. }
  681. .uni-file-picker__item {
  682. display: none;
  683. }
  684. .uploadbutton {
  685. width: 162rpx;
  686. height: 44rpx;
  687. }