consult.wxss 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. page {
  2. background-color: white;
  3. }
  4. /* 未选中的背景样式 */
  5. .radio-self1 radio .wx-radio-input{
  6. width: 30rpx;
  7. height: 30rpx;
  8. border-radius: 50%;
  9. /* border: 1px solid #cccccc; */
  10. }
  11. /* 选中后的背景样式 */
  12. .radio-self1 radio .wx-radio-input.wx-radio-input-checked{
  13. background: #ffffff;
  14. border: 1px solid #ffdc2f;
  15. }
  16. /* 选中后的勾子样式 */
  17. .radio-self1 radio .wx-radio-input.wx-radio-input-checked::before{
  18. width: 15rpx;
  19. height: 15rpx;
  20. line-height: 15rpx;
  21. color: transparent;
  22. border-radius: 50%;
  23. text-align: center;
  24. background: #FFDC2F;
  25. transform: translate(-50%, -50%) scale(1);
  26. -webkit-transform: translate(-50%, -50%) scale(1);
  27. }
  28. .hot-title {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. height: 41rpx;
  33. font-size: 34rpx;
  34. font-family: PingFang SC, PingFang SC-Bold;
  35. font-weight: 700;
  36. color: #333333;
  37. position: relative;
  38. }
  39. .hot-title .line {
  40. position: absolute;
  41. width: 6rpx;
  42. height: 41rpx;
  43. background: #ffdd36;
  44. border-radius: 3rpx;
  45. top: 0;
  46. left: 0;
  47. opacity: .5;
  48. }
  49. .box1 {
  50. padding: 40rpx 30rpx 20rpx 30rpx;
  51. box-sizing: border-box;
  52. border-bottom: 1px solid #e6e6e6;
  53. }
  54. .radio-box1 {
  55. margin-top: 25rpx;
  56. }
  57. .radio-box1 .radio {
  58. margin-right: 44rpx;
  59. font-size: 26rpx;
  60. font-family: PingFang SC, PingFang SC-Regular;
  61. font-weight: 400;
  62. color: #333333;
  63. /* display: flex;
  64. align-items: center; */
  65. }
  66. .box1 .content {
  67. font-size: 24rpx;
  68. font-family: PingFang SC, PingFang SC-Regular;
  69. font-weight: 400;
  70. color: #999999;
  71. margin-top: 22rpx;
  72. text-indent: 40rpx;
  73. }
  74. .box2 {
  75. padding: 20rpx 30rpx;
  76. box-sizing: border-box;
  77. border-bottom: 1px solid #e6e6e6;
  78. }
  79. .top-box {
  80. display: flex;
  81. justify-content: space-between;
  82. }
  83. .top-box .name {
  84. font-size: 28rpx;
  85. font-family: PingFang SC, PingFang SC-Regular;
  86. font-weight: 400;
  87. color: #1a1a1a;
  88. }
  89. .top-box .more-word {
  90. font-size: 24rpx;
  91. font-family: PingFang SC, PingFang SC-Regular;
  92. font-weight: 400;
  93. color: #999999;
  94. }
  95. .empty {
  96. text-align: center;
  97. font-size: 24rpx;
  98. }
  99. .pin-item {
  100. display: flex;
  101. justify-content: space-between;
  102. height: 100rpx;
  103. align-items: center;
  104. width: 690rpx;
  105. border-bottom: 1px solid #E6E6E6;
  106. }
  107. .pin-item:last-child {
  108. border-bottom: none;
  109. }
  110. .pin-item .img-name {
  111. display: flex;
  112. align-items: center;
  113. }
  114. .pin-item .img-name .img{
  115. width: 65rpx;
  116. height: 65rpx;
  117. border-radius: 50%;
  118. }
  119. .pin-item .img-name .name{
  120. font-size: 24rpx;
  121. font-family: PingFang SC, PingFang SC-Regular;
  122. font-weight: 400;
  123. color: #808080;
  124. margin-left: 24rpx;
  125. width: 220rpx;
  126. }
  127. .pin-item .right-box {
  128. display: flex;
  129. flex: 1;
  130. justify-content: space-between;
  131. align-items: center;
  132. }
  133. .pin-item .right-box .nums{
  134. font-size: 24rpx;
  135. font-family: PingFang SC, PingFang SC-Regular;
  136. font-weight: 400;
  137. color: #808080;
  138. }
  139. .tuan-btn{
  140. width: 146rpx;
  141. height: 60rpx;
  142. text-align: center;
  143. line-height: 60rpx;
  144. font-size: 28rpx;
  145. font-family: PingFang SC, PingFang SC-Regular;
  146. font-weight: 400;
  147. color: #ffffff;
  148. border-radius: 28rpx;
  149. background-color: #FFDC2F;
  150. }
  151. .box3 {
  152. padding: 47rpx 30rpx 30rpx 30rpx;
  153. box-sizing: border-box;
  154. }
  155. .box3 .name {
  156. font-size: 28rpx;
  157. font-family: PingFang SC, PingFang SC-Regular;
  158. font-weight: 400;
  159. color: #1a1a1a;
  160. }
  161. .radio-box2 {
  162. margin-top: 25rpx;
  163. }
  164. .radio-box2 .radio {
  165. margin-right: 124rpx;
  166. font-size: 26rpx;
  167. font-family: PingFang SC, PingFang SC-Regular;
  168. font-weight: 400;
  169. color: #333333;
  170. /* display: flex;
  171. align-items: center; */
  172. }
  173. .pin-nums {
  174. margin-top: 48rpx;
  175. }
  176. .radio-box3 {
  177. margin-top: 24rpx;
  178. }
  179. .radio-box3 .radio {
  180. margin-right: 104rpx;
  181. font-size: 26rpx;
  182. font-family: PingFang SC, PingFang SC-Regular;
  183. font-weight: 400;
  184. color: #333333;
  185. /* display: flex;
  186. align-items: center; */
  187. }
  188. .line {
  189. width: 750rpx;
  190. height: 10rpx;
  191. background: #f5f5f5;
  192. }
  193. .box4 {
  194. padding: 30rpx;
  195. box-sizing: border-box;
  196. }
  197. .box4 .title1 {
  198. font-size: 28rpx;
  199. font-family: PingFang SC, PingFang SC-Regular;
  200. font-weight: 400;
  201. color: #1a1a1a;
  202. margin-top: 25rpx;
  203. }
  204. .box4 .item {
  205. margin-top: 20rpx;
  206. display: flex;
  207. align-items: center;
  208. padding-bottom: 15rpx;
  209. justify-content: space-between;
  210. }
  211. .borbot {
  212. border-bottom: 1px solid #d9d9d9;
  213. }
  214. .item-date-time {
  215. display: flex;
  216. align-items: center;
  217. }
  218. .radio4 {
  219. font-size: 26rpx;
  220. font-family: PingFang SC, PingFang SC-Regular;
  221. font-weight: 400;
  222. color: #666666;
  223. display: flex;
  224. align-items: center;
  225. }
  226. .address-pick {
  227. display: flex;
  228. align-items: center;
  229. justify-content: space-between;
  230. width: 690rpx;
  231. }
  232. .address-pick .picker {
  233. font-size: 28rpx;
  234. font-family: PingFang SC, PingFang SC-Regular;
  235. font-weight: 400;
  236. color: #bfbfbf;
  237. }
  238. .date-icon {
  239. font-size: 35rpx;
  240. }
  241. .picker-date {
  242. font-size: 28rpx;
  243. font-family: PingFang SC, PingFang SC-Regular;
  244. font-weight: 400;
  245. color: #bfbfbf;
  246. margin-left: 21rpx;
  247. }
  248. .time-pick {
  249. font-size: 28rpx;
  250. font-family: PingFang SC, PingFang SC-Regular;
  251. font-weight: 400;
  252. color: #bfbfbf;
  253. margin-left: 40rpx;
  254. }
  255. .see-free {
  256. font-size: 28rpx;
  257. font-family: PingFang SC, PingFang SC-Regular;
  258. font-weight: 400;
  259. text-decoration: underline;
  260. color: #005ed9;
  261. }
  262. .time-item {
  263. border-bottom: 1px solid #e6e6e6;
  264. height: 75rpx;
  265. display: flex;
  266. align-items: center;
  267. }
  268. .week-word {
  269. font-size: 28rpx;
  270. font-family: PingFang SC, PingFang SC-Regular;
  271. font-weight: 400;
  272. color: #808080;
  273. }
  274. .time-box {
  275. display: flex;
  276. align-items: center;
  277. justify-content: space-between;
  278. margin-left: 84rpx;
  279. flex: 1;
  280. font-size: 28rpx;
  281. font-family: PingFang SC, PingFang SC-Regular;
  282. font-weight: 400;
  283. color: #808080;
  284. }
  285. .start-box {
  286. font-size: 28rpx;
  287. font-family: PingFang SC, PingFang SC-Regular;
  288. font-weight: 400;
  289. color: #808080;
  290. }
  291. .icon-time {
  292. font-size: 30rpx;
  293. }
  294. .zhi {
  295. font-size: 28rpx;
  296. font-family: PingFang SC, PingFang SC-Regular;
  297. font-weight: 400;
  298. color: #808080;
  299. }
  300. .selt-btn {
  301. display: flex;
  302. justify-content: center;
  303. padding-bottom: 65rpx;
  304. }
  305. .i-know {
  306. width: 500rpx;
  307. height: 80rpx;
  308. background: #ffdc2f;
  309. border-radius: 40rpx;
  310. text-align: center;
  311. line-height: 80rpx;
  312. color: #333333;
  313. font-size: 32rpx;
  314. }
  315. .textarea {
  316. width: 690rpx;
  317. height: 214rpx;
  318. background: #fafafa;
  319. border: 1px solid #d9d9d9;
  320. border-radius: 14rpx;
  321. padding: 22rpx;
  322. }
  323. .progress {
  324. margin-top: 24rpx;
  325. }
  326. .progress-img {
  327. display: flex;
  328. }
  329. .img1 {
  330. width: 39rpx;
  331. height: 32rpx;
  332. margin-left: 7rpx;
  333. }
  334. .img2 {
  335. width: 31rpx;
  336. height: 28rpx;
  337. margin-left: 41rpx;
  338. }
  339. .img3 {
  340. width: 38rpx;
  341. height: 32rpx;
  342. margin-left: 63rpx;
  343. }
  344. .img4 {
  345. width: 27rpx;
  346. height: 30rpx;
  347. margin-left: 42rpx;
  348. }
  349. .img5 {
  350. width: 32rpx;
  351. height: 32rpx;
  352. margin-left: 40rpx;
  353. }
  354. .right1 {
  355. width: 35rpx;
  356. height: 21rpx;
  357. margin-left: 36rpx;
  358. }
  359. .right2 {
  360. width: 35rpx;
  361. height: 21rpx;
  362. margin-left: 39rpx;
  363. }
  364. .right3 {
  365. width: 35rpx;
  366. height: 21rpx;
  367. margin-left: 63rpx;
  368. }
  369. .right4 {
  370. width: 35rpx;
  371. height: 21rpx;
  372. margin-left: 42rpx;
  373. }
  374. .progress-word {
  375. display: flex;
  376. font-size: 26rpx;
  377. font-family: PingFang SC, PingFang SC-Regular;
  378. font-weight: 400;
  379. color: #333333;
  380. margin-top: 11rpx;
  381. }
  382. .tip {
  383. margin-top: 50rpx;
  384. font-size: 26rpx;
  385. font-family: PingFang SC, PingFang SC-Regular;
  386. font-weight: 400;
  387. color: #999999;
  388. }
  389. .btn-sub {
  390. width: 690rpx;
  391. height: 85rpx;
  392. background: #ffdc2f;
  393. border-radius: 43rpx;
  394. position: fixed;
  395. left: 30rpx;
  396. text-align: center;
  397. line-height: 85rpx;
  398. font-size: 30rpx;
  399. font-family: PingFang SC, PingFang SC-Regular;
  400. font-weight: 400;
  401. color: #ffffff;
  402. z-index: 666;
  403. }
  404. .ping-item {
  405. display: flex;
  406. justify-content: space-between;
  407. align-items: center;
  408. height: 100rpx;
  409. border-bottom: 1px solid #e6e6e6;
  410. }
  411. .ping-item .img-info {
  412. display: flex;
  413. }
  414. .img-head {
  415. width: 65rpx;
  416. height: 65rpx;
  417. border-radius: 50%;
  418. }
  419. .ping-item .info-box {
  420. margin-left: 28rpx;
  421. }
  422. .ping-item .info-box .name{
  423. font-size: 24rpx;
  424. font-family: PingFang SC, PingFang SC-Regular;
  425. font-weight: 400;
  426. color: #333333;
  427. text-align: left;
  428. }
  429. .ping-item .info-box .bot-box{
  430. font-size: 20rpx;
  431. font-family: PingFang SC, PingFang SC-Regular;
  432. font-weight: 400;
  433. color: #333333;
  434. }
  435. .yin {
  436. width: 100vw;
  437. height: 100vh;
  438. position: fixed;
  439. top: 0;
  440. left: 0;
  441. background-color: rgba(0, 0, 0, .5);
  442. }
  443. .address-popup {
  444. width: 750rpx;
  445. background: #ffffff;
  446. border-radius: 50rpx 50rpx 0 0;
  447. position: fixed;
  448. z-index: 1000;
  449. bottom: 0;
  450. }
  451. .address-popup .title-box {
  452. position: relative;
  453. text-align: center;
  454. margin-top: 37rpx;
  455. }
  456. .address-popup .title-box .title {
  457. font-size: 36rpx;
  458. font-family: PingFang SC, PingFang SC-Bold;
  459. font-weight: 700;
  460. color: #1a1a1a;
  461. }
  462. .address-popup .title-box .cancel-word {
  463. font-size: 28rpx;
  464. font-family: PingFang SC, PingFang SC-Regular;
  465. font-weight: 400;
  466. color: #ffc12f;
  467. position: absolute;
  468. right: 60rpx;
  469. top: 5rpx;
  470. }
  471. .line-popup {
  472. width: 64rpx;
  473. height: 8rpx;
  474. background: #cccccc;
  475. margin-top: 12rpx;
  476. margin-left: 50%;
  477. transform: translateX(-50%);
  478. }
  479. .picker-view {
  480. width: 750rpx;
  481. height: 300rpx;
  482. }
  483. .picker-view .type-item {
  484. height: 102rpx !important;
  485. line-height: 102rpx !important;
  486. font-size: 30rpx;
  487. font-family: PingFang SC, PingFang SC-Regular;
  488. }
  489. .pick-item {
  490. height: 102rpx;
  491. display: flex;
  492. justify-content: space-between;
  493. padding: 0 60rpx;
  494. align-items: center;
  495. }
  496. .pick-item .item {
  497. color: #B3B3B3;
  498. font-size: 30rpx;
  499. font-family: PingFang SC, PingFang SC-Regular;
  500. }
  501. .pick-item .active-type {
  502. color: #1a1a1a;
  503. }
  504. .pick-item .item:last-child {
  505. border-bottom: none;
  506. }
  507. .detail-word {
  508. font-size: 30rpx;
  509. font-family: PingFang SC, PingFang SC-Regular;
  510. font-weight: 400;
  511. color: #b3b3b3;
  512. }
  513. .active-detail {
  514. font-size: 30rpx;
  515. font-family: PingFang SC, PingFang SC-Regular;
  516. font-weight: 400;
  517. color: #005ed9;
  518. }
  519. .pick-btn {
  520. width: 630rpx;
  521. height: 85rpx;
  522. background: #ffdc2f;
  523. border-radius: 43rpx;
  524. font-size: 30rpx;
  525. font-family: PingFang SC, PingFang SC-Regular;
  526. font-weight: 400;
  527. text-align: center;
  528. color: #1a1a1a;
  529. margin-left: 60rpx;
  530. line-height: 85rpx;
  531. }
  532. .end-btn {
  533. width: 146rpx;
  534. height: 60rpx;
  535. text-align: center;
  536. line-height: 60rpx;
  537. background-color: #E6E6E6;
  538. font-size: 28rpx;
  539. font-family: PingFang SC, PingFang SC-Regular;
  540. font-weight: 400;
  541. color: #ffffff;
  542. border-radius: 28rpx;
  543. }