You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. //pc端样式
  2. .main {
  3. width: 100%;
  4. max-width: 1920px;
  5. margin: 0 auto;
  6. padding-top: 71px;
  7. position: relative;
  8. .text{
  9. text-align: justify;
  10. }
  11. .goUp{
  12. width: 84px;
  13. height: 84px;
  14. cursor: pointer;
  15. position: absolute;
  16. bottom: 20px;
  17. right: 140px;
  18. img{
  19. width: 100%;
  20. display: block;
  21. }
  22. }
  23. }
  24. .desCon{
  25. width: 100%;
  26. text-align: center;
  27. padding-top: 100px;
  28. .desTop{
  29. width: 100%;
  30. max-width: 1300px;
  31. margin: 0px auto;
  32. text-align: center;
  33. padding-bottom: 46px;
  34. }
  35. .careersType{
  36. width: 100%;
  37. .titleBg{
  38. width: 100%;
  39. position: sticky;
  40. top: 0;
  41. background: #ffffff;
  42. transition: all .3s ease-in-out;
  43. z-index: 4;
  44. .bgMove{
  45. width: 100%;
  46. height: 100%;
  47. position: absolute;
  48. right: 0;
  49. top: 0;
  50. background-color: #f6f6f6;
  51. }
  52. }
  53. .topType{
  54. top:70px;
  55. }
  56. .typeTitle{
  57. width: 100%;
  58. height: 90px;
  59. display: flex;
  60. max-width: 1300px;
  61. margin: 0 auto;
  62. position: relative;
  63. font-size: 24px;
  64. .typeTitCk{
  65. height: 90px;
  66. padding-top: 20px;
  67. box-sizing: border-box;
  68. margin-right: 80px;
  69. cursor: pointer;
  70. position: relative;
  71. &::after {
  72. content: "";
  73. width: 0;
  74. height: 2px;
  75. background: #B81C25;
  76. position: absolute;
  77. left: 0;
  78. bottom: -2px;
  79. right: 0;
  80. margin: auto;
  81. transition: all 0.4s ease;
  82. }
  83. &:hover{
  84. color: #B81C25;
  85. &::after {
  86. width: 100%;
  87. }
  88. }
  89. }
  90. .ck{
  91. // border-bottom: 1px solid #B81C25;
  92. color: #B81C25;
  93. &::after {
  94. width: 100%;
  95. }
  96. .h5R{
  97. font-weight: bold;
  98. }
  99. }
  100. }
  101. .typeCon{
  102. width: 100%;
  103. background: #f6f6f6;
  104. padding-bottom: 250px;
  105. display: none;
  106. .infoul{
  107. width: 100%;
  108. max-width: 1300px;
  109. margin: 0 auto;
  110. .infoLi{
  111. padding: 90px 0;
  112. border-bottom:1px solid #9FA3A5;
  113. width: 100%;
  114. display: none;
  115. .liTitle{
  116. display: flex;
  117. width: 100%;
  118. justify-content: space-between;
  119. cursor: pointer;
  120. font-size: 40px;
  121. font-weight: bold;
  122. font-family: "MyFont1";
  123. .liTit{
  124. width: calc(100% - 220px);
  125. // height: 84px;
  126. line-height: 84px;
  127. overflow: hidden;
  128. display: flex;
  129. flex-wrap: wrap;
  130. }
  131. .btn{
  132. width: 84px;
  133. height: 84px;
  134. display: flex;
  135. align-items: center;
  136. justify-content: center;
  137. background-color: #B2B5B7;
  138. border-radius: 50%;
  139. color: #fff;
  140. cursor: pointer;
  141. transition: all .2s;
  142. position: relative;
  143. transform: scale(1);
  144. min-width: 84px;
  145. &::before{
  146. content: '';
  147. width: 17px;
  148. height: 3px;
  149. background-color: #fff;
  150. z-index: 2;
  151. }
  152. &::after{
  153. content: '';
  154. width: 3px;
  155. height: 17px;
  156. background-color: #fff;
  157. left: 50%;
  158. position: absolute;
  159. top: 50%;
  160. transform: translate(-50%, -50%);
  161. }
  162. .btnjbg{
  163. position: absolute;
  164. bottom: 0px;
  165. width: 100%;
  166. height: 100%;
  167. border-radius: 50%;
  168. left: 0px;
  169. top: 0px;
  170. background-color: #B81C25;
  171. transition: all 1.5s cubic-bezier(.19,1,.22,1);
  172. transform: scale(0);
  173. transform-origin: center center;
  174. // -webkit-clip-path: circle(0 at 50% 50%);
  175. // clip-path: circle(0 at 50% 50%);
  176. // transition: -webkit-clip-path 1.5s cubic-bezier(.19,1,.22,1);
  177. // transition: clip-path 1.5s cubic-bezier(.19,1,.22,1);
  178. // transition: clip-path 1.5s cubic-bezier(.19,1,.22,1), -webkit-clip-path 1.5s cubic-bezier(.19,1,.22,1);
  179. // transition: clip-path 1.5s cubic-bezier(.19,1,.22,1), -webkit-clip-path 1.5s cubic-bezier(.19,1,.22,1);
  180. }
  181. }
  182. }
  183. .infoSonLi{
  184. width: 100%;
  185. height: 0px;
  186. box-sizing: border-box;
  187. overflow: hidden;
  188. // display: none;
  189. border-bottom: 0px dashed #000000;
  190. margin-bottom: 0px;
  191. padding-top: 0px;
  192. transition: padding 1s ease-in-out;
  193. text-align: left;
  194. &:last-child{
  195. border-bottom: 0px;
  196. margin-bottom: 0px;
  197. .btn{
  198. margin-bottom: 0;
  199. }
  200. }
  201. &>p{
  202. &:first-child{
  203. color: #B81C25;
  204. }
  205. }
  206. .h4{
  207. margin-top: 50px;
  208. font-size: 24px;
  209. font-family: 'MyFont1';
  210. font-weight: bold;
  211. &:first-child{
  212. margin-top: 0;
  213. color: #B81C25;
  214. }
  215. }
  216. .h5R{
  217. margin-top: 30px;
  218. font-size: 20px;
  219. line-height: 44px;
  220. }
  221. .text{
  222. margin-top: 10px;
  223. margin-bottom: 40px;
  224. color: #9fa3a5;
  225. font-size: 20px;
  226. line-height: 44px;
  227. }
  228. .btn{
  229. margin: 80px 0 120px;
  230. }
  231. }
  232. }
  233. .infoLiShow{
  234. .liTitle{
  235. .btn{
  236. // background-color: #0054A7;
  237. &::after{
  238. display: none;
  239. }
  240. .btnjbg{
  241. // -webkit-clip-path: circle(50% at 50% 50%);
  242. // clip-path: circle(50% at 50% 50%);
  243. transform: scale(1);
  244. }
  245. }
  246. }
  247. .infoSonLi{
  248. border-bottom: 1px dashed #000000;
  249. margin-bottom: 95px;
  250. padding-top: 45px;
  251. padding-bottom: 100px;
  252. &:last-child{
  253. padding-bottom: 10px;
  254. }
  255. }
  256. }
  257. }
  258. .all{
  259. .infoLi{
  260. display: block;
  261. }
  262. }
  263. }
  264. .typeConShow{
  265. display: block;
  266. }
  267. .typeCon2{
  268. text-align: left;
  269. .infoul{
  270. &>.title{
  271. font-size: 40px;
  272. padding: 70px 0px 43px;
  273. }
  274. .newsType{
  275. width: 100%;
  276. height: 100%;
  277. .newsLi{
  278. width: 100%;
  279. display: flex;
  280. justify-content: space-between;
  281. border-bottom: 1px solid #acacac5e;
  282. box-sizing: border-box;
  283. padding: 27px 8px;
  284. &:last-child{
  285. border-bottom: 0px solid #ACACAC;
  286. }
  287. .timer{
  288. width: 65px;
  289. height: 66px;
  290. border-radius: 8px;
  291. border: 1px solid #A7A5A5;
  292. text-align: center;
  293. font-size: 12px;
  294. padding: 0px 12px 0;
  295. box-sizing: border-box;
  296. .timerData{
  297. font-size: 26px;
  298. color: #b81c25;
  299. border-bottom: 1px solid #b81c25;
  300. padding-bottom: 3px;
  301. margin-bottom: 3px;
  302. line-height: 30px;
  303. padding-top: 4px;
  304. }
  305. }
  306. .newsLiCon{
  307. width: calc(100% - 80px);
  308. font-size: 18px;
  309. text-align: left;
  310. &>div{
  311. overflow: hidden;
  312. white-space: nowrap;
  313. width: 100%;
  314. height: 24px;
  315. text-overflow: ellipsis;
  316. }
  317. .liTitle{
  318. color: #231F20;
  319. font-weight: 500;
  320. margin-bottom: 8px;
  321. padding-top: 6px;
  322. }
  323. .licon{
  324. font-weight: 400;
  325. color: #999999;
  326. font-size: 16px;
  327. }
  328. }
  329. transition: all 0.3s ease-in-out;
  330. &:hover{
  331. background: rgba(184, 28, 37, 0.05);
  332. .newsLiCon{
  333. .liTitle{
  334. color: #B81C25;
  335. }
  336. }
  337. }
  338. }
  339. }
  340. .btnNew{
  341. text-align: center;
  342. }
  343. .btn3{
  344. width: 200px;
  345. height: 50px;
  346. line-height: 50px;
  347. margin: 59px auto 0px;
  348. font-size: 14px;
  349. span{
  350. font-size: 26px;
  351. }
  352. }
  353. .inLiCon{
  354. width: 100%;
  355. display: flex;
  356. box-sizing: border-box;
  357. padding: 38px 47px;
  358. background: #B81C25;
  359. color: #ffffff;
  360. justify-content: space-between;
  361. align-items: center;
  362. border-radius: 8px;
  363. margin-top: 80px;
  364. font-size: 24px;
  365. .title{
  366. font-size: 28px;
  367. }
  368. .liLine{
  369. width: 1px;
  370. height: 55px;
  371. background: #ffffff;
  372. opacity: 0.5;
  373. }
  374. .iconfont{
  375. display: inline-block;
  376. width: 31px;
  377. height: 31px;
  378. background: #ffffff;
  379. border-radius: 20px;
  380. color: #B81C25;
  381. font-size: 16px;
  382. text-align: center;
  383. line-height: 31px;
  384. margin-right: 12px;
  385. position: relative;
  386. top: -3px;
  387. }
  388. }
  389. }
  390. }
  391. }
  392. .contactUs{
  393. width: 100%;
  394. text-align: center;
  395. .contactCon{
  396. width: 100%;
  397. max-width: 1300px;
  398. height: 750px;
  399. margin: 0px auto;
  400. padding: 120px 0px 180px;
  401. display: flex;
  402. text-align: left;
  403. &>div{
  404. width: 50%;
  405. box-sizing: border-box;
  406. .contactUsTit{
  407. font-size: 60px;
  408. margin-bottom: 50px;
  409. }
  410. .text{
  411. font-size: 24px;
  412. color: #9FA3A5;
  413. margin-bottom: 26px;
  414. }
  415. .text1{
  416. font-size: 20px;
  417. color: #231F20;
  418. }
  419. .contactType{
  420. font-size: 40px;
  421. margin-top: 200px;
  422. margin-bottom: 43px;
  423. }
  424. img{
  425. width: 750px;
  426. height: 750px;
  427. display: block;
  428. }
  429. }
  430. }
  431. }
  432. }
  433. @media screen and (min-width: 801px) and (max-width: 1400px) {
  434. .careersType{
  435. .typeCon,.titleBg{
  436. padding-left: 20px;
  437. padding-right: 20px;
  438. box-sizing: border-box;
  439. }
  440. }
  441. }
  442. @media screen and (min-width:800px){
  443. }
  444. .mTxt{
  445. display: none;
  446. }
  447. //移动端样式
  448. @media screen and (max-width:800px) {
  449. .pcTxt{
  450. display: none;
  451. }
  452. .mTxt{
  453. display: block;
  454. }
  455. .main{
  456. padding-top: 61px;
  457. .goUp{
  458. width: 42px;
  459. height: 42px;
  460. bottom: 30px;
  461. right: 50%;
  462. transform: translateX(21px);
  463. }
  464. }
  465. .desCon{
  466. padding-top: 50px;
  467. box-sizing: border-box;
  468. // .text{
  469. // font-size: 14px;
  470. // line-height: 22px;
  471. // }
  472. .desTop{
  473. padding-bottom: 30px;
  474. padding-left: 15px;
  475. padding-right: 15px;
  476. box-sizing: border-box;
  477. flex-wrap: wrap;
  478. .title{
  479. text-align: center;
  480. margin-bottom: 30px;
  481. font-size: 32px;
  482. }
  483. &>div{
  484. width: 100%;
  485. }
  486. }
  487. .desTopImg{
  488. padding-bottom: 40px;
  489. padding-left: 15px;
  490. padding-right: 15px;
  491. box-sizing: border-box;
  492. }
  493. .careersType{
  494. .titleBg{
  495. top: 60px;
  496. padding-left: 15px;
  497. padding-right: 15px;
  498. box-sizing: border-box;
  499. }
  500. .typeTitle{
  501. width: 100%;
  502. height: 50px;
  503. margin: 0px 0px;
  504. box-sizing: border-box;
  505. overflow: hidden;
  506. overflow-x: auto;
  507. font-size: 14px;
  508. .typeTitCk{
  509. height: 50px;
  510. margin-right: 30px;
  511. line-height: 10px;
  512. white-space: nowrap;
  513. &:last-child{
  514. margin-right: 0;
  515. }
  516. }
  517. .ck{
  518. border-bottom: 2px solid #B81C25;
  519. }
  520. }
  521. .typeCon{
  522. padding: 0px 15px 110px;
  523. box-sizing: border-box;
  524. .infoul{
  525. .infoLi{
  526. padding: 45px 0;
  527. .liTitle{
  528. align-items: center;
  529. font-size: 24px;
  530. .liTit{
  531. height: auto;
  532. line-height: 30px;
  533. width: calc(100% - 60px);
  534. overflow: initial;
  535. }
  536. .btn{
  537. width: 40px;
  538. height: 40px;
  539. left: 0px;
  540. min-width: 40px;
  541. .btnjbg{
  542. left: 0px;
  543. }
  544. &::before{
  545. content: '';
  546. width: 8px;
  547. height: 2px;
  548. }
  549. &::after{
  550. content: '';
  551. width: 2px;
  552. height: 8px;
  553. }
  554. }
  555. }
  556. .infoSonLi{
  557. .h4{
  558. font-size: 16px;
  559. line-height: 30px;
  560. margin-top: 30px;
  561. font-weight: bold;
  562. }
  563. .h5R{
  564. margin-top: 10px;
  565. font-size: 16px;
  566. line-height: 30px;
  567. }
  568. .text{
  569. margin-bottom: 40px;
  570. font-size: 16px;
  571. line-height: 30px;
  572. }
  573. .btn{
  574. margin: 50px 0 60px;
  575. }
  576. }
  577. }
  578. .infoLiShow{
  579. .liTitle{
  580. .btn{
  581. &::before {
  582. width: 8px;
  583. height: 2px;
  584. }
  585. // .btnjbg{
  586. // -webkit-clip-path: circle(19px at 20px 20.5px);
  587. // clip-path: circle(19px at 20px 20.5px);
  588. // }
  589. }
  590. }
  591. .infoSonLi{
  592. margin-bottom: 15px;
  593. border-bottom: 1px solid #231F20;
  594. }
  595. }
  596. }
  597. }
  598. .typeCon2 {
  599. .infoul{
  600. &>.title{
  601. font-size: 32px;
  602. padding: 40px 0px 15px;
  603. }
  604. .newsType {
  605. .newsLi {
  606. padding-bottom: 20px;
  607. margin-top: 20px;
  608. .newsLiCon{
  609. font-size: 16px;
  610. padding-top: 4px;
  611. &>div{
  612. height: 20px;
  613. }
  614. .liTitle{
  615. margin-bottom: 8px;
  616. }
  617. }
  618. }
  619. }
  620. .btn{
  621. margin: 20px auto 0px;
  622. }
  623. .btn3{
  624. margin: 20px auto 0px;
  625. }
  626. .inLiCon{
  627. justify-content: center;
  628. flex-wrap: wrap;
  629. font-size: 14px;
  630. padding: 30px 23px;
  631. border-radius: 4px;
  632. margin-top: 47px;
  633. .liLine{
  634. display: none;
  635. }
  636. &>div{
  637. width: 100%;
  638. height: 20px;
  639. margin-bottom: 15px;
  640. line-height: normal;
  641. padding-left: 38px;
  642. box-sizing: border-box;
  643. }
  644. .title{
  645. width: 100%;
  646. text-align: center;
  647. padding-bottom: 14px;
  648. height: auto;
  649. font-size: 16px;
  650. padding-left: 0px;
  651. line-height: normal;
  652. border-bottom: 1px solid #ffffff81;
  653. margin-bottom: 20px;
  654. }
  655. .iconfont{
  656. width: 20px;
  657. height: 20px;
  658. border-radius: 10px;
  659. font-size: 12px;
  660. line-height: 20px;
  661. margin-right: 12px;
  662. top: 0px;
  663. }
  664. a{
  665. color: #fff;
  666. }
  667. }
  668. }
  669. }
  670. }
  671. .contactUs{
  672. .contactCon{
  673. height: auto;
  674. margin: 0px auto;
  675. padding: 105px 15px 115px;
  676. box-sizing: border-box;
  677. flex-wrap: wrap;
  678. &>div{
  679. width: 100%;
  680. .contactUsTit{
  681. font-size: 60px;
  682. margin-bottom: 38px;
  683. font-size: 32px;
  684. line-height: normal;
  685. }
  686. .text{
  687. font-size: 14px;
  688. line-height: normal;
  689. margin-bottom: 15px;
  690. }
  691. .text1{
  692. font-size: 14px;
  693. line-height: 28px;
  694. }
  695. .contactType{
  696. font-size: 18px;
  697. margin-top: 70px;
  698. margin-bottom: 30px;
  699. line-height: normal;
  700. }
  701. img{
  702. width: 100%;
  703. height: auto;
  704. margin-top: 15px;
  705. }
  706. }
  707. }
  708. }
  709. }
  710. }