style.less 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. @subject-maxwidth:1460px;
  2. @subject-minwidth:1220px;
  3. @font-face {
  4. font-family: 'iconfont';
  5. src: url('../iconfont/iconfont.eot');
  6. src: url('../iconfont/iconfont.eot?#iefix') format('embedded-opentype'),
  7. url('../iconfont/iconfont.woff') format('woff'),
  8. url('../iconfont/iconfont.ttf') format('truetype'),
  9. url('../iconfont/iconfont.svg#iconfont') format('svg');
  10. }
  11. *{
  12. margin:0;
  13. padding:0;
  14. list-style: none;
  15. border:none;
  16. font-style: normal;
  17. }
  18. html{
  19. width:100%;
  20. min-width: @subject-minwidth;
  21. font-family: "Source Han Sans SC","HanHei SC","PingFang SC","Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
  22. }
  23. img{
  24. display:block;
  25. }
  26. .iconfont{
  27. font-family:"iconfont" !important;
  28. font-size:14px;font-style:normal;
  29. -webkit-font-smoothing: antialiased;
  30. -webkit-text-stroke-width: 0.2px;
  31. -moz-osx-font-smoothing: grayscale;
  32. }
  33. .streamer{
  34. width: 100%;
  35. background: #fc3c3c;
  36. border-bottom: 2px solid #fff;
  37. img{
  38. width: 100%;
  39. }
  40. }
  41. .content-banner-box{
  42. width:100%;
  43. height:360px;
  44. .layui-carousel{
  45. div[carousel-item]{
  46. div{
  47. a{
  48. display: block;
  49. width: 100%;
  50. height: 100%;
  51. position: relative;
  52. img{
  53. position: absolute;
  54. left: 50%;
  55. margin-left: -751px;
  56. height: 100%;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. div[carousel-item]{
  63. div:nth-child(1){
  64. background: orange;
  65. }
  66. div:nth-child(2){
  67. background: aquamarine;
  68. }
  69. }
  70. }
  71. .index-entries{
  72. width:100%;
  73. padding:20px 0;
  74. background: #f5f5f5;
  75. .entries-content-box{
  76. width:@subject-minwidth;
  77. height:100%;
  78. margin: 0 auto;
  79. ul:after{
  80. content:"";
  81. display: block;
  82. clear: both;
  83. }
  84. ul{
  85. li:nth-child(1){
  86. margin: 0;
  87. }
  88. li{
  89. float:left;
  90. margin-left: 20px;
  91. background: #fff;
  92. box-shadow: 0 0 0 rgba(0,0,0,0);
  93. transition: box-shadow 0.3s ease-in-out;
  94. a{
  95. display: inline-block;
  96. width:230px;
  97. height: 70px;
  98. padding: 23px 30px;
  99. position: relative;
  100. h5{
  101. display: inline-block;
  102. float:left;
  103. font-size: 16px;
  104. color:#000;
  105. line-height: 70px;
  106. i{
  107. color: #fb752c;
  108. font-size: 18px;
  109. }
  110. }
  111. span{
  112. display: inline-block;
  113. float: right;
  114. width:71px;
  115. height:71px;
  116. i{
  117. font-size: 65px;
  118. color: #0cb46a;
  119. }
  120. }
  121. }
  122. a:hover{
  123. color: #000;
  124. }
  125. }
  126. li:hover{
  127. box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  128. }
  129. }
  130. }
  131. }
  132. .statistical{
  133. padding:80px 0;
  134. .statistical-content-box{
  135. width: @subject-minwidth;
  136. margin: 0 auto;
  137. .statistical-title-box{
  138. width: @subject-minwidth;
  139. margin: 0 auto;
  140. h1{
  141. text-align: center;
  142. font-size: 34px;
  143. span{
  144. display: inline-block;
  145. position: relative;
  146. top: -12px;
  147. width: 57px;
  148. height: 1px;
  149. margin: 0 20px;
  150. background: #d8d8d8;
  151. }
  152. }
  153. .introduce-text{
  154. display: block;
  155. text-align: center;
  156. font-size: 14px;
  157. padding:6px 0;
  158. color: #999;
  159. }
  160. }
  161. .statistical-content{
  162. .options{
  163. margin: 40px 0;
  164. ul:after{
  165. content: '';
  166. display: block;
  167. clear: both;
  168. }
  169. ul{
  170. li{
  171. float: left;
  172. width: 9%;
  173. text-align: center;
  174. a{
  175. display: inline-block;
  176. }
  177. a:hover{
  178. color: #0cb46a;
  179. border-bottom: 1px solid #0cb46a;
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  187. .operating-video{
  188. width: 100%;
  189. padding: 80px 0;
  190. .video-title-box{
  191. width: @subject-minwidth;
  192. margin: 0 auto;
  193. h1{
  194. text-align: center;
  195. font-size: 34px;
  196. span{
  197. display: inline-block;
  198. position: relative;
  199. top: -12px;
  200. width: 57px;
  201. height: 1px;
  202. margin: 0 20px;
  203. background: #d8d8d8;
  204. }
  205. }
  206. .introduce-text{
  207. display: block;
  208. text-align: center;
  209. font-size: 14px;
  210. padding:6px 0;
  211. color: #999;
  212. }
  213. }
  214. .video-content:after{
  215. content: '';
  216. display: block;
  217. clear: both;
  218. }
  219. .video-content{
  220. width: 1220px;
  221. height: 435px;
  222. margin: 40px auto 0;
  223. box-shadow: 0 3px 15px rgba(0,0,0,0.5);
  224. .video-box{
  225. background: #000;
  226. float: left;
  227. width: 805px;
  228. height:100%;
  229. video{
  230. width: 100%;
  231. height: 100%;
  232. }
  233. }
  234. .video-select{
  235. float: left;
  236. width: 415px;
  237. height: 100%;
  238. ul{
  239. margin-left: 30px;
  240. padding-top: 10px;
  241. height: 100%;
  242. box-sizing: border-box;
  243. overflow: hidden;
  244. overflow-y: scroll;
  245. li:first-child{
  246. h6{
  247. font-weight: 600;
  248. }
  249. }
  250. li{
  251. width: 355px;
  252. height: 64px;
  253. padding: 20px 0;
  254. border-bottom: 1px dashed #ccc;
  255. .video-img{
  256. float: left;
  257. width: 116px;
  258. height: 100%;
  259. background: aquamarine;
  260. position: relative;
  261. img{
  262. width: 100%;
  263. height: 100%;
  264. }
  265. span{
  266. display: none;
  267. width: 100%;
  268. height: 100%;
  269. position: absolute;
  270. top: 0;
  271. left: 0;
  272. background: rgba(0,0,0,0.5);
  273. color: #fff;
  274. text-align: center;
  275. line-height: 80px;
  276. }
  277. }
  278. .video-text{
  279. float: left;
  280. width: 239px;
  281. h6,span{
  282. display: block;
  283. overflow: hidden;
  284. text-overflow: ellipsis;
  285. white-space: nowrap;
  286. }
  287. h6{
  288. font-size: 16px;
  289. margin: 6px 0 8px 14px;
  290. }
  291. span{
  292. margin-left: 14px;
  293. line-height: 18px;
  294. color: #666;
  295. font-size: 12px;
  296. }
  297. }
  298. }
  299. li:hover{
  300. h6{
  301. color: #0cb46a;
  302. }
  303. }
  304. li:last-child{
  305. border: none;
  306. }
  307. }
  308. }
  309. }
  310. }
  311. .recommend-content{
  312. padding:80px 0;
  313. background: #f5f5f5;
  314. .recommend-title-box{
  315. width: @subject-minwidth;
  316. margin: 0 auto;
  317. h1{
  318. text-align: center;
  319. font-size: 34px;
  320. span{
  321. display: inline-block;
  322. position: relative;
  323. top: -12px;
  324. width: 57px;
  325. height: 1px;
  326. margin: 0 20px;
  327. background: #d8d8d8;
  328. }
  329. }
  330. .introduce-text{
  331. display: block;
  332. text-align: center;
  333. font-size: 14px;
  334. padding:6px 0;
  335. color: #999;
  336. }
  337. }
  338. .recommend-show-box{
  339. width:@subject-minwidth;
  340. margin: 0 auto;
  341. .recommend-show-line{
  342. width:100%;
  343. font-size: 0;
  344. a{
  345. float:left;
  346. margin: 40px 20px 0 0 ;
  347. display: inline-block;
  348. width:290px;
  349. height:400px;
  350. overflow: hidden;
  351. box-shadow: 0 0 0 rgba(0,0,0,0);
  352. transition: box-shadow 0.3s ease-in-out;
  353. background: #fff;
  354. img{
  355. width:290px;
  356. height:200px;
  357. }
  358. .company-name{
  359. box-sizing: border-box;
  360. width:100%;
  361. margin: 0;
  362. border: 1px solid #ddd;
  363. transition: border 0.3s ease-in-out;
  364. border-top:none;
  365. padding-bottom: 39px;
  366. h5{
  367. padding:61px 40px 0 40px;
  368. text-align: center;
  369. overflow: hidden;
  370. text-overflow: ellipsis;
  371. font-size: 16px;
  372. white-space: nowrap;
  373. line-height: 19px;
  374. }
  375. div{
  376. box-sizing: border-box;
  377. width:100%;
  378. padding:0 7px;
  379. margin:12px 0 0 0;
  380. text-align: center;
  381. font-size: 12px;
  382. color:#999;
  383. line-height: 12px;
  384. }
  385. span{
  386. display: inline-block;
  387. width:78px;
  388. height:28px;
  389. border: 1px solid #333;
  390. font-size: 12px;
  391. line-height: 30px;
  392. text-align: center;
  393. position: relative;
  394. margin-top: 26px;
  395. left:50%;
  396. margin-left: -40px;
  397. }
  398. span:hover{
  399. border:1px solid #ff5a00;
  400. background: #ff5a00;
  401. color:#fff;
  402. }
  403. }
  404. }
  405. a:hover{
  406. color:#333;
  407. box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  408. .company-name{
  409. border: 1px solid #fff;
  410. border-top:none;
  411. }
  412. }
  413. a:nth-child(4){
  414. margin-right: 0;
  415. }
  416. }
  417. .recommend-show-line:after{
  418. content:"";
  419. display: block;
  420. clear: both;
  421. }
  422. }
  423. }
  424. .compay-introduce{
  425. width:100%;
  426. height:500px;
  427. .compay-introduce-leftimg{
  428. height:100%;
  429. width:53%;
  430. background: cornflowerblue;
  431. float: left;
  432. overflow: hidden;
  433. }
  434. .compay-introduce-rightimg{
  435. height:100%;
  436. width:47%;
  437. background: dimgrey;
  438. float: right;
  439. overflow: hidden;
  440. }
  441. .compay-introduce-content{
  442. position: relative;
  443. width:@subject-minwidth;
  444. height:100%;
  445. margin:0 auto;
  446. .compay-introduce-left-content{
  447. position: absolute;
  448. top: 60px;
  449. left:0;
  450. width:500px;
  451. height:350px;
  452. padding:40px 50px 0;
  453. background: #fff;
  454. border-radius: 4px;
  455. .content-title{
  456. height:70px;
  457. position: absolute;
  458. padding-left: 70px;
  459. span{
  460. position: absolute;
  461. left: 0;
  462. top: 0;
  463. display: inline-block;
  464. width:70px;
  465. height:70px;
  466. border-radius: 50%;
  467. i{
  468. color: #fb752c;
  469. font-size: 65px;
  470. }
  471. }
  472. h1{
  473. display: block;
  474. font-size: 18px;
  475. margin:10px 0 0 19px;
  476. color:#666;
  477. }
  478. p{
  479. margin:5px 0 0 19px;
  480. color:#999;
  481. }
  482. }
  483. .content-img-box{
  484. width:500px;
  485. position: absolute;
  486. top:50%;
  487. margin-top: -70px;
  488. p{
  489. margin-bottom: 20px;
  490. color: #666;
  491. height: 60px;
  492. font-size: 12px;
  493. }
  494. img{
  495. width:235px;
  496. height:160px;
  497. display: inline-block;
  498. }
  499. .img-left{
  500. float: left;
  501. }
  502. .img-right{
  503. float: right;
  504. }
  505. }
  506. .content-img-box:after{
  507. content:"";
  508. display: block;
  509. clear: both;
  510. }
  511. }
  512. .compay-introduce-right-content{
  513. width:500px;
  514. height:400px;
  515. position: absolute;
  516. top:48px;
  517. left:52%;
  518. margin-left: 80px;
  519. color: #fff;
  520. h1{
  521. font-size: 24px;
  522. margin-bottom: 8px;
  523. }
  524. p{
  525. font-size: 14px;
  526. margin-bottom: 3px;
  527. line-height: 25px;
  528. }
  529. ul{
  530. overflow: hidden;
  531. margin-top: 27px;
  532. li{
  533. border-radius: 50%;
  534. float: left;
  535. margin:0 50px 29px 0;
  536. cursor: pointer;
  537. i{
  538. display: block;
  539. width:66px;
  540. height:66px;
  541. border-radius: 50%;
  542. font-size: 60px;
  543. color: #fdec90;
  544. }
  545. }
  546. }
  547. ul:after{
  548. content: "";
  549. display: block ;
  550. clear: both;
  551. }
  552. }
  553. }
  554. }
  555. .serice-flow{
  556. margin-top:54px;
  557. padding-bottom: 60px;
  558. .serice-flow-content{
  559. width:@subject-minwidth;
  560. margin:0 auto;
  561. text-align: center;
  562. h1{
  563. font-size: 24px;
  564. color:#333;
  565. font-weight:500;
  566. }
  567. ul:after{
  568. content:"";
  569. display: block;
  570. clear: both;
  571. }
  572. ul{
  573. margin-top: 52px;
  574. li{
  575. float: left;
  576. width:174px;
  577. .iconfont{
  578. display: block;
  579. width:55px;
  580. height:55px;
  581. margin: 0 auto;
  582. font-size: 50px;
  583. color: #ff5a00;
  584. }
  585. p{
  586. margin-top: 16px;
  587. font-size: 16px;
  588. color:#333;
  589. }
  590. span{
  591. display: block;
  592. margin-top: 3px;
  593. font-size: 12px;
  594. color:#999;
  595. }
  596. }
  597. }
  598. div{
  599. ul{
  600. margin-top: 28px;
  601. li{
  602. float: left;
  603. width:174px;
  604. position: relative;
  605. p{
  606. position: relative;
  607. margin: 0 auto;
  608. width: 33px;
  609. height:33px;
  610. border: 1px solid #ccc;
  611. border-radius: 50%;
  612. i{
  613. color:#999;
  614. font-size: 14px;
  615. position: absolute;
  616. top: 8px;
  617. left:13px;
  618. }
  619. }
  620. span{
  621. display: block;
  622. width:125px;
  623. height: 1px;
  624. margin: 17px 0 0 5px;
  625. background: #ccc;
  626. position: absolute;
  627. top: 0;
  628. left: 106px;
  629. }
  630. }
  631. }
  632. ul:after{
  633. content:"";
  634. display: block;
  635. clear: both;
  636. }
  637. }
  638. }
  639. }
  640. .floor-ad{
  641. width: @subject-minwidth;
  642. margin: 0 auto;
  643. position: relative;
  644. img{
  645. width: 100%;
  646. }
  647. span {
  648. color: #fff;
  649. position: absolute;
  650. display: block;
  651. top: 0;
  652. left: 0;
  653. background: rgba(0, 0, 0, 0.5);
  654. }
  655. }
  656. .company-aptitude{
  657. padding-top: 90px;
  658. padding-bottom: 15px;
  659. background: #f5f5f5;
  660. .company-aptitude-content{
  661. width:@subject-minwidth;
  662. margin: 0 auto;
  663. .aptitude-title-box{
  664. width: @subject-minwidth;
  665. margin: 0 auto;
  666. h1{
  667. text-align: center;
  668. font-size: 34px;
  669. span{
  670. display: inline-block;
  671. position: relative;
  672. top: -12px;
  673. width: 57px;
  674. height: 1px;
  675. margin: 0 20px;
  676. background: #d8d8d8;
  677. }
  678. }
  679. .introduce-text{
  680. display: block;
  681. text-align: center;
  682. font-size: 14px;
  683. padding:6px 0;
  684. color: #999;
  685. }
  686. }
  687. .aptitude-content-box{
  688. margin-top: 35px;
  689. height:482px;
  690. .content-text{
  691. width: 360px;
  692. height:362px;
  693. padding: 60px;
  694. background: #fff;
  695. float: left;
  696. color:#666;
  697. h1{
  698. font-size: 30px;
  699. font-weight: 400;
  700. text-align: center;
  701. margin-bottom: 20px;
  702. }
  703. p{
  704. margin-bottom: 5px;
  705. line-height: 35px;
  706. font-size: 14px;
  707. }
  708. a{
  709. border: 1px solid #999;
  710. background: none;
  711. padding: 5px 15px;
  712. font-size: 12px;
  713. color:#666
  714. }
  715. a:hover{
  716. border: 1px solid #ff5a00;
  717. background: #ff5a00;
  718. color: #fff;
  719. }
  720. }
  721. .content-banner{
  722. width:740px;
  723. float: right;
  724. height:100%;
  725. .layui-carousel{
  726. background-image: url("../images/zbgimg.jpg");
  727. div{
  728. background: rgba(0,0,0,0);
  729. img{
  730. display: block;
  731. height: 100%;
  732. padding: 10px 0;
  733. margin: 0 auto;
  734. box-sizing: border-box;
  735. }
  736. }
  737. }
  738. }
  739. }
  740. }
  741. }
  742. .show-img:after{
  743. content:"";
  744. display: block;
  745. clear: both;
  746. }
  747. .show-img{
  748. padding-top: 50px;
  749. padding-bottom: 15px;
  750. background: #f5f5f5;
  751. div{
  752. float: left;
  753. margin-right: 0.7%;
  754. a{
  755. display: block;
  756. margin-bottom: 10px;
  757. overflow: hidden;
  758. img{
  759. margin: 0 auto;
  760. }
  761. }
  762. }
  763. div:after{
  764. contetn:"";
  765. display: block;
  766. clear: both;
  767. }
  768. .show-img-left{
  769. width: 24%;
  770. .img-left-top{
  771. height:330px;
  772. background: beige;
  773. img{
  774. height: 100%;
  775. position: relative;
  776. left: -105px;
  777. }
  778. }
  779. .img-left-bottom{
  780. height:240px;
  781. background: blueviolet;
  782. img{
  783. height: 100%;
  784. width: 100%;
  785. }
  786. }
  787. }
  788. .show-img-content{
  789. width:37.5%;
  790. .img-content-top{
  791. height:260px;
  792. background: brown;
  793. img{
  794. width: 100%;
  795. height: 100%;
  796. position: relative;
  797. top: 0px;
  798. }
  799. }
  800. .img-content-bottom{
  801. height:310px;
  802. background: coral;
  803. img{
  804. height: 100%;
  805. width: 100%;
  806. }
  807. }
  808. }
  809. .show-img-right{
  810. width:37%;
  811. margin: 0;
  812. .img-right-top{
  813. height:320px;
  814. background: cyan;
  815. img{
  816. width: 100%;
  817. }
  818. }
  819. .img-right-bottom{
  820. height:250px;
  821. background: darkgray;
  822. img{
  823. height: 100%;
  824. width: 100%;
  825. position: relative;
  826. }
  827. }
  828. }
  829. }
  830. .index-kgl{
  831. padding: 90px 0 100px;
  832. .index-kgl-content{
  833. width:@subject-minwidth;
  834. margin: 0 auto;
  835. position: relative;
  836. .kgl-title-box{
  837. width: @subject-minwidth;
  838. margin: 0 auto;
  839. h1{
  840. text-align: center;
  841. font-size: 34px;
  842. span{
  843. display: inline-block;
  844. position: relative;
  845. top: -12px;
  846. width: 57px;
  847. height: 1px;
  848. margin: 0 20px;
  849. background: #d8d8d8;
  850. }
  851. }
  852. .introduce-text{
  853. display: block;
  854. text-align: center;
  855. font-size: 14px;
  856. padding:6px 0;
  857. color: #999;
  858. }
  859. }
  860. .kgl-content-box{
  861. height:460px;
  862. margin-top: 35px;
  863. padding: 0 25px;
  864. .regular-box{
  865. width:25%;
  866. height:410px;
  867. margin-left: -1px;
  868. float: left;
  869. border: 1px solid #ccc;
  870. box-sizing: border-box;
  871. position: relative;
  872. .kgl-content-normal{
  873. width:100%;
  874. height:100%;
  875. position: relative;
  876. .normal-top{
  877. width:100%;
  878. height:140px;
  879. background: #f6f6f6;
  880. position: absolute;
  881. i{
  882. display: block;
  883. width:43px;
  884. height:43px;
  885. background: #999;
  886. position: absolute;
  887. top: 50%;
  888. left: 50%;
  889. margin-left: -21px;
  890. margin-top: -45px;
  891. }
  892. h1{
  893. font-size: 20px;
  894. text-align: center;
  895. margin-top: 86px;
  896. color:#333;
  897. }
  898. }
  899. .normal-bottom{
  900. width:100%;
  901. position: absolute;
  902. top: 140px;
  903. margin-top: 32px;
  904. ul{
  905. li{
  906. padding-left: 27px;
  907. line-height: 28px;
  908. font-size: 14px;
  909. color:#333;
  910. overflow: hidden;
  911. text-overflow: ellipsis;
  912. white-space:nowrap;
  913. }
  914. }
  915. }
  916. .kgl-bottom-but{
  917. display: block;
  918. position: absolute;
  919. width: 25px;
  920. height: 22px;
  921. bottom: 15px;
  922. right: 0;
  923. padding: 0 20px;
  924. i{
  925. display: block;
  926. position: absolute;
  927. top: -15px;
  928. left: 8px;
  929. font-size: 40px;
  930. color: #999;
  931. }
  932. }
  933. }
  934. }
  935. .kgl-content-enlarge{
  936. display: none;
  937. width: 354px;
  938. height: 460px;
  939. background: #fff;
  940. position: absolute;
  941. top: -6%;
  942. left: -11%;
  943. z-index: 99;
  944. box-shadow: 0 5px 30px #ccc;
  945. transform: scale(0.9);
  946. transition: transform 0.3s ease-in-out;
  947. .enlarge-top{
  948. height: 167px;
  949. background: #ccc;
  950. color: #fff;
  951. .icons{
  952. padding-top: 10%;
  953. i{
  954. width: 42px;
  955. height: 42px;
  956. display: block;
  957. margin: 0 auto;
  958. background: coral;
  959. }
  960. }
  961. p{
  962. font-size: 20px;
  963. text-align: center;
  964. margin-top: 30px;
  965. }
  966. }
  967. .enlarge-bottom{
  968. padding: 25px 30px 0;
  969. position: relative;
  970. .enlarge-bottom-Preference:after{
  971. content: '';
  972. display: block;
  973. clear: both;
  974. }
  975. .enlarge-bottom-Preference{
  976. display: block;
  977. font-size: 12px;
  978. padding-bottom: 18px;
  979. border-bottom: 1px dashed #e8e8e8;
  980. img{
  981. float: left;
  982. width: 100px;
  983. height: 68px;
  984. display: inline-block;
  985. background: coral;
  986. margin-right: 12px;
  987. }
  988. span{
  989. float: left;
  990. display: inline-block;
  991. width: 180px;
  992. h6{
  993. color: #333;
  994. }
  995. p{
  996. color: #999;
  997. line-height: 26px;
  998. padding-top: 8px;
  999. text-overflow: ellipsis;
  1000. }
  1001. }
  1002. }
  1003. .enlarge-bottom-line{
  1004. margin-top: 15px;
  1005. ul{
  1006. li{
  1007. height: 24px;
  1008. font-size: 14px;
  1009. line-height: 24px;
  1010. overflow: hidden;
  1011. text-overflow: ellipsis;
  1012. white-space:nowrap;
  1013. a{
  1014. color: #666;
  1015. }
  1016. }
  1017. li:hover{
  1018. a{
  1019. color:#0cb46a;
  1020. }
  1021. }
  1022. }
  1023. }
  1024. .enlarge-bottom-btn{
  1025. width: 29px;
  1026. height: 25px;
  1027. overflow: hidden;
  1028. position: absolute;
  1029. bottom: -20px;
  1030. right: 20px;
  1031. a{
  1032. display: block;
  1033. width: 100%;
  1034. height: 100%;
  1035. position: relative;
  1036. i{
  1037. position: absolute;
  1038. top: -10px;
  1039. right: -7px;
  1040. display: inline-block;
  1041. font-size: 45px;
  1042. color: #999;
  1043. }
  1044. }
  1045. }
  1046. }
  1047. }
  1048. .kgl-content-enlarge:hover{
  1049. transform: scale(1);
  1050. }
  1051. }
  1052. }
  1053. }
  1054. .index-cooperative{
  1055. padding: 90px 0 100px;
  1056. background: #f5f5f5;
  1057. .cooperative-content{
  1058. width:@subject-minwidth;
  1059. margin:0 auto;
  1060. .cooperative-title-box{
  1061. height: 100%;
  1062. margin: 0 auto;
  1063. h1{
  1064. text-align: center;
  1065. font-size: 34px;
  1066. span{
  1067. display: inline-block;
  1068. position: relative;
  1069. top: -12px;
  1070. width: 57px;
  1071. height: 1px;
  1072. margin: 0 20px;
  1073. background: #d8d8d8;
  1074. }
  1075. }
  1076. .introduce-text{
  1077. display: block;
  1078. text-align: center;
  1079. font-size: 14px;
  1080. padding:6px 0;
  1081. color: #999;
  1082. }
  1083. }
  1084. .cooperative-content-box{
  1085. div{
  1086. margin-top: 37px;
  1087. ul:after{
  1088. content:"";
  1089. display: block;
  1090. clear: both;
  1091. }
  1092. ul{
  1093. li{
  1094. float: left;
  1095. width: 277px;
  1096. height: 189px;
  1097. margin-right: 37px;
  1098. background: bisque;
  1099. position: relative;
  1100. overflow: hidden;
  1101. a{
  1102. display: inline-block;
  1103. width: 100%;
  1104. height: 100%;
  1105. span{
  1106. position: absolute;
  1107. display: block;
  1108. width: 100%;
  1109. height: 35px;
  1110. background: rgba(0,0,0,0.3);
  1111. bottom: -35px;
  1112. text-align: center;
  1113. color: #fff;
  1114. line-height: 40px;
  1115. font-size: 18px;
  1116. font-weight: 600;
  1117. letter-spacing: 5px;
  1118. }
  1119. img{
  1120. width: 100%;
  1121. }
  1122. }
  1123. }
  1124. }
  1125. }
  1126. }
  1127. }
  1128. }
  1129. .index-flrz{
  1130. margin:90px 0 100px;
  1131. .index-flrz-content{
  1132. width:@subject-minwidth;
  1133. margin:0 auto;
  1134. .flrz-title-box{
  1135. height: 100%;
  1136. margin: 0 auto;
  1137. h1{
  1138. text-align: center;
  1139. font-size: 34px;
  1140. span{
  1141. display: inline-block;
  1142. position: relative;
  1143. top: -12px;
  1144. width: 57px;
  1145. height: 1px;
  1146. margin: 0 20px;
  1147. background: #d8d8d8;
  1148. }
  1149. }
  1150. .introduce-text{
  1151. display: block;
  1152. text-align: center;
  1153. font-size: 14px;
  1154. padding:6px 0;
  1155. color: #999;
  1156. }
  1157. }
  1158. .flrz-content-box{
  1159. margin-top: 70px;
  1160. ul:after{
  1161. content:"";
  1162. display: block;
  1163. clear: both;
  1164. }
  1165. ul{
  1166. padding: 0 130px;
  1167. li{
  1168. float: left;
  1169. text-align: center;
  1170. a{
  1171. color: #666;
  1172. display: inline-block;
  1173. padding: 10px 0;
  1174. margin-bottom: 20px;
  1175. font-size: 23px;
  1176. border-bottom: 2px solid #f39800;
  1177. letter-spacing: 5px;
  1178. img{
  1179. margin: 0 50px;
  1180. background: coral;
  1181. position: relative;
  1182. top: -16px;
  1183. }
  1184. }
  1185. a:hover{
  1186. color:#f39800;
  1187. }
  1188. }
  1189. }
  1190. }
  1191. }
  1192. }
  1193. .position-element{
  1194. .bottom-position{
  1195. position: fixed;
  1196. bottom: -90px;
  1197. left: 0;
  1198. width: 100%;
  1199. height: 90px;
  1200. z-index: 999;
  1201. background: rgba(0,0,0,0.6);
  1202. }
  1203. .left-position{
  1204. background: #fff;
  1205. box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  1206. width: 180px;
  1207. height: auto;
  1208. position: fixed;
  1209. bottom: 115px;
  1210. left: 10px;
  1211. z-index: 999;
  1212. .attract_notice{
  1213. height:auto;
  1214. width:100%;
  1215. background: #fff;
  1216. }
  1217. .attract_title{
  1218. height:auto;
  1219. width:100%;
  1220. line-height: 45px;
  1221. display: flex;
  1222. align-items: center;
  1223. justify-content: flex-start;
  1224. background: #0cb46a;
  1225. p{
  1226. color: #fff;
  1227. font-size:18px;
  1228. }
  1229. }
  1230. .attract_icon{
  1231. display: block;
  1232. height:24px;
  1233. width:24px;
  1234. margin-right:10px;
  1235. margin-left:15px;
  1236. background: url(/images/notice.png)center no-repeat;
  1237. background-size:100%;
  1238. }
  1239. .attract_content{
  1240. height:auto;
  1241. min-height:80px;
  1242. width:auto;
  1243. background: #fff;
  1244. border:3px solid #0cb46a;
  1245. border-bottom:none;
  1246. padding:5px;
  1247. box-sizing: border-box;
  1248. p{
  1249. // line-height: 30px;
  1250. span{
  1251. color: red;
  1252. margin:0 5px;
  1253. }
  1254. }
  1255. }
  1256. img{
  1257. width: 100%;
  1258. height: 100%;
  1259. }
  1260. }
  1261. .right-position{
  1262. position: fixed;
  1263. right: 38px;
  1264. bottom: 115px;
  1265. z-index: 999;
  1266. div{
  1267. background: #fff;
  1268. box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  1269. ul{
  1270. width: 50px;
  1271. li{
  1272. height: 50px;
  1273. width: 100%;
  1274. border-bottom: 1px solid #ddd;
  1275. a{
  1276. position: relative;
  1277. display: block;
  1278. width: 100%;
  1279. height: 100%;
  1280. i{
  1281. position: absolute;
  1282. top: 50%;
  1283. left: 50%;
  1284. margin-top: -20px;
  1285. margin-left: -18px;
  1286. font-size: 36px;
  1287. color: #0cb46a;
  1288. }
  1289. i:hover{
  1290. color: #ff5a00;
  1291. }
  1292. }
  1293. .QRcode{
  1294. display: none;
  1295. position: absolute;
  1296. top: -160px;
  1297. left: -180px;
  1298. padding: 10px;
  1299. span{
  1300. display: block;
  1301. i{
  1302. font-size: 14px;
  1303. display: block;
  1304. text-align: center;
  1305. line-height: 30px;
  1306. }
  1307. img{
  1308. width: 140px;
  1309. }
  1310. }
  1311. }
  1312. }
  1313. }
  1314. }
  1315. .service-bar{
  1316. }
  1317. .slide-help-new{
  1318. margin-top: 20px;
  1319. ul{
  1320. li{
  1321. position: relative;
  1322. }
  1323. li:hover{
  1324. .QRcode{
  1325. display: block;
  1326. }
  1327. }
  1328. }
  1329. }
  1330. }
  1331. }
  1332. @media screen and (min-width: 1460px){
  1333. .content-banner-box{
  1334. height:460px;
  1335. .layui-carousel{
  1336. div[carousel-item]{
  1337. div{
  1338. a{
  1339. img{
  1340. margin-left: -960px;
  1341. }
  1342. }
  1343. }
  1344. }
  1345. }
  1346. }
  1347. .index-entries{
  1348. .entries-content-box{
  1349. width:@subject-maxwidth;
  1350. ul{
  1351. li{
  1352. a{
  1353. width:280px;
  1354. padding: 35px;
  1355. h5{
  1356. font-size: 22px;
  1357. i{
  1358. color: #fb752c;
  1359. font-size: 26px;
  1360. }
  1361. }
  1362. }
  1363. }
  1364. }
  1365. }
  1366. }
  1367. .statistical{
  1368. .statistical-content-box{
  1369. width:@subject-maxwidth;
  1370. .statistical-title-box{
  1371. width:@subject-maxwidth;
  1372. h1{
  1373. font-size: 42px;
  1374. span{
  1375. margin: 0 26px;
  1376. }
  1377. }
  1378. .introduce-text{
  1379. font-size: 18px;
  1380. }
  1381. }
  1382. }
  1383. }
  1384. .operating-video{
  1385. .video-title-box{
  1386. width:@subject-maxwidth;
  1387. h1{
  1388. font-size: 42px;
  1389. span{
  1390. margin: 0 26px;
  1391. }
  1392. }
  1393. .introduce-text{
  1394. font-size: 18px;
  1395. }
  1396. }
  1397. .video-content{
  1398. width: 1460px;
  1399. height: 543px;
  1400. margin: 40px auto 0;
  1401. .video-box{
  1402. width: 966px;
  1403. }
  1404. .video-select{
  1405. width: 494px;
  1406. ul{
  1407. margin-left: 40px;
  1408. padding-top: 27px;
  1409. height: 100%;
  1410. overflow: hidden;
  1411. overflow-y: scroll;
  1412. li{
  1413. width: 414px;
  1414. height: 80px;
  1415. padding: 20px 0;
  1416. .video-img{
  1417. width: 142px;
  1418. height: 100%;
  1419. }
  1420. .video-text{
  1421. width: 272px;
  1422. h6{
  1423. line-height: 30px;
  1424. }
  1425. }
  1426. }
  1427. }
  1428. }
  1429. }
  1430. }
  1431. .recommend-content{
  1432. .recommend-title-box{
  1433. width:@subject-maxwidth;
  1434. h1{
  1435. font-size: 42px;
  1436. span{
  1437. margin: 0 26px;
  1438. }
  1439. }
  1440. .introduce-text{
  1441. font-size: 18px;
  1442. }
  1443. }
  1444. .recommend-show-box{
  1445. width:@subject-maxwidth;
  1446. .recommend-show-line{
  1447. a{
  1448. width: 350px;
  1449. height: 463px;
  1450. img{
  1451. width: 350px;
  1452. height: 240px;
  1453. }
  1454. .company-name{
  1455. font-size: 14px;
  1456. padding-bottom: 52px;
  1457. h5{
  1458. font-size: 18px;
  1459. }
  1460. span{
  1461. width: 94px;
  1462. height: 34px;
  1463. line-height: 34px;
  1464. margin-top: 30px;
  1465. margin-left: -47px;
  1466. }
  1467. }
  1468. }
  1469. }
  1470. }
  1471. }
  1472. .compay-introduce{
  1473. height:600px;
  1474. .compay-introduce-content{
  1475. width:1460px;
  1476. .compay-introduce-left-content{
  1477. top: 75px;
  1478. width: 600px;
  1479. height: 415px;
  1480. padding: 35px 60px 0;
  1481. .content-title{
  1482. height: 80px;
  1483. padding-left: 80px;
  1484. span{
  1485. width: 80px;
  1486. height: 80px;
  1487. i{
  1488. font-size: 75px;
  1489. }
  1490. }
  1491. h1{
  1492. font-size: 20px;
  1493. margin: 15px 0 0 19px;
  1494. }
  1495. p{
  1496. font-size: 14px;
  1497. }
  1498. }
  1499. .content-img-box{
  1500. width: 600px;
  1501. height: 200px;
  1502. margin-top: -90px;
  1503. p{
  1504. height: 60px;
  1505. font-size: 14px;
  1506. }
  1507. a{
  1508. img{
  1509. width: 290px;
  1510. height: 195px;
  1511. }
  1512. }
  1513. }
  1514. }
  1515. .compay-introduce-right-content{
  1516. width: 500px;
  1517. top: 50px;
  1518. margin-left: 95px;
  1519. h1{
  1520. margin-bottom: 14px;
  1521. font-size: 30px;
  1522. }
  1523. p{
  1524. margin-bottom: 7px;
  1525. font-size: 16px;
  1526. }
  1527. ul{
  1528. li{
  1529. i{
  1530. display: block;
  1531. font-size: 70px;
  1532. width: 74px;
  1533. height: 74px;
  1534. }
  1535. }
  1536. }
  1537. }
  1538. }
  1539. }
  1540. .serice-flow{
  1541. .serice-flow-content{
  1542. width: 1460px;
  1543. h1{
  1544. font-size: 30px;
  1545. }
  1546. ul{
  1547. li{
  1548. width: 208px;
  1549. .iconfont{
  1550. width: 60px;
  1551. height: 60px;
  1552. }
  1553. p{
  1554. font-size: 18px;
  1555. }
  1556. span{
  1557. font-size: 14px;
  1558. }
  1559. }
  1560. }
  1561. div{
  1562. ul{
  1563. li{
  1564. width: 208px;
  1565. span{
  1566. width: 165px;
  1567. margin-left: 20px;
  1568. }
  1569. }
  1570. }
  1571. }
  1572. }
  1573. }
  1574. .floor-ad{
  1575. width: @subject-maxwidth;
  1576. margin: 0 auto;
  1577. position: relative;
  1578. img{
  1579. width: 100%;
  1580. }
  1581. span {
  1582. color: #fff;
  1583. padding: 2px 5px;
  1584. position: absolute;
  1585. display: block;
  1586. top: 0;
  1587. left: 0;
  1588. background: rgba(0, 0, 0, 0.5);
  1589. }
  1590. }
  1591. .company-aptitude{
  1592. .company-aptitude-content{
  1593. width: @subject-maxwidth;
  1594. .aptitude-title-box{
  1595. h1{
  1596. font-size: 42px;
  1597. span{
  1598. margin: 0 26px;
  1599. }
  1600. }
  1601. .introduce-text{
  1602. font-size: 18px;
  1603. }
  1604. }
  1605. .aptitude-content-box{
  1606. height: 625px;
  1607. .content-text{
  1608. height: 505px;
  1609. h1{
  1610. font-size: 38px;
  1611. }
  1612. p{
  1613. font-size: 16px;
  1614. }
  1615. a{
  1616. font-size: 14px;
  1617. padding: 9px 19px;
  1618. }
  1619. }
  1620. .content-banner{
  1621. width: 980px;
  1622. }
  1623. }
  1624. }
  1625. }
  1626. .show-img{
  1627. div{
  1628. a{
  1629. margin-bottom: 12px;
  1630. }
  1631. }
  1632. .show-img-left{
  1633. .img-left-top{
  1634. height: 480px;
  1635. }
  1636. .img-left-bottom{
  1637. height: 314px;
  1638. }
  1639. }
  1640. .show-img-content{
  1641. .img-content-top{
  1642. height: 334px;
  1643. }
  1644. .img-content-bottom{
  1645. height: 460px;
  1646. }
  1647. }
  1648. .show-img-right{
  1649. .img-right-top{
  1650. height: 460px;
  1651. }
  1652. .img-right-bottom{
  1653. height: 334px;
  1654. }
  1655. }
  1656. }
  1657. .index-kgl{
  1658. .index-kgl-content{
  1659. width: @subject-maxwidth;
  1660. .kgl-title-box{
  1661. h1{
  1662. font-size: 42px;
  1663. span{
  1664. margin: 0 26px;
  1665. }
  1666. }
  1667. .introduce-text{
  1668. font-size: 18px;
  1669. }
  1670. }
  1671. .kgl-content-box{
  1672. height: 490px;
  1673. .regular-box{
  1674. height: 490px;
  1675. .kgl-content-normal{
  1676. .normal-top{
  1677. height: 169px;
  1678. i{
  1679. width: 50px;
  1680. height: 50px;
  1681. }
  1682. h1{
  1683. margin-top: 101px;
  1684. font-size: 24px;
  1685. }
  1686. }
  1687. .normal-bottom{
  1688. margin-top: 65px;
  1689. ul{
  1690. li{
  1691. padding-left: 50px;
  1692. line-height: 36px;
  1693. }
  1694. }
  1695. }
  1696. a{
  1697. i{
  1698. width: 29px;
  1699. height: 25px;
  1700. }
  1701. }
  1702. }
  1703. .kgl-content-enlarge{
  1704. width: 412px;
  1705. height: 550px;
  1706. .enlarge-top{
  1707. height: 200px;
  1708. .icons{
  1709. i{
  1710. width: 50px;
  1711. height: 50px;
  1712. }
  1713. }
  1714. p{
  1715. font-size: 24px;
  1716. }
  1717. }
  1718. .enlarge-bottom{
  1719. padding: 30px 30px 0;
  1720. .enlarge-bottom-Preference{
  1721. img{
  1722. width: 120px;
  1723. height: 80px;
  1724. }
  1725. span{
  1726. width: 220px;
  1727. h6{
  1728. font-size: 16px;
  1729. }
  1730. p{
  1731. font-size: 14px;
  1732. }
  1733. }
  1734. }
  1735. .enlarge-bottom-line{
  1736. font-size: 14px;
  1737. ul{
  1738. li{
  1739. height: 32px;
  1740. line-height: 32px;
  1741. }
  1742. }
  1743. }
  1744. .enlarge-bottom-btn{
  1745. right: 25px;
  1746. a{
  1747. i{}
  1748. }
  1749. }
  1750. }
  1751. }
  1752. }
  1753. }
  1754. }
  1755. }
  1756. .index-cooperative{
  1757. .cooperative-content{
  1758. width: @subject-maxwidth;
  1759. .cooperative-title-box{
  1760. h1{
  1761. font-size: 42px;
  1762. span{
  1763. margin: 0 26px;
  1764. }
  1765. }
  1766. .introduce-text{
  1767. font-size: 18px;
  1768. }
  1769. }
  1770. .cooperative-content-box{
  1771. div{
  1772. ul{
  1773. li{
  1774. width: 337px;
  1775. height: 230px;
  1776. span{
  1777. height: 40px;
  1778. bottom: -40px;
  1779. line-height: 30px;
  1780. }
  1781. }
  1782. }
  1783. }
  1784. }
  1785. }
  1786. }
  1787. .index-flrz{
  1788. .index-flrz-content{
  1789. .flrz-title-box{
  1790. h1{
  1791. font-size: 42px;
  1792. span{
  1793. margin: 0 26px;
  1794. }
  1795. }
  1796. .introduce-text{
  1797. font-size: 18px;
  1798. }
  1799. }
  1800. }
  1801. }
  1802. .position-element{
  1803. .left-position{
  1804. bottom: 180px;
  1805. left: 20px;
  1806. }
  1807. .right-position{
  1808. bottom: 180px;
  1809. div{
  1810. ul{
  1811. width: 58px;
  1812. li{
  1813. height: 58px;
  1814. }
  1815. }
  1816. }
  1817. }
  1818. }
  1819. }
  1820. .ad_button {
  1821. position: fixed;
  1822. bottom: 0;
  1823. left:0;
  1824. height:130px;
  1825. width:100%;
  1826. background: #999;
  1827. .close{
  1828. position: absolute;
  1829. right:0;
  1830. top:0;
  1831. display: block;
  1832. color: #fff;
  1833. background: rgba(0, 0, 0, 0.5);
  1834. z-index: 101;
  1835. cursor:pointer;
  1836. }
  1837. a{
  1838. width: 100%;
  1839. height: 100%;
  1840. img{
  1841. position: absolute;
  1842. top:0;
  1843. left: 50%;
  1844. margin-left: -966px;
  1845. z-index: 100;
  1846. }
  1847. }
  1848. }