detail.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. @charset "UTF-8";
  2. /*主色调*/
  3. /*文字文本*/
  4. /*单行省略号*/
  5. /*多行省略号*/
  6. /*箭头*/
  7. /**a标签hoverboder效果**/
  8. /**使用vw适配**/
  9. .container.detail-box {
  10. padding-top: 20px;
  11. padding-bottom: 60px;
  12. max-width: 940px;
  13. }
  14. @media (min-width: 768px) {
  15. .container.detail-box {
  16. padding-top: 60px;
  17. padding-bottom: 100px;
  18. }
  19. }
  20. .detail {
  21. position: relative;
  22. }
  23. .back-tip {
  24. color: #666;
  25. }
  26. @media (min-width: 768px) {
  27. .left {
  28. margin-right: 150px;
  29. }
  30. }
  31. .left h2 {
  32. color: #333;
  33. font-size: 24px;
  34. line-height: 1.4;
  35. padding: 25px 0;
  36. }
  37. @media (min-width: 768px) {
  38. .left h2 {
  39. font-size: 32px;
  40. padding: 40px 0;
  41. }
  42. }
  43. @media (min-width: 992px) {
  44. .left h2 {
  45. font-size: 36px;
  46. }
  47. }
  48. @media (min-width: 1200px) {
  49. .left h2 {
  50. padding: 50px 0;
  51. font-size: 40px;
  52. }
  53. }
  54. .left .time {
  55. color: #666;
  56. font-size: 14px;
  57. margin-bottom: 30px;
  58. }
  59. @media (min-width: 768px) {
  60. .left .time {
  61. margin-bottom: 50px;
  62. }
  63. }
  64. .right:after {
  65. content: '';
  66. display: block;
  67. clear: both;
  68. }
  69. @media (min-width: 768px) {
  70. .right {
  71. position: absolute;
  72. width: 150px;
  73. top: 0;
  74. right: 0;
  75. }
  76. }
  77. .html-main {
  78. color: #333;
  79. font-size: 16px;
  80. line-height: 2;
  81. padding-bottom: 0px;
  82. max-width: 100%;
  83. overflow: auto;
  84. }
  85. @media (min-width: 768px) {
  86. .html-main {
  87. padding-bottom: 0px;
  88. }
  89. }
  90. @media (min-width: 1200px) {
  91. .html-main {
  92. padding-bottom: 20px;
  93. }
  94. }
  95. .share {
  96. float: left;
  97. position: relative;
  98. text-align: right;
  99. margin-top: 40px;
  100. }
  101. @media (max-width: 767px) {
  102. .share {
  103. display: none !important;
  104. }
  105. }
  106. @media (min-width: 768px) {
  107. .share {
  108. position: fixed;
  109. margin-left: 40px;
  110. margin-top: 60px;
  111. float: right;
  112. z-index:9999;
  113. }
  114. }
  115. @media (min-width: 1200px) {
  116. .share {
  117. margin-top: 78px;
  118. }
  119. }
  120. .share > span {
  121. display: inline-block;
  122. vertical-align: middle;
  123. color: #fff;
  124. background: #ed4747;
  125. text-align: center;
  126. width: 110px;
  127. height: 54px;
  128. line-height: 54px;
  129. font-size: 16px;
  130. cursor: pointer;
  131. overflow: hidden;
  132. position: relative;
  133. z-index: 1;
  134. }
  135. .share > span:after {
  136. content: '';
  137. position: absolute;
  138. z-index: -1;
  139. -webkit-transition: width 0.3s, opacity 0.3s;
  140. transition: width 0.3s, opacity 0.3s;
  141. width: 0;
  142. height: 530px;
  143. top: 50%;
  144. left: 50%;
  145. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  146. opacity: 0;
  147. background: #f13232;
  148. -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  149. transform: translate3d(-50%, -50%, 0) rotate(45deg);
  150. -webkit-backface-visibility: hidden;
  151. backface-visibility: hidden;
  152. }
  153. .share > span:hover:after, .share > span:active:after {
  154. width: 100%;
  155. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  156. opacity: 1;
  157. }
  158. .share .share-box {
  159. position: relative;
  160. display: none;
  161. vertical-align: middle;
  162. }
  163. .share .share-box.showIn {
  164. display: inline-block;
  165. }
  166. @media (min-width: 768px) {
  167. .share .share-box {
  168. top: 5px;
  169. display: block;
  170. background: #fee7e7;
  171. }
  172. }
  173. .share .share-box > div {
  174. display: inline-block;
  175. position: relative;
  176. }
  177. @media (min-width: 768px) {
  178. .share .share-box > div {
  179. display: block;
  180. padding-bottom: 14px;
  181. }
  182. }
  183. .share .share-box > div span {
  184. color: #fff;
  185. font-size: 16px;
  186. display: none;
  187. height: 54px;
  188. line-height: 54px;
  189. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  190. opacity: 0;
  191. position: absolute;
  192. -webkit-transition: width .5s ease;
  193. transition: width .5s ease;
  194. top: 0;
  195. left: 12px;
  196. z-index: 1;
  197. -webkit-transition: all .5s ease;
  198. transition: all .5s ease;
  199. }
  200. @media (min-width: 768px) {
  201. .share .share-box > div span {
  202. display: inline-block;
  203. }
  204. }
  205. .share .share-box > div:hover span {
  206. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  207. opacity: 1;
  208. }
  209. .social-share .social-share-icon {
  210. display: inline-block;
  211. margin: 0;
  212. font-size: 24px;
  213. height: 54px;
  214. line-height: 54px;
  215. width: 100%;
  216. border: 0;
  217. border-radius: 0;
  218. background: #ffbdbd;
  219. color: #ed4747;
  220. text-align: center;
  221. padding: 0 13px;
  222. -webkit-transition: width .5s ease;
  223. transition: width .5s ease;
  224. }
  225. @media (min-width: 768px) {
  226. .social-share .social-share-icon {
  227. text-align: right;
  228. width: 54px;
  229. }
  230. }
  231. .social-share .social-share-icon:hover {
  232. width: 100%;
  233. background: #ed4747;
  234. }
  235. .recurit-con .title h2 {
  236. color: #111;
  237. margin: 25px 0;
  238. line-height: 1.4;
  239. font-size: 24px;
  240. }
  241. @media (min-width: 768px) {
  242. .recurit-con .title h2 {
  243. font-size: 32px;
  244. margin: 40px 0;
  245. }
  246. }
  247. @media (min-width: 1200px) {
  248. .recurit-con .title h2 {
  249. font-size: 40px;
  250. margin: 50px 0;
  251. }
  252. }
  253. .recurit-con .title p {
  254. color: #999;
  255. margin-top: 10px;
  256. font-size: 14px;
  257. }
  258. .recurit-con .title p span {
  259. color: #111;
  260. }
  261. .recurit-con .recurit-html .job-detail {
  262. line-height: 2;
  263. font-size: 16px;
  264. }
  265. .recurit-con .recurit-html .job-detail h4 {
  266. color: #111;
  267. margin: 30px 0 15px;
  268. font-size: 18px;
  269. }
  270. @media (min-width: 768px) {
  271. .recurit-con .recurit-html .job-detail h4 {
  272. margin: 40px 0 20px;
  273. font-size: 20px;
  274. }
  275. }
  276. @media (min-width: 1200px) {
  277. .recurit-con .recurit-html .job-detail h4 {
  278. margin: 50px 0 26px;
  279. font-size: 22px;
  280. }
  281. }
  282. .recommend {
  283. background: #eee;
  284. }
  285. .recommend .container {
  286. max-width: 1170px;
  287. position: relative;
  288. }
  289. .recommend .index-tit {
  290. margin-top: 10px;
  291. text-align: center;
  292. color: #111;
  293. }
  294. @media (min-width: 768px) {
  295. .recommend .index-tit {
  296. margin-bottom: 30px;
  297. }
  298. }
  299. .recommend .index-tit h2 {
  300. line-height: 1.4;
  301. font-size: 24px;
  302. margin-bottom: 10px;
  303. overflow: hidden;
  304. text-overflow: ellipsis;
  305. display: -webkit-box;
  306. -webkit-box-orient: vertical;
  307. -webkit-line-clamp: 2;
  308. }
  309. @media (min-width: 768px) {
  310. .recommend .index-tit h2 {
  311. font-size: 32px;
  312. }
  313. }
  314. @media (min-width: 1200px) {
  315. .recommend .index-tit h2 {
  316. font-size: 40px;
  317. margin-bottom: 20px;
  318. }
  319. }
  320. .recommend .index-tit p {
  321. font-size: 14px;
  322. }
  323. @media (min-width: 768px) {
  324. .recommend .index-tit p {
  325. font-size: 20px;
  326. }
  327. }
  328. .recommend .arrow {
  329. cursor: pointer;
  330. position: absolute;
  331. top: 55%;
  332. display: inline-block;
  333. width: 20px;
  334. height: 35px;
  335. background-repeat: no-repeat;
  336. background-position: center;
  337. }
  338. .recommend .arrow.arrow-left {
  339. background-image: url("/assets/image/arrow-left.png");
  340. left: -20px;
  341. }
  342. .recommend .arrow.arrow-left:hover, .recommend .arrow.arrow-left:active {
  343. background-image: url("/assets/image/arrow-left-on.png");
  344. }
  345. .recommend .arrow.arrow-right {
  346. background-image: url("/assets/image/arrow-right.png");
  347. right: -20px;
  348. }
  349. .recommend .arrow.arrow-right:hover, .recommend .arrow.arrow-right:active {
  350. background-image: url("/assets/image/arrow-right-on.png");
  351. }
  352. .recommend .arrow.disabled {
  353. pointer-events: none;
  354. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  355. opacity: .8;
  356. cursor: default;
  357. }
  358. #job {
  359. margin: 0 auto;
  360. position: relative;
  361. height: 250px;
  362. }
  363. #job .swiper-wrapper {
  364. padding-bottom: 50px;
  365. padding-top: 20px;
  366. }
  367. #job .swiper-slide {
  368. height: 180px !important;
  369. }
  370. #job .swiper-slide a {
  371. width: 94%;
  372. height: 100%;
  373. margin: 0 auto;
  374. padding: 20px;
  375. background: #fff;
  376. display: block;
  377. position: relative;
  378. -webkit-transition: all .5s ease;
  379. transition: all .5s ease;
  380. }
  381. #job .swiper-slide a:hover {
  382. -webkit-box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.2);
  383. box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.2);
  384. -webkit-transform: translateY(-10px);
  385. transform: translateY(-10px);
  386. }
  387. #job .swiper-slide a .txt {
  388. text-align: left;
  389. }
  390. #job .swiper-slide a .txt h2 {
  391. color: #ed4747;
  392. line-height: 1.4;
  393. margin-bottom: 16px;
  394. font-size: 16px;
  395. }
  396. @media (min-width: 1200px) {
  397. #job .swiper-slide a .txt h2 {
  398. font-size: 20px;
  399. }
  400. }
  401. #job .swiper-slide a .txt p {
  402. color: #999;
  403. font-size: 14px;
  404. }
  405. #job .swiper-slide a span {
  406. float: right;
  407. color: #ed4747;
  408. font-size: 14px;
  409. position: absolute;
  410. bottom: 20px;
  411. right: 20px;
  412. }
  413. #job .swiper-slide a span i {
  414. display: inline-block;
  415. vertical-align: middle;
  416. width: 13px;
  417. height: 13px;
  418. background: url("/assets/image/arrow-color.png") no-repeat center;
  419. }
  420. #job .swiper-pagination {
  421. display: block;
  422. position: absolute;
  423. bottom: 0;
  424. left: 0;
  425. right: 0;
  426. text-align: center;
  427. }
  428. #job .swiper-pagination span {
  429. display: inline-block;
  430. width: 8px;
  431. height: 8px;
  432. background: #000000;
  433. background: rgba(0, 0, 0, 0.3);
  434. border-radius: 50%;
  435. margin: 0 6px;
  436. }
  437. #job .swiper-pagination span.swiper-visible-switch {
  438. background: #ed4747;
  439. background: rgba(237, 71, 71, 0.5);
  440. }
  441. #job .swiper-pagination span.swiper-active-switch {
  442. background: #ed4747;
  443. }
  444. .html-main img {
  445. max-width: 100% !important;
  446. }
  447. .recurit-mail {
  448. margin-top: 40px;
  449. font-size: 16px;
  450. }
  451. .recurit-mail a {
  452. color: #ed4747;
  453. }