index.wxss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. /* pages/pt/index.wxss */
  2. page {
  3. background-color: #f5f5f5;
  4. }
  5. .slide-image {
  6. width: 100%;
  7. height: 246rpx;
  8. }
  9. /* .box-body {
  10. width: 100%;
  11. overflow: hidden;
  12. }
  13. .box_title {
  14. padding: 17rpx 0 17rpx 40rpx;
  15. font-size: 28rpx;
  16. color: #666;
  17. border-bottom: 2rpx solid #ddd;
  18. }
  19. .box-item {
  20. display: flex;
  21. padding: 35rpx 40rpx 30rpx 40rpx;
  22. font-size: 32rpx;
  23. color: #232327;
  24. box-sizing: border-box;
  25. background-color: #fff;
  26. border-bottom: 16rpx solid #f5f5f5;
  27. }
  28. .item-hover {
  29. background: #f5f5f5;
  30. }
  31. .box-item .box-item-img {
  32. display: flex;
  33. flex: 0 0 auto;
  34. width: 150rpx;
  35. height: 150rpx;
  36. border-radius: 6rpx;
  37. background: #fff;
  38. }
  39. .box-item .box-item-info {
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: space-between;
  43. flex-grow: 1;
  44. box-sizing: border-box;
  45. overflow: hidden;
  46. }
  47. .box-item .one {
  48. display: flex;
  49. justify-content: space-between;
  50. color: #232327;
  51. flex-direction: row;
  52. vertical-align: middle;
  53. align-items: center;
  54. }
  55. .box-item .one .left {
  56. display: flex;
  57. flex-grow: 1;
  58. align-items: center;
  59. font-size: 32rpx;
  60. font-family: SourceHanSansCN-Regular;
  61. font-weight: 400;
  62. color: rgba(35, 35, 39, 1);
  63. width: 60%;
  64. }
  65. .box-item .one .left image {
  66. width: 58rpx;
  67. height: 26rpx;
  68. margin-left: 10rpx;
  69. }
  70. .box-item .one .salary {
  71. font-size: 32rpx;
  72. font-family: Arial-BoldMT;
  73. font-weight: 400;
  74. color: rgba(255, 78, 37, 1);
  75. }
  76. .box-item .one .salary image {
  77. width: 18rpx;
  78. height: 24rpx;
  79. }
  80. .box-item .two {
  81. display: flex;
  82. justify-content: space-between;
  83. color: #909090;
  84. font-size: 24rpx;
  85. margin-top: 30rpx;
  86. align-items: center;
  87. }
  88. .box-item .two .limit {
  89. display: flex;
  90. flex-direction: row;
  91. flex-grow: 1;
  92. overflow: hidden;
  93. margin-right: 30rpx;
  94. width: 80%;
  95. color: #868b92;
  96. }
  97. .box-item .two .limit image {
  98. width: 18rpx;
  99. height: 18rpx;
  100. margin-right: 10rpx;
  101. }
  102. .box-item .two .limit text {
  103. margin-left: 10rpx;
  104. }
  105. .box-item .two .limit_1 {
  106. display: flex;
  107. flex-direction: row;
  108. flex-grow: 1;
  109. overflow: hidden;
  110. width: 80%;
  111. color: #868b92;
  112. flex-wrap: wrap;
  113. }
  114. .box-item .two .limit_1 image {
  115. width: 18rpx;
  116. height: 18rpx;
  117. margin-right: 10rpx;
  118. }
  119. .box-item .two .limit_1 text {
  120. margin-left: 10rpx;
  121. }
  122. .box-item .two .time {
  123. color: #706f6f;
  124. font-size: 20rpx;
  125. }
  126. .tag-class {
  127. margin-right: 8rpx;
  128. white-space: nowrap;
  129. border: none !important;
  130. background: rgba(255, 246, 229, 1) !important;
  131. border-radius: 14px !important;
  132. margin-bottom: 12rpx;
  133. color: #ff903f;
  134. font-size: 20rpx;
  135. }
  136. .box-item .three {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. font-size: 20rpx;
  141. margin-top: 20rpx;
  142. }
  143. .box-item .three image {
  144. width: 16rpx;
  145. height: 19rpx;
  146. }
  147. .box-item .three .area {
  148. color: #868b92;
  149. font-size: 24rpx;
  150. }
  151. .box-item .three .area .area-name {
  152. margin-left: 10rpx;
  153. color: #868b92;
  154. font-size: 24rpx;
  155. }
  156. .box-item .three .limit {
  157. display: flex;
  158. flex-grow: 1;
  159. overflow: hidden;
  160. margin-right: 10rpx;
  161. width: 80%;
  162. flex-direction: row;
  163. }
  164. .box-item .three .limit i-tag {
  165. margin-left: 10rpx;
  166. }
  167. .box-item .three .time {
  168. flex: 0 0 auto;
  169. color: #868b92;
  170. }
  171. .box-item .three .time image {
  172. width: 18rpx;
  173. height: 18rpx;
  174. }
  175. .box-item .three .time text {
  176. margin-left: 6rpx;
  177. font-size: 20rpx;
  178. }
  179. .box-item .three .fan {
  180. display: flex;
  181. flex-direction: row;
  182. color: #ff400e;
  183. font-size: 20rpx;
  184. align-items: center;
  185. }
  186. .box-item .three .fan image {
  187. width: 24rpx;
  188. height: 24rpx;
  189. margin-right: 10rpx;
  190. }
  191. .box-item .four {
  192. display: flex;
  193. justify-content: space-between;
  194. color: #909090;
  195. font-size: 22rpx;
  196. margin-top: 18rpx;
  197. align-items: center;
  198. }
  199. .box-item .four .limit {
  200. display: flex;
  201. flex-direction: row;
  202. flex-grow: 1;
  203. overflow: hidden;
  204. margin-right: 30rpx;
  205. width: 80%;
  206. color: #868b92;
  207. }
  208. .box-item .four .limit image {
  209. width: 18rpx;
  210. height: 18rpx;
  211. }
  212. .box-item .four .limit i-tag {
  213. margin-left: 10rpx;
  214. }
  215. .box-item .four .limit text {
  216. margin-left: 10rpx;
  217. }
  218. .box-item .four .time {
  219. color: #706f6f;
  220. font-size: 20rpx;
  221. }
  222. .box-item .four .commpany {
  223. font-size: 22rpx;
  224. color: #a0a4a9;
  225. }
  226. .box-item .four .area {
  227. color: #868b92;
  228. font-size: 24rpx;
  229. }
  230. .box-item .four .area image {
  231. width: 16rpx;
  232. height: 19rpx;
  233. }
  234. .box-item .four .area .area-name {
  235. margin-left: 10rpx;
  236. color: #868b92;
  237. font-size: 22rpx;
  238. }
  239. .box-item .five {
  240. border-top: 2rpx solid #ddd;
  241. display: flex;
  242. justify-content: space-between;
  243. color: #909090;
  244. font-size: 22rpx;
  245. margin-top: 30rpx;
  246. align-items: center;
  247. font-size: 20rpx;
  248. }
  249. .box-item .five .pt-member {
  250. color: #525255;
  251. margin-top: 18rpx;
  252. }
  253. .box-item .five .number {
  254. color: #ff8f01;
  255. font-weight: 700;
  256. }
  257. .box-item .five .endtime {
  258. color: #888;
  259. margin-top: 18rpx;
  260. } */
  261. .box-body {
  262. width: 100%;
  263. margin-top: 20rpx;
  264. background: #fff;
  265. }
  266. .box_title {
  267. height: 88rpx;
  268. line-height: 88rpx;
  269. font-size: 28rpx;
  270. color: #666;
  271. border-bottom: 2rpx solid #eee;
  272. padding: 0 30rpx;
  273. box-sizing: border-box;
  274. }
  275. .box-item {
  276. min-height: 276rpx;
  277. padding: 30rpx;
  278. display: flex;
  279. font-size: 26rpx;
  280. color: #666;
  281. box-sizing: border-box;
  282. border-bottom: 16rpx solid #f5f5f5;
  283. }
  284. .item-hover {
  285. background: #f5f5f5;
  286. }
  287. .box-item .box-item-img {
  288. display: flex;
  289. flex: 0 0 auto;
  290. width: 150rpx;
  291. height: 150rpx;
  292. border-radius: 6rpx;
  293. background: #fff;
  294. }
  295. .box-item .box-item-info {
  296. display: flex;
  297. flex-direction: column;
  298. justify-content: space-between;
  299. flex-grow: 1;
  300. box-sizing: border-box;
  301. overflow: hidden;
  302. }
  303. .box-item .one {
  304. display: flex;
  305. justify-content: space-between;
  306. color: #232327;
  307. flex-direction: row;
  308. }
  309. .box-item .one .left {
  310. display: flex;
  311. flex-grow: 1;
  312. align-items: center;
  313. font-size: 32rpx;
  314. font-family: SourceHanSansCN-Regular;
  315. font-weight: 400;
  316. color: rgba(35, 35, 39, 1);
  317. width: 60%;
  318. }
  319. .box-item .one .salary {
  320. font-size: 32rpx;
  321. font-family: ArialMT;
  322. font-weight: 400;
  323. color: #ff401a;
  324. }
  325. .box-item .one .salary image {
  326. width: 18rpx;
  327. height: 24rpx;
  328. }
  329. .box-item .two {
  330. max-height: 55rpx;
  331. overflow: hidden;
  332. display: flex;
  333. /* align-items: center; */
  334. justify-content: space-between;
  335. color: #666;
  336. font-size: 26rpx;
  337. margin-top: 20rpx;
  338. /* transition: all 1s; */
  339. }
  340. .box-item .two .limit {
  341. display: flex;
  342. flex-direction: row;
  343. flex-grow: 1;
  344. overflow: hidden;
  345. margin-right: 20rpx;
  346. width: 80%;
  347. color: #666;
  348. }
  349. .box-item .two .limit image {
  350. width: 18rpx;
  351. height: 18rpx;
  352. margin-right: 10rpx;
  353. }
  354. .box-item .two .limit i-tag {
  355. }
  356. .box-item .two .limit text {
  357. /* margin-left: 10rpx; */
  358. }
  359. .box-item .two .limit_1 {
  360. display: flex;
  361. flex-direction: row;
  362. flex-grow: 1;
  363. overflow: hidden;
  364. width: 80%;
  365. color: #868b92;
  366. flex-wrap: wrap;
  367. }
  368. .box-item .two .limit_1 image {
  369. width: 18rpx;
  370. height: 18rpx;
  371. margin-right: 10rpx;
  372. }
  373. .box-item .two .limit_1 i-tag {
  374. }
  375. .box-item .two .limit_1 text {
  376. margin-left: 10rpx;
  377. }
  378. .box-item .two .time {
  379. color: #666;
  380. font-size: 26rpx;
  381. }
  382. .tag-class {
  383. margin-right: 15rpx;
  384. white-space: nowrap;
  385. border: 1rpx solid #0177ff !important;
  386. background: transparent !important;
  387. border-radius: 8rpx !important;
  388. margin-bottom: 15rpx;
  389. color: #0177ff;
  390. font-size: 24rpx !important;
  391. padding: 5rpx 10rpx !important;
  392. }
  393. .tag-class1 {
  394. margin-right: 8rpx;
  395. white-space: nowrap;
  396. border: none !important;
  397. background: rgba(245, 245, 245, 1) !important;
  398. border-radius: 14px !important;
  399. margin-bottom: 12rpx;
  400. font-size: 20rpx;
  401. }
  402. .box-item .three {
  403. display: flex;
  404. justify-content: space-between;
  405. align-items: center;
  406. font-size: 20rpx;
  407. margin-top: 20rpx;
  408. }
  409. .box-item .three image {
  410. width: 16rpx;
  411. height: 19rpx;
  412. }
  413. .box-item .three .area {
  414. color: #868b92;
  415. font-size: 24rpx;
  416. }
  417. .box-item .three .area .area-name {
  418. margin-left: 10rpx;
  419. color: #666;
  420. font-size: 26rpx;
  421. }
  422. .box-item .three .limit {
  423. display: flex;
  424. flex-grow: 1;
  425. overflow: hidden;
  426. margin-right: 10rpx;
  427. width: 80%;
  428. flex-direction: row;
  429. }
  430. .box-item .three .limit i-tag {
  431. margin-left: 10rpx;
  432. }
  433. .box-item .three .time {
  434. flex: 0 0 auto;
  435. color: #868b92;
  436. }
  437. .box-item .three .time image {
  438. width: 18rpx;
  439. height: 18rpx;
  440. }
  441. .box-item .three .time text {
  442. margin-left: 6rpx;
  443. font-size: 20rpx;
  444. }
  445. .box-item .three .fan {
  446. display: flex;
  447. flex-direction: row;
  448. background: rgba(254,114,53,0.14);
  449. color: #FD7235;
  450. font-size: 22rpx;
  451. align-items: center;
  452. padding: 5rpx 10rpx;
  453. border-radius: 8rpx;
  454. }
  455. .box-item .three .fan image {
  456. width: 24rpx;
  457. height: 24rpx;
  458. margin-right: 10rpx;
  459. }
  460. .box-item .four {
  461. display: flex;
  462. justify-content: space-between;
  463. color: #909090;
  464. font-size: 22rpx;
  465. margin-top: 18rpx;
  466. align-items: center;
  467. }
  468. .box-item .four .limit {
  469. display: flex;
  470. flex-direction: row;
  471. flex-grow: 1;
  472. overflow: hidden;
  473. margin-right: 30rpx;
  474. width: 80%;
  475. color: #868b92;
  476. }
  477. .box-item .four .limit image {
  478. width: 18rpx;
  479. height: 18rpx;
  480. }
  481. .box-item .four .limit i-tag {
  482. margin-left: 10rpx;
  483. }
  484. .box-item .four .limit text {
  485. margin-left: 10rpx;
  486. }
  487. .box-item .four .time {
  488. color: #706f6f;
  489. font-size: 20rpx;
  490. }
  491. .box-item .four .commpany {
  492. flex: 1;
  493. font-size: 26rpx;
  494. color: #666;
  495. }
  496. .box-item .four .area {
  497. width: 100rpx;
  498. text-align: right;
  499. color: #666;
  500. font-size: 26rpx;
  501. }
  502. .box-item .four .area image {
  503. width: 16rpx;
  504. height: 19rpx;
  505. }
  506. .box-item .four .area .area-name {
  507. margin-left: 10rpx;
  508. color: #666;
  509. font-size: 26rpx;
  510. }
  511. .loading_no {
  512. display: flex;
  513. justify-content: center;
  514. align-items: center;
  515. height: 60rpx;
  516. font-size: 22rpx;
  517. color: #696969;
  518. }
  519. /* 空白页 */
  520. .no_data {
  521. width: 100%;
  522. margin-top: 20%;
  523. display: flex;
  524. justify-content: center;
  525. align-items: center;
  526. flex-direction: column;
  527. }
  528. .white {
  529. width: 125px;
  530. height: 125px;
  531. }
  532. .no_text {
  533. color: #ccc;
  534. font-size: 32rpx;
  535. margin-top: 48rpx;
  536. }
  537. .address {
  538. font-size: 26rpx;
  539. color: #666;
  540. margin-top: 20rpx;
  541. }
  542. .gaoxin, .pintuan {
  543. width: 60rpx;
  544. height: 38rpx;
  545. text-align: center;
  546. line-height: 38rpx;
  547. color: #fff;
  548. font-size: 24rpx;
  549. background: #05c3ff;
  550. border-radius: 8rpx;
  551. margin-right: 15rpx;
  552. }
  553. .pintuan {
  554. background: #ffa835;
  555. }
  556. .arrow image {
  557. width: 22rpx;
  558. height: 12rpx;
  559. }
  560. .box-item .down {
  561. max-height: 250rpx;
  562. }
  563. .box-item .five {
  564. border-top: 2rpx solid #ddd;
  565. display: flex;
  566. justify-content: space-between;
  567. color: #909090;
  568. margin-top: 30rpx;
  569. align-items: center;
  570. font-size: 20rpx;
  571. }
  572. .box-item .five .pt-member {
  573. color: #525255;
  574. margin-top: 18rpx;
  575. }
  576. .box-item .five .number {
  577. color: #ff8f01;
  578. font-weight: 700;
  579. }
  580. .box-item .five .endtime {
  581. color: #888;
  582. margin-top: 18rpx;
  583. }