common.scss 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  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. }
  181. .bage {
  182. position: absolute;
  183. padding: 0px 5px;
  184. border-radius: 20px;
  185. background-color: red;
  186. color: white;
  187. top: 2px;
  188. right: 7px;
  189. font-size: 13px;
  190. }
  191. }
  192. .share {
  193. background-color: white;
  194. line-height: 18px;
  195. }
  196. }
  197. }
  198. }
  199. .tips {
  200. font-size: 13px;
  201. background-color: $bg;
  202. padding: 8px;
  203. color: $main-color;
  204. overflow: hidden;
  205. .icon {
  206. font-size: 17px;
  207. float: left;
  208. padding-right: 3px;
  209. }
  210. }
  211. .popup {
  212. padding: 15px;
  213. background-color: white;
  214. border-radius: 10px;
  215. }
  216. .search {
  217. overflow: hidden;
  218. padding-top: 5px;
  219. .usearch {
  220. float: left;
  221. width: 75%;
  222. }
  223. .address {
  224. float: right;
  225. padding-top: 5px;
  226. width: 65px;
  227. font-size: 15px;
  228. .icon {
  229. padding-right: 3px;
  230. }
  231. }
  232. }
  233. .item_job {
  234. padding: 10px;
  235. background-color: white;
  236. overflow: hidden;
  237. border-radius: 7px;
  238. margin-bottom: 10px;
  239. .top {
  240. overflow: hidden;
  241. .title {
  242. font-size: 15px;
  243. padding-top: 3px;
  244. font-weight: bold;
  245. float: left;
  246. width: 70%;
  247. }
  248. .salary {
  249. padding-top: 5px;
  250. font-size: 15px;
  251. font-weight: bold;
  252. color: #ff5722;
  253. margin-bottom: 5px;
  254. float: right;
  255. }
  256. }
  257. .con {
  258. padding-top: 3px;
  259. padding-bottom: 10px;
  260. font-size: 13px;
  261. color: $font-c;
  262. .desc {
  263. padding-right: 10px;
  264. }
  265. }
  266. .bot {
  267. border-top: 1px solid $line;
  268. font-size: 13px;
  269. color: $font-c;
  270. padding-top: 10px;
  271. overflow: hidden;
  272. .address {
  273. float: left;
  274. width: 68%;
  275. .icon {
  276. padding-right: 2px;
  277. }
  278. }
  279. .distance {
  280. float: right;
  281. }
  282. }
  283. .bt {
  284. border: 0px;
  285. padding-top: 3px;
  286. }
  287. .flex {
  288. border-top: 1px solid $line;
  289. padding-top: 10px;
  290. font-size: 14px;
  291. margin-top: 13px;
  292. }
  293. }
  294. .job{
  295. margin-left: -5px;
  296. margin-right: -5px;
  297. margin-top: -5px;
  298. overflow: hidden;
  299. .full_time {
  300. float: left;
  301. width: 50%;
  302. .out {
  303. padding: 6px;
  304. .int {
  305. padding: 10px;
  306. background-color: white;
  307. overflow: hidden;
  308. border-radius: 7px;
  309. box-shadow: $box-shadow;
  310. image {
  311. width: 100%;
  312. height: 100px;
  313. border-radius: 3px;
  314. }
  315. .title {
  316. font-size: 14px;
  317. padding-top: 3px;
  318. font-weight: bold;
  319. }
  320. .desc {
  321. font-size: 13px;
  322. padding-top: 3px;
  323. }
  324. .price {
  325. padding-top: 3px;
  326. font-size: 14px;
  327. font-weight: bold;
  328. color: #ff5722;
  329. }
  330. .address {
  331. padding-top: 3px;
  332. font-size: 13px;
  333. color: $font-c;
  334. width: 40%;
  335. float: left;
  336. }
  337. .distance {
  338. float: right;
  339. font-size: 13px;
  340. color: $font-c;
  341. padding-top: 3px;
  342. width: 60%;
  343. text-align: right;
  344. }
  345. }
  346. }
  347. }
  348. }
  349. /**简历******/
  350. .resume {
  351. padding: 15px;
  352. .row {
  353. padding: 10px;
  354. margin-bottom: 15px;
  355. border-radius: 5px;
  356. font-size: 14px;
  357. background-color: white;
  358. overflow: hidden;
  359. .top {
  360. .sm6 {
  361. float: left;
  362. .name {
  363. font-size: 22px;
  364. font-weight: bold;
  365. .icon {
  366. padding-left: 10px;
  367. }
  368. }
  369. }
  370. .tx {
  371. width: 55px;
  372. height: 55px;
  373. border-radius: 50%;
  374. position: absolute;
  375. right: 34px;
  376. }
  377. }
  378. .label {
  379. padding-bottom: 5px;
  380. .title {
  381. font-size: 17px;
  382. font-weight: bold;
  383. }
  384. .icon {
  385. float: right;
  386. font-weight: bold;
  387. margin-top: 2px;
  388. font-size: 20px;
  389. }
  390. }
  391. .ellip {
  392. line-height: 25px;
  393. }
  394. .item {
  395. padding-top: 10px;
  396. }
  397. }
  398. .btn {
  399. width: 80%;
  400. .icon {
  401. padding-right: 5px;
  402. }
  403. }
  404. }
  405. .yd {
  406. width: 4px;
  407. height: 4px;
  408. border-radius: 50%;
  409. background-color: $font-c;
  410. float: left;
  411. margin-top: 9px;
  412. margin-right: 3px;
  413. }
  414. .lav {
  415. margin-bottom: 20px;
  416. padding-left: 7px;
  417. padding-right: 7px;
  418. .icon {
  419. font-size: 40px;
  420. padding-bottom: 10px;
  421. }
  422. .title {
  423. font-size: 22px;
  424. font-weight: bold;
  425. }
  426. .desc {
  427. font-size: 14px;
  428. margin-top: 10px;
  429. color: $font-c;
  430. }
  431. }
  432. .tags {
  433. float: left;
  434. width: 50%;
  435. .out {
  436. padding: 5px;
  437. .int {
  438. border-radius: 3px;
  439. text-align: center;
  440. padding: 10px 5px 10px 5px;
  441. font-size: 14px;
  442. color: $font-c;
  443. background-color: #f3f3f3;
  444. }
  445. }
  446. }
  447. .search_view {
  448. position: fixed;
  449. width: 100%;
  450. overflow-y: auto;
  451. background-color: white;
  452. z-index: 3;
  453. .list {
  454. padding: 5px 15px 10px 15px;
  455. .item {
  456. padding: 10px;
  457. color: $font-c;
  458. .title {
  459. font-size: 16px;
  460. font-weight: 600;
  461. }
  462. .desc {
  463. font-size: 13px;
  464. color: #a1a1a1;
  465. padding-top: 2px;
  466. }
  467. }
  468. }
  469. }
  470. ._success {
  471. color: #67c23a !important;
  472. }
  473. ._info {
  474. color: #909399 !important;
  475. }
  476. ._error {
  477. color: #f56c6c !important;
  478. }
  479. .message {
  480. padding: 15px;
  481. border-radius: 5px;
  482. font-size: 14px;
  483. color: $font-c;
  484. margin-bottom: 10px;
  485. background-color: white;
  486. .icon {
  487. padding-right: 3px;
  488. font-size: 16px;
  489. }
  490. }
  491. .ql-editor.ql-blank:before {
  492. font-style: normal !important;
  493. }
  494. /**底部按钮操作******/
  495. .mfooter {
  496. position: fixed;
  497. width: 100%;
  498. bottom: 30px;
  499. text-align: center;
  500. .btn {
  501. border-radius: 35px;
  502. width: 50%;
  503. .icon {
  504. padding-right: 5px;
  505. }
  506. }
  507. }
  508. .position {
  509. padding: 15px;
  510. .audits {
  511. margin-top: -10px;
  512. margin-bottom: 15px;
  513. .audit {
  514. float: left;
  515. padding: 5px 15px;
  516. border-radius: 30px;
  517. background-color: white;
  518. margin-right: 12px;
  519. font-size: 14px;
  520. color: $font-c;
  521. &.active {
  522. color: white;
  523. background-color: $main-color;
  524. }
  525. }
  526. overflow: hidden;
  527. }
  528. .item {
  529. border-radius: 7px;
  530. background-color: white;
  531. color: $font-c;
  532. padding: 15px;
  533. overflow: hidden;
  534. margin-bottom: 12px;
  535. .top {
  536. overflow: hidden;
  537. .title {
  538. font-size: 16px;
  539. float: left;
  540. width: 71%;
  541. font-weight: bold;
  542. .icon {
  543. }
  544. }
  545. .salary {
  546. font-size: 15px;
  547. font-weight: bold;
  548. color: #ff5722;
  549. margin-bottom: 5px;
  550. float: right;
  551. }
  552. .audit {
  553. float: right;
  554. font-size: 14px;
  555. .icon {
  556. padding-right: 3px;
  557. }
  558. }
  559. }
  560. .desc {
  561. margin-top: 10px;
  562. color: $font-c;
  563. width: 100%;
  564. font-size: 14px;
  565. overflow: hidden;
  566. .tag {
  567. float: left;
  568. padding: 1px 8px 8px 0px;
  569. border-radius: 3px;
  570. margin-right: 7px;
  571. }
  572. .date {
  573. float: right;
  574. }
  575. }
  576. .flex {
  577. border-top: 1px solid $line;
  578. padding-top: 10px;
  579. font-size: 14px;
  580. }
  581. }
  582. }
  583. .br {
  584. border-right: 1px solid $line;
  585. }
  586. .danger {
  587. color: #f44336;
  588. }
  589. .agree {
  590. color: $main-color;
  591. }
  592. .filters {
  593. float: right;
  594. margin-top: -32px;
  595. color: $font-c;
  596. z-index: 111;
  597. font-size: 15px;
  598. position: relative;
  599. .icon {
  600. padding-right: 3px;
  601. }
  602. }
  603. .city {
  604. float: right;
  605. margin-top: -32px;
  606. color: $font-c;
  607. z-index: 111;
  608. position: relative;
  609. width: 70px;
  610. margin-right: 70px;
  611. font-size: 15px;
  612. .icon {
  613. padding-right: 3px;
  614. }
  615. }
  616. .pt0 {
  617. padding-top: 0px;
  618. }