style.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. @charset "UTF-8";
  2. /*!
  3. * WFFW(Webfront Framework) of W3SDK - w3sdk-1.5.0-beta (http://w3cut.cn Copyright©2019 W3)
  4. *
  5. * style - 2019/12/20
  6. * 说明:统一样式
  7. * 用法:html 文件中引用
  8. */
  9. *:focus {
  10. outline: none;
  11. }
  12. a:hover {
  13. text-decoration: none;
  14. color: #2c91eb !important;
  15. }
  16. label {
  17. margin-bottom: 0;
  18. }
  19. .h1,
  20. .h2,
  21. .h3,
  22. .h4,
  23. .h5,
  24. .h6,
  25. h1,
  26. h2,
  27. h3,
  28. h4,
  29. h5,
  30. h6,
  31. p,
  32. label {
  33. margin: 0;
  34. line-height: 1em;
  35. }
  36. dl,
  37. ol,
  38. ul {
  39. padding: 0;
  40. margin: 0;
  41. }
  42. dl li,
  43. ol li,
  44. ul li {
  45. list-style: none;
  46. }
  47. table {
  48. width: 100%;
  49. }
  50. table tr.hd {
  51. display: table-row;
  52. }
  53. .carousel-indicators {
  54. z-index: 2;
  55. bottom: 20px;
  56. }
  57. .carousel-indicators li {
  58. opacity: 1;
  59. border: none;
  60. }
  61. .nav {
  62. display: block;
  63. }
  64. .nav .nav-link {
  65. padding: 0;
  66. }
  67. .fl {
  68. float: left;
  69. }
  70. .fr {
  71. float: right;
  72. }
  73. .cf::after {
  74. content: "";
  75. display: block;
  76. clear: both;
  77. }
  78. .al {
  79. text-align: left;
  80. }
  81. .ar {
  82. text-align: right;
  83. }
  84. .ac {
  85. text-align: center;
  86. }
  87. .aj {
  88. text-align: justify;
  89. }
  90. .lc {
  91. text-transform: lowercase;
  92. }
  93. .uc {
  94. text-transform: uppercase;
  95. }
  96. .pa-tl {
  97. position: absolute;
  98. z-index: 1;
  99. top: 0;
  100. left: 0;
  101. }
  102. .pa-tr {
  103. position: absolute;
  104. z-index: 1;
  105. top: 0;
  106. right: 0;
  107. }
  108. .pa-br {
  109. position: absolute;
  110. z-index: 1;
  111. bottom: 0;
  112. right: 0;
  113. }
  114. .pa-bl {
  115. position: absolute;
  116. z-index: 1;
  117. bottom: 0;
  118. left: 0;
  119. }
  120. .elli {
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. white-space: nowrap;
  124. }
  125. .ofvi {
  126. overflow: visible !important;
  127. }
  128. .ht00 {
  129. display: block;
  130. height: 0px;
  131. }
  132. .ht05 {
  133. display: block;
  134. height: 5px;
  135. }
  136. .ht10 {
  137. display: block;
  138. height: 10px;
  139. }
  140. .ht15 {
  141. display: block;
  142. height: 15px;
  143. }
  144. .ht20 {
  145. display: block;
  146. height: 20px;
  147. }
  148. .ht25 {
  149. display: block;
  150. height: 25px;
  151. }
  152. .ht30 {
  153. display: block;
  154. height: 30px;
  155. }
  156. .ht35 {
  157. display: block;
  158. height: 35px;
  159. }
  160. .ht40 {
  161. display: block;
  162. height: 40px;
  163. }
  164. .ht45 {
  165. display: block;
  166. height: 45px;
  167. }
  168. .ht50 {
  169. display: block;
  170. height: 50px;
  171. }
  172. .ht55 {
  173. display: block;
  174. height: 55px;
  175. }
  176. .ht60 {
  177. display: block;
  178. height: 60px;
  179. }
  180. .ht65 {
  181. display: block;
  182. height: 65px;
  183. }
  184. .ht70 {
  185. display: block;
  186. height: 70px;
  187. }
  188. .ht75 {
  189. display: block;
  190. height: 75px;
  191. }
  192. .ht80 {
  193. display: block;
  194. height: 80px;
  195. }
  196. .ht85 {
  197. display: block;
  198. height: 85px;
  199. }
  200. .ht90 {
  201. display: block;
  202. height: 90px;
  203. }
  204. .ht95 {
  205. display: block;
  206. height: 95px;
  207. }
  208. .wh00 {
  209. display: inline-block;
  210. width: 0px;
  211. }
  212. .wh05 {
  213. display: inline-block;
  214. width: 5px;
  215. }
  216. .wh10 {
  217. display: inline-block;
  218. width: 10px;
  219. }
  220. .wh15 {
  221. display: inline-block;
  222. width: 15px;
  223. }
  224. .wh20 {
  225. display: inline-block;
  226. width: 20px;
  227. }
  228. .wh25 {
  229. display: inline-block;
  230. width: 25px;
  231. }
  232. .wh30 {
  233. display: inline-block;
  234. width: 30px;
  235. }
  236. .wh35 {
  237. display: inline-block;
  238. width: 35px;
  239. }
  240. .wh40 {
  241. display: inline-block;
  242. width: 40px;
  243. }
  244. .wh45 {
  245. display: inline-block;
  246. width: 45px;
  247. }
  248. .wh50 {
  249. display: inline-block;
  250. width: 50px;
  251. }
  252. .wh55 {
  253. display: inline-block;
  254. width: 55px;
  255. }
  256. .wh60 {
  257. display: inline-block;
  258. width: 60px;
  259. }
  260. .wh65 {
  261. display: inline-block;
  262. width: 65px;
  263. }
  264. .wh70 {
  265. display: inline-block;
  266. width: 70px;
  267. }
  268. .wh75 {
  269. display: inline-block;
  270. width: 75px;
  271. }
  272. .wh80 {
  273. display: inline-block;
  274. width: 80px;
  275. }
  276. .wh85 {
  277. display: inline-block;
  278. width: 85px;
  279. }
  280. .wh90 {
  281. display: inline-block;
  282. width: 90px;
  283. }
  284. .wh95 {
  285. display: inline-block;
  286. width: 95px;
  287. }
  288. .em00 {
  289. display: inline-block;
  290. width: 0em;
  291. }
  292. .em05 {
  293. display: inline-block;
  294. width: 0.5em;
  295. }
  296. .em10 {
  297. display: inline-block;
  298. width: 1em;
  299. }
  300. .em15 {
  301. display: inline-block;
  302. width: 1.5em;
  303. }
  304. .em20 {
  305. display: inline-block;
  306. width: 2em;
  307. }
  308. .em25 {
  309. display: inline-block;
  310. width: 2.5em;
  311. }
  312. .em30 {
  313. display: inline-block;
  314. width: 3em;
  315. }
  316. .em35 {
  317. display: inline-block;
  318. width: 3.5em;
  319. }
  320. .em40 {
  321. display: inline-block;
  322. width: 4em;
  323. }
  324. .em45 {
  325. display: inline-block;
  326. width: 4.5em;
  327. }
  328. .em50 {
  329. display: inline-block;
  330. width: 5em;
  331. }
  332. .em55 {
  333. display: inline-block;
  334. width: 5.5em;
  335. }
  336. .em60 {
  337. display: inline-block;
  338. width: 6em;
  339. }
  340. .em65 {
  341. display: inline-block;
  342. width: 6.5em;
  343. }
  344. .em70 {
  345. display: inline-block;
  346. width: 7em;
  347. }
  348. .em75 {
  349. display: inline-block;
  350. width: 7.5em;
  351. }
  352. .em80 {
  353. display: inline-block;
  354. width: 8em;
  355. }
  356. .em85 {
  357. display: inline-block;
  358. width: 8.5em;
  359. }
  360. .em90 {
  361. display: inline-block;
  362. width: 9em;
  363. }
  364. .em95 {
  365. display: inline-block;
  366. width: 9.5em;
  367. }
  368. .nobg {
  369. background: none !important;
  370. }
  371. .nobt {
  372. border-top: none !important;
  373. }
  374. .nobr {
  375. border-right: none !important;
  376. }
  377. .nobb {
  378. border-bottom: none !important;
  379. }
  380. .nobl {
  381. border-left: none !important;
  382. }
  383. .nobd {
  384. border: none !important;
  385. }
  386. .nopt {
  387. padding-top: 0 !important;
  388. }
  389. .nopr {
  390. padding-right: 0 !important;
  391. }
  392. .nopb {
  393. padding-bottom: 0 !important;
  394. }
  395. .nopl {
  396. padding-left: 0 !important;
  397. }
  398. .nopd {
  399. padding: 0 !important;
  400. }
  401. .nomt {
  402. margin-top: 0 !important;
  403. }
  404. .nomr {
  405. margin-right: 0 !important;
  406. }
  407. .nomb {
  408. margin-bottom: 0 !important;
  409. }
  410. .noml {
  411. margin-left: 0 !important;
  412. }
  413. .nomg {
  414. margin: 0 !important;
  415. }
  416. ._list.s1 > ul > li {
  417. width: 100%;
  418. }
  419. ._list.s2 > ul > li {
  420. width: 50%;
  421. }
  422. ._list.s3 > ul > li {
  423. width: 33.3333333333%;
  424. }
  425. ._list.s4 > ul > li {
  426. width: 25%;
  427. }
  428. ._list.s5 > ul > li {
  429. width: 20%;
  430. }
  431. ._list.s6 > ul > li {
  432. width: 16.6666666667%;
  433. }
  434. ._list > ul::after {
  435. content: "";
  436. display: block;
  437. clear: both;
  438. }
  439. ._list > ul > li {
  440. float: left;
  441. }
  442. ._lrct::after {
  443. content: "";
  444. display: block;
  445. clear: both;
  446. }
  447. ._lrct > .l {
  448. float: left;
  449. }
  450. ._lrct > .r {
  451. float: right;
  452. }
  453. ._lrct > .p {
  454. float: left;
  455. width: 50%;
  456. }
  457. ._cover {
  458. content: "";
  459. position: absolute;
  460. z-index: 1;
  461. top: 0;
  462. height: 100%;
  463. left: 0;
  464. width: 100%;
  465. }
  466. ._icon {
  467. content: "";
  468. display: inline-block;
  469. width: 0;
  470. height: 0;
  471. background: none no-repeat center;
  472. background-size: 100% 100%;
  473. vertical-align: middle;
  474. }
  475. ._abox {
  476. position: fixed;
  477. z-index: 11;
  478. top: 50%;
  479. left: 50%;
  480. -webkit-transform: translateX(-50%) translateY(-50%);
  481. transform: translateX(-50%) translateY(-50%);
  482. display: none;
  483. }
  484. ._abox.show {
  485. display: block;
  486. }
  487. *:hover, *:hover:before, *:hover:after {
  488. -webkit-transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, -webkit-box-shadow 300ms;
  489. transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, -webkit-box-shadow 300ms;
  490. transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, box-shadow 300ms;
  491. transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, box-shadow 300ms, -webkit-box-shadow 300ms;
  492. }
  493. .zimg {
  494. overflow: hidden;
  495. }
  496. .zimg img {
  497. width: 100%;
  498. -webkit-transition: -webkit-transform 300ms;
  499. transition: -webkit-transform 300ms;
  500. transition: transform 300ms;
  501. transition: transform 300ms, -webkit-transform 300ms;
  502. }
  503. .wp:hover .zimg img, .zimg:hover img {
  504. -webkit-transform: scale(1.05);
  505. transform: scale(1.05);
  506. }
  507. .hover {
  508. -webkit-transition: -webkit-transform 300ms;
  509. transition: -webkit-transform 300ms;
  510. transition: transform 300ms;
  511. transition: transform 300ms, -webkit-transform 300ms;
  512. }
  513. .hover.zoom:hover, .wp:hover .hover.zoom {
  514. -webkit-transform: scale(1.05);
  515. transform: scale(1.05);
  516. }
  517. .hover.up:hover, .wp:hover .hover.up {
  518. -webkit-transform: translateY(-5%);
  519. transform: translateY(-5%);
  520. }
  521. .hover.down:hover, .wp:hover .hover.down {
  522. -webkit-transform: translateY(5%);
  523. transform: translateY(5%);
  524. }
  525. .hover.right:hover, .wp:hover .hover.right {
  526. -webkit-transform: translateX(5%);
  527. transform: translateX(5%);
  528. }
  529. .hover.left:hover, .wp:hover .hover.rigleftht {
  530. -webkit-transform: translateX(-5%);
  531. transform: translateX(-5%);
  532. }
  533. .hover.rotate:hover, .wp:hover .hover.rotateC {
  534. -webkit-transform: rotate(360deg);
  535. transform: rotate(360deg);
  536. }
  537. .hover.rotateAnti:hover, .wp:hover .hover.rotateAnti {
  538. -webkit-transform: rotate(-360deg);
  539. transform: rotate(-360deg);
  540. }
  541. .hover.rotateY:hover, .wp:hover .hover.rotateY {
  542. -webkit-transform: rotateY(360deg);
  543. transform: rotateY(360deg);
  544. }
  545. .hover.rotateX:hover, .wp:hover .hover.rotateX {
  546. -webkit-transform: rotateX(360deg);
  547. transform: rotateX(360deg);
  548. }
  549. .pc-hide {
  550. display: none;
  551. }
  552. @media (max-width: 768px) {
  553. body.pcs .ht00 {
  554. display: block;
  555. height: 0px;
  556. }
  557. body.pcs .ht05 {
  558. display: block;
  559. height: 2.5px;
  560. }
  561. body.pcs .ht10 {
  562. display: block;
  563. height: 5px;
  564. }
  565. body.pcs .ht15 {
  566. display: block;
  567. height: 7.5px;
  568. }
  569. body.pcs .ht20 {
  570. display: block;
  571. height: 10px;
  572. }
  573. body.pcs .ht25 {
  574. display: block;
  575. height: 12.5px;
  576. }
  577. body.pcs .ht30 {
  578. display: block;
  579. height: 15px;
  580. }
  581. body.pcs .ht35 {
  582. display: block;
  583. height: 17.5px;
  584. }
  585. body.pcs .ht40 {
  586. display: block;
  587. height: 20px;
  588. }
  589. body.pcs .ht45 {
  590. display: block;
  591. height: 22.5px;
  592. }
  593. body.pcs .ht50 {
  594. display: block;
  595. height: 25px;
  596. }
  597. body.pcs .ht55 {
  598. display: block;
  599. height: 27.5px;
  600. }
  601. body.pcs .ht60 {
  602. display: block;
  603. height: 30px;
  604. }
  605. body.pcs .ht65 {
  606. display: block;
  607. height: 32.5px;
  608. }
  609. body.pcs .ht70 {
  610. display: block;
  611. height: 35px;
  612. }
  613. body.pcs .ht75 {
  614. display: block;
  615. height: 37.5px;
  616. }
  617. body.pcs .ht80 {
  618. display: block;
  619. height: 40px;
  620. }
  621. body.pcs .ht85 {
  622. display: block;
  623. height: 42.5px;
  624. }
  625. body.pcs .ht90 {
  626. display: block;
  627. height: 45px;
  628. }
  629. body.pcs .ht95 {
  630. display: block;
  631. height: 47.5px;
  632. }
  633. body.pcs .wh00 {
  634. display: inline-block;
  635. width: 0px;
  636. }
  637. body.pcs .wh05 {
  638. display: inline-block;
  639. width: 2.5px;
  640. }
  641. body.pcs .wh10 {
  642. display: inline-block;
  643. width: 5px;
  644. }
  645. body.pcs .wh15 {
  646. display: inline-block;
  647. width: 7.5px;
  648. }
  649. body.pcs .wh20 {
  650. display: inline-block;
  651. width: 10px;
  652. }
  653. body.pcs .wh25 {
  654. display: inline-block;
  655. width: 12.5px;
  656. }
  657. body.pcs .wh30 {
  658. display: inline-block;
  659. width: 15px;
  660. }
  661. body.pcs .wh35 {
  662. display: inline-block;
  663. width: 17.5px;
  664. }
  665. body.pcs .wh40 {
  666. display: inline-block;
  667. width: 20px;
  668. }
  669. body.pcs .wh45 {
  670. display: inline-block;
  671. width: 22.5px;
  672. }
  673. body.pcs .wh50 {
  674. display: inline-block;
  675. width: 25px;
  676. }
  677. body.pcs .wh55 {
  678. display: inline-block;
  679. width: 27.5px;
  680. }
  681. body.pcs .wh60 {
  682. display: inline-block;
  683. width: 30px;
  684. }
  685. body.pcs .wh65 {
  686. display: inline-block;
  687. width: 32.5px;
  688. }
  689. body.pcs .wh70 {
  690. display: inline-block;
  691. width: 35px;
  692. }
  693. body.pcs .wh75 {
  694. display: inline-block;
  695. width: 37.5px;
  696. }
  697. body.pcs .wh80 {
  698. display: inline-block;
  699. width: 40px;
  700. }
  701. body.pcs .wh85 {
  702. display: inline-block;
  703. width: 42.5px;
  704. }
  705. body.pcs .wh90 {
  706. display: inline-block;
  707. width: 45px;
  708. }
  709. body.pcs .wh95 {
  710. display: inline-block;
  711. width: 47.5px;
  712. }
  713. body.pcs .pc-hide {
  714. display: block;
  715. }
  716. body.pcs .mb-hide {
  717. display: none;
  718. }
  719. body.pcs .lrct > .l, body.pcs .lrct > .r, body.pcs .lrct > .p {
  720. float: none;
  721. width: 100%;
  722. }
  723. body.pcs .list.s1 ul li, body.pcs .list.s2 ul li {
  724. width: 100%;
  725. }
  726. body.pcs .list.s3 ul li, body.pcs .list.s4 ul li {
  727. width: 50%;
  728. }
  729. body.pcs .list.s5 ul li, body.pcs .list.s6 ul li {
  730. width: 33.33%;
  731. }
  732. body.pcs {
  733. min-width: 0;
  734. }
  735. body.pcs .container {
  736. width: 100% !important;
  737. padding: 0 15px;
  738. }
  739. body.pcs .home_activ {
  740. width: 100% !important;
  741. padding: 0 15px;
  742. margin: auto;
  743. }
  744. body.pcs .home_activ li:nth-child(1){
  745. padding-right: 0 !important;
  746. }
  747. body.pcs .home_activ li:nth-child(2){
  748. padding-right: 0 !important;
  749. padding-left: 0 !important;
  750. }
  751. body.pcs .home_activ li:nth-child(3){
  752. padding-left: 0 !important;
  753. }
  754. .hdyelaie .el-carousel__container{height: 300px!important;}
  755. body.pcs .home_activ>li{height: 330px!important;}
  756. body.pcs .a_inmg{
  757. width: 100%;
  758. display: inline-block;
  759. margin: auto;
  760. padding: 0 15px;
  761. }
  762. body.pcs .container.full {
  763. padding: 0;
  764. }
  765. body.pcs header {
  766. z-index: 11;
  767. min-width: 0;
  768. }
  769. body.pcs header .mbtn {
  770. display: block;
  771. }
  772. }
  773. html {
  774. font-size: 10px;
  775. }
  776. body {
  777. font-size: 1.2rem;
  778. display: block !important;
  779. }
  780. body:after {
  781. content: "";
  782. position: fixed;
  783. z-index: 10;
  784. top: 0;
  785. left: 0;
  786. width: 100%;
  787. height: 100%;
  788. background: rgba(0, 0, 0, 0.6);
  789. display: none;
  790. }
  791. body.on-mask:after, body.on-menu:after {
  792. display: block;
  793. }
  794. .container {
  795. padding: 0;
  796. position: relative;
  797. height: 100%;
  798. max-width: 100%;
  799. }
  800. header {
  801. position: relative;
  802. z-index: 9;
  803. top: 0;
  804. left: 0;
  805. width: 100%;
  806. }
  807. header .logo {
  808. display: inline-block;
  809. }
  810. .wximgx{width: 40px;height:45px;}
  811. .wximg{position: absolute;right: -1px;top: 42px;width: 190px;height:216px;display: none;}
  812. .wxbox:hover .wximg{display: block;}
  813. header .mbtn {
  814. display: none;
  815. position: absolute;
  816. z-index: 1;
  817. top: 0;
  818. right: 0;
  819. }
  820. footer .back {
  821. position: fixed;
  822. z-index: 9;
  823. -webkit-transform: scale(0);
  824. transform: scale(0);
  825. -webkit-transition: -webkit-transform 300ms;
  826. transition: -webkit-transform 300ms;
  827. transition: transform 300ms;
  828. transition: transform 300ms, -webkit-transform 300ms;
  829. }
  830. body.on-scro footer .back {
  831. -webkit-transform: scale(1);
  832. transform: scale(1);
  833. }
  834. .hd,
  835. .ct,
  836. .ft,
  837. .head,
  838. .cont,
  839. .foot,
  840. .cnt,
  841. .img,
  842. .i,
  843. .p {
  844. position: relative;
  845. display: block;
  846. }
  847. .bt {
  848. display: inline-block;
  849. }
  850. .u-fullpart {
  851. position: relative;
  852. background: none no-repeat 50% 0;
  853. background-size: cover;
  854. overflow: hidden;
  855. }
  856. .u-fullpart.bgrp {
  857. background-repeat: no-repeat;
  858. background-size: auto;
  859. }
  860. /*
  861. @font-face{
  862. font-family: 字体名称;
  863. src: url(../fonts/字体名称.ttf);
  864. }*/
  865. html {
  866. font-size: 10px;
  867. }
  868. body {
  869. font-family: 微软雅黑;
  870. font-size: 1.2rem;
  871. display: block !important;
  872. min-width: 1200px;
  873. color: #000000;
  874. }
  875. .container {
  876. padding: 0;
  877. position: relative;
  878. height: 100%;
  879. width: 1200px;
  880. }
  881. .condese{
  882. width: 1100px;
  883. margin: 0 auto;
  884. margin-left: 68px !important;
  885. }
  886. .condesee{
  887. width: 1000px;
  888. margin: 0 auto;
  889. }
  890. .container.lt {
  891. width: 980px;
  892. }
  893. .container.gt {
  894. width: 1400px;
  895. }
  896. .container.full {
  897. width: 100%;
  898. padding: 0;
  899. }
  900. a {
  901. color: #000000;
  902. text-align: center;
  903. }
  904. a:hover {
  905. color: #e10101;
  906. }
  907. .bd {
  908. border: 1px solid #e2e2e2;
  909. background-color: #fff;
  910. }
  911. header {
  912. /* margin-bottom: 10px; */
  913. }
  914. header > .a {
  915. background-color: #014582;
  916. }
  917. header > .b {
  918. border-bottom: 1px solid #eaeaea;
  919. height: 230px;
  920. background-image: url(../picture/pic_hp_dhbg@2x.png) ;
  921. background-repeat:no-repeat;
  922. background-size:100% 100%;
  923. }
  924. header > .b .container{
  925. display: flex;
  926. justify-content: space-between;
  927. flex-direction: column;
  928. }
  929. header .tool {
  930. line-height: 50px;
  931. color: #fff;
  932. }
  933. header .tool .loca {
  934. display: inline-block;
  935. /* margin-left: 25px; */
  936. }
  937. header .tool .loca .ca {
  938. color: #009944;
  939. }
  940. header .tool .loca .cb {
  941. color: #cc0000;
  942. }
  943. header .tool .loca img {
  944. position: relative;
  945. top: -1px;
  946. }
  947. header .tool .srch {
  948. display: inline-block;
  949. margin-left: 44%;
  950. font-size: 14px;
  951. position: relative;
  952. }
  953. header .tool .hujey {
  954. display: inline-block;
  955. margin-left: 38%;
  956. }
  957. header .tool .srch .tt {
  958. width: 278px;
  959. height: 30px;
  960. border: 1px solid #022D53;
  961. border-radius: 15px;
  962. padding-left: 10px;
  963. background-color: #022D53;
  964. color: #fff;
  965. }
  966. header .tool .srch input::-webkit-input-placeholder {
  967. color: #fff;
  968. }
  969. header .tool .srch .tt::-moz-placeholder {
  970. color: #fff;
  971. }
  972. header .tool .srch .tt:-moz-placeholder {
  973. color: #fff;
  974. }
  975. header .tool .srch .tt:-ms-input-placeholder {
  976. color: #fff;
  977. }
  978. header .tool .srch img {
  979. width: 18px;
  980. height: 18px;
  981. position: absolute;
  982. right: 20px;
  983. top: 50%;
  984. transform: translateY(-50%);
  985. }
  986. header .tool .srch .tt::-webkit-input-placeholder {
  987. color: #fff;
  988. }
  989. header .tool .srch .bt {
  990. display: inline-block;
  991. width: 28px;
  992. height: 28px;
  993. background: url(../images/i-find.png) no-repeat center #b6b6b6;
  994. border-radius: 50%;
  995. vertical-align: middle;
  996. margin: 0 8px;
  997. }
  998. header .tool .srch .bt:hover {
  999. opacity: 0.8;
  1000. }
  1001. header .tool .srch .lk {
  1002. text-decoration: underline !important;
  1003. }
  1004. header .tool .srch .lk:hover {
  1005. color: #e10101;
  1006. }
  1007. header .logo {
  1008. /* padding-top: 22px; */
  1009. margin-top: 50px;
  1010. }
  1011. header .logo img{
  1012. /* padding-top: 22px; */
  1013. width: 769px;
  1014. height: 78px;
  1015. }
  1016. header .menu > ul > li {
  1017. margin-left: 82px;
  1018. }
  1019. header .menu > ul > li:first-child {
  1020. margin-left: 0;
  1021. }
  1022. header .menu .i.on > p a {
  1023. border-bottom-color: #014582;
  1024. color: #014582;
  1025. font-weight: 700;
  1026. }
  1027. header .menu .i:hover > .ex {
  1028. display: block;
  1029. }
  1030. header .menu .i > p a {
  1031. display: block;
  1032. padding: 0 5px;
  1033. line-height: 55px;
  1034. height: 55px;
  1035. border-bottom: 2px solid transparent;
  1036. font-size: 18px;
  1037. }
  1038. header .condese > ul > li{
  1039. margin-left: 67px;
  1040. }
  1041. header .menu .i > .ex {
  1042. position: absolute;
  1043. top: 100%;
  1044. left: 0;
  1045. width: 100%;
  1046. background-color: #C0E1FF;
  1047. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1048. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1049. display: none;
  1050. }
  1051. header .menu .i > .ex p {
  1052. /* border-bottom: 1px solid #eee; */
  1053. }
  1054. /* header .menu .i > .ex p:hover {
  1055. background-color: #014582;
  1056. color: #fff !important;
  1057. } */
  1058. header .menu .i > .ex .inhye{
  1059. background-color: #014582;
  1060. color: #fff !important;
  1061. }
  1062. header .menu .i > .ex p a {
  1063. display: block;
  1064. line-height: 50px;
  1065. text-align: center;
  1066. font-size: 14px;
  1067. color: #014582;
  1068. }
  1069. header .menu .i > .ex p a:hover {
  1070. color: #fff !important;
  1071. }
  1072. @media (max-width: 768px) {
  1073. header {
  1074. position: fixed;
  1075. height: 50px;
  1076. background-color: #fff;
  1077. }
  1078. header > .a {
  1079. display: none;
  1080. }
  1081. header > .b {
  1082. height: 50px;
  1083. }
  1084. header .logo {
  1085. padding-top: 12px;
  1086. margin-top: 0;
  1087. }
  1088. header .logo img {
  1089. height: 26px;
  1090. width: 80%;
  1091. margin-top: 0;
  1092. }
  1093. header .mbtn {
  1094. position: absolute;
  1095. top: 0;
  1096. right: 0;
  1097. width: 50px;
  1098. height: 50px;
  1099. background: url(../picture/微信图片_20211215145934.png) no-repeat center #014582;
  1100. background-size: 40px auto;
  1101. }
  1102. body.on-menu header .mbtn {
  1103. background-image: url(../images/mbtn-hide.png);
  1104. }
  1105. header .fr {
  1106. position: absolute;
  1107. top: 100%;
  1108. left: 0;
  1109. width: 100%;
  1110. border-top: 1px solid #eee;
  1111. background-color: #fff;
  1112. -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1113. box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1114. display: none;
  1115. }
  1116. body.on-menu header .fr {
  1117. display: block;
  1118. }
  1119. header .menu > ul > li {
  1120. margin-left: 0;
  1121. float: none;
  1122. }
  1123. header .menu .i > p a {
  1124. line-height: 45px;
  1125. height: 45px;
  1126. font-size: 14px;
  1127. text-align: center;
  1128. border-bottom-width: 1px;
  1129. }
  1130. header .menu .i > .ex {
  1131. background-color: #fff;
  1132. z-index: 1;
  1133. }
  1134. header .menu .i > .ex p a {
  1135. line-height: 45px;
  1136. font-size: 13px;
  1137. }
  1138. }
  1139. @media (max-width: 768px) {
  1140. main {
  1141. padding-top: 50px;
  1142. }
  1143. }
  1144. footer > .a {
  1145. /* background: url(../images/foot-bg.jpg) no-repeat 50% 0; */
  1146. background-size: auto 342px;
  1147. padding-top: 30px;
  1148. padding-bottom: 20px;
  1149. text-align: center;
  1150. }
  1151. footer > .b {
  1152. background-color: #28564c;
  1153. }
  1154. footer .link p a {
  1155. font-size: 16px;
  1156. margin: 0 35px;
  1157. }
  1158. footer .info p {
  1159. color: #666;
  1160. font-size: 14px;
  1161. line-height: 24px;
  1162. }
  1163. footer .foot p {
  1164. line-height: 50px;
  1165. color: #fff;
  1166. font-size: 14px;
  1167. }
  1168. footer .foot p a {
  1169. color: #fff;
  1170. }
  1171. .nhy{
  1172. background-color: #eee ;
  1173. height: 6px;
  1174. width: 100%;
  1175. margin-top: 30px;
  1176. }
  1177. footer .foot p a:hover {
  1178. opacity: 0.8;
  1179. }
  1180. @media (max-width: 768px) {
  1181. footer > .a {
  1182. background-size: cover;
  1183. padding-top: 35px;
  1184. padding-bottom: 55px;
  1185. }
  1186. footer .link p a {
  1187. font-size: 12px;
  1188. margin: 0 5px;
  1189. }
  1190. footer .info p {
  1191. font-size: 12px;
  1192. line-height: 20px;
  1193. }
  1194. footer .info p img {
  1195. zoom: 0.8;
  1196. }
  1197. footer .foot p {
  1198. line-height: 20px;
  1199. font-size: 11px;
  1200. text-align: center;
  1201. padding: 10px 0;
  1202. }
  1203. footer .foot p .fr {
  1204. float: none !important;
  1205. display: block;
  1206. }
  1207. }
  1208. .u-fullpart {
  1209. padding: 0 0;
  1210. background: none no-repeat 50% 0;
  1211. background-size: cover;
  1212. overflow: hidden;
  1213. }
  1214. .u-fullpart.bgrp {
  1215. background-repeat: no-repeat;
  1216. background-size: auto;
  1217. }
  1218. .u-fullpart.bg-g {
  1219. background-color: #ececec;
  1220. }
  1221. .u-fullpart.mtht {
  1222. margin-top: -50px;
  1223. }
  1224. @media (max-width: 768px) {
  1225. .u-fullpart.mtht {
  1226. margin-top: 10px;
  1227. }
  1228. }
  1229. .u-banner .i {
  1230. display: block;
  1231. height: 423px;
  1232. background: none no-repeat center;
  1233. background-size: cover;
  1234. }
  1235. .u-banner .nhyeowe{
  1236. height: 410px !important;
  1237. }
  1238. .u-banner .nhyeowe .el-carousel__container{
  1239. height: 410px !important;
  1240. }
  1241. .u-banner .carousel-indicators li {
  1242. width: 12px;
  1243. height: 12px;
  1244. background-color: #fff;
  1245. border-radius: 50%;
  1246. margin: 0 6px;
  1247. }
  1248. .u-banner .carousel-indicators li.active {
  1249. background-color: #e10101 !important;
  1250. }
  1251. @media (max-width: 768px) {
  1252. .u-banner .i {
  1253. height: 150px;
  1254. }
  1255. .u-banner .nhyeowe{
  1256. height: 86px !important;
  1257. }
  1258. .u-banner .nhyeowe .el-carousel__container{
  1259. height: 86px !important;
  1260. }
  1261. .u-banner img {
  1262. /* width: auto !important;
  1263. height: auto !important;
  1264. max-width: 100%;
  1265. max-height: 100%; */
  1266. }
  1267. .u-banner .carousel-indicators {
  1268. bottom: 8px;
  1269. }
  1270. .u-banner .carousel-indicators li {
  1271. width: 8px;
  1272. height: 8px;
  1273. margin: 0 4px;
  1274. }
  1275. }
  1276. .u-notice {
  1277. background-color: #eee;
  1278. }
  1279. .u-notice .noti {
  1280. position: relative;
  1281. padding-left: 115px;
  1282. }
  1283. .u-notice .noti > label {
  1284. font-size: 16px;
  1285. line-height: 40px;
  1286. position: absolute;
  1287. top: 0;
  1288. left: 0;
  1289. }
  1290. .u-notice .noti > label::before {
  1291. content: "";
  1292. display: inline-block;
  1293. width: 20px;
  1294. height: 19px;
  1295. background: url(../images/i-noti.png) no-repeat center;
  1296. background-size: 100% 100%;
  1297. vertical-align: middle;
  1298. margin: 0 5px;
  1299. }
  1300. .u-notice .noti > .ct {
  1301. line-height: 40px;
  1302. font-size: 16px;
  1303. }
  1304. .u-notice .noti > .ct a {
  1305. padding: 0 10px;
  1306. }
  1307. .u-notice .scroll {
  1308. overflow: hidden;
  1309. }
  1310. .u-notice .scroll ul {
  1311. white-space: nowrap;
  1312. }
  1313. .u-notice .scroll ul li {
  1314. display: inline-block;
  1315. }
  1316. @media (max-width: 768px) {
  1317. .u-notice .noti {
  1318. padding-left: 90px;
  1319. }
  1320. .u-notice .noti > label {
  1321. font-size: 12px;
  1322. line-height: 35px;
  1323. }
  1324. .u-notice .noti > label::before {
  1325. zoom: 0.8;
  1326. }
  1327. .u-notice .noti > .ct {
  1328. line-height: 35px;
  1329. font-size: 12px;
  1330. }
  1331. .u-notice .noti > .ct a {
  1332. padding: 0 5px;
  1333. }
  1334. }
  1335. .u-hotops {
  1336. padding: 12px;
  1337. position: relative;
  1338. }
  1339. .u-hotops::before {
  1340. content: "";
  1341. display: inline-block;
  1342. width: 59px;
  1343. height: 59px;
  1344. background: url(../images/d-tops.png) no-repeat center;
  1345. background-size: 100% 100%;
  1346. vertical-align: middle;
  1347. position: absolute;
  1348. top: 0;
  1349. left: 0;
  1350. }
  1351. .u-hotops h3 {
  1352. text-align: center;
  1353. font-size: 30px;
  1354. font-weight: bold;
  1355. margin-bottom: 8px;
  1356. }
  1357. .u-hotops h3 a {
  1358. color: #e10101;
  1359. }
  1360. .u-hotops p {
  1361. font-size: 16px;
  1362. line-height: 28px;
  1363. text-indent: 2em;
  1364. }
  1365. .u-hotops p a {
  1366. color: #e10101;
  1367. }
  1368. .u-hotops p a:hover {
  1369. text-decoration: underline !important;
  1370. }
  1371. @media (max-width: 768px) {
  1372. .u-hotops::before {
  1373. zoom: 0.8;
  1374. }
  1375. .u-hotops h3 {
  1376. font-size: 16px;
  1377. }
  1378. .u-hotops p {
  1379. font-size: 12px;
  1380. line-height: 22px;
  1381. }
  1382. }
  1383. .u-lrcthome > .l {
  1384. width: 600px;
  1385. }
  1386. .u-lrcthome > .r {
  1387. width: 600px;
  1388. padding-left: 20px;
  1389. }
  1390. @media (max-width: 768px) {
  1391. .u-lrcthome > .l,
  1392. .u-lrcthome > .r {
  1393. float: none;
  1394. width: 100%;
  1395. padding: 0;
  1396. }
  1397. .u-lrcthome > .l {
  1398. margin-bottom: 15px;
  1399. }
  1400. }
  1401. .u-focus .i > p {
  1402. content: "";
  1403. position: absolute;
  1404. z-index: 1;
  1405. bottom: 0;
  1406. left: 0;
  1407. width: 100%;
  1408. background-color: rgba(0, 0, 0, 0.6);
  1409. padding: 0 10px;
  1410. line-height: 34px;
  1411. font-size: 14px;
  1412. color: #fff;
  1413. }
  1414. .u-focus .i img {
  1415. width: 100%;
  1416. }
  1417. .u-focus .carousel-indicators {
  1418. left: auto;
  1419. right: 0;
  1420. margin-right: 10px;
  1421. bottom: 12px;
  1422. }
  1423. .u-focus .carousel-indicators li {
  1424. width: 9px;
  1425. height: 9px;
  1426. background-color: #fff;
  1427. border-radius: 50%;
  1428. margin: 0 2px;
  1429. }
  1430. .u-focus .carousel-indicators li.active {
  1431. background-color: #e10101 !important;
  1432. }
  1433. @media (max-width: 768px) {
  1434. .u-focus .i > p {
  1435. font-size: 12px;
  1436. line-height: 32px;
  1437. }
  1438. .u-focus .carousel-indicators li {
  1439. width: 8px;
  1440. height: 8px;
  1441. }
  1442. }
  1443. .u-partview > .hd {
  1444. border-bottom: 1px solid #e3e3e3;
  1445. }
  1446. .u-partview > .hd p > label {
  1447. display: inline-block;
  1448. border-bottom: 2px solid #014582;
  1449. padding-bottom: 5px;
  1450. font-size: 20px;
  1451. margin-bottom: -1px;
  1452. font-weight: bold;
  1453. color: #014582;
  1454. }
  1455. .u-partview > .hd p a {
  1456. display: inline-block;
  1457. padding-top: 8px;
  1458. }
  1459. @media (max-width: 768px) {
  1460. .u-partview > .hd p > label {
  1461. border-bottom-width: 1px;
  1462. font-size: 16px;
  1463. }
  1464. .u-partview > .hd p a {
  1465. padding-top: 4px;
  1466. font-size: 11px;
  1467. }
  1468. }
  1469. .u-newslist.in p {
  1470. line-height: 40px;
  1471. }
  1472. .u-newslist.in p::before {
  1473. width: 3px;
  1474. height: 3px;
  1475. background: #1a5cbf;
  1476. position: relative;
  1477. top: -1px;
  1478. }
  1479. .u-newslist p {
  1480. line-height: 33px;
  1481. font-size: 16px;
  1482. overflow: hidden;
  1483. text-overflow: ellipsis;
  1484. white-space: nowrap;
  1485. }
  1486. .u-newslist p::before {
  1487. content: "";
  1488. display: inline-block;
  1489. width: 8px;
  1490. height: 11px;
  1491. background: url(../images/i_san.png) no-repeat center;
  1492. background-size: 100% 100%;
  1493. vertical-align: middle;
  1494. vertical-align: middle;
  1495. margin-right: 5px;
  1496. position: relative;
  1497. top: -1px;
  1498. border-radius: 50%;
  1499. }
  1500. .u-newslist p small {
  1501. font-size: 14px;
  1502. color: #999999;
  1503. }
  1504. @media (max-width: 768px) {
  1505. .u-newslist.in p {
  1506. line-height: 32px;
  1507. }
  1508. .u-newslist p {
  1509. line-height: 28px;
  1510. font-size: 12px;
  1511. }
  1512. .u-newslist p::before {
  1513. zoom: 0.8;
  1514. }
  1515. .u-newslist p small {
  1516. font-size: 12px;
  1517. }
  1518. }
  1519. .u-homenews > ul {
  1520. margin: -10px;
  1521. }
  1522. .u-homenews > ul > li {
  1523. padding: 10px;
  1524. }
  1525. @media (max-width: 768px) {
  1526. .u-homenews.s3 > ul > li {
  1527. width: 100%;
  1528. }
  1529. }
  1530. .u-fullad img {
  1531. width: 100%;
  1532. }
  1533. .u-prodshow ul {
  1534. margin: -6px;
  1535. }
  1536. .u-prodshow ul li {
  1537. padding: 6px;
  1538. }
  1539. .u-prodshow .i > .ct {
  1540. border: 1px solid #e4e4e4;
  1541. padding: 2px;
  1542. }
  1543. .u-prodshow .i p {
  1544. margin-top: 10px;
  1545. text-align: center;
  1546. font-size: 14px;
  1547. overflow: hidden;
  1548. text-overflow: ellipsis;
  1549. white-space: nowrap;
  1550. }
  1551. @media (max-width: 768px) {
  1552. .u-prodshow.s5 > ul > li {
  1553. width: 50%;
  1554. }
  1555. .u-prodshow .i p {
  1556. margin-top: 8px;
  1557. font-size: 12px;
  1558. }
  1559. }
  1560. .u-pagepath {
  1561. padding: 10px 0;
  1562. padding-left: 15px;
  1563. }
  1564. .u-pagepath p {
  1565. font-size: 15px;
  1566. }
  1567. .u-pagepath p::before {
  1568. content: "";
  1569. display: inline-block;
  1570. width: 12px;
  1571. height: 12px;
  1572. background: url(../images/i-this.png) no-repeat center;
  1573. background-size: 100% 100%;
  1574. vertical-align: middle;
  1575. margin-right: 5px;
  1576. }
  1577. @media (max-width: 768px) {
  1578. .u-pagepath {
  1579. padding: 8px 0;
  1580. padding-left: 10px;
  1581. }
  1582. .u-pagepath p {
  1583. font-size: 12px;
  1584. }
  1585. .u-pagepath p::before {
  1586. zoom: 0.8;
  1587. }
  1588. }
  1589. .u-lrctmain > .l {
  1590. width: 310px;
  1591. }
  1592. .u-lrctmain > .r {
  1593. width: 870px;
  1594. }
  1595. @media (max-width: 768px) {
  1596. .u-lrctmain > .l,
  1597. .u-lrctmain > .r {
  1598. width: 100%;
  1599. float: none;
  1600. }
  1601. .u-lrctmain > .l {
  1602. margin-bottom: 15px;
  1603. }
  1604. }
  1605. .u-sidenavi {
  1606. min-height: 700px;
  1607. padding: 20px;
  1608. }
  1609. .u-sidenavi > .hd {
  1610. border-bottom: 1px solid #c3c3c3;
  1611. padding-bottom: 10px;
  1612. }
  1613. .u-sidenavi > .hd p {
  1614. color: #1a5cbf;
  1615. font-size: 24px;
  1616. font-weight: bold;
  1617. }
  1618. .u-sidenavi > .ct ul li {
  1619. margin-bottom: 15px;
  1620. }
  1621. .u-sidenavi > .ct ul li:last-child {
  1622. margin-bottom: 0;
  1623. }
  1624. .u-sidenavi > .ct .i {
  1625. display: block;
  1626. background-color: #f0f0f0;
  1627. border-left: 5px solid #dddddd;
  1628. line-height: 40px;
  1629. text-align: center;
  1630. font-size: 18px;
  1631. }
  1632. .u-sidenavi > .ct .i:hover, .u-sidenavi > .ct .i.on {
  1633. background-color: #e8f1f8;
  1634. border-left-color: #3366d1;
  1635. color: #3366d1;
  1636. }
  1637. @media (max-width: 768px) {
  1638. .u-sidenavi {
  1639. min-height: 0;
  1640. padding: 15px;
  1641. }
  1642. .u-sidenavi > .hd {
  1643. padding-bottom: 5px;
  1644. }
  1645. .u-sidenavi > .hd p {
  1646. font-size: 16px;
  1647. }
  1648. .u-sidenavi > .ct ul li {
  1649. margin-bottom: 10px;
  1650. }
  1651. .u-sidenavi > .ct .i {
  1652. border-left-width: 3px;
  1653. line-height: 36px;
  1654. font-size: 14px;
  1655. }
  1656. }
  1657. .u-maincont {
  1658. min-height: 700px;
  1659. padding: 20px;
  1660. }
  1661. @media (max-width: 768px) {
  1662. .u-maincont {
  1663. min-height: 0;
  1664. padding: 15px;
  1665. }
  1666. }
  1667. .u-paging p {
  1668. text-align: center;
  1669. }
  1670. .u-paging p a {
  1671. display: inline-block;
  1672. line-height: 28px;
  1673. padding: 0 6px;
  1674. font-size: 13px;
  1675. border: 1px solid transparent;
  1676. margin: 0 1px;
  1677. }
  1678. .u-paging p a:not(.tt):hover, .u-paging p a.on {
  1679. background-color: #eeeeee;
  1680. border-color: #0078d3;
  1681. }
  1682. .u-paging p a.aw {
  1683. border-color: #dfdfdf;
  1684. }
  1685. @media (max-width: 768px) {
  1686. .u-paging p a:not(.aw) {
  1687. display: none;
  1688. }
  1689. .u-paging p a.tt {
  1690. display: none;
  1691. }
  1692. .u-paging p span {
  1693. display: none;
  1694. }
  1695. }
  1696. .u-article {
  1697. background-color: transparent;
  1698. padding: 35px;
  1699. }
  1700. .u-article > .hd {
  1701. text-align: center;
  1702. border-bottom: 1px dashed #cccccc;
  1703. padding-bottom: 10px;
  1704. }
  1705. .u-article > .hd h3 {
  1706. color: #164fa6;
  1707. font-size: 28px;
  1708. font-weight: bold;
  1709. }
  1710. .u-article > .hd p {
  1711. margin-top: 20px;
  1712. color: #888888;
  1713. font-size: 16px;
  1714. }
  1715. .u-article > .hd h5 {
  1716. margin-top: 10px;
  1717. text-align: right;
  1718. }
  1719. .u-article > .ct {
  1720. margin-top: 20px;
  1721. }
  1722. .u-article > .ct p {
  1723. font-size: 18px;
  1724. line-height: 32px;
  1725. text-indent: 2em;
  1726. }
  1727. .u-article > .ct img {
  1728. display: block;
  1729. margin: 1em auto;
  1730. }
  1731. .u-article > .ft {
  1732. border-top: 1px dashed #cccccc;
  1733. padding-top: 20px;
  1734. }
  1735. .u-article > .ft p.p1 {
  1736. text-align: right;
  1737. padding: 0 8%;
  1738. }
  1739. .u-article > .ft p.p1 .i {
  1740. display: inline-block;
  1741. border: 1px solid #cecece;
  1742. line-height: 24px;
  1743. padding: 0 6px;
  1744. color: #666666;
  1745. font-size: 13px;
  1746. }
  1747. .u-article > .ft p.p2 {
  1748. margin-top: 20px;
  1749. padding: 0 15%;
  1750. }
  1751. .u-article > .ft p.p2 a {
  1752. color: #555555;
  1753. font-size: 14px;
  1754. /*display: inline-block;*/
  1755. width: 48%;
  1756. text-align: center;
  1757. }
  1758. .u-article > .ft p.p2 a:hover {
  1759. text-decoration: underline !important;
  1760. }
  1761. .u-article > .ft p.p2 a em {
  1762. font-style: normal;
  1763. color: #0078d3;
  1764. }
  1765. @media (max-width: 768px) {
  1766. .u-article {
  1767. padding: 15px;
  1768. }
  1769. .u-article > .hd h3 {
  1770. font-size: 18px;
  1771. line-height: 1.4em;
  1772. }
  1773. .u-article > .hd p {
  1774. margin-top: 10px;
  1775. font-size: 12px;
  1776. }
  1777. .u-article > .hd h5 {
  1778. text-align: center;
  1779. }
  1780. .u-article > .ct {
  1781. margin-top: 15px;
  1782. }
  1783. .u-article > .ct p {
  1784. font-size: 12px;
  1785. line-height: 24px;
  1786. }
  1787. .u-article > .ct img {
  1788. max-width: 100%;
  1789. }
  1790. .u-article > .ft {
  1791. padding-top: 15px;
  1792. }
  1793. .u-article > .ft p.p1 {
  1794. padding: 0;
  1795. }
  1796. .u-article > .ft p.p1 .i {
  1797. zoom: 0.8;
  1798. }
  1799. .u-article > .ft p.p2 {
  1800. padding: 0;
  1801. }
  1802. .u-article > .ft p.p2 a {
  1803. display: block;
  1804. width: 100%;
  1805. font-size: 12px;
  1806. margin-bottom: 10px;
  1807. text-align: left;
  1808. }
  1809. .u-article > .ft p.p2 a:last-child {
  1810. margin-bottom: 0;
  1811. }
  1812. }
  1813. .btm{
  1814. width: 42px;
  1815. height: 88px;
  1816. background-color: rgb(255, 255, 255);
  1817. border: 1px solid #eeeeee;
  1818. position: fixed;
  1819. bottom:220px;
  1820. right:2px;
  1821. z-index: 24;
  1822. }
  1823. .upd{
  1824. width: 40px;
  1825. height: 40px;
  1826. display: block;
  1827. position: relative;
  1828. }
  1829. .db{
  1830. width: 15px;
  1831. height: 24px;
  1832. position: absolute;
  1833. top: 50%;
  1834. left: 50%;
  1835. margin-top: -12px;
  1836. margin-left: -7.5px;
  1837. }
  1838. .bjx{
  1839. width: 42px;
  1840. height: 1px;
  1841. background-color: rgb(207, 207, 207);
  1842. margin: 0;
  1843. border: 0;
  1844. }
  1845. .dowe{
  1846. width: 40px;
  1847. height: 40px;
  1848. display: block;
  1849. position: relative;
  1850. }
  1851. .ewm{
  1852. width: 21px;
  1853. height: 21px;
  1854. position: absolute;
  1855. top: 50%;
  1856. left: 50%;
  1857. margin-left: -10.5px;
  1858. margin-top: -10.5px;
  1859. display: inline-block;
  1860. }
  1861. .xs{
  1862. visibility: hidden;
  1863. width: 148px;
  1864. height: 211px;
  1865. border: 1px solid #8f8f8f;
  1866. background-color: rgb(255, 255, 255);
  1867. position: absolute;
  1868. z-index: 1;
  1869. top: -160px;
  1870. right: 200%;
  1871. }
  1872. .xs::before{
  1873. content: "";
  1874. border: inherit;
  1875. position: absolute;
  1876. top: 79%;
  1877. left: 100%;
  1878. margin-top: -5px;
  1879. border-width: 10px;
  1880. border-style: solid ;
  1881. background: inherit;
  1882. border-color: transparent transparent transparent rgb(228, 228, 228);
  1883. }
  1884. b{
  1885. display: block;
  1886. color: #333333;
  1887. text-align: center;
  1888. border-radius: 6px;
  1889. padding: 5px 0;
  1890. margin-top: 20px;
  1891. }
  1892. .da{
  1893. width: 125px;
  1894. height: 125px;
  1895. margin: 0 11px;
  1896. }
  1897. .ewm:hover .xs{
  1898. visibility: visible;
  1899. }
  1900. .u-partview.hd p>label {
  1901. display: inline-block;
  1902. padding-bottom: 5px;
  1903. font-size: 20px;
  1904. margin-bottom: -1px;
  1905. font-weight: 400;
  1906. color: #e10101;
  1907. cursor:pointer;
  1908. }
  1909. .hdiu{
  1910. border-bottom: 2px solid #e10101;
  1911. font-weight: bold !important;
  1912. }
  1913. .publicity{
  1914. display: none;
  1915. }
  1916. .home_activ {
  1917. width: 1200px !important;
  1918. margin: auto !important;
  1919. }
  1920. .home_activ li:nth-child(1){
  1921. padding-left: 0 !important;
  1922. }
  1923. .home_activ li:nth-child(3){
  1924. padding-right: 0 !important;
  1925. }
  1926. .a_inmg{
  1927. width: 1200px;
  1928. display: inline-block;
  1929. margin: auto;
  1930. }
  1931. .u_ima{
  1932. text-align: center;
  1933. }