Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.less 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308
  1. //pc端样式
  2. .main {
  3. width: 100%;
  4. max-width: 1920px;
  5. margin: 0 auto;
  6. }
  7. .banner{
  8. width: 100%;
  9. height: 100vh;
  10. .bannerSwiper{
  11. width: 100%;
  12. height: 100%;
  13. img{
  14. width: 100%;
  15. height: 100%;
  16. object-fit: cover;
  17. }
  18. video{
  19. width: 100%;
  20. height: 100%;
  21. object-fit: cover;
  22. }
  23. .bannerS1{
  24. img{
  25. display: none;
  26. }
  27. }
  28. .title{
  29. text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.28);
  30. }
  31. .btn-prev,.btn-next{
  32. position: absolute;
  33. top: 50%;
  34. margin-top: -40px;
  35. width: 80px;
  36. height: 80px;
  37. z-index: 2;
  38. text-align: center;
  39. color: #ecf6fb;
  40. background: transparent;
  41. transition: all .3s ease-in-out;
  42. cursor: pointer;
  43. border-radius: 40px;
  44. line-height: 80px;
  45. box-sizing: border-box;
  46. border: 1px solid #fff;
  47. span{
  48. font-size: 44px;
  49. display: inline-block;
  50. line-height: 80px;
  51. transform: rotate(90deg);
  52. }
  53. &:hover{
  54. color: #b81c25;
  55. background: #fff;
  56. }
  57. }
  58. .btn-prev{
  59. left: 100px;
  60. span{
  61. transform: rotate(-90deg);
  62. }
  63. }
  64. .btn-next{
  65. right: 100px;
  66. }
  67. .swiper-button-disabled{
  68. cursor: no-drop;
  69. background: transparent;
  70. color: #ecf6fb;
  71. opacity: 0.6;
  72. &:hover{
  73. color: #ecf6fb;
  74. background: transparent;
  75. }
  76. }
  77. .swiper-pagination{
  78. bottom: 60px;
  79. .swiper-pagination-bullet{
  80. background: #ffffff;
  81. opacity:1;
  82. position: relative;
  83. width: 12px;
  84. height: 12px;
  85. margin:0 17px;
  86. &::before{
  87. content: '';
  88. position: absolute;
  89. left: -5px;
  90. top: -5px;
  91. width: 20px;
  92. height: 20px;
  93. border-radius: 50%;
  94. border: 1px solid #b81c25;
  95. opacity: 0;
  96. transition: all .3s ease-in-out;
  97. }
  98. }
  99. .swiper-pagination-bullet-active{
  100. background: #b81c25;
  101. &::before{
  102. opacity: 1;
  103. }
  104. }
  105. }
  106. }
  107. .slideCon{
  108. width: 100%;
  109. max-width: 1300px;
  110. height: 100%;
  111. box-sizing: border-box;
  112. margin: 0 auto;
  113. padding-top: 230px;
  114. position: absolute;
  115. top: 0px;
  116. left: 50%;
  117. transform: translateX(-50%);
  118. color: #fff;
  119. text-align: left;
  120. .title{
  121. br{
  122. display: none;
  123. }
  124. }
  125. .btn{
  126. position: absolute;
  127. bottom: 10%;
  128. left: 50%;
  129. margin-left: -100px;
  130. }
  131. }
  132. }
  133. .news{
  134. width: 100%;
  135. text-align: center;
  136. padding: 140px 0px;
  137. .newsCon{
  138. width: 100%;
  139. height: 512px;
  140. overflow: hidden;
  141. max-width: 1300px;
  142. margin: 60px auto 80px;
  143. position: relative;
  144. display: flex;
  145. &>div{
  146. width: 50%;
  147. height: 100%;
  148. overflow: hidden;
  149. .swiper-pagination{
  150. bottom: 20px;
  151. .swiper-pagination-bullet{
  152. background: #ffffff;
  153. opacity:1;
  154. position: relative;
  155. width: 6px;
  156. height: 6px;
  157. margin:0 9px;
  158. &::before{
  159. content: '';
  160. position: absolute;
  161. left: -3px;
  162. top: -3px;
  163. width: 10px;
  164. height: 10px;
  165. border-radius: 50%;
  166. border: 1px solid #b81c25;
  167. opacity: 0;
  168. transition: all .3s ease-in-out;
  169. }
  170. }
  171. .swiper-pagination-bullet-active{
  172. background: #b81c25;
  173. &::before{
  174. opacity: 1;
  175. }
  176. }
  177. }
  178. .swiper{
  179. width: 100%;
  180. border-radius: 10px;
  181. z-index: -1;
  182. position: absolute;
  183. height: 100%;
  184. top: 0;
  185. left: 0;
  186. img{
  187. width: 100%;
  188. display: block;
  189. }
  190. .slideZ{
  191. position: absolute;
  192. top: 0px;
  193. left: 0px;
  194. width: 100%;
  195. height: 100%;
  196. background: url(./images/newsz.png) no-repeat bottom;
  197. }
  198. .slideCon{
  199. position: absolute;
  200. bottom: 0px;
  201. left: 0px;
  202. width: 100%;
  203. box-sizing: border-box;
  204. padding: 50px 30px;
  205. color: #fff;
  206. text-align: left;
  207. .time{
  208. font-size: 16px;
  209. }
  210. }
  211. }
  212. .newsShowSwiper{
  213. z-index: 1;
  214. }
  215. .newsTitList{
  216. width: 100%;
  217. display: flex;
  218. font-size: 20px;
  219. line-height: 30px;
  220. color: #A7A5A5;
  221. box-sizing: border-box;
  222. padding-left: 40px;
  223. justify-content: flex-start;
  224. .newsCk{
  225. font-size: 20px;
  226. color: #231F20;
  227. cursor: pointer;
  228. transition: all .3s ease-in-out;
  229. &:hover{
  230. color: #B81C25;
  231. }
  232. }
  233. .newsShow{
  234. color: #B81C25;
  235. font-weight: bold;
  236. }
  237. div{
  238. &:nth-child(2n){
  239. margin: 0px 40px;
  240. }
  241. }
  242. }
  243. .newsConList{
  244. width: 100%;
  245. height: calc(100% - 30px);
  246. box-sizing: border-box;
  247. padding-left: 40px;
  248. padding-top: 18px;
  249. overflow: hidden;
  250. &>div{
  251. width: 100%;
  252. height: 100%;
  253. display: none;
  254. .newsLi{
  255. width: 100%;
  256. display: flex;
  257. justify-content: space-between;
  258. border-bottom: 2px solid #acacac5e;
  259. padding: 24px 20px 24px 10px;
  260. box-sizing: border-box;
  261. position: relative;
  262. &::before{
  263. content: '';
  264. position: absolute;
  265. bottom: -2px;
  266. left: 0px;
  267. width: 0%;
  268. height: 2px;
  269. background: #B81C25;
  270. transition: all .5s ease;
  271. }
  272. // &:last-child{
  273. // border-bottom: 0px solid #ACACAC;
  274. // }
  275. .timer{
  276. width: 65px;
  277. height: 66px;
  278. border-radius: 8px;
  279. border: 1px solid #A7A5A5;
  280. text-align: center;
  281. font-size: 12px;
  282. padding: 0px 12px 0;
  283. box-sizing: border-box;
  284. .timerData{
  285. font-size: 26px;
  286. color: #b81c25;
  287. border-bottom: 1px solid #b81c25;
  288. padding-bottom: 3px;
  289. margin-bottom: 3px;
  290. line-height: 30px;
  291. padding-top: 4px;
  292. }
  293. }
  294. .newsLiCon{
  295. width: calc(100% - 80px);
  296. font-size: 18px;
  297. text-align: left;
  298. &>div{
  299. overflow: hidden;
  300. white-space: nowrap;
  301. width: 100%;
  302. height: 24px;
  303. text-overflow: ellipsis;
  304. }
  305. .liTitle{
  306. color: #231F20;
  307. font-weight: 500;
  308. margin-bottom: 8px;
  309. padding-top: 6px;
  310. }
  311. .licon{
  312. font-weight: 400;
  313. color: #999999;
  314. font-size: 16px;
  315. }
  316. }
  317. &:hover{
  318. background: rgba(184,28,37,.05);
  319. &::before{
  320. width: 100%;
  321. }
  322. .newsLiCon{
  323. .liTitle,.licon{
  324. color: #b81c25;
  325. }
  326. }
  327. }
  328. }
  329. .liHight{
  330. background: rgba(184,28,37,.05);
  331. &::before{
  332. width: 100%;
  333. }
  334. .newsLiCon{
  335. .liTitle,.licon{
  336. color: #b81c25;
  337. }
  338. }
  339. }
  340. }
  341. .newsDivShow{
  342. display: block;
  343. }
  344. }
  345. }
  346. .newsSp{
  347. position: relative;
  348. }
  349. }
  350. .btn3{
  351. margin: 0px auto;
  352. }
  353. }
  354. .product{
  355. width: 100%;
  356. text-align: center;
  357. padding: 125px 0px 110px;
  358. &>.text{
  359. width: 100%;
  360. max-width: 1300px;
  361. margin: 50px auto 0;
  362. text-align: left;
  363. }
  364. .productCon{
  365. margin: 60px auto 0px;
  366. width: 100%;
  367. .productTits{
  368. width: 100%;
  369. display: none;
  370. &>div{
  371. width: 100%;
  372. display: flex;
  373. justify-content: space-between;
  374. &>div{
  375. width: 144px;
  376. height: 146px;
  377. border-radius: 8px;
  378. color: #231F20;
  379. padding-top: 20px;
  380. box-sizing: border-box;
  381. cursor: pointer;
  382. transition: all .3s ease-in-out;
  383. div{
  384. margin-bottom: 30px;
  385. }
  386. }
  387. .productCk{
  388. color: #B81C25;
  389. font-weight: bold;
  390. }
  391. }
  392. }
  393. .productConBox{
  394. width: 100%;
  395. height: 420px;
  396. margin-top: 40px;
  397. overflow: hidden;
  398. &>div{
  399. width: 100%;
  400. height: 100%;
  401. }
  402. .swiper-slide{
  403. width: 312px;
  404. transition:width .45s cubic-bezier(.455,.03,.515,.955);
  405. overflow: hidden;
  406. transform-origin: left;
  407. img {
  408. display: block;
  409. width: auto;
  410. height: 100%;
  411. object-fit: cover;
  412. position: relative;
  413. left: 50%;
  414. transform: translateX(-50%);
  415. }
  416. .slideZ{
  417. position: absolute;
  418. bottom: 0;
  419. left: 0;
  420. width: 100%;
  421. height: 100%;
  422. background: url(./images/productz.png) no-repeat bottom;
  423. background-size: 100%;
  424. display: none;
  425. }
  426. .slideCon{
  427. position: absolute;
  428. width: 100%;
  429. bottom: 0px;
  430. left: 0;
  431. text-align: center;
  432. color: #fff;
  433. box-sizing: border-box;
  434. opacity: 0;
  435. background-color: #b81c25;
  436. height: 50px;
  437. line-height: 50px;
  438. transition: all .3s ease-in-out;
  439. .text{
  440. width: 100%;
  441. line-height: 50px;
  442. }
  443. }
  444. &:hover{
  445. width: 560px;
  446. .slideCon{
  447. opacity: 1;
  448. }
  449. }
  450. }
  451. .swiper-slide-active{
  452. width: 560px;
  453. .slideCon{
  454. opacity: 1;
  455. }
  456. }
  457. }
  458. .swiper-page{
  459. width: 100%;
  460. max-width: 1300px;
  461. margin: 0px auto;
  462. margin-top: 80px;
  463. position: relative;
  464. height: 60px;
  465. display: flex;
  466. flex-direction: row;
  467. justify-content: flex-end;
  468. .btn-prev,.btn-next{
  469. width: 60px;
  470. height: 60px;
  471. text-align: center;
  472. color: #000;
  473. cursor: pointer;
  474. border-radius: 60px;
  475. line-height: 60px;
  476. box-sizing: border-box;
  477. border: 1px solid #000;
  478. transition: all .3s ease-in-out;
  479. span{
  480. font-size: 34px;
  481. display: inline-block;
  482. transform: rotate(90deg);
  483. }
  484. &:hover{
  485. color: #fff;
  486. background: #b81c25;
  487. border: 1px solid #b81c25;
  488. }
  489. }
  490. .btn-prev{
  491. margin-right: 30px;
  492. span{
  493. transform: rotate(-90deg);
  494. }
  495. }
  496. .btn-next{
  497. }
  498. .swiper-button-disabled{
  499. cursor: not-allowed;
  500. opacity: 0.6;
  501. &:hover{
  502. color: #000;
  503. background: #fff;
  504. border: 1px solid #000;
  505. }
  506. }
  507. }
  508. }
  509. }
  510. .about{
  511. width: 100%;
  512. text-align: center;
  513. background-color: #f8f8f8;
  514. position: relative;
  515. .aboutImg{
  516. width: 100%;
  517. max-width: 1920px;
  518. position: relative;
  519. margin: 0px auto;
  520. background: url(./images/aboutbg0.png) no-repeat;
  521. background-size: contain;
  522. img{
  523. width: 100%;
  524. display: block;
  525. }
  526. .imgZi{
  527. position: absolute;
  528. top: 0px;
  529. left: 0px;
  530. }
  531. }
  532. .aboutCon{
  533. width: 100%;
  534. height: 100%;
  535. max-width: 1300px;
  536. position: absolute;
  537. top: 0px;
  538. left: 50%;
  539. transform: translateX(-50%);
  540. padding-top: 125px;
  541. text-align: left;
  542. box-sizing: border-box;
  543. display: flex;
  544. flex-wrap: wrap;
  545. .title{
  546. // margin-bottom: 260px;
  547. width: 100%;
  548. height: auto;
  549. }
  550. .sltImg{
  551. width: 300px;
  552. font-size: 20px;
  553. font-weight: bold;
  554. padding-top: 20px;
  555. border-top: 1px solid #dddddd;
  556. margin-bottom: 25%;
  557. img{
  558. width: 100%;
  559. display: block;
  560. margin-top: 20px;
  561. }
  562. }
  563. }
  564. }
  565. .history{
  566. width: 100%;
  567. position: relative;
  568. text-align: center;
  569. padding: 125px 0px 110px;
  570. .historyTit{
  571. width: 100%;
  572. max-width: 1300px;
  573. margin: 55px auto 65px;
  574. display: flex;
  575. justify-content: center;
  576. &>div{
  577. padding: 0px 30px;
  578. font-size: 20px;
  579. position: relative;
  580. cursor: pointer;
  581. transition: all .3s ease-in-out;
  582. &::before{
  583. content: '';
  584. position: absolute;
  585. top: 50%;
  586. transform: translateY(-50%);
  587. right: 0px;
  588. width: 1px;
  589. height: 16px;
  590. background: #000;
  591. }
  592. &:last-child{
  593. &::before{
  594. display: none;
  595. }
  596. }
  597. &:hover{
  598. color: #b81c25;
  599. }
  600. &.active{
  601. color: #b81c25;
  602. font-weight: bold;
  603. }
  604. }
  605. }
  606. .historyCon{
  607. width: 100%;
  608. position: relative;
  609. .historySwiper{
  610. width: 100%;
  611. .swiper-slide{
  612. width: 300px;
  613. height: 480px;
  614. position: relative;
  615. .hisImg{
  616. width: 100%;
  617. overflow: hidden;
  618. img{
  619. width: 100%;
  620. display: block;
  621. transition: all .3s ease-in-out;
  622. transform-origin: 50% 50%;
  623. }
  624. &:hover{
  625. img{
  626. transform: scale(1.1);
  627. }
  628. }
  629. }
  630. .hisTime{
  631. display: none;
  632. font-weight: bold;
  633. margin-top: 25px;
  634. font-size: 18px;
  635. }
  636. .text{
  637. font-size: 16px;
  638. line-height: 30px;
  639. margin-top: 20px;
  640. padding:0px 20px;
  641. }
  642. .hisBottom{
  643. position: absolute;
  644. bottom: 0px;
  645. left: 0px;
  646. width: 100%;
  647. display: flex;
  648. flex-wrap: wrap;
  649. justify-content: center;
  650. .hisLine{
  651. width: 310px;
  652. height: 1px;
  653. background: #999999;
  654. position: absolute;
  655. bottom: 54px;
  656. left: 0px;
  657. }
  658. .hisIcon{
  659. width: 46px;
  660. height: 46px;
  661. border: 0px solid #999999;
  662. border-radius: 50%;
  663. position: relative;
  664. .cil1{
  665. position: absolute;
  666. width: 32px;
  667. height: 32px;
  668. background: #fff;
  669. box-sizing: border-box;
  670. border: 1px solid #999999;
  671. top: 7px;
  672. left: 7px;
  673. border-radius: 50%;
  674. opacity: 0;
  675. }
  676. .cil2{
  677. position: absolute;
  678. width: 10px;
  679. height: 10px;
  680. background: #999999;
  681. box-sizing: border-box;
  682. top: 18px;
  683. left: 18px;
  684. border-radius: 50%;
  685. }
  686. .cil3{
  687. position: absolute;
  688. width: 1px;
  689. height: 40px;
  690. background: #999999;
  691. bottom: 28px;
  692. left: 23px;
  693. }
  694. }
  695. .hisBTime{
  696. width: 100%;
  697. font-size: 20px;
  698. line-height: normal;
  699. font-family: 'MyFont1';
  700. color: #000;
  701. margin-top: 2px;
  702. }
  703. }
  704. &:last-child{
  705. .hisLine{
  706. &::before{
  707. content: '';
  708. width: 8px;
  709. height: 8px;
  710. border-radius: 4px;
  711. background: #fff;
  712. border: 1px solid #999999;
  713. box-sizing: border-box;
  714. position: absolute;
  715. top: -4px;
  716. right:0px
  717. }
  718. }
  719. }
  720. }
  721. .activeShow{
  722. .text{
  723. color: #b81c25;
  724. }
  725. .hisTime{
  726. color: #b81c25;
  727. }
  728. .hisBottom{
  729. .hisIcon{
  730. border: 1px solid rgba(184, 28, 37, 0.3);
  731. .cil1{
  732. border: 1px solid #b81c25;
  733. opacity: 1;
  734. }
  735. .cil2{
  736. background: #b81c25;
  737. }
  738. }
  739. .hisBTime{
  740. color: #b81c25;
  741. }
  742. }
  743. }
  744. }
  745. .swiper-page{
  746. width: 100%;
  747. max-width: 1300px;
  748. margin: 0px auto;
  749. margin-top: 80px;
  750. position: relative;
  751. height: 60px;
  752. display: none;
  753. flex-direction: row;
  754. justify-content: flex-end;
  755. .btn-prev,.btn-next{
  756. width: 40px;
  757. height: 40px;
  758. border-radius: 40px;
  759. line-height: 40px;
  760. text-align: center;
  761. color: #000;
  762. cursor: pointer;
  763. box-sizing: border-box;
  764. border: 1px solid #000;
  765. transition: all .3s ease-in-out;
  766. span{
  767. font-size: 26px;
  768. display: inline-block;
  769. transform: rotate(90deg);
  770. }
  771. &:hover{
  772. color: #fff;
  773. background: #b81c25;
  774. border: 1px solid #b81c25;
  775. }
  776. }
  777. .btn-prev{
  778. // margin-right: 30px;
  779. span{
  780. transform: rotate(-90deg);
  781. }
  782. }
  783. .btn-next{
  784. }
  785. .swiper-button-disabled{
  786. cursor: not-allowed;
  787. opacity: 0.6;
  788. &:hover{
  789. color: #000;
  790. background: #fff;
  791. border: 1px solid #000;
  792. }
  793. }
  794. }
  795. }
  796. }
  797. .corporate{
  798. width: 100%;
  799. position: relative;
  800. text-align: center;
  801. padding: 85px 0px 0px;
  802. .corporateSwiper{
  803. margin-top: 60px;
  804. img{
  805. display: block;
  806. }
  807. }
  808. .corCon{
  809. position: absolute;
  810. width: 100%;
  811. bottom: 0px;
  812. left: 0px;
  813. text-align: center;
  814. z-index: 2;
  815. padding-bottom: 90px;
  816. .corTits{
  817. width: 670px;
  818. margin: 0px auto;
  819. height: 60px;
  820. display: flex;
  821. justify-content: space-between;
  822. border-bottom: 1px solid #999;
  823. line-height: 60px;
  824. color: rgba(255, 255, 255, 0.8);
  825. box-sizing: border-box;
  826. div{
  827. font-size: 32px;
  828. padding: 0px 10px;
  829. position: relative;
  830. cursor: pointer;
  831. &::before{
  832. content: '';
  833. position: absolute;
  834. bottom: -1px;
  835. left: 0px;
  836. width: 100%;
  837. height: 2px;
  838. background: #B81C25;
  839. opacity: 0;
  840. }
  841. }
  842. .activS{
  843. color: #B81C25;
  844. font-weight: bold;
  845. &::before{
  846. opacity: 1;
  847. }
  848. }
  849. }
  850. .corTxts{
  851. width: 100%;
  852. margin-top: 20px;
  853. color: #fff;
  854. font-size: 30px;
  855. div{
  856. display: none;
  857. }
  858. .activS{
  859. display: block;
  860. }
  861. }
  862. }
  863. }
  864. @media screen and (min-width: 1300px) and (max-width: 1600px) {
  865. .banner {
  866. .slideCon{
  867. padding: 180px 10px 0px;
  868. box-sizing: border-box;
  869. }
  870. }
  871. }
  872. @media screen and (min-width: 801px) and (max-width: 1300px) {
  873. .banner {
  874. .slideCon{
  875. padding: 120px 10px 0px;
  876. box-sizing: border-box;
  877. }
  878. }
  879. }
  880. @media screen and (min-width:800px){
  881. .goTop{
  882. .goTopBtn{
  883. background: #ffffff;
  884. .btnShow{
  885. .btnIcon{
  886. background-color: #0056A7;
  887. }
  888. }
  889. &:hover{
  890. background: #ffffff;
  891. }
  892. }
  893. }
  894. }
  895. .mTxt{
  896. display: none;
  897. }
  898. //移动端样式
  899. @media screen and (max-width:800px) {
  900. .pcTxt{
  901. display: none;
  902. }
  903. .mTxt{
  904. display: block;
  905. }
  906. .banner{
  907. width: 100%;
  908. height: 100vh;
  909. .swiper{
  910. width: 100%;
  911. height: 100%;
  912. }
  913. .slideCon{
  914. padding: 0 15px;
  915. padding-top: 130px;
  916. height: auto;
  917. .title{
  918. font-size: 30px;
  919. line-height: 48px;
  920. br{
  921. display: block;
  922. }
  923. }
  924. }
  925. .btn-prev,.btn-next{
  926. display: none;
  927. }
  928. .bannerSwiper{
  929. .bannerS1{
  930. img{
  931. display: block;
  932. }
  933. video{
  934. display: none;
  935. }
  936. }
  937. .swiper-pagination{
  938. display: block;
  939. bottom: 60px;
  940. .swiper-pagination-bullet{
  941. width: 6px;
  942. height: 6px;
  943. margin: 0 6px;
  944. &::before{
  945. left: -3px;
  946. top: -3px;
  947. width: 10px;
  948. height: 10px;
  949. }
  950. }
  951. }
  952. }
  953. }
  954. .news{
  955. padding: 110px 15px 70px;
  956. box-sizing: border-box;
  957. .newsCon{
  958. margin: 35px auto 32px;
  959. height: auto;
  960. flex-wrap: wrap;
  961. padding-top: 50px;
  962. &>div{
  963. width: 100%;
  964. height: auto;
  965. .swiper{
  966. position: relative;
  967. display: none;
  968. .slideCon{
  969. padding: 20px;
  970. .time{
  971. font-size: 13px;
  972. }
  973. }
  974. }
  975. .newsShowSwiper{
  976. display: block;
  977. }
  978. .swiper-pagination{
  979. display: none;
  980. }
  981. .newsTitList{
  982. padding-left: 0px;
  983. font-size: 14px;
  984. line-height: 24px;
  985. position: absolute;
  986. top: 0px;
  987. left: 0px;
  988. justify-content: center;
  989. .newsCk{
  990. font-size: 16px;
  991. }
  992. &>div{
  993. &:nth-child(2n){
  994. margin: 0px 30px;
  995. }
  996. }
  997. }
  998. .newsConList{
  999. padding-left: 0px;
  1000. padding-top: 0px;
  1001. height: auto;
  1002. &>div{
  1003. .newsLi{
  1004. .timer .timerData{
  1005. font-weight: bold;
  1006. }
  1007. .newsLiCon{
  1008. font-size: 16px;
  1009. padding-top: 4px;
  1010. &>div{
  1011. height: 20px;
  1012. }
  1013. .liTitle{
  1014. margin-bottom: 8px;
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. }
  1021. }
  1022. }
  1023. .product{
  1024. padding: 100px 15px;
  1025. box-sizing: border-box;
  1026. &>.text{
  1027. margin: 30px auto 0;
  1028. }
  1029. .productCon{
  1030. margin: 40px auto 0px;
  1031. .productTits{
  1032. overflow-x: auto;
  1033. display: block;
  1034. &::-webkit-scrollbar{
  1035. -webkit-appearance: none;
  1036. width: 0px;
  1037. height: 0px;
  1038. }
  1039. // &::-webkit-scrollbar:horizontal{
  1040. // width: 2px;
  1041. // height: 100%;
  1042. // background: #fff;
  1043. // }
  1044. &::-webkit-scrollbar-thumb{
  1045. width: 0px;
  1046. height: 0px;
  1047. background: #B81C25;
  1048. }
  1049. &>div{
  1050. width: 1012px;
  1051. justify-content: flex-start;
  1052. &>div{
  1053. width: auto;
  1054. height: auto;
  1055. padding-top: 0px;
  1056. padding-right: 20px;
  1057. position: relative;
  1058. margin-right: 20px;
  1059. &:last-child{
  1060. padding-right: 0px;
  1061. margin-right: 0px;
  1062. &::before{
  1063. display: none;
  1064. }
  1065. }
  1066. &::before{
  1067. content: '';
  1068. position: absolute;
  1069. right: 0px;
  1070. top: 4px;
  1071. width: 1px;
  1072. height: 13px;
  1073. background: #999;
  1074. transform: rotate(20deg);
  1075. }
  1076. div{
  1077. margin-bottom: 0px;
  1078. font-size: 14px;
  1079. }
  1080. }
  1081. }
  1082. }
  1083. .productConBox{
  1084. margin-top: 35px;
  1085. height: auto;
  1086. &>div{
  1087. height: auto;
  1088. }
  1089. .swiper-slide{
  1090. width: 100%;
  1091. height: auto;
  1092. img{
  1093. width: 100%;
  1094. height: auto;
  1095. }
  1096. .slideZ{
  1097. display: none;
  1098. }
  1099. .slideCon{
  1100. position: relative;
  1101. color: #231F20;
  1102. display: block;
  1103. height: 30px;
  1104. line-height: 30px;
  1105. background: #f8f8f8;
  1106. opacity: 1;
  1107. .text {
  1108. line-height:normal;
  1109. line-height: 30px;
  1110. font-size: 14px;
  1111. }
  1112. }
  1113. &:hover{
  1114. width: 100%;
  1115. .slideCon{
  1116. opacity: 1;
  1117. }
  1118. }
  1119. }
  1120. }
  1121. .swiper-page{
  1122. margin-top: 40px;
  1123. height: 40px;
  1124. justify-content: center;
  1125. .btn-prev,.btn-next{
  1126. width: 40px;
  1127. height: 40px;
  1128. border-radius: 40px;
  1129. line-height: 40px;
  1130. span{
  1131. font-size: 26px;
  1132. }
  1133. }
  1134. }
  1135. }
  1136. }
  1137. .about{
  1138. padding: 110px 15px;
  1139. box-sizing: border-box;
  1140. background: url(./images/aboutbg0m.png) no-repeat;
  1141. background-size: contain;
  1142. .title{
  1143. margin-bottom: 40px;
  1144. }
  1145. .aboutImg{
  1146. .imgZi{
  1147. display: none;
  1148. }
  1149. }
  1150. .aboutCon {
  1151. position: relative;
  1152. height: auto;
  1153. text-align: center;
  1154. padding-top: 15px;
  1155. justify-content: center;
  1156. .sltImg{
  1157. margin: 0px auto;
  1158. padding-top: 0px;
  1159. border-top: 0px solid #dddddd;
  1160. img{
  1161. width: 150px;
  1162. margin: 15px auto 40px;
  1163. }
  1164. }
  1165. .btn3{
  1166. margin: 0px auto;
  1167. }
  1168. }
  1169. }
  1170. .history{
  1171. padding: 110px 15px;
  1172. box-sizing: border-box;
  1173. .historyTit{
  1174. margin: 35px auto 25px;
  1175. &>div{
  1176. padding: 0px;
  1177. width: 25%;
  1178. font-size: 14px;
  1179. &::before{
  1180. height: 12px;
  1181. }
  1182. }
  1183. }
  1184. .historyCon{
  1185. .historySwiper{
  1186. .swiper-slide{
  1187. width: 100%;
  1188. height: auto;
  1189. .hisTime{
  1190. display: block;
  1191. }
  1192. .hisBottom{
  1193. display: none;
  1194. }
  1195. .text{
  1196. margin-top: 10px;
  1197. }
  1198. }
  1199. }
  1200. .swiper-page{
  1201. display: flex;
  1202. justify-content: space-between;
  1203. margin-top: 20px;
  1204. height: 40px;
  1205. .rightDiv{
  1206. width: 60%;
  1207. text-align: left;
  1208. display: flex;
  1209. align-items: flex-end;
  1210. padding-bottom: 5px;
  1211. border-bottom: 1px solid #dddddd;
  1212. color: #B81C25;
  1213. position: relative;
  1214. font-size: 12px;
  1215. height: 30px;
  1216. .nowNum{
  1217. margin-right: 5px;
  1218. font-size: 15px;
  1219. position: relative;
  1220. top: 2px;
  1221. }
  1222. .allNum{
  1223. margin-left: 5px;
  1224. }
  1225. .fillLine{
  1226. position: absolute;
  1227. right: 0px;
  1228. bottom: -1px;
  1229. width: 50%;
  1230. height: 1px;
  1231. background: #B81C25;
  1232. }
  1233. }
  1234. }
  1235. }
  1236. }
  1237. .corporate{
  1238. padding: 0px;
  1239. .corporateSwiper {
  1240. margin-top: 35px;
  1241. }
  1242. .corCon{
  1243. position: relative;
  1244. padding: 20px 15px 0;
  1245. box-sizing: border-box;
  1246. .corTits{
  1247. color: #231f20;
  1248. width: 100%;
  1249. height: 40px;
  1250. line-height: 40px;
  1251. div{
  1252. font-size: 16px;
  1253. padding: 0px 0px;
  1254. }
  1255. .activS{
  1256. font-weight: bold;
  1257. }
  1258. }
  1259. .corTxts{
  1260. margin-top: 30px;
  1261. color: #231f20;
  1262. font-size: 16px;
  1263. }
  1264. }
  1265. }
  1266. .society{
  1267. padding-bottom: 110px;
  1268. display: flex;
  1269. flex-direction: column-reverse;
  1270. .societyCon{
  1271. position: relative;
  1272. color: #231F20;
  1273. padding-top: 0px;
  1274. padding-left: 15px;
  1275. padding-right: 15px;
  1276. box-sizing: border-box;
  1277. .text{
  1278. margin-top: 40px;
  1279. margin-bottom: 30px;
  1280. }
  1281. .btn{
  1282. display: none;
  1283. }
  1284. }
  1285. &>.btn{
  1286. display: block;
  1287. margin-top: 80px;
  1288. }
  1289. }
  1290. }