common.scss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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: 14px;
  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. .input {
  86. border: 0px;
  87. width: 75%;
  88. margin-top: 0px;
  89. }
  90. .msg {
  91. position: absolute;
  92. right: 10px;
  93. top: 9px;
  94. }
  95. }
  96. .avatar {
  97. position: absolute;
  98. top: 0px;
  99. right: 0px;
  100. width: 55px;
  101. height: 55px;
  102. border-radius: 50%;
  103. }
  104. picker {
  105. position: relative;
  106. .more {
  107. position: absolute;
  108. right: 7px;
  109. top: 13px;
  110. font-weight: normal;
  111. }
  112. }
  113. input {
  114. font-size: 15px;
  115. border-radius: 5px;
  116. padding: 10px;
  117. margin-top: 12px;
  118. border: 1px solid $line;
  119. background-color: white;
  120. }
  121. textarea {
  122. font-size: 15px;
  123. border-radius: 5px;
  124. padding: 10px;
  125. margin-top: 12px;
  126. height: 120px;
  127. width: 93%;
  128. border: 1px solid $line;
  129. background-color: white;
  130. }
  131. .start {
  132. flex: 1;
  133. margin-top: -17px;
  134. text-align: left;
  135. }
  136. .hor {
  137. flex: 1;
  138. text-align: center;
  139. padding-top: 5px;
  140. }
  141. }
  142. .bz {
  143. font-size: 12px;
  144. color: $font-c;
  145. margin-top: 7px;
  146. .icon {
  147. padding-right: 3px;
  148. }
  149. }
  150. .menu {
  151. margin-top: 12px;
  152. overflow: hidden;
  153. background-color: white;
  154. border-radius: 10px;
  155. box-shadow: $box-shadow;
  156. .cd {
  157. float: left;
  158. width: 25%;
  159. text-align: center;
  160. .out {
  161. padding: 5px;
  162. .int {
  163. padding: 8px 5px 8px 5px;
  164. .icon {
  165. font-size: 30px;
  166. width: 50px;
  167. height: 50px;
  168. margin: 0 auto;
  169. color: white;
  170. border-radius: 8px;
  171. line-height: 52px;
  172. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  173. }
  174. .title {
  175. font-size: 14px;
  176. padding-top: 5px;
  177. }
  178. }
  179. }
  180. }
  181. }
  182. .tips {
  183. font-size: 13px;
  184. background-color: $bg;
  185. padding: 8px;
  186. color: $main-color;
  187. overflow: hidden;
  188. .icon {
  189. font-size: 17px;
  190. float: left;
  191. padding-right: 3px;
  192. }
  193. }
  194. .popup {
  195. padding: 15px;
  196. background-color: white;
  197. border-radius: 10px;
  198. }
  199. .search {
  200. overflow: hidden;
  201. .usearch {
  202. float: left;
  203. width: 77%;
  204. }
  205. .address {
  206. float: right;
  207. padding-top: 5px;
  208. }
  209. }
  210. .item_job {
  211. padding: 10px;
  212. background-color: white;
  213. overflow: hidden;
  214. border-radius: 7px;
  215. margin-bottom: 10px;
  216. .top {
  217. overflow: hidden;
  218. .title {
  219. font-size: 15px;
  220. padding-top: 3px;
  221. font-weight: bold;
  222. float: left;
  223. width: 70%;
  224. }
  225. .salary {
  226. padding-top: 5px;
  227. font-size: 15px;
  228. font-weight: bold;
  229. color: #ff5722;
  230. margin-bottom: 5px;
  231. float: right;
  232. }
  233. }
  234. .bot {
  235. border-top: 1px solid $line;
  236. font-size: 13px;
  237. color: $font-c;
  238. padding-top: 10px;
  239. overflow: hidden;
  240. .address {
  241. float: left;
  242. width: 70%;
  243. .icon {
  244. padding-right: 2px;
  245. }
  246. }
  247. .distance {
  248. float: right;
  249. }
  250. }
  251. .bt {
  252. border: 0px;
  253. padding-top: 3px;
  254. }
  255. .flex {
  256. border-top: 1px solid $line;
  257. padding-top: 10px;
  258. font-size: 14px;
  259. margin-top: 13px;
  260. }
  261. }
  262. /**简历******/
  263. .resume {
  264. padding: 15px;
  265. .row {
  266. padding: 10px;
  267. margin-bottom: 15px;
  268. border-radius: 5px;
  269. font-size: 14px;
  270. background-color: white;
  271. overflow: hidden;
  272. .top {
  273. .sm6 {
  274. float: left;
  275. .name {
  276. font-size: 22px;
  277. font-weight: bold;
  278. .icon {
  279. padding-left: 10px;
  280. }
  281. }
  282. }
  283. .tx {
  284. width: 55px;
  285. height: 55px;
  286. border-radius: 50%;
  287. position: absolute;
  288. right: 34px;
  289. }
  290. }
  291. .label {
  292. padding-bottom: 5px;
  293. .title {
  294. font-size: 17px;
  295. font-weight: bold;
  296. }
  297. .icon {
  298. float: right;
  299. font-weight: bold;
  300. margin-top: 2px;
  301. font-size: 20px;
  302. }
  303. }
  304. .ellip {
  305. line-height: 25px;
  306. }
  307. .item {
  308. padding-top: 10px;
  309. }
  310. }
  311. }
  312. .yd {
  313. width: 4px;
  314. height: 4px;
  315. border-radius: 50%;
  316. background-color: $font-c;
  317. float: left;
  318. margin-top: 9px;
  319. margin-right: 3px;
  320. }
  321. .lav {
  322. margin-bottom: 20px;
  323. padding-left: 7px;
  324. padding-right: 7px;
  325. .icon {
  326. font-size: 40px;
  327. padding-bottom: 10px;
  328. }
  329. .title {
  330. font-size: 22px;
  331. font-weight: bold;
  332. }
  333. .desc {
  334. font-size: 14px;
  335. margin-top: 10px;
  336. color: $font-c;
  337. }
  338. }
  339. .tags {
  340. float: left;
  341. width: 50%;
  342. .out {
  343. padding: 5px;
  344. .int {
  345. border-radius: 3px;
  346. text-align: center;
  347. padding: 10px 5px 10px 5px;
  348. font-size: 14px;
  349. color: $font-c;
  350. background-color: #f3f3f3;
  351. }
  352. }
  353. }
  354. .search_view {
  355. position: fixed;
  356. width: 100%;
  357. overflow-y: auto;
  358. background-color: white;
  359. z-index: 3;
  360. .list {
  361. padding: 5px 15px 10px 15px;
  362. .item {
  363. padding: 10px;
  364. color: $font-c;
  365. .title {
  366. font-size: 16px;
  367. font-weight: 600;
  368. }
  369. .desc {
  370. font-size: 13px;
  371. color: #a1a1a1;
  372. padding-top: 2px;
  373. }
  374. }
  375. }
  376. }
  377. ._success {
  378. color: #67c23a !important;
  379. }
  380. ._info {
  381. color: #909399 !important;
  382. }
  383. ._error {
  384. color: #f56c6c !important;
  385. }
  386. .message {
  387. padding: 15px;
  388. border-radius: 5px;
  389. font-size: 14px;
  390. color: $font-c;
  391. margin-bottom: 10px;
  392. background-color: white;
  393. .icon {
  394. padding-right: 3px;
  395. font-size: 16px;
  396. }
  397. }
  398. .ql-editor.ql-blank:before {
  399. font-style: normal !important;
  400. }
  401. /**底部按钮操作******/
  402. .mfooter {
  403. position: fixed;
  404. width: 100%;
  405. bottom: 30px;
  406. text-align: center;
  407. .btn {
  408. border-radius: 35px;
  409. width: 50%;
  410. .icon {
  411. padding-right: 5px;
  412. }
  413. }
  414. }
  415. .position {
  416. padding: 15px;
  417. .audits {
  418. margin-top: -10px;
  419. margin-bottom: 15px;
  420. .audit {
  421. float: left;
  422. padding: 5px 15px;
  423. border-radius: 30px;
  424. background-color: white;
  425. margin-right: 12px;
  426. font-size: 14px;
  427. color: $font-c;
  428. &.active {
  429. color: white;
  430. background-color: $main-color;
  431. }
  432. }
  433. overflow: hidden;
  434. }
  435. .item {
  436. border-radius: 7px;
  437. background-color: white;
  438. color: $font-c;
  439. padding: 15px;
  440. overflow: hidden;
  441. margin-bottom: 12px;
  442. .top {
  443. overflow: hidden;
  444. .title {
  445. font-size: 16px;
  446. float: left;
  447. width: 71%;
  448. font-weight: bold;
  449. .icon{
  450. }
  451. }
  452. .salary {
  453. font-size: 15px;
  454. font-weight: bold;
  455. color: #ff5722;
  456. margin-bottom: 5px;
  457. float: right;
  458. }
  459. .audit {
  460. float: right;
  461. font-size: 14px;
  462. .icon {
  463. padding-right: 3px;
  464. }
  465. }
  466. }
  467. .desc {
  468. margin-top: 10px;
  469. color: $font-c;
  470. width: 100%;
  471. font-size: 14px;
  472. overflow: hidden;
  473. .tag {
  474. float: left;
  475. padding: 1px 8px 8px 0px;
  476. border-radius: 3px;
  477. margin-right: 7px;
  478. }
  479. .date {
  480. float: right;
  481. }
  482. }
  483. .flex {
  484. border-top: 1px solid $line;
  485. padding-top: 10px;
  486. font-size: 14px;
  487. }
  488. }
  489. }
  490. .br {
  491. border-right: 1px solid $line;
  492. }
  493. .danger {
  494. color: #f44336;
  495. }
  496. .agree {
  497. color: $main-color;
  498. }
  499. .filters {
  500. float: right;
  501. margin-top: -32px;
  502. color: $font-c;
  503. z-index: 111;
  504. position: relative;
  505. .icon {
  506. padding-right: 3px;
  507. }
  508. }
  509. .pt0 {
  510. padding-top: 0px;
  511. }