detail.css 8.6 KB

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