您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

common.less 38KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489
  1. /* -----------------------------共公部分:包括有元素的共公样式以及页头、页脚 ------------------- */
  2. /* 说明:
  3. pc端:
  4. 设计稿1440*900 所有尺寸基本按px来即可;
  5. 正文 16px;
  6. 移动端:
  7. 设计稿宽800px,按逻辑尺寸的两倍制作。因此真实尺寸需要除2;
  8. 如设计稿字体大小28px,则实真字体大小为28px/2=14px;
  9. 或使用vw 字体大小:28/800*10 = 3.5vw
  10. 正文 14px 或 3.5vw
  11. */
  12. @import "/dev/static/font/cavan.css";
  13. @import "/dev/static/font/iconfont.css";
  14. html,
  15. body,
  16. h1,
  17. h2,
  18. h3,
  19. div,
  20. span,
  21. header,
  22. footer,
  23. nav,
  24. section,
  25. input {
  26. margin: 0;
  27. padding: 0;
  28. }
  29. input:focus {
  30. outline: none;
  31. }
  32. html,
  33. body {
  34. width: 100%;
  35. height: 100%;
  36. font-size: 16px;
  37. color: #231f20;
  38. font-family: 'MyFont2';
  39. }
  40. a{
  41. text-decoration: none;
  42. color: #231f20;
  43. }
  44. img{
  45. width: 100%;
  46. }
  47. /* 没图片是不显示 */
  48. img[src=""],
  49. img:not([src]) {
  50. opacity: 0;
  51. }
  52. .btn{
  53. position: relative;
  54. min-width: 200px;
  55. height: 50px;
  56. margin: 0px auto;
  57. background: #B81C25;
  58. box-sizing: border-box;
  59. color: #ffffff;
  60. display: inline-block;
  61. text-align: center;
  62. line-height: 50px;
  63. font-size: 14px;
  64. transition: all .3s ease-in-out;
  65. cursor: pointer;
  66. border-radius: 8px;
  67. &>span{
  68. position: relative;
  69. top: 0px;
  70. transition: all .3s ease-in-out;
  71. }
  72. &:hover{
  73. // background: #48A038;
  74. // border-color: #48A038;
  75. &>span{
  76. top: -1px;
  77. }
  78. }
  79. }
  80. .btnBlack{
  81. color: #000;
  82. border: 1px solid #000;
  83. &:hover{
  84. color: #ffffff;
  85. }
  86. }
  87. .btn2{
  88. position: relative;
  89. z-index: 2;
  90. box-sizing: border-box;
  91. color: #000;
  92. display: inline-block;
  93. text-align: center;
  94. font-size: 14px;
  95. transition: all .3s ease-in-out;
  96. cursor: pointer;
  97. &:hover{
  98. color: #48A038;
  99. }
  100. }
  101. .btn3{
  102. position: relative;
  103. width: 240px;
  104. height: 60px;
  105. box-sizing: border-box;
  106. color: #000;
  107. display: flex;
  108. text-align: center;
  109. line-height: 60px;
  110. font-size: 18px;
  111. transition: all .3s ease-in-out;
  112. cursor: pointer;
  113. border-radius: 50px;
  114. box-sizing: border-box;
  115. border: 1px solid #000;
  116. justify-content: center;
  117. align-items: center;
  118. overflow: hidden;
  119. &::before{
  120. content: '';
  121. width: 10px;
  122. height: 10px;
  123. position: absolute;
  124. bottom: -10px;
  125. left: 50%;
  126. transform: translateX(-50%);
  127. background: #B81C25;
  128. border-radius: 50%;
  129. transition: all .3s ease-in-out;
  130. z-index: -1;
  131. }
  132. &>span{
  133. // transition: all .3s ease-in-out;
  134. transform: rotate(90deg);
  135. font-size: 30px;
  136. margin-left: 8px;
  137. }
  138. &:hover{
  139. color: #fff;
  140. border: 1px solid #B81C25;
  141. &::before{
  142. transform: translateX(-50%) scale(30);
  143. }
  144. }
  145. }
  146. .btnW{
  147. color: #fff;
  148. &:hover{
  149. color: #48A038;
  150. }
  151. }
  152. //公共文本样式,默认是加粗,后面加R表示不加粗,正文文本样式用text
  153. .title{
  154. font-size: 56px;
  155. font-family: 'MyFont1',sans-serif;
  156. font-weight: bold;
  157. }
  158. // 正文文本样式
  159. .text{
  160. font-size: 20px;
  161. line-height: 44px;
  162. }
  163. .goTop{
  164. position: absolute;
  165. bottom: 360px;
  166. right:140px;
  167. transform: rotate(-90deg);
  168. display: none;
  169. .goTopBtn{
  170. width: 84px;
  171. height: 84px;
  172. background: #B2B5B7;
  173. border-radius: 42px;
  174. position: relative;
  175. transition: all .3s ease-in-out;
  176. a{
  177. padding: 0px;
  178. width: 100%;
  179. height: 100%;
  180. }
  181. .btnShow{
  182. .btnIcon{
  183. background-color: #fff;
  184. }
  185. }
  186. &:hover{
  187. background:#48A038;
  188. }
  189. }
  190. }
  191. .aniTxtUp{
  192. &>div{
  193. display: inline-block;
  194. }
  195. }
  196. header{
  197. width: 100%;
  198. position: fixed;
  199. z-index: 9;
  200. transition: all .3s ease-in-out;
  201. .headCon{
  202. width: 100%;
  203. margin: 0 auto;
  204. max-width: 1920px;
  205. // box-shadow: 0px 0px 34px 9px rgba(0,0,0,0.1);
  206. background: #ffffff;
  207. // border-bottom: 1px solid rgba(0,0,0,0.1);
  208. box-shadow: 6px 8px 10px 0px rgba(159,176,191,0.13);
  209. }
  210. .menuType{
  211. background: #ffffff12;
  212. border-bottom: 0px solid rgba(0,0,0,0);
  213. box-shadow: none;
  214. .logo{
  215. }
  216. .headerPC{
  217. .menu{
  218. &>div{
  219. &>a{
  220. color: #ffffff;
  221. }
  222. }
  223. .menuClicked{
  224. &::before{
  225. background: #fff;
  226. }
  227. }
  228. }
  229. .logo{
  230. background: url("../images/logoW.png") no-repeat;
  231. background-size: 180px 40px;
  232. }
  233. .logos{
  234. background: url("../images/logoW.png") no-repeat;
  235. background-size: 180px 40px;
  236. }
  237. .language{
  238. .btn2{
  239. color: #ffffff;
  240. &:hover{
  241. color: #B81C25;
  242. &.aborder{
  243. border: 1px solid #B81C25;
  244. background: #B81C25;
  245. color: #ffffff;
  246. }
  247. }
  248. }
  249. .aborder{
  250. border: 1px solid #ffffff;
  251. }
  252. .line{
  253. background: #ffffff;
  254. }
  255. }
  256. }
  257. .headerMobile{
  258. .logo{
  259. background: url("../images/logoW.png") no-repeat;
  260. background-size: contain;
  261. }
  262. .logos{
  263. background: url("../images/logoW.png") no-repeat;
  264. background-size: contain;
  265. }
  266. }
  267. }
  268. }
  269. .hideHeader{
  270. transform: translateY(-100%);
  271. }
  272. .headerPC{
  273. width: 100%;
  274. box-sizing: border-box;
  275. padding: 0px 100px;
  276. height: 70px;
  277. display: flex;
  278. color: #000;
  279. justify-content: space-between;
  280. align-items: center;
  281. font-size: 14px;
  282. font-weight: 400;
  283. position: relative;
  284. .logo{
  285. width: 180px;
  286. height: 40px;
  287. background: url("../images/logoB.png") no-repeat;
  288. background-size: 180px 40px;
  289. cursor: pointer;
  290. position: absolute;
  291. left: 100px;
  292. }
  293. .logos{
  294. width: 180px;
  295. height: 40px;
  296. background: url("../images/logoB.png") no-repeat;
  297. background-size: 180px 40px;
  298. cursor: pointer;
  299. position: absolute;
  300. left: 100px;
  301. }
  302. .menu{
  303. display: flex;
  304. position: relative;
  305. height: 70px;
  306. align-items: center;
  307. margin: 0 auto;
  308. &>div{
  309. display: inline-block;
  310. padding: 0 30px;
  311. position: relative;
  312. height: 70px;
  313. cursor: pointer;
  314. &>a{
  315. line-height: 70px;
  316. z-index: 11;
  317. transition: all .3s ease;
  318. font-size: 18px;
  319. }
  320. &:hover{
  321. &>a{color: #B81C25;}
  322. }
  323. }
  324. .menuClicked{
  325. &::before{
  326. content: '';
  327. width: calc(100% - 40px);
  328. height: 2px;
  329. position: absolute;
  330. bottom: 0px;
  331. left: 20px;
  332. background: #B81C25;
  333. }
  334. &>a{
  335. color: #B81C25;
  336. }
  337. }
  338. }
  339. .menuSon{
  340. position: absolute;
  341. top: 70px;
  342. padding: 15px 0px 15px;
  343. background: #fff;
  344. box-shadow: 0px 2px 6px 0px rgba(183,183,183,0.43);
  345. // border-radius: 8px;
  346. z-index: 10;
  347. width: auto;
  348. width: 260px;
  349. white-space: nowrap;
  350. left: 50%;
  351. transform: translateX(-50%) translateY(0%);
  352. // transition: all 0.3s cubic-bezier(0.04, 1.21, 0, 1.13);
  353. box-sizing: border-box;
  354. // opacity: 1;
  355. display: none;
  356. text-align: center;
  357. font-size: 18px;
  358. .menuUp{
  359. width: 100%;
  360. height: 2px;
  361. background: #00000000;
  362. position: absolute;
  363. left:0;
  364. top: -2px;
  365. &::before{
  366. content: '';
  367. width: 0;
  368. height: 0;
  369. position: absolute;
  370. display: block;
  371. bottom: -2px;
  372. left: 50%;
  373. transform: translateX(-50%);
  374. border-top:15px solid transparent;
  375. border-left:15px solid transparent;
  376. border-right:15px solid transparent;
  377. border-bottom:15px solid #fff ;
  378. }
  379. }
  380. a{
  381. display: block;
  382. padding: 9px 0;
  383. transition: all .3s ease;
  384. span{
  385. transition: all .3s ease;
  386. display: inline-block;
  387. }
  388. &:hover{
  389. background: #B81C25;
  390. span{
  391. color: #fff;
  392. transform: translateY(-3px);
  393. }
  394. }
  395. &:last-child {
  396. margin-bottom: 0;
  397. }
  398. }
  399. }
  400. .open{
  401. display: block;
  402. }
  403. .language{
  404. height: 70px;
  405. display: flex;
  406. align-items: center;
  407. width: auto;
  408. white-space: nowrap;
  409. cursor: pointer;
  410. position: absolute;
  411. right: 100px;
  412. .btn2{
  413. display: inline-block;
  414. color: #000000;
  415. transition: all .3s ease;
  416. &:hover{
  417. color: #B81C25;
  418. &.aborder{
  419. border: 1px solid #B81C25;
  420. background: #B81C25;
  421. color: #fff;
  422. }
  423. }
  424. }
  425. .aborder{
  426. border: 1px solid #000000;
  427. text-align: center;
  428. width: 100px;
  429. height: 30px;
  430. font-size: 12px;
  431. box-sizing: border-box;
  432. border-radius: 6px;
  433. display: flex;
  434. align-items: center;
  435. justify-content: center;
  436. }
  437. .line{
  438. display: inline-block;
  439. width: 1px;
  440. height: 13px;
  441. background: #000000;
  442. opacity: 0.5;
  443. margin: 0px 20px;
  444. }
  445. }
  446. }
  447. .headerMobile{
  448. display: none;
  449. width: 100%;
  450. height: 60px;
  451. padding: 14px 15px 0px;
  452. box-sizing: border-box;
  453. position: relative;
  454. .logo{
  455. width: 136px;
  456. height: 30px;
  457. position: relative;
  458. z-index: 6;
  459. background: url("../images/logoB.png") no-repeat;
  460. background-size: contain;
  461. cursor: pointer;
  462. top: 2px;
  463. }
  464. .logos{
  465. width: 136px;
  466. height: 30px;
  467. position: relative;
  468. z-index: 6;
  469. background: url("../images/logoB.png") no-repeat;
  470. background-size: contain;
  471. cursor: pointer;
  472. top: 2px;
  473. }
  474. .navFlagBtn {
  475. position: absolute;
  476. top: 12px;
  477. right: 6px;
  478. width: 40px;
  479. height: 40px;
  480. z-index: 8;
  481. .lineCenter {
  482. top: 50%;
  483. margin-top: -1px;
  484. }
  485. .nav_btn_small {
  486. width: 20px;
  487. height: 16px;
  488. position: absolute;
  489. left: 10px;
  490. top: 12px;
  491. }
  492. .lineTop {
  493. top: 0;
  494. }
  495. .lineBottom {
  496. bottom: 0;
  497. }
  498. .nav_btn_small > div {
  499. border-radius: 1px;
  500. width: 100%;
  501. height: 2px;
  502. background-color: #ffffff;
  503. position: absolute;
  504. }
  505. .arrowDirBase {
  506. transition: all 0.3s ease;
  507. -webkit-transition: all 0.3s ease;
  508. -webkit-transform-origin: 50% 50%;
  509. transform-origin: 50% 50%;
  510. }
  511. .arrowDirectionDown {
  512. transform: rotate(45deg) translate(5px, 5px);
  513. -webkit-transform: rotate(45deg) translate(5px, 5px);
  514. }
  515. .arrowDirectionUp {
  516. transform: rotate(-45deg) translate(5px, -5px);
  517. -webkit-transform: rotate(-45deg) translate(5px, -5px);
  518. }
  519. .arrowDirectionCenter {
  520. opacity: 0;
  521. }
  522. }
  523. .navFlag{
  524. width: 100%;
  525. height: calc(100vh - 60px);
  526. position: absolute;
  527. top: 60px;
  528. left: 0;
  529. background-color: #ffffff;
  530. display: none;
  531. z-index: 6;
  532. .navBg{
  533. width: 100%;
  534. height: 60px;
  535. position: absolute;
  536. top: -60px;
  537. left: 0px;
  538. background-color: #ffffff;
  539. background-image: url("../images/logoB.png");
  540. background-size: 89px 22px;
  541. background-repeat: no-repeat;
  542. // border-bottom: 1px solid #0000001b;
  543. background-position: 15px center;
  544. }
  545. .navMenu{
  546. width: 100%;
  547. height: 100%;
  548. box-sizing: border-box;
  549. overflow-y: auto;
  550. &>div{
  551. width: 100%;
  552. padding: 25px 15px;
  553. box-sizing: border-box;
  554. border-bottom: 1px solid #ACACAC80;
  555. .title{
  556. font-size: 18px;
  557. line-height: 18px;
  558. color: #231F20;
  559. padding-left: 13px;
  560. padding-right: 6px;
  561. font-weight: 100;
  562. font-family: 'MyFont2';
  563. span{
  564. float: right;
  565. font-size: 14px;
  566. transform: rotate(-90deg);
  567. transition: all .3s ease;
  568. }
  569. }
  570. .menuSon{
  571. width: 100%;
  572. overflow: hidden;
  573. height: 0px;
  574. clip-path: inset(0 0 100% 0);
  575. transition: all 0.3s ease;
  576. a{
  577. font-size: 16px;
  578. display: block;
  579. color: #666666;
  580. padding: 20px 14px;
  581. border-bottom: 1px solid #ACACAC80;
  582. &:first-child{
  583. margin-top: 10px;
  584. }
  585. &:last-child{
  586. border-bottom: none;
  587. padding-bottom: 0px;
  588. }
  589. }
  590. }
  591. }
  592. .menuShow{
  593. .title{
  594. .iconfont{
  595. transform: rotate(0deg);
  596. }
  597. }
  598. .menuSon{
  599. height: 100%;
  600. clip-path: inset(0 0 0% 0);
  601. }
  602. }
  603. }
  604. .language{
  605. display: flex;
  606. justify-content: center;
  607. align-items: center;
  608. padding: 20px 0px;
  609. a{
  610. font-size: 16px;
  611. display: inline-block;
  612. }
  613. .light{
  614. color: #48A038;
  615. }
  616. div{
  617. width: 1px;
  618. height: 14px;
  619. background: #000000;
  620. display: inline-block;
  621. margin: 0 20px;
  622. }
  623. }
  624. }
  625. .FlagOpen{
  626. display: block;
  627. }
  628. }
  629. footer{
  630. width: 100%;
  631. max-width: 1920px;
  632. margin: 0 auto;
  633. background-color: #f8f8f8;
  634. padding-top: 80px;
  635. position: relative;
  636. .footer{
  637. width: 100%;
  638. max-width: 1300px;
  639. margin: 0px auto;
  640. font-size: 16px;
  641. display: flex;
  642. justify-content: space-between;
  643. .footerLeft{
  644. width: 340px;
  645. text-align: left;
  646. color: #333333;
  647. .footerLogo{
  648. width: 291px;
  649. height: 64px;
  650. background: url('../images/logoB2.png') no-repeat;
  651. background-size: 100% 100%;
  652. margin-bottom: 50px;
  653. }
  654. .footerLCon1{
  655. width: 100%;
  656. display: flex;
  657. margin-top: 50px;
  658. justify-content: space-between;
  659. &>div{
  660. display: inline-block;
  661. font-size: 16px;
  662. font-weight: bold;
  663. span{
  664. opacity: 0.7;
  665. font-size: 16px;
  666. font-weight: 100;
  667. }
  668. }
  669. }
  670. .footerLCon2{
  671. width: 100%;
  672. font-size: 16px;
  673. // font-weight: bold;
  674. margin-top: 20px;
  675. span{
  676. // opacity: 0.7;
  677. font-weight: 100;
  678. }
  679. .txt16{
  680. font-size: 16px;
  681. }
  682. }
  683. }
  684. .footerRight{
  685. width: 176px;
  686. .btnDown{
  687. width: 100%;
  688. height: 40px;
  689. border-radius: 8px;
  690. border: 1px solid #FFFFFF;
  691. position: relative;
  692. .btnDownTitle{
  693. width: 100%;
  694. height: 40px;
  695. line-height: 40px;
  696. box-sizing: border-box;
  697. padding: 0px 20px;
  698. color: #fff;
  699. cursor: pointer;
  700. .tit{
  701. opacity: 0.5;
  702. }
  703. .iconfont{
  704. font-size: 14px;
  705. float: right;
  706. transition: all .3s ease;
  707. }
  708. }
  709. .btnDownMenu{
  710. position: absolute;
  711. top: 42px;
  712. left: 0px;
  713. width: 100%;
  714. min-height: 120px;
  715. max-height: 280px;
  716. overflow-y: auto;
  717. background: #fff;
  718. color: #000;
  719. border-radius: 8px;
  720. clip-path: inset(0% 0% 100% 0%);
  721. transition: all 0.3s ease-in-out;
  722. a{
  723. width: 100%;
  724. line-height: 20px;
  725. padding: 10px 20px;
  726. display: block;
  727. box-sizing: border-box;
  728. transition: all .3s ease-in-out;
  729. &:hover{
  730. color: #B81C25;
  731. }
  732. }
  733. }
  734. }
  735. .imgWx{
  736. text-align: center;
  737. span{
  738. margin-top: 10px;
  739. display: block;
  740. }
  741. }
  742. .btnShow{
  743. .btnDownTitle{
  744. .iconfont{
  745. transform: rotate(-180deg);
  746. }
  747. }
  748. .btnDownMenu{
  749. clip-path: inset(0% 0% 0% 0%);
  750. }
  751. }
  752. .btnUp,.footerLConM{
  753. display: none;
  754. }
  755. }
  756. .footerCenter{
  757. box-sizing: border-box;
  758. margin-bottom: 10px;
  759. display: flex;
  760. color: #333333;
  761. justify-content: flex-start;
  762. font-size: 16px;
  763. .h4{
  764. margin-bottom: 20px;
  765. }
  766. .h5R{
  767. margin-top: 15px;
  768. }
  769. &>div{
  770. margin-right: 58px;
  771. a{
  772. color: #333;
  773. display: block;
  774. span{
  775. display: inline-block;
  776. position: relative;
  777. &::before{
  778. content: '';
  779. position: absolute;
  780. bottom: -5px;
  781. left: 0px;
  782. width: 0%;
  783. height: 1px;
  784. background: #333;
  785. transition: all .3s ease-in-out;
  786. }
  787. }
  788. &:hover{
  789. span{
  790. &::before{
  791. width: 100%;
  792. }
  793. }
  794. }
  795. }
  796. &>.h7{
  797. font-size: 18px;
  798. }
  799. .h7{
  800. margin-bottom: 20px;
  801. font-weight: bold;
  802. font-family: 'MyFont1';
  803. }
  804. .h7R{
  805. margin-bottom: 20px;
  806. opacity: 0.7;
  807. }
  808. &>span{
  809. display: none;
  810. }
  811. .footerShow{
  812. display: flex;
  813. flex-direction: column;
  814. a{
  815. &:hover{
  816. color: #000;
  817. }
  818. }
  819. }
  820. }
  821. }
  822. .footerCenterM{
  823. display: none;
  824. }
  825. }
  826. .footerIcon{
  827. width: 100%;
  828. max-width: 1300px;
  829. margin: 0px auto;
  830. display: flex;
  831. flex-direction: row;
  832. justify-content: flex-end;
  833. padding-bottom: 20px;
  834. border-bottom: 1px solid #ffffff21;
  835. color: #fff;
  836. &>div{
  837. margin-left: 40px;
  838. cursor: pointer;
  839. position: relative;
  840. &>div{
  841. width: 187px;
  842. height: 186px;
  843. position: absolute;
  844. bottom:40px;
  845. right: -82px;
  846. // background: url('../images/weixin.png') no-repeat;
  847. // background-size: 100%;
  848. opacity: 0;
  849. clip-path: inset(0 0 100% 0);
  850. transition: opacity 0.3s ease-in-out;
  851. img{
  852. width: 100%;
  853. display: block;
  854. }
  855. }
  856. &:hover{
  857. &>div{
  858. opacity: 1;
  859. clip-path: inset(0 0 0 0);
  860. }
  861. }
  862. }
  863. .wxShow{
  864. div{
  865. opacity: 1;
  866. clip-path: inset(0 0 0 0);
  867. }
  868. }
  869. .iconfont{
  870. font-size: 24px;
  871. transition: all 0.3s ease;
  872. }
  873. }
  874. .footerText{
  875. width: 100%;
  876. max-width: 1300px;
  877. margin: 30px auto 0px;
  878. border-top: 1px solid #dfdfdf;
  879. text-align: center;
  880. color: #605f5f;
  881. font-size: 12px;
  882. box-sizing: border-box;
  883. padding:20px 15px;
  884. opacity: 0.7;
  885. a{
  886. color: #605f5f;
  887. }
  888. br,&>span{
  889. display: none;
  890. }
  891. }
  892. }
  893. .searchCon{
  894. width: 100%;
  895. height: 100%;
  896. position: fixed;
  897. background: rgba(0,0,0,0.4);
  898. display: flex;
  899. top: 0px;
  900. left: 0px;
  901. z-index: -1;
  902. justify-content: center;
  903. align-items: center;
  904. transition: all .6s ease-in-out;
  905. opacity: 0;
  906. transform: translateY(-100%);
  907. .searchConIn{
  908. width: 70%;
  909. max-width: 1300px;
  910. // height: 100%;
  911. max-height: 80%;
  912. background: #fff;
  913. .searchUp{
  914. width: 100%;
  915. border-bottom: 1px solid #dbdbdb;
  916. height: 60px;
  917. line-height: 60px;
  918. text-align: left;
  919. box-sizing: border-box;
  920. padding: 0px 30px;
  921. .searchInput{
  922. padding-left: 20px;
  923. border: 0px;
  924. width: calc(100% - 60px);
  925. font-size: 20px;
  926. font-family: 'MyFont2';
  927. }
  928. .icon-search{
  929. color: #B81C25;
  930. }
  931. .searchClose{
  932. float: right;
  933. cursor: pointer;
  934. .iconfont{
  935. transform: rotate(0deg);
  936. transition: all .3s ease-in-out;
  937. display: inline-block;
  938. }
  939. &:hover{
  940. .iconfont{
  941. transform: rotate(180deg);
  942. color: #B81C25;
  943. }
  944. }
  945. }
  946. }
  947. .searchDw{
  948. width: 100%;
  949. height: calc(80vh - 60px);
  950. overflow-y: auto;
  951. box-sizing: border-box;
  952. padding: 20px 30px 20px;
  953. display: none;
  954. &::-webkit-scrollbar {
  955. width: 3px;
  956. }
  957. &::-webkit-scrollbar-thumb {
  958. background-color: #b5b5b5;
  959. }
  960. }
  961. .searchShow{
  962. display: block;
  963. }
  964. }
  965. .newsType{
  966. width: 100%;
  967. height: 100%;
  968. .newsLi{
  969. width: 100%;
  970. display: flex;
  971. justify-content: space-between;
  972. border-bottom: 1px solid #acacac5e;
  973. box-sizing: border-box;
  974. padding: 30px 15px;
  975. &:last-child{
  976. border-bottom: 0px solid #ACACAC;
  977. }
  978. .newsLiCon{
  979. width: 100%;
  980. font-size: 18px;
  981. text-align: left;
  982. &>div{
  983. overflow: hidden;
  984. white-space: nowrap;
  985. width: 100%;
  986. height: 24px;
  987. text-overflow: ellipsis;
  988. }
  989. .liTitle{
  990. color: #231F20;
  991. font-weight: 500;
  992. span{
  993. color: #B81C25;
  994. }
  995. }
  996. }
  997. transition: all 0.3s ease-in-out;
  998. &:hover{
  999. background: rgba(184, 28, 37, 0.05);
  1000. .newsLiCon{
  1001. .liTitle{
  1002. color: #B81C25;
  1003. }
  1004. }
  1005. }
  1006. }
  1007. }
  1008. }
  1009. .searchConShow{
  1010. opacity: 1;
  1011. z-index: 33;
  1012. transform: translateY(0%);
  1013. }
  1014. .chooseM{
  1015. display: none;
  1016. }
  1017. @media screen and (min-width: 1080px) and (max-width: 1480px) {
  1018. footer {
  1019. .footerIcon{
  1020. .weixin{
  1021. div{
  1022. right: 0px;
  1023. }
  1024. }
  1025. }
  1026. }
  1027. }
  1028. @media screen and (min-width: 1080px) and (max-width: 1390px) {
  1029. .headerPC{
  1030. padding: 0px 50px;
  1031. .logo{
  1032. position: relative;
  1033. left: 0px;
  1034. }
  1035. .logos{
  1036. position: relative;
  1037. left: 0px;
  1038. }
  1039. .language{
  1040. position: relative;
  1041. right: 0px;
  1042. }
  1043. }
  1044. footer {
  1045. padding: 60px 30px 0px;
  1046. box-sizing: border-box;
  1047. .footer{
  1048. justify-content: space-between;
  1049. &>div{
  1050. margin-right: 10px;
  1051. }
  1052. }
  1053. .footerIcon{
  1054. &>div{
  1055. &>div{
  1056. right: 0px;
  1057. }
  1058. }
  1059. }
  1060. }
  1061. }
  1062. /* 移动端样式 */
  1063. @media screen and (max-width: 1080px) {
  1064. // html,
  1065. // body {
  1066. // font-size: 14px;
  1067. // }
  1068. .title{
  1069. font-size: 32px;
  1070. line-height: 48px;
  1071. }
  1072. // 正文文本样式
  1073. .text{
  1074. font-size: 16px;
  1075. line-height: 32px;
  1076. }
  1077. .btn{
  1078. width: 175px;
  1079. height: 35px;
  1080. line-height: 35px;
  1081. border-radius: 4px;
  1082. min-width: 175px;
  1083. }
  1084. .btn2 {
  1085. transform: scale(1);
  1086. .btnCon{
  1087. font-size: 12px;
  1088. line-height: 42px;
  1089. }
  1090. .btnBg{
  1091. // width: 42px;
  1092. // height: 42px;
  1093. // right: 10px;
  1094. // top: 6px;
  1095. -webkit-clip-path: inset(10px 10px 10px calc( 100% - 46px) round 18px);
  1096. clip-path: inset(10px 10px 10px calc( 100% - 46px) round 18px);
  1097. }
  1098. .btnShow{
  1099. width: 20px;
  1100. height: 42px;
  1101. right: 17px;
  1102. top: 6px;
  1103. .btnMove{
  1104. width: 40px;
  1105. height: 42px;
  1106. transform: translateX(-20px);
  1107. }
  1108. .btnIcon{
  1109. width: 20px;
  1110. height: 42px;
  1111. &>span{
  1112. margin-right: 2px;
  1113. }
  1114. .dot{
  1115. width: 2px;
  1116. height: 2px;
  1117. border-radius: 2px;
  1118. }
  1119. .arrow{
  1120. width: 8px;
  1121. height:8px;
  1122. &>span{
  1123. width: 8px;
  1124. height: 2px;
  1125. border-radius: 2px;
  1126. }
  1127. .arrowR{
  1128. width: 2px;
  1129. height: 8px;
  1130. top: 0px;
  1131. right: 0px;
  1132. }
  1133. .arrowL{
  1134. width: 10px;
  1135. top: 4px;
  1136. left: -2px;
  1137. }
  1138. }
  1139. }
  1140. }
  1141. &>a{
  1142. border-radius: 27px;
  1143. padding: 6px 80px 6px 25px;
  1144. box-sizing: border-box;
  1145. &:hover{
  1146. .btnCon{
  1147. .btnBg{
  1148. // width: 100%;
  1149. // height: 100%;
  1150. // right: 0px;
  1151. // top: 0px;
  1152. // border-radius: 27px;
  1153. }
  1154. &>div{
  1155. color: #ffffff;
  1156. }
  1157. }
  1158. .btnMove{
  1159. transform: translateX(0px);
  1160. }
  1161. }
  1162. }
  1163. }
  1164. .btn3{
  1165. width: 190px;
  1166. height: 40px;
  1167. line-height: 40px;
  1168. font-size: 14px;
  1169. border-radius: 50px;
  1170. &>span{
  1171. font-size: 20px;
  1172. }
  1173. }
  1174. .headerPC{
  1175. display: none;
  1176. }
  1177. .headerMobile{
  1178. width: 100%;
  1179. display: block;
  1180. .navFlagBtn{
  1181. .nav_btn_small{
  1182. &>div{
  1183. background-color: #000000;
  1184. }
  1185. }
  1186. }
  1187. }
  1188. .menuType{
  1189. .headerMobile{
  1190. .navFlagBtn{
  1191. .nav_btn_small{
  1192. &>div{
  1193. background-color: #ffffff;
  1194. }
  1195. }
  1196. }
  1197. .btnOpen{
  1198. .nav_btn_small{
  1199. &>div{
  1200. background-color: #000000;
  1201. }
  1202. }
  1203. }
  1204. }
  1205. }
  1206. footer{
  1207. width: 100%;
  1208. box-sizing: border-box;
  1209. padding: 45px 15px 0px 15px;
  1210. position: relative;
  1211. .footer{
  1212. margin-bottom: 0px;
  1213. justify-content: space-between;
  1214. flex-wrap: wrap;
  1215. padding: 0px;
  1216. .footerLeft{
  1217. width: 100%;
  1218. margin-right: 0px;
  1219. text-align: center;
  1220. .footerLogo{
  1221. width: 190px;
  1222. height: 40px;
  1223. margin: 0px auto;
  1224. background-size: auto 100%;
  1225. }
  1226. .footerLCon1,.footerLCon2{
  1227. display: none;
  1228. }
  1229. }
  1230. .footerCenter{
  1231. width: 100%;
  1232. margin-top: 55px;
  1233. margin-bottom: 30px;
  1234. margin-right: 0px;
  1235. justify-content: flex-start;
  1236. flex-wrap: wrap;
  1237. display: none;
  1238. &>div{
  1239. margin-right: 0px;
  1240. display: flex;
  1241. flex-wrap: wrap;
  1242. justify-content: space-between;
  1243. width: 55px;
  1244. margin-bottom: 0px;
  1245. padding: 15px 0px;
  1246. .h7{
  1247. margin-bottom: 0px;
  1248. line-height: 17px;
  1249. font-weight: normal;
  1250. }
  1251. .h7R{
  1252. margin-bottom: 0px;
  1253. }
  1254. &>a{
  1255. width: 50%;
  1256. span{
  1257. &::before{
  1258. display: none;
  1259. }
  1260. }
  1261. }
  1262. &>span{
  1263. font-size: 17px;
  1264. width: 17px;
  1265. height: 17px;
  1266. line-height: 17px;
  1267. display: inline-block;
  1268. &::before{
  1269. transform: rotate(90deg);
  1270. display: inline-block;
  1271. transition: all 0.5s ease-in-out;
  1272. }
  1273. }
  1274. .footerShow{
  1275. width: 100%;
  1276. display: flex;
  1277. flex-wrap: wrap;
  1278. height: 0px;
  1279. overflow: hidden;
  1280. transition: all 0.5s ease-in-out;
  1281. padding-top: 0px;
  1282. box-sizing: border-box;
  1283. flex-direction: row;
  1284. align-items: center;
  1285. a{
  1286. width: 100%;
  1287. box-sizing: border-box;
  1288. display: inline-block;
  1289. }
  1290. }
  1291. }
  1292. }
  1293. .footerCenterM{
  1294. display: flex;
  1295. justify-content: space-between;
  1296. width: 100%;
  1297. margin-top: 40px;
  1298. margin-bottom: 30px;
  1299. padding-bottom: 15px;
  1300. border-bottom: 1px solid #dfdfdf;
  1301. a{
  1302. width: 60px;
  1303. color: #333333;
  1304. font-size: 14px;
  1305. display: inline-block;
  1306. padding: 15px 0px;
  1307. }
  1308. div{
  1309. width: 1px;
  1310. height: 8px;
  1311. background: #fff;
  1312. opacity: 0.2;
  1313. display: inline-block;
  1314. margin: 0px 13px;
  1315. }
  1316. }
  1317. .footerRight{
  1318. width: 100%;
  1319. color: #333333;
  1320. .btnUp{
  1321. display: block;
  1322. width: 100%;
  1323. font-size: 14px;
  1324. margin-bottom: 20px;
  1325. }
  1326. .footerLConM{
  1327. display: block;
  1328. font-size: 14px;
  1329. margin-bottom: 60px;
  1330. a{
  1331. color: #333333;
  1332. display: block;
  1333. width: 100%;
  1334. }
  1335. .footerLCon2{
  1336. margin-top: 30px;
  1337. }
  1338. div{
  1339. color: #333333;
  1340. }
  1341. }
  1342. .imgWx{
  1343. padding-bottom: 30px;
  1344. img{
  1345. width: 90px;
  1346. display: inline-block;
  1347. }
  1348. span{
  1349. margin-top: 5px;
  1350. }
  1351. }
  1352. }
  1353. .ckShow{
  1354. &>span{
  1355. &::before{
  1356. transform: rotate(-90deg);
  1357. }
  1358. }
  1359. .footerShow{
  1360. padding-top: 10px;
  1361. }
  1362. .show1{
  1363. height: 172px;
  1364. }
  1365. .show2{
  1366. height: 172px;
  1367. }
  1368. .show3{
  1369. height: 210px;
  1370. }
  1371. .show4{
  1372. height: 90px;
  1373. }
  1374. .show5{
  1375. height: 172px;
  1376. }
  1377. }
  1378. }
  1379. .footerIcon{
  1380. width: 100%;
  1381. justify-content: space-evenly;
  1382. padding-bottom: 45px;
  1383. padding-top: 60px;
  1384. &>div{
  1385. margin-left: 0px;
  1386. }
  1387. }
  1388. .footerText{
  1389. font-size: 12px;
  1390. padding:18px 0px 25px 0px;
  1391. line-height: 22px;
  1392. margin: 10px auto 0px;
  1393. &>span{
  1394. width: 30px;
  1395. display: inline-block;
  1396. }
  1397. br{
  1398. display: block;
  1399. }
  1400. }
  1401. }
  1402. .chooseM{
  1403. display: flex;
  1404. font-size: 14px;
  1405. width: 100%;
  1406. height: 55px;
  1407. line-height: 55px;
  1408. position: fixed;
  1409. bottom: 0;
  1410. left: 0;
  1411. background: #ffffffe0;
  1412. z-index: 2;
  1413. align-items: center;
  1414. justify-content: space-evenly;
  1415. a{
  1416. display: inline-block;
  1417. text-align: center;
  1418. color: #000000;
  1419. width: 30%;
  1420. text-align: center;
  1421. }
  1422. span{
  1423. display: inline-block;
  1424. width: 1px;
  1425. height: 15px;
  1426. background: #000;
  1427. }
  1428. }
  1429. .searchCon{
  1430. .newsType{
  1431. .newsLi{
  1432. padding-bottom: 20px;
  1433. margin-top: 20px;
  1434. .newsLiCon{
  1435. font-size: 16px;
  1436. padding-top: 4px;
  1437. &>div{
  1438. height: 20px;
  1439. }
  1440. .liTitle{
  1441. margin-bottom: 8px;
  1442. }
  1443. }
  1444. }
  1445. }
  1446. }
  1447. }