index.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442
  1. /*滚动轴*/
  2. body {
  3. font-family: "AritaHeiti","微软雅黑";
  4. overflow-x: hidden;
  5. }
  6. ::-webkit-scrollbar{
  7. width: 0;
  8. }
  9. :-webkit-scrollbar-track {
  10. background-color: #F5F5F5;
  11. }
  12. *,
  13. *:before,
  14. *:after {
  15. -webkit-box-sizing: border-box;
  16. -moz-box-sizing: border-box;
  17. box-sizing: border-box;
  18. }
  19. ::-webkit-scrollbar {
  20. width: 0px;
  21. background-color: #F5F5F5;
  22. }
  23. .fl {
  24. float: left;
  25. }
  26. .fr {
  27. float: right;
  28. }
  29. .clearfix {
  30. zoom: 1;
  31. }
  32. .clearfix:after {
  33. content: '';
  34. display: block;
  35. clear: both;
  36. }
  37. ::-webkit-scrollbar-thumb {
  38. background-color: #999;
  39. }
  40. .wrap {
  41. width: 90%;
  42. margin: 0 auto;
  43. }
  44. .hidden {
  45. display: none;
  46. }
  47. .w_1440 {
  48. width: 1440px;/*1440px*/
  49. margin: 0 auto;
  50. }
  51. .close-bar{
  52. width: 100%;
  53. height: 40px;
  54. line-height: 40px;
  55. background: url(http://yun-image.elab-plus.com/images/projects/1_objects@2x_3.png) no-repeat 50% 50%;
  56. background-size: contain;
  57. cursor: pointer;
  58. }
  59. .head_box {
  60. position: relative;
  61. padding: 20px 0;
  62. height: 24px;
  63. }
  64. .menu_btn {
  65. text-align: center;
  66. }
  67. .menu_btn img,
  68. .menu_btn span {
  69. display: inline-block;
  70. vertical-align: middle;
  71. }
  72. .menu_btn span {
  73. font-size: 22px;
  74. color: #fff;
  75. margin-left: 18px;
  76. }
  77. .logo {
  78. position: absolute;
  79. left: 0;
  80. top: 50%;
  81. transform: translateY(-50%);
  82. }
  83. .csr {
  84. height: 908px;
  85. background: url(http://yun-image.elab-plus.com/images/Main@2x.png) center no-repeat;
  86. background-size: cover;
  87. text-align: center;
  88. padding: 393px 0 0;
  89. }
  90. .csr h3 {
  91. font-size: 76px;
  92. color: #fff;
  93. font-family: "AritaHeiti";
  94. }
  95. .csr_text {
  96. font-size: 43px;
  97. color: #fff;
  98. font-family: "AritaHeiti";
  99. }
  100. .a_btn {
  101. margin-top: 200px;
  102. text-align: center;
  103. }
  104. .a_btn a {
  105. width: 160px;
  106. height: 50px;
  107. font-size: 16px;
  108. color: #000;
  109. text-align: center;
  110. display: inline-block;
  111. line-height: 50px;
  112. background: #fff;
  113. border-radius: 40px;
  114. font-family: "AritaHeiti";
  115. }
  116. .s_v {
  117. margin-right: 50px;
  118. }
  119. .section2 p {
  120. font-size: 20px;
  121. color: #fff;
  122. line-height: 1.6;
  123. font-family: "AritaHeiti";
  124. max-width: 850px;
  125. margin: 0 auto 40px;
  126. text-align: left;
  127. }
  128. .section2 {
  129. padding: 7% 0;
  130. text-align: center;
  131. }
  132. .section2 h3 {
  133. font-size: 40px;
  134. color: #fff;
  135. font-family: "AritaHeiti";
  136. margin-bottom: 55px;
  137. }
  138. .yewu {
  139. margin-top: 104px;
  140. }
  141. .yewu li {
  142. float: left;
  143. width: 25%;
  144. }
  145. .section3>h3 {
  146. font-size: 40px;
  147. color: #fff;
  148. font-family: "AritaHeiti";
  149. }
  150. .section3 {
  151. background: url(http://yun-image.elab-plus.com/images/bg01.png) center no-repeat;
  152. background-size: 100% 100%;
  153. text-align: center;
  154. padding: 58px 0 67px;
  155. position: relative;
  156. z-index: 5;
  157. }
  158. .yewu li h3 {
  159. font-size: 120px;
  160. color: #3dadc0;
  161. font-family: "DINCond";
  162. }
  163. .yewu li p {
  164. font-size: 25px;
  165. color: #fff;
  166. margin-top: 23px;
  167. font-family: "AritaHeiti";
  168. }
  169. .section4 {
  170. padding: 24% 0 0;
  171. background: #1e2538;
  172. margin-top: -147px;
  173. }
  174. .section4_list {
  175. position: relative;
  176. padding-bottom: 93px;
  177. }
  178. .section4_list li {
  179. overflow: hidden;
  180. margin-bottom: 82px;
  181. position: relative;
  182. z-index: 5;
  183. }
  184. .section4_list_box {
  185. width: 50%;
  186. }
  187. .section4_list li:nth-child(2n) .section4_list_box {
  188. float: left;
  189. text-align: right;
  190. padding-right: 32px;
  191. }
  192. .section4_list li:nth-child(2n+1) .section4_list_box {
  193. float: right;
  194. text-align: left;
  195. padding-left: 36px;
  196. }
  197. .section4_list li:last-child {
  198. margin-bottom: 0;
  199. }
  200. .section4_list:after {
  201. content: "";
  202. width: 2px;
  203. height: 100%;
  204. position: absolute;
  205. top: 0;
  206. left: 50%;
  207. margin-left: 1px;
  208. background: #4e5464;
  209. z-index: 1;
  210. }
  211. .h3 {
  212. font-size: 86px;
  213. position: relative;
  214. color: #41acc0;
  215. font-family: "DINCond";
  216. line-height: 80%;
  217. }
  218. .latest {
  219. color: #fff;
  220. }
  221. .p {
  222. max-width: 594px;
  223. font-size: 23px;
  224. color: #fff;
  225. margin-top: 15px;
  226. position: relative;
  227. font-family: "AritaHeiti";
  228. }
  229. .p1:after {
  230. content: "";
  231. width: 30px;
  232. height: 30px;
  233. position: absolute;
  234. top: 50%;
  235. left: -46px;
  236. margin-top: -15px;
  237. background: #fff;
  238. border-radius: 50%;
  239. z-index: 5;
  240. }
  241. .pb {
  242. margin-left: 83px;
  243. }
  244. .tag:after {
  245. content: "";
  246. width: 30px;
  247. height: 30px;
  248. position: absolute;
  249. top: 50%;
  250. margin-top: -15px;
  251. background: #fff;
  252. border-radius: 50%;
  253. z-index: 5;
  254. }
  255. .section4_list li:nth-child(2n) .tag:after {
  256. right: -49px;
  257. }
  258. .section4_list li:nth-child(2n+1) .tag:after {
  259. left: -49px;
  260. }
  261. .section4_list li.sec {
  262. margin-bottom: 0;
  263. }
  264. .more {
  265. display: block;
  266. width: 154px;
  267. height: 50px;
  268. background: #fff;
  269. border-radius: 40px;
  270. color: #000;
  271. font-size: 20px;
  272. text-align: center;
  273. line-height: 50px;
  274. margin: auto;
  275. position: relative;
  276. z-index: 5;
  277. font-family: "AritaHeiti";
  278. }
  279. .section5 {
  280. padding: 60px 0;
  281. background: #1b2030;
  282. position: relative;
  283. overflow: hidden;
  284. }
  285. .hj_box {
  286. padding: 415px 0 0;
  287. background: url(http://yun-image.elab-plus.com/images/Group@2x02.png) center no-repeat;
  288. background-size: cover;
  289. text-align: center;
  290. height: 906px;
  291. overflow: hidden;
  292. }
  293. .hj_box h3 {
  294. font-size: 42px;
  295. color: #fff;
  296. margin-bottom: 160px;
  297. font-family: "AritaHeiti";
  298. }
  299. #section4 {
  300. margin-top: 0;
  301. position: relative;
  302. padding-top: 107px;
  303. }
  304. #section4 ul:nth-child(2n) li:nth-child(2n+1) .section4_list_box {
  305. float: left;
  306. padding-right: 32px;
  307. text-align: right;
  308. }
  309. #section4 ul:nth-child(2n) li:nth-child(2n) .section4_list_box {
  310. float: right;
  311. padding-left: 36px;
  312. text-align: left;
  313. }
  314. .p1-1:after {
  315. left: auto;
  316. right: -46px;
  317. }
  318. #section4 ul:nth-child(2n) li:nth-child(2n+1) .tag:after {
  319. left: auto;
  320. right: -49px;
  321. }
  322. #section4 ul:nth-child(2n) li:nth-child(2n) .tag:after {
  323. right: auto;
  324. left: -49px;
  325. }
  326. .progress {
  327. width: 98%;
  328. text-align: center;
  329. }
  330. .progressFirst{
  331. /*margin-top: -50px;*/
  332. }
  333. .progressSecond{
  334. /*margin-top: -50px;*/
  335. }
  336. .p_fir {
  337. margin-right: 4%;
  338. }
  339. .p_border {
  340. border: 1px solid #fff;;
  341. }
  342. .progress>p {
  343. display: inline-block;
  344. width: 100%;
  345. height: 178px;
  346. padding: 33px 30px;
  347. overflow: hidden;
  348. position: relative;
  349. font-family: "AritaHeiti";
  350. }
  351. .progress>p span {
  352. font-size: 20px;
  353. color: #fff;
  354. display: inline-block;
  355. width: 418px;
  356. line-height: 1.6;
  357. text-align: left;
  358. }
  359. .progress>p img {
  360. position: absolute;
  361. right: 5%;
  362. top: 14%;
  363. }
  364. .container {
  365. margin: 0 auto;
  366. }
  367. .con_t {
  368. background: #000004;
  369. position: relative;
  370. overflow: hidden;
  371. height: 983px;
  372. max-width: 1440px;
  373. margin: 0 auto;
  374. }
  375. .con_t img {
  376. width: 70%;
  377. max-width: 100%;
  378. display: block;
  379. margin: 50px auto 0;
  380. position: relative;
  381. z-index: 5;
  382. }
  383. .cai {
  384. font-size: 131px;
  385. color: #fff;
  386. font-family: "AritaHeiti";
  387. position: absolute;
  388. top: 294px;
  389. left: 68px;
  390. z-index: 4;
  391. }
  392. .line {
  393. display: inline-block;
  394. width: 89px;
  395. height: 10px;
  396. background: #3fadbe;
  397. position: absolute;
  398. top: 454px;
  399. left: 86px;
  400. }
  401. .p_p {
  402. max-width: 412px;
  403. font-size: 20px;
  404. color: #fff;
  405. line-height: 1.6;
  406. font-family: "AritaHeiti";
  407. position: absolute;
  408. top: 542px;
  409. left: 28px;
  410. z-index: 10;
  411. }
  412. .h33 {
  413. font-size: 36px;
  414. color: #fff;
  415. font-family: "AritaHeiti";
  416. position: absolute;
  417. top: 122px;
  418. right: 256px;
  419. z-index: 10;
  420. }
  421. .work {
  422. position: absolute;
  423. right: 0;
  424. top: 296px;
  425. z-index: 10;
  426. }
  427. .work p,
  428. .work h3 {
  429. color: #fff;
  430. margin-bottom: 15px;
  431. }
  432. .work p {
  433. font-size: 18px;
  434. font-family: "AritaHeiti";
  435. }
  436. .work h3 {
  437. font-size: 20px;
  438. font-family: "AritaHeiti";
  439. }
  440. .n {
  441. font-size: 92px;
  442. color: #fff;
  443. font-family: "AritaHeiti";
  444. position: absolute;
  445. top: 441px;
  446. right: 138px;
  447. z-index: 3;
  448. }
  449. .gx,
  450. .w {
  451. font-size: 20px;
  452. color: #fff;
  453. font-family: "AritaHeiti";
  454. }
  455. .gx {
  456. position: absolute;
  457. right: 80px;
  458. bottom: 240px;
  459. z-index: 10;
  460. }
  461. .w {
  462. position: absolute;
  463. bottom: 130px;
  464. right: 0;
  465. z-index: 10;
  466. }
  467. .gx p,
  468. .w p {
  469. margin-bottom: 20px;
  470. }
  471. .swiper {
  472. overflow: hidden;
  473. position: relative;
  474. background: #202020;
  475. padding-bottom: 117px;
  476. }
  477. .swiper img {
  478. width: 100%;
  479. }
  480. .swiper-box {
  481. padding: 167px 0 0;
  482. }
  483. .s_inner {
  484. width: 92%;
  485. margin: 0 auto;
  486. font-family: "AritaHeiti";
  487. }
  488. .swiper-box h3 {
  489. font-size: 46px;
  490. color: #fff;
  491. text-align: center;
  492. font-family: "AritaHeiti";
  493. }
  494. .sm {
  495. font-size: 20px;
  496. color: #fff;
  497. text-align: right;
  498. margin-top: 15px;
  499. }
  500. .sub {
  501. font-size: 30px;
  502. color: #f7f7f7;
  503. line-height: 1.65;
  504. margin-top: 154px;
  505. font-family: "AritaHeiti";
  506. }
  507. .span {
  508. text-align: center;
  509. margin-top: 120px;
  510. }
  511. .span .swiper-pagination-bullet {
  512. width: 15px;
  513. height: 15px;
  514. background: #3eaec0;
  515. }
  516. .span .swiper-pagination-bullet-active {
  517. opacity: 1;
  518. }
  519. .work_z {
  520. position: absolute;
  521. right: 0;
  522. top: 25px;
  523. }
  524. .container {
  525. width: 100%;
  526. margin: 0 auto;
  527. background: url(http://yun-image.elab-plus.com/images/BG@2x.jpg) center no-repeat;
  528. background-size: cover;
  529. }
  530. .wph {
  531. width: 133px;
  532. }
  533. .shun {
  534. width: 48px;
  535. }
  536. .p_fir1 {
  537. margin-right: 0;
  538. }
  539. .sb {
  540. width: 100%;
  541. position: relative;
  542. height: 1025px;
  543. }
  544. .shuzi {
  545. position: absolute;
  546. width: 100%;
  547. text-align: center;
  548. top: 0;
  549. left: 0;
  550. }
  551. .shuzi span {
  552. font-size: 30px;
  553. font-family: "AritaHeiti";
  554. color: #fff;
  555. }
  556. .progress {
  557. position: relative;
  558. }
  559. .shuzi strong {
  560. font-size: 250px;
  561. color: #fff;
  562. font-family: "DINCond";
  563. }
  564. .sp1 {
  565. margin-right: 128px;
  566. }
  567. .lf {
  568. position: absolute;
  569. top: -100px;
  570. left: 0;
  571. }
  572. .Line {
  573. position: absolute;
  574. left: 193px;
  575. top: -723px;
  576. }
  577. @media(max-width:1024px) {
  578. .csr h3 {
  579. font-size: .6rem;
  580. }
  581. .csr_text {
  582. font-size: .3rem;
  583. margin-top: .2rem;
  584. }
  585. .a_btn {
  586. margin-top: 2rem;
  587. }
  588. .csr {
  589. height: auto;
  590. background: url(http://yun-image.elab-plus.com/images/Group@2x03.png) center no-repeat;
  591. background-size: cover;
  592. padding: 3.93rem 0 1rem;
  593. }
  594. .a_btn a {
  595. width: 2.2rem;
  596. height: .8rem;
  597. font-size: .26rem;
  598. line-height: .8rem;
  599. border-radius: .4rem;
  600. }
  601. .s_v {
  602. margin-right: .5rem;
  603. }
  604. .section2 h3 {
  605. font-size: .42rem;
  606. margin-bottom: .3rem;
  607. }
  608. .section2 p {
  609. font-size: .3rem;
  610. margin-bottom: .25rem;
  611. }
  612. .yewu li {
  613. width: 50%;
  614. }
  615. .section3 {
  616. background: url(http://yun-image.elab-plus.com/images/bg03.png) center no-repeat;
  617. background-size: 100% 100%;
  618. padding: .87rem 0;
  619. }
  620. .yewu li h3 {
  621. font-size: .86rem;
  622. }
  623. .yewu li p {
  624. font-size: .25rem;
  625. margin-top: .23rem;
  626. }
  627. .yewu {
  628. margin-top: .75rem;
  629. }
  630. .section4 {
  631. margin-top: -2.4rem;
  632. padding: 4rem 0 0;
  633. }
  634. .section3>h3 {
  635. font-size: .42rem;
  636. }
  637. .section4_list li:nth-child(2n+1) .section4_list_box {
  638. padding-left: .32rem;
  639. padding-right: .3rem;
  640. }
  641. .p {
  642. font-size: .25rem;
  643. margin-top: .3rem;
  644. }
  645. .h3 {
  646. font-size: .6rem;
  647. }
  648. .p1:after {
  649. content: "";
  650. width: .3rem;
  651. height: .3rem;
  652. top: 50%;
  653. left: -.46rem;
  654. margin-top: -.15rem;
  655. }
  656. .tag:after {
  657. content: "";
  658. width: .3rem;
  659. height: .3rem;
  660. margin-top: -.15rem;
  661. }
  662. .section4_list li:nth-child(2n+1) .tag:after {
  663. left: -.8rem;
  664. }
  665. .section4_list li:nth-child(2n) .tag:after {
  666. right: -.5rem;
  667. }
  668. .section4_list li:nth-child(2n+1) .tag:after {
  669. left: -.43rem;
  670. }
  671. .section4_list li:nth-child(2n) .section4_list_box {
  672. padding-right: .32rem;
  673. padding-left: .32rem;
  674. }
  675. .section4_list li {
  676. margin-bottom: 1rem;
  677. }
  678. .more {
  679. width: 154px;
  680. height: .8rem;
  681. border-radius: .4rem;
  682. font-size: .25rem;
  683. line-height: .8rem;
  684. }
  685. .hj_box h3 {
  686. font-size: .5rem;
  687. margin-bottom: 1.6rem;
  688. }
  689. .progress>p span {
  690. float: none;
  691. margin-right: 0;
  692. font-size: .3rem;
  693. width: 100%;
  694. }
  695. .progress>p img {
  696. position: static;
  697. width: 1rem;
  698. margin: auto;
  699. }
  700. .progress>p {
  701. width: 100%;
  702. display: block;
  703. height: auto;
  704. padding: .3rem;
  705. margin-bottom: 25px;
  706. }
  707. #section4 ul:nth-child(2n) li:nth-child(2n+1) .tag:after {
  708. right: -.49rem;
  709. }
  710. #section4 ul:nth-child(2n) li:nth-child(2n) .tag:after {
  711. left: -.76rem;
  712. }
  713. #section4 ul:nth-child(2n) li:nth-child(2n+1) .tag:after {
  714. right: -.83rem;
  715. }
  716. .p1-1:after {
  717. right: -.83rem;
  718. left: auto;
  719. }
  720. #section4 {
  721. padding-top: 1.07rem;
  722. }
  723. .section4_list {
  724. padding-bottom: .5rem;
  725. }
  726. .s_inner {
  727. width: 92%;
  728. }
  729. .swiper {
  730. padding-bottom: 40px;
  731. }
  732. .swiper-box h3 {
  733. font-size: .28rem;
  734. }
  735. .sm,
  736. .sub {
  737. font-size: .23rem;
  738. }
  739. .sub,
  740. .span {
  741. margin-top: 1.5rem;
  742. }
  743. .con_t img {
  744. width: 6.64rem;
  745. margin: 1.18rem auto 0;
  746. }
  747. .left {
  748. top: 2rem;
  749. left: .15rem;
  750. }
  751. .cai {
  752. font-size: .6rem;
  753. top: 2.94rem;
  754. left: .68rem;
  755. }
  756. .line {
  757. width: .8rem;
  758. height: .1rem;
  759. top: 4.54rem;
  760. left: .66rem;
  761. }
  762. .con_t {
  763. padding: 0 .15rem;
  764. }
  765. .p_p {
  766. font-size: .2rem;
  767. top: 5.42rem;
  768. left: .28rem;
  769. max-width: 2.42rem;
  770. }
  771. .right {
  772. top: 1rem;
  773. right: 0;
  774. padding-right: .15rem;
  775. }
  776. .h33 {
  777. font-size: .36rem;
  778. top: 1.22rem;
  779. right: 0.56rem;
  780. }
  781. .work p {
  782. font-size: .18rem;
  783. margin-bottom: .15rem;
  784. }
  785. .work p,
  786. .work h3 {
  787. margin-bottom: .15rem;
  788. }
  789. .work {
  790. top: 2.96rem;
  791. }
  792. .work h3 {
  793. font-size: .2rem;
  794. }
  795. .n {
  796. font-size: .9rem;
  797. top: 4.4rem;
  798. right: 0;
  799. }
  800. .gx,
  801. .w {
  802. font-size: .26rem;
  803. }
  804. .gx {
  805. right: 0rem;
  806. bottom: 2.4rem;
  807. }
  808. .w {
  809. bottom: 1.3rem;
  810. right: 0;
  811. }
  812. .container {
  813. width: 100%;
  814. }
  815. .hj_box {
  816. padding: 4rem 0 0;
  817. height: 9.06rem;
  818. }
  819. /*.logo img {
  820. width: .42rem;
  821. }*/
  822. .menu_btn img {
  823. width: .32rem;
  824. }
  825. .menu_btn span {
  826. font-size: .22rem;
  827. margin-left: .18rem;
  828. }
  829. .shuzi strong {
  830. font-size: 1.3rem;
  831. }
  832. .shuzi span {
  833. font-size: .3rem;
  834. }
  835. .shuzi {
  836. top: 2.3rem;
  837. }
  838. .gx p,
  839. .w p {
  840. margin-bottom: .2rem;
  841. }
  842. .sp1 {
  843. margin-right: 1.3rem;
  844. }
  845. .shuzi .sp1:last-child {
  846. margin-right: 0;
  847. }
  848. .shuzi p:nth-child(2) span{
  849. margin-right: 0.35rem !important;
  850. }
  851. .con_t {
  852. height: 11rem;
  853. }
  854. .swiper-box {
  855. padding: 1.6rem 0 0;
  856. }
  857. .sb {
  858. height: 10.25rem;
  859. }
  860. .Line {
  861. width: 1.62rem;
  862. left: 0;
  863. top: -7.23rem;
  864. }
  865. .w_1440 {
  866. width: 98%;
  867. }
  868. }
  869. @media only screen and (min-width: 1440px){
  870. .shuzi strong#withPlus sup {
  871. vertical-align: 0.7rem !important;
  872. font-size: 0.5rem !important;
  873. }
  874. .shuzi p:nth-child(2) span{
  875. margin-right: 0.55rem !important;
  876. }
  877. }
  878. @media only screen and (min-width: 1920px){
  879. .shuzi strong#withPlus sup {
  880. vertical-align: 0.5rem !important;
  881. font-size: 0.4rem !important;
  882. }
  883. .shuzi p:nth-child(2) span{
  884. margin-right: 0.4rem !important;
  885. }
  886. .shuzi strong#withPlus {
  887. margin-right: -0.18rem !important;
  888. }
  889. }
  890. @media only screen and (min-width: 576px) {
  891. .shuzi {
  892. top: 20%;
  893. }
  894. .shuzi p:nth-child(2){
  895. text-align: right;
  896. display: inline-block;
  897. width: 49%;
  898. }
  899. .shuzi p:nth-child(3) {
  900. text-align: left;
  901. display: inline-block;
  902. width: 49%;
  903. }
  904. .shuzi strong#withPlus {
  905. margin-left: 0.63rem;
  906. margin-right: -0.23rem;
  907. }
  908. .shuzi strong#withPlus sup {
  909. vertical-align: 0.8rem;
  910. font-size: 0.6rem;
  911. }
  912. }
  913. /***pad**/
  914. @media only screen and (max-width: 1024px){
  915. /*.s_inner h3 span {
  916. display: block;
  917. }*/
  918. .cai {
  919. font-size: .6rem;
  920. top: 1.34rem;
  921. left: .68rem;
  922. }
  923. .line {
  924. width: .8rem;
  925. height: .1rem;
  926. top: 2.24rem;
  927. left: .71rem;
  928. }
  929. .h33 {
  930. font-size: .36rem;
  931. top: 0.82rem;
  932. right: 0.56rem;
  933. }
  934. .n {
  935. font-size: .7rem;
  936. top: 5.2rem;
  937. right: 0;
  938. }
  939. .p_p {
  940. font-size: .2rem;
  941. top: 6.02rem;
  942. left: .38rem;
  943. max-width: 3.52rem;
  944. }
  945. .gx {
  946. right: 0rem;
  947. bottom: 1.4rem;
  948. max-width: 60%;
  949. }
  950. .w {
  951. bottom: 0.3rem;
  952. right: 20%;
  953. }
  954. .gx,
  955. .w {
  956. font-size: .22rem;
  957. line-height: 90%;
  958. }
  959. .progressFirst {
  960. display: none;
  961. }
  962. .progressSecond {
  963. display: none;
  964. }
  965. #progreeBtn {
  966. display: inherit;
  967. }
  968. }
  969. /*****/
  970. @media only screen and (max-width: 576px) and (-webkit-min-device-pixel-ratio:2) {
  971. .s_inner h3 span {
  972. display: block;
  973. }
  974. .cai {
  975. font-size: .6rem;
  976. top: 1.34rem;
  977. left: .68rem;
  978. }
  979. .line {
  980. width: .5rem;
  981. height: .1rem;
  982. top: 2.24rem;
  983. left: .71rem;
  984. }
  985. .h33 {
  986. font-size: 4.5vw;
  987. top: 0.2rem;
  988. right: auto;
  989. left: 50%;
  990. }
  991. .work {
  992. top: 0.96rem;
  993. right: auto;
  994. left: 50%;
  995. }
  996. .n {
  997. font-size: .7rem;
  998. top: 5.2rem;
  999. right: 0;
  1000. }
  1001. .p_p {
  1002. font-size: .2rem;
  1003. top: 6.02rem;
  1004. left: .38rem;
  1005. max-width: 3.52rem;
  1006. }
  1007. .gx {
  1008. right: 0rem;
  1009. bottom: 1.4rem;
  1010. max-width: 60%;
  1011. }
  1012. .w {
  1013. bottom: 0.3rem;
  1014. right: 20%;
  1015. }
  1016. .gx,
  1017. .w {
  1018. font-size: .22rem;
  1019. line-height: 90%;
  1020. }
  1021. }
  1022. .top-menu {
  1023. width: 100%;
  1024. padding: 20px 0;
  1025. height: 64px;
  1026. font-size: 0;
  1027. line-height: 24px;
  1028. position: relative;
  1029. z-index: 10;
  1030. /*background: url(http://yun-image.elab-plus.com/images/menu-bg.jpg) no-repeat;
  1031. background-size: 100% 100%;
  1032. opacity: 0;*/
  1033. }
  1034. .logo {
  1035. width: 4.7%;
  1036. position: absolute;
  1037. bottom: 0%;
  1038. left: 4%;
  1039. cursor: pointer;
  1040. }
  1041. .inner-icon {
  1042. width: 100%;
  1043. position: relative;
  1044. z-index: 1;
  1045. }
  1046. .menu {
  1047. width: 3.4%;
  1048. position: absolute;
  1049. top: 35%;
  1050. left: 48.3%;
  1051. cursor: pointer;
  1052. }
  1053. .cases {
  1054. width: 3.4%;
  1055. position: absolute;
  1056. top: 45;
  1057. right: 4%;
  1058. cursor: pointer;
  1059. }
  1060. /***left and right slide menu***/
  1061. .who-we-are,
  1062. .what-we-do {
  1063. width: 20%;
  1064. line-height: 30px;
  1065. height: 30px;
  1066. position: absolute;
  1067. z-index: 10;
  1068. left: -8%;
  1069. top: 45%;
  1070. color: #1b2030;
  1071. font-size: 14px;
  1072. text-align: center;
  1073. font-weight: 700;
  1074. /*transform: rotate(90deg);*/
  1075. cursor: pointer;
  1076. transition: all linear 0.6s;
  1077. }
  1078. .slide-line {
  1079. position: absolute;
  1080. left: 50%;
  1081. top: 70%;
  1082. width: 1px;
  1083. height: 50px;
  1084. margin: 3px auto 0;
  1085. font-size: 0px;
  1086. background: #fff;
  1087. transform: translateY(3%);
  1088. transition: all ease 0.8s;
  1089. }
  1090. .slide-line1 {
  1091. position: absolute;
  1092. left: 50%;
  1093. top: -210px;
  1094. width: 1px;
  1095. height: 200px;
  1096. margin: 3px auto 0;
  1097. font-size: 0px;
  1098. background: #fff;
  1099. transform: translateY(-100px);
  1100. transition: all ease 0.8s;
  1101. opacity: 0;
  1102. }
  1103. .what-we-do {
  1104. left: auto;
  1105. right: -8%;
  1106. transform: rotate(-90deg);
  1107. }
  1108. .who-we-are a,
  1109. .what-we-do a {
  1110. color: #fff;
  1111. }
  1112. .who-we-are .slide-line.active {
  1113. transition: all ease 0.8s;
  1114. transform: translateY(-110%);
  1115. }
  1116. .what-we-do:hover,
  1117. .who-we-are:hover {
  1118. color: #fff;
  1119. }
  1120. .what-we-do:hover a,
  1121. .who-we-are:hover a{
  1122. color: #fff;
  1123. }
  1124. .what-we-do .slide-line.active,
  1125. .who-we-are .slide-line.active {
  1126. transition: all ease 0.8s;
  1127. transform: translateY(50px);
  1128. background: #fff;
  1129. }
  1130. .what-we-do .slide-line1.active,
  1131. .who-we-are .slide-line1.active {
  1132. transition: all ease 0.8s;
  1133. transform: translateY(0px);
  1134. background: #fff;
  1135. opacity: 1;
  1136. }
  1137. /***middle**/
  1138. @media only screen and (max-width: 1024px) {
  1139. .logo {
  1140. width: 6%;
  1141. }
  1142. .menu {
  1143. width: 4.5%;
  1144. }
  1145. .cases {
  1146. width: 4.5%;
  1147. }
  1148. }
  1149. /***middle portrait***/
  1150. @media only screen and (max-width: 768px) and (orientation: portrait) {
  1151. .logo {
  1152. width: 8%;
  1153. }
  1154. .menu {
  1155. width: 6.5%;
  1156. }
  1157. .cases {
  1158. width: 6.5%;
  1159. }
  1160. }
  1161. /***small**/
  1162. @media only screen and (max-width: 576px) and (-webkit-min-device-pixel-ratio:2) {
  1163. .logo {
  1164. width: 18%;
  1165. position: absolute;
  1166. left: 42.5%;
  1167. cursor: pointer;
  1168. bottom: 15%;
  1169. }
  1170. .menu {
  1171. width: 13.4%;
  1172. position: absolute;
  1173. bottom: 0;
  1174. left: 5%;
  1175. cursor: pointer;
  1176. }
  1177. .cases {
  1178. width: 13.4%;
  1179. }
  1180. .who-we-are,
  1181. .what-we-do{
  1182. display: none;
  1183. }
  1184. }
  1185. .main-menu {
  1186. position: fixed;
  1187. left: 0;
  1188. top: 0;
  1189. z-index: 999;
  1190. width: 100%;
  1191. height: 100%;
  1192. background: #34B5CB;
  1193. transform: translateY(-100%);
  1194. opacity: 0;
  1195. transition: all ease 0.8s
  1196. }
  1197. .main-menu.active {
  1198. transform: translateY(0);
  1199. opacity: 1;
  1200. }
  1201. .menu-close {
  1202. width: 40px;
  1203. height: 40px;
  1204. margin: 30px auto;
  1205. color: #ffffff;
  1206. font-family: "Arial";
  1207. font-size: 40px;
  1208. cursor: pointer;
  1209. background: url(http://yun-image.elab-plus.com/images/projects/1_objects@2x_3.png) no-repeat 50% 50%;
  1210. background-size: contain;
  1211. transition: all ease 1s;
  1212. transform: rotate(0);
  1213. }
  1214. .menu-close:hover{
  1215. transform: rotate(360deg);
  1216. }
  1217. .menu-list {
  1218. width: 100%;
  1219. margin: 0 auto;
  1220. margin-top: 10%;
  1221. }
  1222. .menu-list li {
  1223. width: 100%;
  1224. margin-bottom: 1%;
  1225. color: #fff;
  1226. font-size: 40px;
  1227. font-weight: 700;
  1228. text-align: center;
  1229. letter-spacing: 4.689653px;
  1230. font-family: 'AritaHeiti';
  1231. }
  1232. .menu-list li small {
  1233. width: 100%;
  1234. display: block;
  1235. font-size: 16px;
  1236. }
  1237. .menu-list li a {
  1238. color: #fff;
  1239. }
  1240. .slider{
  1241. width: 100%;
  1242. height: 100%;
  1243. overflow: hidden;
  1244. position: relative;
  1245. z-index: 30;
  1246. }
  1247. .slider ul{
  1248. width: 100%;
  1249. height: 100%;
  1250. overflow: hidden;
  1251. position: relative;
  1252. }
  1253. /****inner slider***/
  1254. .inslider{
  1255. width: 100%;
  1256. height: 100%;
  1257. overflow: hidden;
  1258. position: relative;
  1259. z-index: 30;
  1260. }
  1261. .inslider ul{
  1262. width: 100%;
  1263. height: 100%;
  1264. overflow: hidden;
  1265. position: relative;
  1266. }
  1267. @media only screen and (max-width: 576px) and (-webkit-min-device-pixel-ratio:2) {
  1268. .menu-close {
  1269. margin-left: 5%;
  1270. }
  1271. .menu-list li {
  1272. width: 95%;
  1273. padding-left: 5%;
  1274. text-align: left;
  1275. margin-bottom: 5%;
  1276. font-size: 7vw;
  1277. }
  1278. .logo {
  1279. width: 18%;
  1280. position: absolute;
  1281. left: 42.5%;
  1282. cursor: pointer;
  1283. }
  1284. .menu {
  1285. width: 13.4%;
  1286. position: absolute;
  1287. top: 35%;
  1288. left: 3%;
  1289. cursor: pointer;
  1290. }
  1291. .cases {
  1292. width: 13.4%;
  1293. }
  1294. .shuzi p{
  1295. margin-bottom: 7%;
  1296. }
  1297. .shuzi strong {
  1298. font-size: 1.5rem;
  1299. position: relative;
  1300. }
  1301. .shuzi strong sup{
  1302. font-size: 1rem;
  1303. position: absolute;
  1304. right: -21%;
  1305. top: -19%;
  1306. }
  1307. }