huhaobangding.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. .container2 {
  2. padding: 20rpx 24rpx 40rpx;
  3. background-color: rgba(242, 246, 250, 1);
  4. min-height: auto;
  5. display: flex;
  6. flex-direction: column;
  7. box-sizing: border-box;
  8. }
  9. .custom-nav {
  10. background-color: rgba(46, 130, 255, 1);
  11. display: flex;
  12. align-items: center;
  13. height: 90rpx;
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. z-index: 1000;
  19. padding: 0 20rpx;
  20. padding-top: 88rpx; /* 适配iPhone状态栏,44px转换为88rpx */
  21. }
  22. .back-icon {
  23. position: fixed;
  24. top: 115rpx;
  25. left: 30rpx;
  26. z-index: 999;
  27. width: 40rpx;
  28. height: 40rpx;
  29. }
  30. .nav-title {
  31. flex: 1;
  32. text-align: center;
  33. font-size: 34rpx;
  34. color: #fff;
  35. }
  36. .form-group1 {
  37. background-color: #FFFFFF;
  38. border-radius: 16rpx;
  39. padding: 0 24rpx;
  40. margin-bottom: 24rpx;
  41. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  42. }
  43. .form-group2 {
  44. background-color: #FFFFFF;
  45. border-radius: 16rpx;
  46. padding: 0 24rpx;
  47. margin-bottom: 24rpx;
  48. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  49. }
  50. .form-item {
  51. display: flex;
  52. align-items: center;
  53. padding: 24rpx 0;
  54. height: 4vh;
  55. }
  56. .label {
  57. width: 120rpx;
  58. color: #2e3038;
  59. font-size: 32rpx;
  60. text-align: left;
  61. margin-right: 20rpx;
  62. display: flex;
  63. align-items: center;
  64. white-space: nowrap;
  65. height: 100%;
  66. }
  67. .labelInput{
  68. font-weight: 550;
  69. font-size: 24px;
  70. color: gray;
  71. height: 100%;
  72. align-items: center;
  73. }
  74. input {
  75. flex: 1;
  76. font-size: 32rpx;
  77. font-weight: 400;
  78. color: rgba(170, 177, 192, 1);
  79. padding: 0 20rpx;
  80. text-align: right;
  81. }
  82. .placeholder {
  83. color: rgba(170, 177, 192, 1);
  84. text-align: right;
  85. font-size: 32rpx;
  86. font-weight: 400;
  87. }
  88. .placeholdersecond {
  89. color: #999999;
  90. text-align: left;
  91. font-size: 28rpx;
  92. }
  93. .verify-btn {
  94. color: #0066FF;
  95. font-size: 28rpx;
  96. padding-left: 30rpx;
  97. }
  98. .group-select {
  99. background-color: #FFFFFF;
  100. border-radius: 16rpx;
  101. padding: 0 24rpx;
  102. padding-top: 10rpx;
  103. margin-bottom: 30rpx;
  104. position: relative;
  105. overflow: visible;
  106. }
  107. .section-title {
  108. font-size: 32rpx;
  109. font-weight: 400;
  110. color: rgba(46, 48, 56, 1);
  111. padding: 20rpx 0;
  112. display: flex;
  113. align-items: center;
  114. justify-content: space-between;
  115. position: relative;
  116. }
  117. .section-title::after {
  118. content: '';
  119. position: absolute;
  120. left: 0;
  121. right: 0;
  122. bottom: 0;
  123. height: 1rpx;
  124. background-color: #EEEEEE;
  125. }
  126. .tag-group {
  127. display: flex;
  128. flex-wrap: wrap;
  129. justify-content: flex-start;
  130. width: 100%;
  131. padding: 20rpx 0;
  132. }
  133. .tag {
  134. display: inline-block;
  135. width: calc((100% - 50rpx) / 3);
  136. margin-right: 10rpx;
  137. margin-bottom: 20rpx;
  138. padding: 12rpx 10rpx;
  139. background-color: rgba(242, 245, 250, 1);
  140. border-radius: 4rpx;
  141. font-size: 26rpx;
  142. color: rgba(0, 0, 0, 1);
  143. text-align: center;
  144. box-sizing: border-box;
  145. }
  146. .tag:nth-child(3n) {
  147. margin-right: 0;
  148. }
  149. .tag.active {
  150. background-color: #E6F0FF;
  151. color: #0066FF;
  152. }
  153. .custom-group {
  154. position: relative;
  155. left: 0;
  156. right: 0;
  157. background-color: #FFFFFF;
  158. padding: 0rpx 12rpx 24rpx 0rpx;
  159. }
  160. .custom-input {
  161. display: flex;
  162. align-items: center;
  163. background-color: rgba(242, 245, 250, 1);
  164. border-radius: 4rpx;
  165. padding: 24rpx;
  166. margin: 0;
  167. }
  168. .custom-input input {
  169. text-align: left;
  170. }
  171. .count {
  172. font-size: 26rpx;
  173. color: #999999;
  174. margin-left: 24rpx;
  175. }
  176. .submit-btn {
  177. margin: 20rpx 5%;
  178. width: 90%;
  179. }
  180. .submit-btn button {
  181. background-color: rgba(46, 130, 255, 1);
  182. color: rgba(255, 255, 255, 1);
  183. font-size: 36rpx;
  184. border-radius: 44rpx;
  185. width: 100%;
  186. height: 88rpx;
  187. line-height: 88rpx;
  188. }
  189. .pay-btn-hover {
  190. transform: scale(0.95);
  191. opacity: 0.9;
  192. background-color: #0080b0;
  193. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  194. }
  195. .pay-btn {
  196. width: 100%;
  197. height: 80rpx;
  198. line-height: 80rpx;
  199. background-color: #0080ff;
  200. color: white;
  201. font-size: 32rpx;
  202. border-radius: 40rpx;
  203. margin: 30rpx auto 0;
  204. }
  205. .tips {
  206. position: relative;
  207. padding: 0 30rpx;
  208. margin-bottom: 30rpx;
  209. margin-top: 30rpx;
  210. }
  211. .tips text {
  212. display: block;
  213. font-size: 28rpx;
  214. color: rgba(163, 163, 163, 1);
  215. line-height: 1.8;
  216. margin-bottom: 10rpx;
  217. }
  218. .check-auth-btn {
  219. background-color: rgba(45, 128, 254, 0.12);
  220. font-family: 'PingFang SC', sans-serif;
  221. border-radius: 4rpx;
  222. padding: 10rpx 20rpx;
  223. color: rgba(31, 103, 212, 1);
  224. font-size: 26rpx;
  225. }
  226. .drawer-mask {
  227. position: fixed;
  228. top: 0;
  229. left: 0;
  230. right: 0;
  231. bottom: 0;
  232. background-color: rgba(0, 0, 0, 0.5);
  233. z-index: 100;
  234. }
  235. .drawer-container {
  236. position: fixed;
  237. left: 0;
  238. right: 0;
  239. bottom: 0;
  240. background-color: #FFFFFF;
  241. border-radius: 24rpx 24rpx 0 0;
  242. z-index: 101;
  243. padding: 40rpx 30rpx;
  244. transform: translateY(100%);
  245. transition: transform 0.3s ease-out;
  246. max-height: 80vh;
  247. display: flex;
  248. flex-direction: column;
  249. overflow-y: visible;
  250. overflow-x: hidden;
  251. }
  252. .drawer-container.show {
  253. transform: translateY(0);
  254. }
  255. .drawer-title {
  256. text-align: center;
  257. font-size: 32rpx;
  258. color: #333333;
  259. font-weight: 500;
  260. margin-bottom: 40rpx;
  261. }
  262. .auth-method {
  263. display: flex;
  264. align-items: center;
  265. padding: 30rpx 0;
  266. border-bottom: 1rpx solid #EEEEEE;
  267. }
  268. .auth-method:last-child {
  269. border-bottom: none;
  270. }
  271. .auth-method-icon {
  272. width: 40rpx;
  273. height: 40rpx;
  274. margin-right: 20rpx;
  275. }
  276. .auth-method-content {
  277. flex: 1;
  278. }
  279. .auth-method-title {
  280. font-size: 30rpx;
  281. color: #333333;
  282. margin-bottom: 8rpx;
  283. }
  284. .auth-method-desc {
  285. font-size: 26rpx;
  286. color: #999999;
  287. }
  288. .auth-method-action {
  289. padding: 10rpx 30rpx;
  290. background-color: #0066FF;
  291. border-radius: 30rpx;
  292. color: #FFFFFF;
  293. font-size: 26rpx;
  294. }
  295. .drawer-close {
  296. width: 100%;
  297. height: 10rpx;
  298. background-color: #D8D8D8;
  299. border-radius: 5rpx;
  300. margin: 0 auto 30rpx;
  301. max-width: 80rpx;
  302. }
  303. /* 预览图样式 */
  304. .preview {
  305. display: flex;
  306. align-items: center;
  307. margin-left: 10rpx;
  308. color: #007bff;
  309. cursor: pointer;
  310. }
  311. .preview-icon {
  312. width: 32rpx;
  313. height: 32rpx;
  314. margin-right: 10rpx;
  315. }
  316. .preview-text {
  317. font-size: 28rpx;
  318. color: rgba(104, 108, 128, 1);
  319. }
  320. .preview-modal {
  321. position: fixed;
  322. top: 0;
  323. left: 0;
  324. width: 100%;
  325. height: 100%;
  326. background: rgba(0, 0, 0, 0.7);
  327. display: flex;
  328. justify-content: center;
  329. align-items: center;
  330. z-index: 1000;
  331. opacity: 0;
  332. visibility: hidden;
  333. transition: all 0.3s;
  334. }
  335. .preview-modal.show {
  336. opacity: 1;
  337. visibility: visible;
  338. }
  339. .preview-content {
  340. width: 90%;
  341. display: flex;
  342. flex-direction: column;
  343. align-items: center;
  344. position: relative;
  345. }
  346. .preview-image {
  347. width: 100%;
  348. max-height: 80vh;
  349. }
  350. .close-preview-btn {
  351. margin-top: 30rpx;
  352. padding: 20rpx 60rpx;
  353. background: #FFFFFF;
  354. color: #333333;
  355. border-radius: 40rpx;
  356. font-size: 28rpx;
  357. }
  358. /* 页面标题样式 */
  359. .page-title {
  360. font-size: 36rpx;
  361. font-weight: bold;
  362. text-align: center;
  363. padding: 30rpx 0;
  364. border-bottom: 2rpx solid #eee;
  365. margin-bottom: 30rpx;
  366. }
  367. /* 必填标记样式 */
  368. .required {
  369. color: #f00;
  370. margin-left: 4rpx;
  371. }
  372. /* 选填标记样式 */
  373. .optional {
  374. color: #999;
  375. font-size: 28rpx;
  376. font-weight: normal;
  377. margin-left: 10rpx;
  378. }
  379. /* 水站公司选择器样式 */
  380. .picker-container {
  381. display: flex;
  382. align-items: center;
  383. justify-content: flex-end;
  384. flex: 1;
  385. height: 100%;
  386. padding-right: 20rpx;
  387. }
  388. .picker-text {
  389. text-align: right;
  390. height: 100%;
  391. font-weight: 550;
  392. font-size: 20px;
  393. color: gray;
  394. }
  395. .arrow-right {
  396. width: 0;
  397. height: 0;
  398. border-left: 12rpx solid transparent;
  399. border-right: 12rpx solid transparent;
  400. border-top: 16rpx solid #333;
  401. margin-left: 20rpx;
  402. }
  403. /* 水站公司选择器模态框 */
  404. .picker-mask {
  405. position: fixed;
  406. top: 0;
  407. left: 0;
  408. right: 0;
  409. bottom: 0;
  410. background: rgba(0, 0, 0, 0.5);
  411. z-index: 1000;
  412. }
  413. .picker-container-modal {
  414. position: fixed;
  415. bottom: -600rpx;
  416. left: 0;
  417. right: 0;
  418. background: #fff;
  419. z-index: 1001;
  420. transition: all 0.3s ease;
  421. height: 600rpx;
  422. }
  423. .picker-container-modal.show {
  424. bottom: 0;
  425. }
  426. .picker-header {
  427. display: flex;
  428. justify-content: space-between;
  429. align-items: center;
  430. padding: 20rpx 30rpx;
  431. border-bottom: 2rpx solid #eee;
  432. }
  433. .picker-cancel, .picker-confirm {
  434. font-size: 28rpx;
  435. padding: 10rpx 20rpx;
  436. }
  437. .picker-cancel {
  438. color: #999;
  439. }
  440. .picker-confirm {
  441. color: rgba(46, 130, 255, 1);
  442. }
  443. .picker-title {
  444. font-size: 32rpx;
  445. color: #333;
  446. }
  447. .water-company-picker {
  448. height: 500rpx;
  449. width: 100%;
  450. }
  451. .picker-item {
  452. line-height: 100rpx;
  453. text-align: center;
  454. }
  455. /* 确保水站公司和户号户名分开显示 */
  456. .water-station-card {
  457. background-color: #FFFFFF;
  458. border-radius: 18rpx;
  459. padding: 30rpx 40rpx;
  460. margin-bottom: 30rpx;
  461. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  462. }
  463. .user-info-card {
  464. background-color: #FFFFFF;
  465. border-radius: 18rpx;
  466. padding: 0 40rpx;
  467. margin-bottom: 30rpx;
  468. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  469. }
  470. .divider {
  471. height: 1rpx;
  472. background-color: #EEEEEE;
  473. width: 100%;
  474. }
  475. /* 标签输入限制提示 */
  476. .char-limit {
  477. font-size: 24rpx;
  478. color: #999;
  479. text-align: right;
  480. margin-top: 10rpx;
  481. }
  482. .char-limit.error {
  483. color: #FF4D4F;
  484. }
  485. /* 电话查询容器 */
  486. .phone-query-container {
  487. display: flex;
  488. flex-direction: column;
  489. height: 350rpx;
  490. position: relative;
  491. background-color: #fff;
  492. border-radius: 8rpx;
  493. margin-top: 10rpx;
  494. margin-left: -24rpx;
  495. box-shadow: 0 2rpx 6rpx rgba(0, 0, 0, 0.05);
  496. overflow: hidden;
  497. }
  498. /* 电话查询列表样式 */
  499. .phone-query-list {
  500. flex: 1;
  501. padding: 0;
  502. height: 350rpx;
  503. position: relative;
  504. }
  505. .phone-query-scroll {
  506. height: 100%;
  507. width: 100%;
  508. }
  509. /* 移除原有的滚动条样式,使用更适合移动端的简洁样式 */
  510. .phone-query-scroll::-webkit-scrollbar {
  511. width: 4rpx;
  512. }
  513. .phone-query-scroll::-webkit-scrollbar-thumb {
  514. background-color: rgba(46, 130, 255, 0.3);
  515. border-radius: 2rpx;
  516. }
  517. .phone-query-scroll::-webkit-scrollbar-track {
  518. background-color: transparent;
  519. }
  520. .phone-query-item {
  521. padding: 20rpx 0;
  522. border-bottom: 1rpx solid #EEEEEE;
  523. }
  524. .phone-query-item:last-child {
  525. border-bottom: none;
  526. }
  527. .phone-query-name {
  528. font-size: 28rpx;
  529. color: #333;
  530. margin-bottom: 10rpx;
  531. padding-left: 60rpx;
  532. }
  533. .phone-query-contact {
  534. display: flex;
  535. align-items: center;
  536. font-size: 28rpx;
  537. color: #2E82FF;
  538. margin-bottom: 10rpx;
  539. padding-left: 60rpx;
  540. }
  541. .phone-query-contact text {
  542. flex: 1;
  543. white-space: nowrap;
  544. overflow: hidden;
  545. text-overflow: ellipsis;
  546. }
  547. .phone-query-time {
  548. font-size: 26rpx;
  549. color: #999;
  550. padding-left: 60rpx;
  551. }
  552. /* 拨打电话按钮样式 */
  553. .call-btn {
  554. background-color: #E6F0FF;
  555. color: #2E82FF;
  556. font-size: 28rpx;
  557. padding: 10rpx 30rpx;
  558. border-radius: 30rpx;
  559. margin-left: 20rpx;
  560. white-space: nowrap;
  561. flex-shrink: 0;
  562. }
  563. .scroll-arrow {
  564. font-size: 28rpx;
  565. margin-left: 8rpx;
  566. color: #2E82FF;
  567. font-weight: bold;
  568. }
  569. /* 隐藏滚动条但保留功能(可选) */
  570. .tag-group::-webkit-scrollbar {
  571. display: none;
  572. }
  573. .page-scroll {
  574. height: 100vh;
  575. padding-top: 170rpx;
  576. box-sizing: border-box;
  577. }