common.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  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!important;
  38. }
  39. .mt20 {
  40. margin-top: 20px!important;
  41. }
  42. .pl5 {
  43. padding-left: 5px;
  44. }
  45. .flex {
  46. display: flex;
  47. text-align: center;
  48. .f {
  49. flex: 1;
  50. overflow: hidden;
  51. }
  52. }
  53. .btn {
  54. color: white;
  55. background-color: $main-color;
  56. border-radius: 30px;
  57. font-size: 15px;
  58. text-align: center;
  59. padding: 5px;
  60. margin-top: 15px;
  61. }
  62. .form_group {
  63. padding: 9px 0px 9px 0px;
  64. overflow: hidden;
  65. position: relative;
  66. &.form_group:last-child {
  67. border-bottom: 0px;
  68. }
  69. .lable {
  70. font-size: 17px;
  71. text-align: left;
  72. position: relative;
  73. font-weight: bold;
  74. }
  75. .re {
  76. &::before {
  77. content: '*';
  78. width: 0px;
  79. height: 0px;
  80. color: red;
  81. position: absolute;
  82. top: -11px;
  83. font-weight: bold;
  84. }
  85. }
  86. .bgm {
  87. border: 1px solid $line;
  88. border-radius: 5px;
  89. margin-top: 12px;
  90. position: relative;
  91. background-color: white;
  92. .input {
  93. border: 0px;
  94. width: 75%;
  95. margin-top: 0px;
  96. }
  97. .msg {
  98. position: absolute;
  99. right: 10px;
  100. top: 9px;
  101. color: $main-color;
  102. }
  103. }
  104. .avatar {
  105. position: absolute;
  106. top: 0px;
  107. right: 0px;
  108. width: 55px;
  109. height: 55px;
  110. border-radius: 50%;
  111. }
  112. picker {
  113. position: relative;
  114. .more {
  115. position: absolute;
  116. right: 7px;
  117. top: 13px;
  118. font-weight: normal;
  119. }
  120. }
  121. input {
  122. font-size: 15px;
  123. border-radius: 5px;
  124. padding: 10px;
  125. margin-top: 12px;
  126. border: 1px solid $line;
  127. background-color: white;
  128. }
  129. textarea {
  130. font-size: 15px;
  131. border-radius: 5px;
  132. padding: 10px;
  133. margin-top: 12px;
  134. height: 120px;
  135. width: 93%;
  136. border: 1px solid $line;
  137. background-color: white;
  138. }
  139. .start {
  140. flex: 1;
  141. margin-top: -17px;
  142. text-align: left;
  143. }
  144. .hor {
  145. flex: 0.7;
  146. text-align: center;
  147. padding-top: 5px;
  148. }
  149. }
  150. .bz {
  151. font-size: 12px;
  152. color: $font-c;
  153. margin-top: 7px;
  154. .icon {
  155. padding-right: 3px;
  156. }
  157. .contact {
  158. background-color: #f1f1f1;
  159. float: right;
  160. font-size: 13px;
  161. color: $main-color;
  162. margin-top: -5px;
  163. }
  164. }
  165. .menu {
  166. margin-top: 12px;
  167. overflow: hidden;
  168. background-color: white;
  169. border-radius: 7px;
  170. box-shadow: $box-shadow;
  171. .cd {
  172. float: left;
  173. width: 25%;
  174. text-align: center;
  175. height: 88px;
  176. .out {
  177. padding: 5px;
  178. .int {
  179. padding: 5px 5px 5px 5px;
  180. position: relative;
  181. .icon {
  182. font-size: 25px;
  183. width: 45px;
  184. height: 45px;
  185. margin: 0 auto;
  186. color: white;
  187. border-radius: 18px;
  188. line-height: 47px;
  189. }
  190. .title {
  191. font-size: 14px;
  192. padding-top: 5px;
  193. white-space: nowrap;
  194. text-overflow: ellipsis;
  195. overflow: hidden;
  196. }
  197. .bage {
  198. position: absolute;
  199. padding: 0px 5px;
  200. border-radius: 20px;
  201. background-color: red;
  202. color: white;
  203. top: 2px;
  204. right: 7px;
  205. font-size: 13px;
  206. }
  207. }
  208. .share {
  209. background-color: white;
  210. line-height: 18px;
  211. }
  212. }
  213. }
  214. }
  215. .tips {
  216. font-size: 13px;
  217. background-color: $bg;
  218. padding: 8px;
  219. color: $main-color;
  220. overflow: hidden;
  221. .icon {
  222. font-size: 17px;
  223. float: left;
  224. padding-right: 3px;
  225. }
  226. }
  227. .popup {
  228. padding: 15px;
  229. background-color: white;
  230. border-radius: 10px;
  231. .mtt{
  232. text-align: center;
  233. font-size: 18px;
  234. padding-top: 25px;
  235. }
  236. .money{
  237. text-align: center;
  238. font-size: 30px;
  239. padding-top: 5px;
  240. font-weight: bold;
  241. }
  242. .item{
  243. overflow: hidden;
  244. border-bottom: 1px solid $line;
  245. padding: 10px;
  246. &:last-child{
  247. border: 0px;
  248. }
  249. .tt{
  250. float: left;
  251. }
  252. .la{
  253. float: right;
  254. }
  255. }
  256. }
  257. .search {
  258. overflow: hidden;
  259. padding-top: 5px;
  260. .usearch {
  261. float: left;
  262. width: 75%;
  263. }
  264. .address {
  265. float: right;
  266. padding-top: 5px;
  267. width: 65px;
  268. font-size: 15px;
  269. .icon {
  270. padding-right: 3px;
  271. }
  272. }
  273. }
  274. .item_job {
  275. padding: 10px;
  276. background-color: white;
  277. overflow: hidden;
  278. border-radius: 7px;
  279. margin-bottom: 10px;
  280. .top {
  281. overflow: hidden;
  282. .title {
  283. font-size: 15px;
  284. padding-top: 3px;
  285. font-weight: bold;
  286. float: left;
  287. width: 70%;
  288. }
  289. .salary {
  290. padding-top: 5px;
  291. font-size: 15px;
  292. font-weight: bold;
  293. color: #ff5722;
  294. margin-bottom: 5px;
  295. float: right;
  296. }
  297. }
  298. .con {
  299. padding-top: 3px;
  300. padding-bottom: 10px;
  301. font-size: 13px;
  302. color: $font-c;
  303. .desc {
  304. padding-right: 10px;
  305. }
  306. }
  307. .bot {
  308. border-top: 1px solid $line;
  309. font-size: 13px;
  310. color: $font-c;
  311. padding-top: 10px;
  312. overflow: hidden;
  313. .address {
  314. float: left;
  315. width: 63%;
  316. .icon {
  317. padding-right: 2px;
  318. }
  319. }
  320. .desc {
  321. text {
  322. padding-right: 10px;
  323. float: left;
  324. }
  325. }
  326. .distance {
  327. float: right;
  328. }
  329. }
  330. .bt {
  331. border: 0px;
  332. padding-top: 3px;
  333. }
  334. .flex {
  335. border-top: 1px solid $line;
  336. padding-top: 10px;
  337. font-size: 14px;
  338. margin-top: 13px;
  339. }
  340. }
  341. .job {
  342. margin-left: -5px;
  343. margin-right: -5px;
  344. margin-top: -5px;
  345. overflow: hidden;
  346. .full_time {
  347. float: left;
  348. width: 50%;
  349. .out {
  350. padding: 6px;
  351. .int {
  352. padding: 10px;
  353. background-color: white;
  354. overflow: hidden;
  355. border-radius: 7px;
  356. box-shadow: $box-shadow;
  357. image {
  358. width: 100%;
  359. height: 100px;
  360. border-radius: 3px;
  361. }
  362. .title {
  363. font-size: 14px;
  364. padding-top: 3px;
  365. font-weight: bold;
  366. }
  367. .desc {
  368. font-size: 13px;
  369. padding-top: 3px;
  370. }
  371. .price {
  372. padding-top: 3px;
  373. font-size: 14px;
  374. font-weight: bold;
  375. color: #ff5722;
  376. }
  377. .address {
  378. padding-top: 3px;
  379. font-size: 13px;
  380. color: $font-c;
  381. width: 40%;
  382. float: left;
  383. }
  384. .distance {
  385. float: right;
  386. font-size: 13px;
  387. color: $font-c;
  388. padding-top: 3px;
  389. width: 60%;
  390. text-align: right;
  391. }
  392. }
  393. }
  394. }
  395. }
  396. /**简历******/
  397. .resume {
  398. padding: 15px;
  399. .row {
  400. padding: 10px;
  401. margin-bottom: 15px;
  402. border-radius: 5px;
  403. font-size: 14px;
  404. background-color: white;
  405. overflow: hidden;
  406. .top {
  407. .sm6 {
  408. float: left;
  409. .name {
  410. font-size: 22px;
  411. font-weight: bold;
  412. .icon {
  413. padding-left: 10px;
  414. }
  415. }
  416. }
  417. .tx {
  418. width: 55px;
  419. height: 55px;
  420. border-radius: 50%;
  421. position: absolute;
  422. right: 34px;
  423. }
  424. }
  425. .label {
  426. padding-bottom: 5px;
  427. .title {
  428. font-size: 17px;
  429. font-weight: bold;
  430. }
  431. .icon {
  432. float: right;
  433. font-weight: bold;
  434. margin-top: 2px;
  435. font-size: 20px;
  436. }
  437. }
  438. .ellip {
  439. line-height: 25px;
  440. }
  441. .item {
  442. padding-top: 10px;
  443. }
  444. }
  445. .btn {
  446. width: 80%;
  447. .icon {
  448. padding-right: 5px;
  449. }
  450. }
  451. }
  452. .yd {
  453. width: 4px;
  454. height: 4px;
  455. border-radius: 50%;
  456. background-color: $font-c;
  457. float: left;
  458. margin-top: 9px;
  459. margin-right: 3px;
  460. }
  461. .lav {
  462. margin-bottom: 20px;
  463. padding-left: 7px;
  464. padding-right: 7px;
  465. .icon {
  466. font-size: 40px;
  467. padding-bottom: 10px;
  468. }
  469. .title {
  470. font-size: 22px;
  471. font-weight: bold;
  472. }
  473. .desc {
  474. font-size: 14px;
  475. margin-top: 10px;
  476. color: $font-c;
  477. }
  478. }
  479. .tags {
  480. float: left;
  481. width: 50%;
  482. .out {
  483. padding: 5px;
  484. .int {
  485. border-radius: 3px;
  486. text-align: center;
  487. padding: 10px 5px 10px 5px;
  488. font-size: 14px;
  489. color: $font-c;
  490. background-color: #f3f3f3;
  491. }
  492. }
  493. }
  494. .search_view {
  495. position: fixed;
  496. width: 100%;
  497. overflow-y: auto;
  498. background-color: white;
  499. z-index: 3;
  500. .list {
  501. padding: 5px 15px 10px 15px;
  502. .item {
  503. padding: 10px;
  504. color: $font-c;
  505. .title {
  506. font-size: 16px;
  507. font-weight: 600;
  508. }
  509. .desc {
  510. font-size: 13px;
  511. color: #a1a1a1;
  512. padding-top: 2px;
  513. }
  514. }
  515. }
  516. }
  517. ._success {
  518. color: #67c23a !important;
  519. }
  520. ._info {
  521. color: #909399 !important;
  522. }
  523. ._error {
  524. color: #f56c6c !important;
  525. }
  526. .message {
  527. padding: 15px;
  528. border-radius: 5px;
  529. font-size: 14px;
  530. color: $font-c;
  531. margin-bottom: 10px;
  532. background-color: white;
  533. .icon {
  534. padding-right: 3px;
  535. font-size: 16px;
  536. }
  537. }
  538. .ql-editor.ql-blank:before {
  539. font-style: normal !important;
  540. }
  541. /**底部按钮操作******/
  542. .mfooter {
  543. position: fixed;
  544. width: 100%;
  545. bottom: 30px;
  546. text-align: center;
  547. .btn {
  548. border-radius: 35px;
  549. width: 40%;
  550. .icon {
  551. padding-right: 5px;
  552. }
  553. }
  554. }
  555. .position {
  556. padding: 15px;
  557. .audits {
  558. margin-top: -10px;
  559. margin-bottom: 15px;
  560. .audit {
  561. float: left;
  562. padding: 5px 15px;
  563. border-radius: 30px;
  564. background-color: white;
  565. margin-right: 12px;
  566. font-size: 14px;
  567. color: $font-c;
  568. &.active {
  569. color: white;
  570. background-color: $main-color;
  571. }
  572. }
  573. overflow: hidden;
  574. }
  575. .item {
  576. border-radius: 7px;
  577. background-color: white;
  578. color: $font-c;
  579. padding: 15px;
  580. overflow: hidden;
  581. margin-bottom: 12px;
  582. .top {
  583. overflow: hidden;
  584. .title {
  585. font-size: 16px;
  586. float: left;
  587. width: 71%;
  588. font-weight: bold;
  589. }
  590. .salary {
  591. font-size: 15px;
  592. font-weight: bold;
  593. color: #ff5722;
  594. margin-bottom: 5px;
  595. float: right;
  596. }
  597. .audit {
  598. float: right;
  599. font-size: 14px;
  600. .icon {
  601. padding-right: 3px;
  602. }
  603. }
  604. }
  605. .desc {
  606. margin-top: 10px;
  607. color: $font-c;
  608. width: 100%;
  609. font-size: 14px;
  610. overflow: hidden;
  611. .tag {
  612. float: left;
  613. padding: 1px 5px 8px 0px;
  614. border-radius: 3px;
  615. margin-right: 7px;
  616. }
  617. .date {
  618. float: right;
  619. }
  620. }
  621. .flex {
  622. border-top: 1px solid $line;
  623. padding-top: 10px;
  624. font-size: 14px;
  625. }
  626. }
  627. }
  628. .br {
  629. border-right: 1px solid $line;
  630. }
  631. .danger {
  632. color: #f44336;
  633. }
  634. .agree {
  635. color: $main-color;
  636. }
  637. .filters {
  638. float: right;
  639. margin-top: -32px;
  640. color: $font-c;
  641. z-index: 111;
  642. font-size: 15px;
  643. position: relative;
  644. .icon {
  645. padding-right: 3px;
  646. }
  647. }
  648. .city {
  649. float: right;
  650. margin-top: -32px;
  651. color: $font-c;
  652. z-index: 111;
  653. position: relative;
  654. width: 70px;
  655. margin-right: 70px;
  656. font-size: 15px;
  657. .icon {
  658. padding-right: 3px;
  659. }
  660. }
  661. .pt0 {
  662. padding-top: 0px;
  663. }
  664. .org {
  665. color: orangered;
  666. }
  667. .mcard {
  668. background-color: white;
  669. padding: 15px;
  670. border-radius: 8px;
  671. .money {
  672. font-size: 22px;
  673. font-weight: bold;
  674. }
  675. .desc {
  676. padding-top: 10px;
  677. font-size: 14px;
  678. color: $font-c;
  679. }
  680. .f {
  681. padding: 10px;
  682. .btn {
  683. padding: 0px;
  684. .icon {
  685. padding-right: 3px;
  686. }
  687. }
  688. }
  689. }
  690. .wte {
  691. background-color: white !important;
  692. }
  693. .mb0{
  694. margin-bottom: 0px!important;
  695. }
  696. .ms {
  697. margin-top: 20px;
  698. overflow: hidden;
  699. .mtitle {
  700. font-weight: bold;
  701. margin-bottom: 10px;
  702. }
  703. .item {
  704. font-size: 14px;
  705. padding-top: 7px;
  706. }
  707. .gs {
  708. float: left;
  709. width: 50px;
  710. height: 50px;
  711. border-radius: 50%;
  712. background-color: #f1f1f1;
  713. text-align: center;
  714. font-size: 30px;
  715. line-height: 47px;
  716. }
  717. .con {
  718. float: left;
  719. padding-left: 10px;
  720. width: 70%;
  721. .mti {
  722. font-weight: bold;
  723. padding-bottom: 5px;
  724. }
  725. .address {
  726. font-size: 13px;
  727. }
  728. }
  729. .more {
  730. float: right;
  731. margin-top: 14px;
  732. }
  733. }
  734. .mbos {
  735. background-color: white;
  736. padding: 20px;
  737. border-radius: 25px;
  738. .item {
  739. font-size: 14px;
  740. padding-top: 7px;
  741. }
  742. .b {
  743. font-weight: bold;
  744. }
  745. map {
  746. border-radius: 8px;
  747. overflow: hidden;
  748. margin-top: 15px;
  749. width: 100%;
  750. height: 150px;
  751. }
  752. .btn {
  753. width: 60%;
  754. }
  755. }
  756. .mb15{
  757. margin-bottom: 15px
  758. }
  759. .mt0{
  760. margin-top: 0px;
  761. }
  762. .bbg {
  763. overflow: hidden;
  764. }
  765. .dtop {
  766. padding: 15px;
  767. .title {
  768. font-weight: bold;
  769. }
  770. .price {
  771. padding-top: 5px;
  772. font-size: 15px;
  773. font-weight: bold;
  774. color: #ff5722;
  775. }
  776. .desc {
  777. padding-top: 5px;
  778. font-size: 14px;
  779. text {
  780. padding-right: 10px;
  781. }
  782. .audit {
  783. float: right;
  784. color: $main-color;
  785. }
  786. }
  787. }
  788. .pd0{
  789. padding-bottom: 0px;
  790. }
  791. .pl0{
  792. padding-left: 0px;
  793. }