index.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. @import "../config";
  2. .panel{
  3. position: relative;
  4. padding: 0 30rpx;
  5. // padding: 0 30rpx 50rpx;
  6. height: 328rpx;
  7. background: url('@{baseUrl}/images/detail/detail-bg.jpg') no-repeat;
  8. background-size: 100% 100%;
  9. border-bottom: 1px solid #fff;
  10. box-sizing: border-box;
  11. &.pt{
  12. height: 422rpx;
  13. }
  14. .bg{
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. height: 100%;
  20. z-index: -1;
  21. }
  22. .row{
  23. display: flex;
  24. align-items:center;
  25. margin-bottom: 40rpx;
  26. }
  27. .job{
  28. color: #fff;
  29. padding-top: 90rpx;
  30. font-size: 38rpx;
  31. letter-spacing: 4rpx;
  32. }
  33. .auth{
  34. width: 150rpx;
  35. margin-left: 10rpx;
  36. }
  37. .award-info{
  38. padding: 4rpx 15rpx;
  39. margin-left: 10rpx;
  40. color: #6a9fe8;
  41. font-size: 28rpx;
  42. }
  43. .money{
  44. font-size: 33rpx;
  45. color: #58a8ff;
  46. font-weight:700;
  47. }
  48. .rule{
  49. margin-left: 100rpx;
  50. height: 40rpx;
  51. line-height: 36rpx;
  52. color: #bdbaba;
  53. font-size: 22rpx;
  54. padding: 0 10rpx;
  55. border-radius: 10rpx;
  56. border: 2rpx solid #bdbaba;
  57. box-sizing: border-box;
  58. }
  59. .pt-award{
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. background: #fff5e1;
  64. color: #3c3c3c;
  65. font-size: 28rpx;
  66. padding: 10rpx 20rpx;
  67. .num{
  68. font-size: 30rpx;
  69. font-weight: 700;
  70. }
  71. .toTuan{
  72. padding: 0 15rpx;
  73. height: 40rpx;
  74. text-align: center;
  75. background-image: linear-gradient(87deg,
  76. #ffc466 0%,
  77. #f94f28 100%),
  78. linear-gradient(
  79. #36a0db,
  80. #36a0db);
  81. border-radius: 10rpx;
  82. color: #fff;
  83. }
  84. }
  85. }
  86. page{
  87. background: #f5f5f5;
  88. }
  89. // 公司卡片
  90. .card{
  91. position: relative;
  92. border-radius: 10rpx;
  93. margin: -60rpx 20rpx 0;
  94. padding: 0 40rpx;
  95. background-color: #ffffff;
  96. box-shadow: 0px 12px 59px 3px
  97. rgba(0, 0, 0, 0.09);
  98. border-radius: 16rpx;
  99. border: solid 1px #f1f1f1;
  100. z-index: 2;
  101. &-title{
  102. display: flex;
  103. align-items: center;
  104. font-size: 36rpx;
  105. padding: 30rpx 0;
  106. &-icon{
  107. width: 55rpx;
  108. margin-right: 10rpx;
  109. }
  110. }
  111. &-content{
  112. display: flex;
  113. align-items: center;
  114. padding: 30rpx 0;
  115. border-bottom: 1px solid #eee;
  116. }
  117. .company-name{
  118. font-size: 24rpx;
  119. line-height: 31px;
  120. letter-spacing: 2px;
  121. color: #323232;
  122. }
  123. .card-footer{
  124. display: flex;
  125. justify-content: space-between;
  126. align-items: center;
  127. padding: 30rpx 0;
  128. font-size: 22rpx;
  129. color: #999;
  130. .address{
  131. display: flex;
  132. }
  133. }
  134. }
  135. .color99{
  136. font-size: 20rpx;
  137. color: #999;
  138. }
  139. .company-logo{
  140. width: 84rpx;
  141. height: 84rpx;
  142. margin-right: 20rpx;
  143. }
  144. .map-icon{
  145. width: 22rpx;
  146. margin-right: 20rpx;
  147. }
  148. .map{
  149. width: 50rpx;
  150. }
  151. // tabs
  152. .box{
  153. padding: 0 60rpx;
  154. margin-top: 40rpx;
  155. background: #fff;
  156. box-sizing: border-box;
  157. }
  158. .tabs{
  159. display: flex;
  160. justify-content: space-around;
  161. font-size: 28rpx;
  162. padding: 20rpx 0 0;
  163. color: #323232;
  164. margin-bottom: 84rpx;
  165. .hover-tabs{
  166. position: relative;
  167. &::after{
  168. content: "";
  169. position: absolute;
  170. bottom: -10rpx;
  171. left: 50%;
  172. transform: translateX(-50%);
  173. width: 60%;
  174. height: 4rpx;
  175. background:#36a0db;
  176. }
  177. }
  178. }
  179. .info-box{
  180. font-size: 28rpx;
  181. color: #828282;
  182. padding: 40rpx 0;
  183. // border-bottom: 1px solid #eee;
  184. .tags{
  185. display: flex;
  186. flex-wrap: wrap;
  187. }
  188. .tag{
  189. flex: 0 0 auto;
  190. padding: 15rpx 20rpx;
  191. color: #828282;
  192. font-size: 24rpx;
  193. background-color: #f9f9fb;
  194. border-radius: 4px;
  195. margin-right: 10rpx;
  196. margin-bottom: 10rpx;
  197. }
  198. }
  199. .path-route{
  200. letter-spacing: 3px;
  201. color: #4498e8;
  202. text-align: center;
  203. font-size: 28rpx;
  204. padding-bottom:20px;
  205. background: #fff;
  206. }
  207. /* 信息面板 */
  208. .info-row{
  209. display: flex;
  210. font-size: 28rpx;
  211. margin: 10rpx 0;
  212. }
  213. .info-title{
  214. min-width:65px;
  215. }
  216. .info-title-mini{
  217. min-width:45px;
  218. }
  219. .text-indent{
  220. text-indent:2em;
  221. font-size:28rpx;
  222. }
  223. .word-break{
  224. overflow-wrap: break-word;
  225. word-break:break-all;
  226. }
  227. .com-desc{
  228. // border-top: 1px solid #eee;
  229. padding: 20rpx 0;
  230. font-size: 24rpx;
  231. line-height: 31rpx;
  232. color: #6b6b6b;
  233. background: #fff;
  234. padding: 44rpx 40rpx 0!important;
  235. box-sizing: border-box;
  236. .topic{
  237. padding-bottom: 35rpx;
  238. font-size:28rpx;
  239. color:#828282;
  240. line-height: 1.5;
  241. }
  242. }
  243. .address-box{
  244. display: flex;
  245. justify-content: space-between;
  246. font-size: 24rpx;
  247. background: #fff;
  248. padding: 0 40rpx 30rpx;
  249. box-sizing: border-box;
  250. }
  251. .kefu-box{
  252. display: flex;
  253. justify-content: space-between;
  254. align-items: center;
  255. padding: 30rpx;
  256. box-sizing: border-box;
  257. background: #fff;
  258. margin: 30rpx 0;
  259. .kefu-info{
  260. display: flex;
  261. align-items: center;
  262. }
  263. .kefu-icon{
  264. width: 118rpx;
  265. height: 118rpx;
  266. margin-right: 30rpx;
  267. }
  268. .kefu-title{
  269. font-size: 28rpx;
  270. color: #323232;
  271. margin-bottom: 6rpx;
  272. letter-spacing: 1px;
  273. }
  274. .kefu-iphone{
  275. letter-spacing: 3px;
  276. color: #208bf3;
  277. font-size: 34rpx;
  278. }
  279. .icon-iphone{
  280. width: 60rpx;
  281. }
  282. }
  283. .tips{
  284. display:flex;
  285. align-items:center;
  286. background: #fff;
  287. padding: 30rpx;
  288. box-sizing: border-box;
  289. font-size: 28rpx;
  290. color: #6b6b6b;
  291. border-bottom: 1px solid #eee;
  292. .icon-tips{
  293. width: 60rpx;
  294. height: 60rpx;
  295. margin-right: 20rpx;
  296. }
  297. }
  298. .btn-group{
  299. background: #fff;
  300. margin-bottom: 20px;
  301. padding: 20px;
  302. box-sizing: border-box;
  303. }
  304. /* 模态框 */
  305. .pt-mask{
  306. position: fixed;
  307. top: 0;
  308. left: 0;
  309. width: 100%;
  310. height: 100%;
  311. background: rgba(0,0,0,.5);
  312. z-index:99;
  313. &.nobg{
  314. background:transparent
  315. }
  316. }
  317. .pt-modal{
  318. position: absolute;
  319. top: 20%;
  320. left: 50%;
  321. width: 520rpx;
  322. box-shadow: 0px 12px 59px 3px rgba(0, 0, 0, 0.09);
  323. border-radius: 10px;
  324. border: 1px solid #17a9ff;
  325. background: #fff;
  326. transform: translateX(-50%);
  327. padding: 0 20rpx;
  328. box-sizing: border-box;
  329. z-index:99;
  330. &-header{
  331. position: relative;
  332. height: 101rpx;
  333. line-height: 101rpx;
  334. border-bottom: 1px solid #eaeaea;
  335. }
  336. &-title{
  337. font-size: 28rpx;
  338. color: #323232;
  339. text-align: center;
  340. }
  341. &-cancle{
  342. position: absolute;
  343. right: 0;
  344. top: 0;
  345. font-size: 24rpx;
  346. color: #4498e8;
  347. }
  348. &-body{
  349. max-height: 436rpx;
  350. overflow-y: auto;
  351. }
  352. .pt-list{
  353. display: flex;
  354. flex: 0 0 auto;
  355. justify-content: space-between;
  356. align-items: center;
  357. padding: 25rpx 0;
  358. border-bottom: 1px solid #eaeaea;
  359. &:last-child{
  360. border-bottom: none;
  361. }
  362. .pt-avatar-box{
  363. width: 95rpx;
  364. height: 95rpx;
  365. border-radius: 50%;
  366. }
  367. .pt-avatar{
  368. flex: 0 0 auto;
  369. flex-shrink: 0;
  370. width: 95rpx;
  371. height: 95rpx;
  372. border-radius: 50%;
  373. border: 1px solid #e2e2e2;
  374. background-color: #f1f1f1;
  375. }
  376. .pt-info{
  377. flex-grow: 1;
  378. color: #323232;
  379. margin-left: 30rpx;
  380. overflow:hidden;
  381. .row{
  382. display: flex;
  383. justify-content: space-between
  384. }
  385. .name{
  386. font-size: 33rpx;
  387. margin-right: 30rpx;
  388. font-weight: 700;
  389. text-overflow: ellipsis;
  390. overflow: hidden;
  391. white-space: nowrap;
  392. }
  393. .small{
  394. font-size: 20rpx;
  395. white-space: nowrap;
  396. padding-right: 20rpx;
  397. .num{
  398. font-size: 30rpx;
  399. font-weight: 700;
  400. }
  401. }
  402. .djs{
  403. margin-top: 20rpx;
  404. font-size: 20rpx;
  405. color: #58a8ff;
  406. .label{
  407. margin-right: 20rpx;
  408. }
  409. }
  410. }
  411. .btn{
  412. flex: 0 0 auto;
  413. width: 82rpx;
  414. height: 40rpx;
  415. background-image: linear-gradient(87deg,#ffc466 0%, #f94f28 100%), linear-gradient(#36a0db, #36a0db);
  416. background-blend-mode: normal, normal;
  417. border-radius: 10rpx;
  418. color: #fff;
  419. line-height: 40rpx;
  420. font-size: 22rpx;
  421. text-align: center;
  422. padding:0;
  423. }
  424. }
  425. .pt-null{
  426. text-align: center;
  427. line-height: 180rpx;
  428. }
  429. &-footer{
  430. height: 120rpx;
  431. background: #fff;
  432. border-top: 1px solid #eaeaee;
  433. }
  434. }
  435. .topic{
  436. position: relative;
  437. border-top: 1px solid #eee;
  438. padding: 50rpx 0;
  439. &-title{
  440. position: absolute;
  441. top:-23rpx;
  442. display: flex;
  443. background: #fff;
  444. }
  445. .icon-box{
  446. width: 20px;
  447. }
  448. &-text{
  449. margin-left: 15rpx;
  450. margin-right: 20rpx;
  451. font-size: 30rpx;
  452. color: #323232;
  453. }
  454. }
  455. .auth-mask{
  456. position: fixed;
  457. top: 0;
  458. left: 0;
  459. width: 100%;
  460. height: 100%;
  461. background:transparent;
  462. z-index:99;
  463. }
  464. .auth-modal{
  465. position: absolute;
  466. top: 20%;
  467. left: 50%;
  468. width: 520rpx;
  469. box-shadow: 0px 12px 59px 3px rgba(0, 0, 0, 0.09);
  470. border-radius: 10px;
  471. border: 1px solid #17a9ff;
  472. background: #fff;
  473. transform: translateX(-50%);
  474. box-sizing: border-box;
  475. z-index:99;
  476. overflow: hidden;
  477. .title{
  478. font-size: 34rpx;
  479. color: #333;
  480. text-align: center;
  481. padding:40rpx;
  482. }
  483. .content{
  484. font-size:28rpx;
  485. color:#999;
  486. text-align: center;
  487. padding:0 40rpx 40rpx;
  488. }
  489. .footer{
  490. display: flex;
  491. border-top: 1px solid #eaeaea;
  492. height: 80rpx;
  493. line-height: 80rpx;
  494. text-align: center;
  495. font-size: 28rpx;
  496. .btn{
  497. width: 50%;
  498. flex: 0 0 auto;
  499. color: #999;
  500. background: #fff;
  501. border-right: 1px solid #eaeaea;
  502. &:last-child{
  503. border-right: 0;
  504. }
  505. }
  506. button{
  507. font-size: 28rpx;
  508. padding: 0;
  509. line-height: 80rpx;
  510. border-radius: 0;
  511. &::after{
  512. border: 0;
  513. }
  514. }
  515. }
  516. }
  517. .welfare-container{
  518. margin-bottom: 84px;
  519. }
  520. .fixed-footer{
  521. position: fixed;
  522. left: 0;
  523. bottom: 0;
  524. width: 100%;
  525. margin-bottom: 0;
  526. }
  527. .selfBtn{
  528. text-align:center;
  529. vertical-align:middle;
  530. touch-action:manipulation;
  531. cursor:pointer;
  532. background-image:none;
  533. white-space:nowrap;
  534. user-select:none;
  535. font-size:14px;
  536. border:0!important;
  537. position:relative;
  538. text-decoration:none;
  539. height:44px;
  540. line-height:44px;
  541. box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);
  542. color:#495060!important;
  543. margin:10px;
  544. color:#fff!important;
  545. background:#2d8cf0!important;
  546. border-radius:44px;
  547. }