common.scss 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. .bg {
  2. margin-top: -46px;
  3. margin-left: -10px;
  4. image {
  5. width: 110%;
  6. }
  7. }
  8. .main {
  9. padding: 15px;
  10. .form {
  11. border-radius: 10px;
  12. background-color: white;
  13. }
  14. }
  15. .tab {
  16. padding: 0px 5px 5px 5px;
  17. /* #ifdef H5 */
  18. margin-top: -1px;
  19. /* #endif */
  20. overflow: hidden;
  21. }
  22. .omit {
  23. white-space: nowrap;
  24. text-overflow: ellipsis;
  25. overflow: hidden;
  26. }
  27. .ellip {
  28. -webkit-line-clamp: 2;
  29. text-overflow: ellipsis;
  30. display: -webkit-box;
  31. -webkit-box-orient: vertical;
  32. overflow: hidden;
  33. margin-top: 7px;
  34. color: #666666;
  35. }
  36. .mt10 {
  37. margin-top: 10px;
  38. }
  39. .flex {
  40. display: flex;
  41. text-align: center;
  42. .f {
  43. flex: 1;
  44. overflow: hidden;
  45. }
  46. }
  47. .btn {
  48. color: white;
  49. background-color: $main-color;
  50. border-radius: 30px;
  51. font-size: 15px;
  52. text-align: center;
  53. padding: 5px;
  54. margin-top: 15px;
  55. }
  56. .form_group {
  57. padding: 9px 0px 9px 0px;
  58. overflow: hidden;
  59. position: relative;
  60. &.form_group:last-child {
  61. border-bottom: 0px;
  62. }
  63. .lable {
  64. font-size: 17px;
  65. text-align: left;
  66. position: relative;
  67. font-weight: bold;
  68. }
  69. .re {
  70. &::before {
  71. content: '*';
  72. width: 0px;
  73. height: 0px;
  74. color: red;
  75. position: absolute;
  76. top: -11px;
  77. font-weight: bold;
  78. }
  79. }
  80. .bgm {
  81. border: 1px solid $line;
  82. border-radius: 5px;
  83. margin-top: 12px;
  84. position: relative;
  85. background-color: white;
  86. .input {
  87. border: 0px;
  88. width: 75%;
  89. margin-top: 0px;
  90. }
  91. .msg {
  92. position: absolute;
  93. right: 10px;
  94. top: 9px;
  95. color: $main-color;
  96. }
  97. }
  98. .avatar {
  99. position: absolute;
  100. top: 0px;
  101. right: 0px;
  102. width: 55px;
  103. height: 55px;
  104. border-radius: 50%;
  105. }
  106. picker {
  107. position: relative;
  108. .more {
  109. position: absolute;
  110. right: 7px;
  111. top: 13px;
  112. font-weight: normal;
  113. }
  114. }
  115. input {
  116. font-size: 15px;
  117. border-radius: 5px;
  118. padding: 10px;
  119. margin-top: 12px;
  120. border: 1px solid $line;
  121. background-color: white;
  122. }
  123. textarea {
  124. font-size: 15px;
  125. border-radius: 5px;
  126. padding: 10px;
  127. margin-top: 12px;
  128. height: 120px;
  129. width: 93%;
  130. border: 1px solid $line;
  131. background-color: white;
  132. }
  133. .start {
  134. flex: 1;
  135. margin-top: -17px;
  136. text-align: left;
  137. }
  138. .hor {
  139. flex: 0.7;
  140. text-align: center;
  141. padding-top: 5px;
  142. }
  143. }
  144. .bz {
  145. font-size: 12px;
  146. color: $font-c;
  147. margin-top: 7px;
  148. .icon {
  149. padding-right: 3px;
  150. }
  151. }
  152. .menu {
  153. margin-top: 12px;
  154. overflow: hidden;
  155. background-color: white;
  156. border-radius: 7px;
  157. box-shadow: $box-shadow;
  158. .cd {
  159. float: left;
  160. width: 25%;
  161. text-align: center;
  162. height: 88px;
  163. .out {
  164. padding: 5px;
  165. .int {
  166. padding: 5px 5px 5px 5px;
  167. position: relative;
  168. .icon {
  169. font-size: 25px;
  170. width: 45px;
  171. height: 45px;
  172. margin: 0 auto;
  173. color: white;
  174. border-radius: 18px;
  175. line-height: 47px;
  176. }
  177. .title {
  178. font-size: 14px;
  179. padding-top: 5px;
  180. white-space: nowrap;
  181. text-overflow: ellipsis;
  182. overflow: hidden;
  183. }
  184. .bage {
  185. position: absolute;
  186. padding: 0px 5px;
  187. border-radius: 20px;
  188. background-color: red;
  189. color: white;
  190. top: 2px;
  191. right: 7px;
  192. font-size: 13px;
  193. }
  194. }
  195. .share {
  196. background-color: white;
  197. line-height: 18px;
  198. }
  199. }
  200. }
  201. }
  202. .tips {
  203. font-size: 13px;
  204. background-color: $bg;
  205. padding: 8px;
  206. color: $main-color;
  207. overflow: hidden;
  208. .icon {
  209. font-size: 17px;
  210. float: left;
  211. padding-right: 3px;
  212. }
  213. }
  214. .popup {
  215. padding: 15px;
  216. background-color: white;
  217. border-radius: 10px;
  218. }
  219. .search {
  220. overflow: hidden;
  221. padding-top: 5px;
  222. .usearch {
  223. float: left;
  224. width: 75%;
  225. }
  226. .address {
  227. float: right;
  228. padding-top: 5px;
  229. width: 65px;
  230. font-size: 15px;
  231. .icon {
  232. padding-right: 3px;
  233. }
  234. }
  235. }
  236. .item_job {
  237. padding: 10px;
  238. background-color: white;
  239. overflow: hidden;
  240. border-radius: 7px;
  241. margin-bottom: 10px;
  242. .top {
  243. overflow: hidden;
  244. .title {
  245. font-size: 15px;
  246. padding-top: 3px;
  247. font-weight: bold;
  248. float: left;
  249. width: 70%;
  250. }
  251. .salary {
  252. padding-top: 5px;
  253. font-size: 15px;
  254. font-weight: bold;
  255. color: #ff5722;
  256. margin-bottom: 5px;
  257. float: right;
  258. }
  259. }
  260. .con {
  261. padding-top: 3px;
  262. padding-bottom: 10px;
  263. font-size: 13px;
  264. color: $font-c;
  265. .desc {
  266. padding-right: 10px;
  267. }
  268. }
  269. .bot {
  270. border-top: 1px solid $line;
  271. font-size: 13px;
  272. color: $font-c;
  273. padding-top: 10px;
  274. overflow: hidden;
  275. .address {
  276. float: left;
  277. width: 68%;
  278. .icon {
  279. padding-right: 2px;
  280. }
  281. }
  282. .distance {
  283. float: right;
  284. }
  285. }
  286. .bt {
  287. border: 0px;
  288. padding-top: 3px;
  289. }
  290. .flex {
  291. border-top: 1px solid $line;
  292. padding-top: 10px;
  293. font-size: 14px;
  294. margin-top: 13px;
  295. }
  296. }
  297. .job{
  298. margin-left: -5px;
  299. margin-right: -5px;
  300. margin-top: -5px;
  301. overflow: hidden;
  302. .full_time {
  303. float: left;
  304. width: 50%;
  305. .out {
  306. padding: 6px;
  307. .int {
  308. padding: 10px;
  309. background-color: white;
  310. overflow: hidden;
  311. border-radius: 7px;
  312. box-shadow: $box-shadow;
  313. image {
  314. width: 100%;
  315. height: 100px;
  316. border-radius: 3px;
  317. }
  318. .title {
  319. font-size: 14px;
  320. padding-top: 3px;
  321. font-weight: bold;
  322. }
  323. .desc {
  324. font-size: 13px;
  325. padding-top: 3px;
  326. }
  327. .price {
  328. padding-top: 3px;
  329. font-size: 14px;
  330. font-weight: bold;
  331. color: #ff5722;
  332. }
  333. .address {
  334. padding-top: 3px;
  335. font-size: 13px;
  336. color: $font-c;
  337. width: 40%;
  338. float: left;
  339. }
  340. .distance {
  341. float: right;
  342. font-size: 13px;
  343. color: $font-c;
  344. padding-top: 3px;
  345. width: 60%;
  346. text-align: right;
  347. }
  348. }
  349. }
  350. }
  351. }
  352. /**简历******/
  353. .resume {
  354. padding: 15px;
  355. .row {
  356. padding: 10px;
  357. margin-bottom: 15px;
  358. border-radius: 5px;
  359. font-size: 14px;
  360. background-color: white;
  361. overflow: hidden;
  362. .top {
  363. .sm6 {
  364. float: left;
  365. .name {
  366. font-size: 22px;
  367. font-weight: bold;
  368. .icon {
  369. padding-left: 10px;
  370. }
  371. }
  372. }
  373. .tx {
  374. width: 55px;
  375. height: 55px;
  376. border-radius: 50%;
  377. position: absolute;
  378. right: 34px;
  379. }
  380. }
  381. .label {
  382. padding-bottom: 5px;
  383. .title {
  384. font-size: 17px;
  385. font-weight: bold;
  386. }
  387. .icon {
  388. float: right;
  389. font-weight: bold;
  390. margin-top: 2px;
  391. font-size: 20px;
  392. }
  393. }
  394. .ellip {
  395. line-height: 25px;
  396. }
  397. .item {
  398. padding-top: 10px;
  399. }
  400. }
  401. .btn {
  402. width: 80%;
  403. .icon {
  404. padding-right: 5px;
  405. }
  406. }
  407. }
  408. .yd {
  409. width: 4px;
  410. height: 4px;
  411. border-radius: 50%;
  412. background-color: $font-c;
  413. float: left;
  414. margin-top: 9px;
  415. margin-right: 3px;
  416. }
  417. .lav {
  418. margin-bottom: 20px;
  419. padding-left: 7px;
  420. padding-right: 7px;
  421. .icon {
  422. font-size: 40px;
  423. padding-bottom: 10px;
  424. }
  425. .title {
  426. font-size: 22px;
  427. font-weight: bold;
  428. }
  429. .desc {
  430. font-size: 14px;
  431. margin-top: 10px;
  432. color: $font-c;
  433. }
  434. }
  435. .tags {
  436. float: left;
  437. width: 50%;
  438. .out {
  439. padding: 5px;
  440. .int {
  441. border-radius: 3px;
  442. text-align: center;
  443. padding: 10px 5px 10px 5px;
  444. font-size: 14px;
  445. color: $font-c;
  446. background-color: #f3f3f3;
  447. }
  448. }
  449. }
  450. .search_view {
  451. position: fixed;
  452. width: 100%;
  453. overflow-y: auto;
  454. background-color: white;
  455. z-index: 3;
  456. .list {
  457. padding: 5px 15px 10px 15px;
  458. .item {
  459. padding: 10px;
  460. color: $font-c;
  461. .title {
  462. font-size: 16px;
  463. font-weight: 600;
  464. }
  465. .desc {
  466. font-size: 13px;
  467. color: #a1a1a1;
  468. padding-top: 2px;
  469. }
  470. }
  471. }
  472. }
  473. ._success {
  474. color: #67c23a !important;
  475. }
  476. ._info {
  477. color: #909399 !important;
  478. }
  479. ._error {
  480. color: #f56c6c !important;
  481. }
  482. .message {
  483. padding: 15px;
  484. border-radius: 5px;
  485. font-size: 14px;
  486. color: $font-c;
  487. margin-bottom: 10px;
  488. background-color: white;
  489. .icon {
  490. padding-right: 3px;
  491. font-size: 16px;
  492. }
  493. }
  494. .ql-editor.ql-blank:before {
  495. font-style: normal !important;
  496. }
  497. /**底部按钮操作******/
  498. .mfooter {
  499. position: fixed;
  500. width: 100%;
  501. bottom: 30px;
  502. text-align: center;
  503. .btn {
  504. border-radius: 35px;
  505. width: 50%;
  506. .icon {
  507. padding-right: 5px;
  508. }
  509. }
  510. }
  511. .position {
  512. padding: 15px;
  513. .audits {
  514. margin-top: -10px;
  515. margin-bottom: 15px;
  516. .audit {
  517. float: left;
  518. padding: 5px 15px;
  519. border-radius: 30px;
  520. background-color: white;
  521. margin-right: 12px;
  522. font-size: 14px;
  523. color: $font-c;
  524. &.active {
  525. color: white;
  526. background-color: $main-color;
  527. }
  528. }
  529. overflow: hidden;
  530. }
  531. .item {
  532. border-radius: 7px;
  533. background-color: white;
  534. color: $font-c;
  535. padding: 15px;
  536. overflow: hidden;
  537. margin-bottom: 12px;
  538. .top {
  539. overflow: hidden;
  540. .title {
  541. font-size: 16px;
  542. float: left;
  543. width: 71%;
  544. font-weight: bold;
  545. .icon {
  546. }
  547. }
  548. .salary {
  549. font-size: 15px;
  550. font-weight: bold;
  551. color: #ff5722;
  552. margin-bottom: 5px;
  553. float: right;
  554. }
  555. .audit {
  556. float: right;
  557. font-size: 14px;
  558. .icon {
  559. padding-right: 3px;
  560. }
  561. }
  562. }
  563. .desc {
  564. margin-top: 10px;
  565. color: $font-c;
  566. width: 100%;
  567. font-size: 14px;
  568. overflow: hidden;
  569. .tag {
  570. float: left;
  571. padding: 1px 8px 8px 0px;
  572. border-radius: 3px;
  573. margin-right: 7px;
  574. }
  575. .date {
  576. float: right;
  577. }
  578. }
  579. .flex {
  580. border-top: 1px solid $line;
  581. padding-top: 10px;
  582. font-size: 14px;
  583. }
  584. }
  585. }
  586. .br {
  587. border-right: 1px solid $line;
  588. }
  589. .danger {
  590. color: #f44336;
  591. }
  592. .agree {
  593. color: $main-color;
  594. }
  595. .filters {
  596. float: right;
  597. margin-top: -32px;
  598. color: $font-c;
  599. z-index: 111;
  600. font-size: 15px;
  601. position: relative;
  602. .icon {
  603. padding-right: 3px;
  604. }
  605. }
  606. .city {
  607. float: right;
  608. margin-top: -32px;
  609. color: $font-c;
  610. z-index: 111;
  611. position: relative;
  612. width: 70px;
  613. margin-right: 70px;
  614. font-size: 15px;
  615. .icon {
  616. padding-right: 3px;
  617. }
  618. }
  619. .pt0 {
  620. padding-top: 0px;
  621. }