momo-multipleSelect.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  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. .z-br {
  171. background: #fff;
  172. border: 1px solid #6600ff;
  173. color: #6600ff;
  174. }
  175. .chaochuyincang {
  176. white-space: nowrap;
  177. overflow: hidden;
  178. text-overflow: ellipsis;
  179. }
  180. .searchbutton button {
  181. height: 69rpx;
  182. line-height: 69rpx;
  183. }
  184. .searchinput .uni-easyinput__content-input {
  185. height: 70rpx;
  186. }
  187. .btn-view {
  188. width: 100%;
  189. height: 100rpx;
  190. padding: 20rpx 10%;
  191. background-color: #ffffff;
  192. position: fixed;
  193. bottom: 0;
  194. left: 0;
  195. z-index: 1000;
  196. }
  197. .btn-view button::after {
  198. border: none;
  199. }
  200. @charset "UTF-8";
  201. /* 文字尺寸 */
  202. /*文字颜色*/
  203. /* 边框颜色 */
  204. /* 图片加载中颜色 */
  205. /* 行为相关颜色 */
  206. .normal-tip.data-v-030b1d9d {
  207. font-size: 24rpx;
  208. line-height: 40rpx;
  209. padding: 4rpx 10rpx;
  210. }
  211. .normal-tip.by.data-v-030b1d9d {
  212. border-radius: 20rpx;
  213. }
  214. .normal-tip.yd.data-v-030b1d9d {
  215. border-radius: 5rspx;
  216. }
  217. .fixed-page-content.data-v-030b1d9d {
  218. width: 100%;
  219. height: 100%;
  220. padding-bottom: 120rpx;
  221. box-sizing: border-box;
  222. }
  223. .page-content.data-v-030b1d9d {
  224. width: 100%;
  225. height: 100%;
  226. }
  227. .white-box.data-v-030b1d9d {
  228. width: 100%;
  229. font-size: 28rpx;
  230. padding: 0 40rpx;
  231. background-color: #ffffff;
  232. box-sizing: border-box;
  233. }
  234. .white-box.data-v-030b1d9d:not(:last-child) {
  235. margin-bottom: 30rpx;
  236. }
  237. .white-box .flex-item.data-v-030b1d9d {
  238. align-items: center;
  239. }
  240. .white-box .flex-item .tel-box.data-v-030b1d9d {
  241. display: flex;
  242. align-items: center;
  243. justify-content: flex-end;
  244. }
  245. .white-box .flex-item .tel-box .custom-tel-component.data-v-030b1d9d {
  246. margin-left: 20rpx;
  247. }
  248. .white-box .cell-item.data-v-030b1d9d {
  249. color: var(--Black);
  250. padding: 30rpx 0;
  251. display: flex;
  252. justify-content: space-between;
  253. position: relative;
  254. }
  255. .white-box .cell-item.data-v-030b1d9d::after {
  256. position: absolute;
  257. box-sizing: border-box;
  258. content: ' ';
  259. pointer-events: none;
  260. right: 0;
  261. bottom: 0;
  262. left: 0;
  263. border-bottom: 2rpx solid #ebedf0;
  264. -webkit-transform: scaleY(0.5);
  265. transform: scaleY(0.5);
  266. }
  267. .white-box .cell-item > .label.data-v-030b1d9d {
  268. flex: 1;
  269. width: 30%;
  270. }
  271. .white-box .cell-item > .label .tips.data-v-030b1d9d {
  272. font-size: 22rpx;
  273. color: var(--greyColor);
  274. }
  275. .white-box .cell-item > .label.required.data-v-030b1d9d {
  276. position: relative;
  277. }
  278. .white-box .cell-item > .label.required.data-v-030b1d9d::after {
  279. content: '*';
  280. color: var(--Red);
  281. position: absolute;
  282. font-size: 30rpx;
  283. top: -15rpx;
  284. left: -15rpx;
  285. }
  286. .white-box .cell-item > .tit.data-v-030b1d9d {
  287. color: var(--Black);
  288. flex: 1;
  289. width: 70%;
  290. text-align: right;
  291. }
  292. .white-box .cell-item > .tit .van-radio-group.data-v-030b1d9d {
  293. display: flex;
  294. justify-content: flex-end;
  295. }
  296. .white-box .cell-item > .tit .van-radio-group .van-radio.data-v-030b1d9d:not(:first-child) {
  297. margin-left: 30rpx;
  298. }
  299. .white-box .block-cell-item.data-v-030b1d9d {
  300. color: var(--Black);
  301. padding: 30rpx 0;
  302. position: relative;
  303. }
  304. .white-box .block-cell-item.data-v-030b1d9d::after {
  305. position: absolute;
  306. box-sizing: border-box;
  307. content: " ";
  308. pointer-events: none;
  309. right: 16rpx;
  310. bottom: 0;
  311. left: 16rpx;
  312. border-bottom: 2rpx solid #ebedf0;
  313. -webkit-transform: scaleY(0.5);
  314. transform: scaleY(0.5);
  315. }
  316. .white-box .block-cell-item .label.data-v-030b1d9d {
  317. width: 100%;
  318. padding-bottom: 30rpx;
  319. }
  320. .white-box .block-cell-item .label.required.data-v-030b1d9d {
  321. position: relative;
  322. }
  323. .white-box .block-cell-item .label.required.data-v-030b1d9d::after {
  324. content: '*';
  325. color: var(--Red);
  326. position: absolute;
  327. font-size: 30rpx;
  328. top: -15rpx;
  329. left: -15rpx;
  330. }
  331. .white-box .block-cell-item .label .tips.data-v-030b1d9d {
  332. font-size: 22rpx;
  333. color: var(--greyColor);
  334. }
  335. .white-box .block-cell-item .tit.data-v-030b1d9d {
  336. width: 100%;
  337. color: var(--Black);
  338. }
  339. .white-box .block-cell-item .tit .van-radio-group.data-v-030b1d9d {
  340. display: flex;
  341. justify-content: flex-end;
  342. }
  343. .white-box .block-cell-item .tit .van-radio-group .van-radio.data-v-030b1d9d:not(:first-child) {
  344. margin-left: 30rpx;
  345. }
  346. .white-box .block-cell-item .tit .textarea.data-v-030b1d9d {
  347. background-color: #F8F8F8;
  348. font-size: 30rpx;
  349. color: #B7B7B7;
  350. border-radius: 10rpx;
  351. padding: 30rpx;
  352. word-break: break-all;
  353. }
  354. .white-box .custom-white-box-content.data-v-030b1d9d {
  355. padding-bottom: 30rpx;
  356. }
  357. .z-bg.data-v-030b1d9d {
  358. background: #6600ff;
  359. color: #fff;
  360. }
  361. .l-bg.data-v-030b1d9d {
  362. background: #0000FF;
  363. color: #fff;
  364. }
  365. .h-bg.data-v-030b1d9d {
  366. background: #F87A7A;
  367. color: #fff;
  368. }
  369. .z-br.data-v-030b1d9d {
  370. background: #fff;
  371. border: 1px solid #6600ff;
  372. color: #6600ff;
  373. }
  374. .chaochuyincang.data-v-030b1d9d {
  375. white-space: nowrap;
  376. overflow: hidden;
  377. text-overflow: ellipsis;
  378. }
  379. .selectlist.data-v-030b1d9d {
  380. border-bottom: 2rpx solid #cccccc;
  381. display: flex;
  382. align-items: center;
  383. justify-content: space-between;
  384. }
  385. .chooseCompanyTags .title_1.data-v-030b1d9d {
  386. font-size: 28rpx;
  387. font-weight: 500;
  388. color: #333333;
  389. text-align: right;
  390. height: 64rpx;
  391. line-height: 64rpx;
  392. }
  393. .chooseCompanyTags .title_2.data-v-030b1d9d {
  394. font-size: 26rpx;
  395. font-weight: 500;
  396. color: #777777;
  397. height: 64rpx;
  398. line-height: 64rpx;
  399. text-align: left;
  400. }
  401. .chooseCompanyTags .title_3.data-v-030b1d9d {
  402. margin-bottom: 12rpx;
  403. font-size: 26rpx;
  404. font-weight: 500;
  405. color: #777777;
  406. }
  407. .chooseCompanyTags .cell_1.data-v-030b1d9d {
  408. float: left;
  409. width: 10%;
  410. }
  411. .chooseCompanyTags .checkbox.data-v-030b1d9d {
  412. border: 1px solid #cccccc;
  413. border-radius: 4rpx  4rpx  4rpx  4rpx;
  414. height: 30rpx;
  415. width: 30rpx;
  416. }
  417. .chooseCompanyTags .cell_2.data-v-030b1d9d {
  418. float: left;
  419. width: 90%;
  420. }
  421. .chooseCompanyTags .cell_2 ._img.data-v-030b1d9d {
  422. height: 60rpx;
  423. width: 60rpx;
  424. float: right;
  425. margin: 96rpx 0rpx 94rpx 0;
  426. }
  427. .chooseCompanyTags .btn.data-v-030b1d9d {
  428. width: 40%;
  429. height: 90rpx;
  430. background: #1d18bc;
  431. line-height: 90rpx;
  432. color: white;
  433. float: left;
  434. }
  435. .chooseCompanyTags .jichuback.data-v-030b1d9d {
  436. width: calc(100% - 64rpx);
  437. margin: 32rpx;
  438. background: white;
  439. border-bottom: 2rpx solid #cccccc;
  440. }
  441. .chooseCompanyTags .tags_type.data-v-030b1d9d {
  442. width: calc(100% - 64rpx);
  443. margin: 16rpx;
  444. }
  445. .btn-view.data-v-030b1d9d {
  446. width: 100%;
  447. height: 100rpx;
  448. padding: 20rpx 10%;
  449. background-color: #ffffff;
  450. position: fixed;
  451. bottom: 0;
  452. left: 0;
  453. z-index: 1000;
  454. }
  455. .btn.data-v-030b1d9d {
  456. width: 40%;
  457. height: 90rpx;
  458. background: #1d18bc;
  459. line-height: 90rpx;
  460. color: white;
  461. float: left;
  462. }
  463. .select-container.data-v-030b1d9d {
  464. width: 100vw;
  465. height: 100vh;
  466. position: fixed;
  467. left: 0;
  468. top: 0;
  469. z-index: 999;
  470. }
  471. .select-container .mask.data-v-030b1d9d {
  472. width: 100%;
  473. height: 100%;
  474. background-color: rgba(0, 0, 0, 0.4);
  475. opacity: 0;
  476. transition: opacity 0.3s;
  477. }
  478. .select-container .mask.mask-show.data-v-030b1d9d {
  479. opacity: 1;
  480. }
  481. .select-container .select-box.data-v-030b1d9d {
  482. width: 100%;
  483. position: absolute;
  484. bottom: 0;
  485. left: 0;
  486. -webkit-transform: translate3d(0px, 100%, 0px);
  487. transform: translate3d(0px, 100%, 0px);
  488. background-color: #ffffff;
  489. transition: all 0.3s;
  490. }
  491. .select-container .select-box.select-box-show.data-v-030b1d9d {
  492. -webkit-transform: translateZ(0);
  493. transform: translateZ(0);
  494. }
  495. .select-container .select-box .header.data-v-030b1d9d {
  496. display: flex;
  497. box-sizing: border-box;
  498. width: 100%;
  499. justify-content: space-between;
  500. border-bottom: 1px solid #e5e5e5;
  501. line-height: 76rpx;
  502. font-size: 30rpx;
  503. padding: 0 18rpx;
  504. }
  505. .select-container .select-box .header .cancel.data-v-030b1d9d {
  506. color: #999;
  507. }
  508. .select-container .select-box .header .all .all-active.data-v-030b1d9d::after {
  509. display: inline-block;
  510. content: "✔";
  511. padding-left: 8rpx;
  512. }
  513. .select-container .select-box .header .confirm.data-v-030b1d9d {
  514. color: #1890FF;
  515. }
  516. .select-container .select-box .body-warp.data-v-030b1d9d {
  517. width: 100%;
  518. height: 30vh;
  519. box-sizing: border-box;
  520. padding: 20rpx 18rpx;
  521. }
  522. .select-container .select-box .body.data-v-030b1d9d {
  523. width: 96%;
  524. height: 70%;
  525. overflow-y: auto;
  526. padding: 2%;
  527. }
  528. .select-container .select-box .body .empty-tips.data-v-030b1d9d {
  529. margin-top: 25%;
  530. text-align: center;
  531. font-size: 26rpx;
  532. color: #dd524d;
  533. }