practicalExperience.wxss 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. page {
  2. background-color: white;
  3. }
  4. .top-act {
  5. position: fixed;
  6. width: 750rpx;
  7. z-index: 99999;
  8. background-color: white;
  9. top: 0;
  10. display: flex;
  11. align-items: center;
  12. box-sizing: border-box;
  13. padding-left: 30rpx;
  14. font-size: 36rpx;
  15. font-family: PingFang SC, PingFang SC-Bold;
  16. font-weight: 700;
  17. }
  18. .swiper-item {
  19. height: 347rpx;
  20. width: 100%;
  21. background: #f6f6f6;
  22. }
  23. .sticky-box {
  24. /* border-bottom: 1px solid #e6e6e6; */
  25. /* height: 103rpx; */
  26. height: 48px;
  27. padding: 0 32rpx;
  28. background-color: white;
  29. box-sizing: border-box;
  30. width: 750rpx;
  31. position: fixed !important;
  32. z-index: 100;
  33. }
  34. .content {
  35. padding: 0 30rpx 30rpx 30rpx;
  36. background: #f7f8fa;
  37. box-sizing: border-box;
  38. }
  39. /* 列表 */
  40. .namewrap {
  41. position: relative;
  42. /* padding-top: 20rpx; */
  43. }
  44. .downMenu .section {
  45. color: #585858;
  46. /* color: #1a1a1a; */
  47. font-family: PingFang-SC-Regular;
  48. text-align: center;
  49. margin-left: 0;
  50. box-sizing: border-box;
  51. }
  52. .downMenu {
  53. margin-bottom: 0 !important;
  54. display: flex;
  55. flex-direction: row;
  56. justify-content: flex-start;
  57. padding: 40rpx 30rpx 30rpx;
  58. /* position: fixed;
  59. z-index: 99; */
  60. background-color: #f7f8fa;
  61. border-radius: 40rpx 40rpx 0rpx 0rpx;
  62. box-sizing: border-box;
  63. }
  64. .gray {
  65. color: #666666;
  66. margin-left: 11rpx;
  67. }
  68. .section {
  69. /* height: 90rpx; */
  70. /* height: 50px; */
  71. width: fit-content;
  72. display: flex;
  73. flex-direction: row;
  74. align-items: center;
  75. }
  76. .section picker {
  77. justify-content: center;
  78. }
  79. .top20 {
  80. padding-top: 15rpx;
  81. }
  82. .section .picker {
  83. display: flex;
  84. /* height: 90rpx; */
  85. /* height: 50px; */
  86. align-items: center;
  87. width: 100%;
  88. justify-content: center;
  89. background: #ffffff;
  90. padding: 12rpx 10rpx;
  91. border-radius: 30rpx;
  92. }
  93. .namewrap .nameitem {
  94. display: inline-block;
  95. font-size: 32rpx;
  96. font-weight: 600;
  97. text-align: left;
  98. color: #666666;
  99. margin-right: 43rpx;
  100. position: relative;
  101. /* height: 103rpx;
  102. line-height: 103rpx; */
  103. height: 48px;
  104. padding-top: 15rpx;
  105. /* line-height: 57px; */
  106. font-family: PingFang SC, PingFang SC-Regular;
  107. font-weight: 400;
  108. letter-spacing: 0.28px;
  109. box-sizing: border-box;
  110. }
  111. .item-line {
  112. position: absolute;
  113. bottom: 0;
  114. width: 80%;
  115. height: 4rpx;
  116. background: #2b58a5;
  117. border-radius: 4rpx;
  118. left: 50%;
  119. transform: translateX(-50%);
  120. }
  121. .namewrap .nameactive {
  122. font-size: 34rpx;
  123. font-weight: 700;
  124. text-align: left;
  125. color: #2b58a5;
  126. }
  127. .item-box {
  128. /* width: calc(100% - 113rpx); */
  129. width: 100%;
  130. white-space: nowrap;
  131. overflow-x: auto;
  132. z-index: 1000000;
  133. position: relative;
  134. }
  135. .namewrap .filter {
  136. position: absolute;
  137. top: 20rpx;
  138. right: 0;
  139. z-index: 10;
  140. height: 49rpx;
  141. width: 103rpx;
  142. text-align: center;
  143. line-height: 49rpx;
  144. background: #ffffff;
  145. border-radius: 10rpx;
  146. color: #666666;
  147. }
  148. .namewrap .filter .triangle {
  149. background: white;
  150. border-top: 10rpx solid white;
  151. border-right: 5px solid #666666;
  152. height: 0;
  153. float: right;
  154. margin-right: 10rpx;
  155. margin-top: 30rpx;
  156. display: flex;
  157. justify-content: center;
  158. align-items: flex-end;
  159. width: 5rpx;
  160. border-radius: 0 5rpx 0rpx 0rpx;
  161. }
  162. .categoryitem {
  163. padding: 32rpx 24rpx;
  164. box-sizing: border-box;
  165. background: white;
  166. display: flex;
  167. /* align-items: center; */
  168. border-radius: 20rpx;
  169. margin-bottom: 20rpx;
  170. }
  171. .right-box {
  172. /* margin-left: 32rpx; */
  173. /* width: 544rpx; */
  174. flex: 1;
  175. width: 0;
  176. }
  177. .img-sex {
  178. /* width: 142rpx; */
  179. display: flex;
  180. /* align-items: center; */
  181. /* justify-content: center; */
  182. }
  183. .per-img1 {
  184. width: 27rpx;
  185. height: 71rpx;
  186. flex-shrink: 0;
  187. margin-right: 80rpx;
  188. margin-left: 36rpx;
  189. }
  190. .per-img2 {
  191. width: 39rpx;
  192. height: 72rpx;
  193. flex-shrink: 0;
  194. margin-right: 72rpx;
  195. margin-left: 33rpx;
  196. }
  197. .per-img3 {
  198. width: 125rpx;
  199. height: 126rpx;
  200. flex-shrink: 0;
  201. margin-right: 50rpx;
  202. margin-left: 17rpx;
  203. }
  204. .categoryitem .label {
  205. font-size: 26rpx;
  206. font-weight: 400;
  207. color: #767676;
  208. margin-right: 10rpx;
  209. display: inline-block;
  210. }
  211. .categoryitem .label2 {
  212. box-sizing: content-box;
  213. font-size: 24rpx;
  214. font-weight: 400;
  215. color: #767676;
  216. height: 38rpx;
  217. line-height: 38rpx;
  218. padding: 0 12rpx;
  219. margin: 10rpx 10rpx 0 0;
  220. background: rgba(255, 255, 255, 0);
  221. border: 1px solid #d7d7d7;
  222. border-radius: 4rpx;
  223. display: inline-block;
  224. }
  225. .catetop {
  226. width: 100%;
  227. text-overflow: ellipsis;
  228. -webkit-line-clamp: 1;
  229. -webkit-box-orient: vertical;
  230. overflow: hidden;
  231. }
  232. .type-sex {
  233. display: flex;
  234. font-size: 26rpx;
  235. font-family: PingFang SC, PingFang SC-Regular;
  236. font-weight: 400;
  237. margin-top: 6rpx;
  238. align-items: flex-end;
  239. justify-content: space-between;
  240. /* position: relative; */
  241. }
  242. .type-box-sex {
  243. display: flex;
  244. font-size: 26rpx;
  245. font-family: PingFang SC, PingFang SC-Regular;
  246. font-weight: 400;
  247. /* margin-top: 15rpx; */
  248. align-items: flex-end;
  249. justify-content: space-between;
  250. }
  251. .type {
  252. background: rgba(255, 255, 255, 0);
  253. border: 1px solid #d7d7d7;
  254. border-radius: 4px;
  255. padding: 4rpx 12rpx;
  256. color: #767676;
  257. }
  258. .sex {
  259. background: rgba(255, 255, 255, 0);
  260. border: 1px solid #d7d7d7;
  261. border-radius: 4px;
  262. padding: 4rpx 12rpx;
  263. color: #767676;
  264. margin-left: 14rpx;
  265. }
  266. .catetop text {
  267. font-size: 24rpx;
  268. font-weight: 500;
  269. text-align: left;
  270. color: #2b2b2b;
  271. /* line-height: 52rpx; */
  272. overflow: hidden;
  273. text-overflow: ellipsis;
  274. white-space: nowrap;
  275. }
  276. .catetop .titlex {
  277. /* flex: 1; */
  278. /* width: 0; */
  279. color: #2b2b2b;
  280. font-size: 30rpx;
  281. font-family: "FZZhunYuan-M02S";
  282. font-weight: 700;
  283. flex-shrink: 0;
  284. }
  285. .catetop .price {
  286. display: flex;
  287. flex-direction: row;
  288. align-items: center;
  289. margin-top: 0 !important;
  290. }
  291. .catetop .price .p2 {
  292. font-size: 38rpx;
  293. font-weight: bold;
  294. color: #ff0000;
  295. line-height: 45rpx;
  296. }
  297. .catetop .price .p1 {
  298. font-size: 26rpx;
  299. color: #ff0000;
  300. line-height: 52rpx;
  301. }
  302. .catebottom {
  303. display: flex;
  304. justify-content: space-between;
  305. /* align-items: center; */
  306. margin-top: 13rpx;
  307. }
  308. .bot-left-type-box {
  309. display: flex;
  310. align-items: center;
  311. flex-wrap: wrap;
  312. }
  313. .type-box-item {
  314. display: inline-block;
  315. padding: 8rpx 15rpx;
  316. font-size: 24rpx;
  317. font-family: PingFang SC, PingFang SC-Regular;
  318. font-weight: 400;
  319. color: #5f5e66;
  320. border-radius: 10rpx;
  321. background: #f0f1f5;
  322. margin-right: 10rpx;
  323. }
  324. .bot-left .iconfont1,
  325. .bot-left .iconfont{
  326. color: #999999 !important;
  327. font-size: 38rpx;
  328. }
  329. .bot-left-type {
  330. background: #fff5da;
  331. color: #585544;
  332. }
  333. .time-icon {
  334. color: #ffdd36;
  335. }
  336. .bot-time {
  337. display: flex;
  338. margin-top: 15rpx;
  339. }
  340. .bot-right {
  341. width: 100%;
  342. display: flex;
  343. flex-direction: row;
  344. justify-content: space-between;
  345. align-items: flex-end;
  346. /* position: absolute;
  347. right: 0;
  348. bottom: 0; */
  349. }
  350. .time-box {
  351. font-size: 26rpx;
  352. font-family: PingFang SC, PingFang SC-Regular;
  353. font-weight: 400;
  354. color: #808080;
  355. margin-left: 9rpx;
  356. }
  357. .catebottom .adico {
  358. width: 17rpx;
  359. height: 24rpx;
  360. margin-right: 14rpx;
  361. display: inline-block;
  362. }
  363. .catebottom .address {
  364. display: inline-block;
  365. line-height: 24rpx;
  366. overflow: hidden;
  367. text-overflow: ellipsis;
  368. white-space: nowrap;
  369. width: 330rpx;
  370. font-size: 26rpx;
  371. font-weight: 400;
  372. text-align: left;
  373. color: #999999;
  374. }
  375. .catebottom .sub-btn-box {
  376. display: inline-block;
  377. width: calc(100% - 375rpx);
  378. text-align: right;
  379. vertical-align: text-top;
  380. margin-top: -10rpx;
  381. }
  382. .type-sex .sub-btn {
  383. background: #e6e6e6;
  384. border-radius: 28rpx;
  385. height: 55rpx;
  386. line-height: 55rpx;
  387. color: #0a0a0a;
  388. font-size: 28rpx;
  389. width: 150rpx;
  390. text-align: center;
  391. /* margin-top: 22rpx; */
  392. }
  393. .type-sex .sub-btn.green {
  394. background: #2b58a5;
  395. color: #ffffff;
  396. }
  397. .filter-box {
  398. padding: 47rpx 30rpx 0 30rpx;
  399. }
  400. .filter-box .close {
  401. width: 33rpx;
  402. float: left;
  403. margin-top: 10rpx;
  404. }
  405. .filter-box .title-box {
  406. font-size: 36rpx;
  407. font-weight: 400;
  408. text-align: center;
  409. color: #1a1a1a;
  410. }
  411. .filter-box .tips {
  412. box-sizing: border-box;
  413. margin-top: 25rpx;
  414. font-size: 30rpx;
  415. font-weight: 400;
  416. color: #666666;
  417. }
  418. .filter-box .tips .red {
  419. color: #ff0000;
  420. }
  421. .filter-box .class-box {
  422. height: calc(100vh - 152rpx - 147rpx);
  423. }
  424. .class-title {
  425. font-size: 34rpx;
  426. font-weight: 500;
  427. color: #1a1a1a;
  428. margin: 45rpx 0 20rpx 0;
  429. }
  430. .class-label {
  431. height: 68rpx;
  432. line-height: 68rpx;
  433. width: fit-content;
  434. border-radius: 16rpx;
  435. padding: 0 37rpx;
  436. font-size: 28rpx;
  437. font-weight: 500;
  438. display: inline-block;
  439. margin: 0 20rpx 20rpx 0;
  440. background: white;
  441. border: 1px solid #d9d9d9;
  442. color: #666666;
  443. }
  444. .class-label.active {
  445. background: #f1ffdf;
  446. border: 1px solid #9ddb52;
  447. color: #9ddb52;
  448. }
  449. .filter-box .bottom-box {
  450. height: 147rpx;
  451. display: flex;
  452. justify-content: space-between;
  453. align-items: center;
  454. }
  455. .bottom-box .left-btn {
  456. width: 172rpx;
  457. height: 88rpx;
  458. border: 1px solid #9ddb52;
  459. border-radius: 20rpx;
  460. text-align: center;
  461. font-size: 32rpx;
  462. font-weight: 400;
  463. color: #9ddb52;
  464. background: white;
  465. }
  466. .bottom-box .right-btn {
  467. width: 363rpx;
  468. height: 88rpx;
  469. border: 1px solid #9ddb52;
  470. border-radius: 20rpx;
  471. text-align: center;
  472. font-size: 32rpx;
  473. font-weight: 400;
  474. color: white;
  475. background: #9ddb52;
  476. }
  477. .nodata-img {
  478. margin: 130rpx auto;
  479. }
  480. .top-act {
  481. position: fixed;
  482. width: 750rpx;
  483. z-index: 99999;
  484. background-color: white;
  485. top: 0;
  486. display: flex;
  487. align-items: flex-end;
  488. box-sizing: border-box;
  489. /* padding-left: 30rpx; */
  490. justify-content: space-between;
  491. padding-bottom: 10rpx;
  492. }
  493. .act-title {
  494. width: 100%;
  495. text-align: center;
  496. font-size: 36rpx;
  497. font-family: PingFang SC, PingFang SC-Bold;
  498. font-weight: 700;
  499. }
  500. .paging {
  501. padding: 20rpx 0;
  502. width: 100%;
  503. display: flex;
  504. justify-content: space-between;
  505. align-items: center;
  506. }
  507. .paging .page-btn {
  508. width: 150rpx;
  509. height: 66rpx;
  510. line-height: 66rpx;
  511. font-size: 24rpx;
  512. }
  513. .paging .page-num {
  514. font-size: 24rpx;
  515. }