success.blade.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>聚才网</title>
  9. <link href="{{ theme_asset('mobile/css/h5page.css') }}" rel="stylesheet">
  10. <style type="text/css">
  11. @media screen and (min-width: 720px) {
  12. #content {
  13. max-width: 720px;
  14. margin-left: auto;
  15. margin-right: auto;
  16. padding: 0 20px;
  17. }
  18. #wechat_contact {
  19. right: calc(50% - 440px)
  20. }
  21. }
  22. @media screen and (max-width: 720px) {
  23. #wechat_contact {
  24. right: 20px;
  25. }
  26. }
  27. @media screen and (max-width: 1100px) {
  28. #wechat_contact {
  29. right: 20px;
  30. }
  31. }
  32. @media screen and (min-width: 1250px) {
  33. .wechat_card {
  34. left: 0;
  35. }
  36. .wechat_card_arrow {
  37. left: 26px;
  38. }
  39. }
  40. body {
  41. padding: 20px 16px 12px 16px;
  42. margin: 0;
  43. overflow-x: hidden;
  44. color: #333;
  45. letter-spacing: .034em;
  46. min-width: 0;
  47. font-family: '-apple-system-font,BlinkMacSystemFont,"Helvetica Neue","PingFang SC","Hiragino Sans GB","Microsoft YaHei UI","Microsoft YaHei",Arial,sans-serif';
  48. }
  49. h2 {
  50. font-size: 22px;
  51. line-height: 1.4;
  52. font-weight: 400;
  53. margin-top: 0;
  54. margin-bottom: 14px;
  55. word-break: break-all;
  56. }
  57. h2.pc {
  58. margin-top: 32px;
  59. }
  60. .page_info {
  61. color: #999;
  62. font-size: 15px;
  63. line-height: 20px;
  64. margin-bottom: 32px;
  65. }
  66. .page_info_source {
  67. display: inline-block;
  68. margin-right: 10px;
  69. max-width: 70%;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. vertical-align: bottom;
  74. }
  75. .page_content {
  76. font-size: 17px;
  77. line-height: 1.6em;
  78. text-align: justify;
  79. color: #333;
  80. word-break: break-all;
  81. }
  82. p {
  83. margin: 0;
  84. }
  85. .page_content img, .page_content video {
  86. max-width: 100% !important;
  87. height: auto !important;
  88. }
  89. .page_content.with_card {
  90. margin-top: 65px;
  91. }
  92. .page_content p {
  93. min-height: 1em;
  94. }
  95. .page_header {
  96. width: 100%;
  97. height: 65px;
  98. box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  99. position: absolute;
  100. top: 0;
  101. left: 0;
  102. display: flex;
  103. background: #fff;
  104. z-index: 999;
  105. overflow: hidden;
  106. /* transition: top .3s cubic-bezier(.78,.14,.15,.86); */
  107. }
  108. .page_header .info_card, .page_footer .info_card {
  109. flex: 1;
  110. display: flex;
  111. padding: 12px 16px;
  112. text-overflow: ellipsis;
  113. white-space: nowrap;
  114. overflow: hidden;
  115. align-items: center;
  116. }
  117. .page_footer .info_card {
  118. padding: 12px 0 12px 16px;
  119. white-space: normal;
  120. }
  121. @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
  122. .page_footer .info_card {
  123. padding-bottom: calc(12px + constant(safe-area-inset-bottom));
  124. padding-bottom: calc(12px + env(safe-area-inset-bottom));
  125. }
  126. }
  127. .page_header .info_card .info_card_avator,
  128. .page_footer .info_card .info_card_avator {
  129. border-radius: 100%;
  130. width: 32px;
  131. height: 32px;
  132. background-position: center;
  133. background-size: 100% 100%;
  134. background-repeat: no-repeat;
  135. overflow: hidden;
  136. /* margin-top: 3px; */
  137. margin-right: 8px;
  138. text-align: center;
  139. color: #ffffff;
  140. line-height: 32px;
  141. display: flex;
  142. justify-content: center;
  143. align-items: center;
  144. }
  145. .page_footer .info_card .info_card_avator {
  146. overflow: auto;
  147. flex-shrink: 0;
  148. width: 36px;
  149. height: 36px;
  150. line-height: 36px;
  151. margin-top: 2px;
  152. }
  153. .page_header .info_card .info_card_detail {
  154. flex: 1;
  155. text-overflow: ellipsis;
  156. overflow: hidden;
  157. /* height: 41px; */
  158. }
  159. .page_header .info_card .info_card_nick,
  160. .page_footer .info_card .info_card_nick {
  161. font-size: 14px;
  162. color: #222222;
  163. width: 100%;
  164. text-overflow: ellipsis;
  165. overflow: hidden;
  166. margin-bottom: 2px;
  167. }
  168. .page_header .info_card .info_card_ent,
  169. .page_footer .info_card .info_card_ent {
  170. font-size: 12px;
  171. color: #999999;
  172. width: 100%;
  173. text-overflow: ellipsis;
  174. overflow: hidden;
  175. }
  176. .page_header .action {
  177. width: 64px;
  178. font-size: 12px;
  179. text-align: center;
  180. padding: 12px 0;
  181. }
  182. .page_header .action p,
  183. .page_footer .action p {
  184. color: #222222;
  185. }
  186. .page_header .action .colfont {
  187. font-size: 19px;
  188. }
  189. .page_header .action .colfont.colzaixianzixun {
  190. color: #555CD1;
  191. }
  192. .page_header .action .colfont.colweixin {
  193. color: #57BB8A;
  194. }
  195. .page_header .action .colfont.coldianhua {
  196. color: #5895E0;
  197. }
  198. .page_header .action a, .page_header .action a:active, .page_header .action a:focus, .page_header .action a:visited {
  199. text-decoration: none;
  200. }
  201. .page_footer {
  202. position: fixed;
  203. bottom: 0;
  204. left: 0;
  205. right: 0;
  206. background: white;
  207. display: flex;
  208. border-top: 1px solid #D9D9DB;
  209. }
  210. .page_footer .action {
  211. background: #00B377;
  212. border-radius: 4px;
  213. color: white;
  214. width: 64px;
  215. font-size: 14px;
  216. text-align: center;
  217. /* padding: 8px 0; */
  218. height: 32px;
  219. margin-top: 16px;
  220. line-height: 32px;
  221. /* margin-right: 8px; */
  222. }
  223. .page_footer .action:last-child {
  224. margin-right: 16px;
  225. }
  226. /* .page_footer .action p{
  227. color:white;
  228. } */
  229. .page_footer .action_phone {
  230. background: #2E8AE6;
  231. margin-left: 8px;
  232. margin-right: 16px;
  233. }
  234. .page_footer .action_phone a {
  235. color: white;
  236. }
  237. h2.with_card {
  238. margin-top: 65px;
  239. }
  240. ol li {
  241. list-style-position: inside;
  242. }
  243. #wechat_qrcode_con {
  244. position: fixed;
  245. top: 0;
  246. left: 0;
  247. height: 100%;
  248. width: 100%;
  249. background: rgba(31, 31, 51, 0.90);
  250. display: none;
  251. z-index: 9999;
  252. }
  253. .wechat_qrcode_inner {
  254. background: #FFFFFF;
  255. border-radius: 8px;
  256. width: 280px;
  257. height: 396px;
  258. margin: 0 auto;
  259. text-align: center;
  260. padding: 24px;
  261. margin-top: 40px;
  262. font-size: 16px;
  263. color: #222222;
  264. position: relative;
  265. }
  266. .wechat_qrcode_inner img {
  267. max-width: 232px;
  268. max-height: 300px;
  269. margin-top: 24px;
  270. position: relative;
  271. }
  272. .wechat_qrcode_inner i {
  273. position: absolute;
  274. background: rgba(255, 255, 255, 0.20);
  275. border: 1px solid #FFFFFF;
  276. width: 32px;
  277. height: 32px;
  278. border-radius: 100%;
  279. left: 126px;
  280. bottom: -56px;
  281. color: #ffffff;
  282. line-height: 31px;
  283. pointer-events: none;
  284. }
  285. .linkIframe {
  286. width: 100%;
  287. height: 100%;
  288. border: none;
  289. overflow: hidden;
  290. margin-top: 65px;
  291. height: calc(100% - 65px);
  292. }
  293. .fileIframe {
  294. width: 100%;
  295. height: 100%;
  296. border: none;
  297. overflow: hidden;
  298. margin-top: 65px;
  299. height: calc(100% - 65px)
  300. }
  301. .pptTip {
  302. position: fixed;
  303. left: 50%;
  304. bottom: 3%;
  305. transform: translateX(-50%);
  306. color: #BFBFBF;
  307. }
  308. @media (orientation: landscape) {
  309. .pptTip {
  310. display: none;
  311. }
  312. .page_header {
  313. display: none;
  314. }
  315. .fileIframe {
  316. height: 100%;
  317. margin-top: 0;
  318. }
  319. }
  320. blockquote {
  321. padding-left: 10px;
  322. border-left: 3px solid #dbdbdb;
  323. color: rgba(0, 0, 0, 0.5);
  324. font-size: 15px;
  325. padding-top: 4px;
  326. margin: 1em 0;
  327. }
  328. #wechat_contact {
  329. width: 64px;
  330. height: 64px;
  331. content: "";
  332. padding: 4px;
  333. border-radius: 50%;
  334. position: fixed;
  335. bottom: 50px;
  336. background-position: center;
  337. background-color: #534CD9;
  338. }
  339. .wechat_contact_avator {
  340. width: 52px;
  341. height: 52px;
  342. margin-right: auto;
  343. margin-left: auto;
  344. border-radius: 100%;
  345. position: relative;
  346. background-color: white;
  347. overflow: hidden;
  348. text-align: center;
  349. background-position: center;
  350. background-size: 100% 100%;
  351. background-repeat: no-repeat;
  352. color: #ffffff;
  353. line-height: 52px;
  354. font-size: 20px;
  355. }
  356. .wechat_contact_img {
  357. width: 56px;
  358. height: 56px;
  359. padding: 2px;
  360. position: relative;
  361. top: 50%;
  362. transform: translateY(-50%);
  363. background-color: white;
  364. border-radius: 50%;
  365. }
  366. .wechat_contact_btn {
  367. background: #534CD9;
  368. border: 1px solid #3F3AA6;
  369. box-shadow: 0 8px 12px -4px rgba(76, 76, 217, 0.30);
  370. border-radius: 2px;
  371. color: white;
  372. text-align: center;
  373. margin-top: -4px;
  374. position: relative;
  375. }
  376. /* #wechat_contact .wechat_card{
  377. display: none;
  378. } */
  379. /* #wechat_contact:hover .wechat_card{
  380. display:block;
  381. } */
  382. .wechat_card {
  383. background: #FFFFFF;
  384. border: 1px solid #E6E7EB;
  385. box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.20);
  386. border-radius: 8px;
  387. padding: 20px;
  388. position: absolute;
  389. top: -9px;
  390. transform: translateY(-100%);
  391. width: 240px;
  392. right: 0;
  393. display: none;
  394. }
  395. .wechat_card .colfont {
  396. color: rgba(191, 191, 191);
  397. margin-right: 20px;
  398. }
  399. .wechat_card_arrow {
  400. background: #fff;
  401. width: 9.485281px;
  402. height: 9.485281px;
  403. transform: rotate(45deg);
  404. position: absolute;
  405. display: block;
  406. border-color: transparent;
  407. border-style: solid;
  408. bottom: -4.5px;
  409. position: absolute;
  410. right: 26px;
  411. }
  412. .wechat_contact_info {
  413. display: flex;
  414. font-size: 20px;
  415. color: #222222;
  416. margin-bottom: 20px;
  417. word-break: break-all;
  418. }
  419. .wechat_contact_phone {
  420. font-size: 14px;
  421. color: #999999;
  422. line-height: 22px;
  423. }
  424. .wechat_contact_qrcode {
  425. background: #FFFFFF;
  426. border: 1px solid #E6E7EB;
  427. border-radius: 4px;
  428. margin-top: 4px;
  429. }
  430. .wechat_contact_qrcode img {
  431. max-height: 240px;
  432. width: 196px;
  433. object-fit: cover;
  434. }
  435. #img_preview_container {
  436. background: black;
  437. position: fixed;
  438. top: 0;
  439. bottom: 0;
  440. left: 0;
  441. right: 0;
  442. text-align: center;
  443. display: none;
  444. z-index: 1000;
  445. overscroll-behavior: contain;
  446. }
  447. #img_preview_container .board {
  448. width: 100%;
  449. height: 100%;
  450. }
  451. #img_preview_container img {
  452. width: 100vw;
  453. height: 100vh;
  454. object-fit: contain;
  455. /* top:50%; */
  456. position: relative;
  457. /* transform:translateY(-50%) */
  458. }
  459. #huke_goods {
  460. height: 100vw;
  461. }
  462. .huke_goods_content {
  463. padding: 16px;
  464. }
  465. .form-block-preview {
  466. display: none !important;
  467. }
  468. .ops button {
  469. border: 1px solid #4c96e9;
  470. background: none;
  471. border-radius: 1rem;
  472. font-size: 1rem;
  473. padding: 1rem 2rem;
  474. color: #4c96e9;
  475. }
  476. </style>
  477. </head>
  478. <body>
  479. <div class="page_content with_card">
  480. <div class="my-block-from not-inarticle" id="huke_form_280258" data-value="280258" data-name="来晋就业创业人才意向征集表" style="background: rgb(255, 255, 255);">
  481. <div class="submit_success">
  482. <img src="{{ theme_asset('mobile/images/nqetx-gs9p1.jpg') }}" alt="提交成功" width="120">
  483. <div class="form_submit_success">您的资料已成功登记</div>
  484. <div class="submit_success-guideText">长按识别,添加客服微信,随时了解动态</div>
  485. <div class="submit_success-qrCode">
  486. <div class="fishd-image-loader fishd-image-loader-loaded">
  487. <img src="{{ theme_asset('mobile/images/success_qrcode.png') }}">
  488. </div>
  489. </div>
  490. <div class="submit_success-tips"></div>
  491. <div class="ops">
  492. <button onclick="javascrtpt:window.location.href='https://www.jucai.gov.cn/mobile/talent/shuobo'">
  493. 返回硕博人才专区
  494. </button>
  495. </div>
  496. </div>
  497. </div>
  498. </div>
  499. </body>
  500. </html>