style.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  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. body.pcs .a_inmg{
  755. width: 100%;
  756. display: inline-block;
  757. margin: auto;
  758. padding: 0 15px;
  759. }
  760. body.pcs .container.full {
  761. padding: 0;
  762. }
  763. body.pcs header {
  764. z-index: 11;
  765. min-width: 0;
  766. }
  767. body.pcs header .mbtn {
  768. display: block;
  769. }
  770. }
  771. html {
  772. font-size: 10px;
  773. }
  774. body {
  775. font-size: 1.2rem;
  776. display: block !important;
  777. }
  778. body:after {
  779. content: "";
  780. position: fixed;
  781. z-index: 10;
  782. top: 0;
  783. left: 0;
  784. width: 100%;
  785. height: 100%;
  786. background: rgba(0, 0, 0, 0.6);
  787. display: none;
  788. }
  789. body.on-mask:after, body.on-menu:after {
  790. display: block;
  791. }
  792. .container {
  793. padding: 0;
  794. position: relative;
  795. height: 100%;
  796. max-width: 100%;
  797. }
  798. header {
  799. position: relative;
  800. z-index: 9;
  801. top: 0;
  802. left: 0;
  803. width: 100%;
  804. }
  805. header .logo {
  806. display: inline-block;
  807. }
  808. header .mbtn {
  809. display: none;
  810. position: absolute;
  811. z-index: 1;
  812. top: 0;
  813. right: 0;
  814. }
  815. footer .back {
  816. position: fixed;
  817. z-index: 9;
  818. -webkit-transform: scale(0);
  819. transform: scale(0);
  820. -webkit-transition: -webkit-transform 300ms;
  821. transition: -webkit-transform 300ms;
  822. transition: transform 300ms;
  823. transition: transform 300ms, -webkit-transform 300ms;
  824. }
  825. body.on-scro footer .back {
  826. -webkit-transform: scale(1);
  827. transform: scale(1);
  828. }
  829. .hd,
  830. .ct,
  831. .ft,
  832. .head,
  833. .cont,
  834. .foot,
  835. .cnt,
  836. .img,
  837. .i,
  838. .p {
  839. position: relative;
  840. display: block;
  841. }
  842. .bt {
  843. display: inline-block;
  844. }
  845. .u-fullpart {
  846. position: relative;
  847. background: none no-repeat 50% 0;
  848. background-size: cover;
  849. overflow: hidden;
  850. }
  851. .u-fullpart.bgrp {
  852. background-repeat: no-repeat;
  853. background-size: auto;
  854. }
  855. /*
  856. @font-face{
  857. font-family: 字体名称;
  858. src: url(../fonts/字体名称.ttf);
  859. }*/
  860. html {
  861. font-size: 10px;
  862. }
  863. body {
  864. font-family: 微软雅黑;
  865. font-size: 1.2rem;
  866. display: block !important;
  867. min-width: 1200px;
  868. color: #000000;
  869. }
  870. .container {
  871. padding: 0;
  872. position: relative;
  873. height: 100%;
  874. width: 1200px;
  875. }
  876. .condese{
  877. width: 1100px;
  878. margin: 0 auto;
  879. margin-left: 68px !important;
  880. }
  881. .condesee{
  882. width: 1000px;
  883. margin: 0 auto;
  884. }
  885. .container.lt {
  886. width: 980px;
  887. }
  888. .container.gt {
  889. width: 1400px;
  890. }
  891. .container.full {
  892. width: 100%;
  893. padding: 0;
  894. }
  895. a {
  896. color: #000000;
  897. text-align: center;
  898. }
  899. a:hover {
  900. color: #e10101;
  901. }
  902. .bd {
  903. border: 1px solid #e2e2e2;
  904. background-color: #fff;
  905. }
  906. header {
  907. /* margin-bottom: 10px; */
  908. }
  909. header > .a {
  910. background-color: #014582;
  911. }
  912. header > .b {
  913. border-bottom: 1px solid #eaeaea;
  914. height: 230px;
  915. background-image: url(../picture/pic_hp_dhbg@2x.png) ;
  916. background-repeat:no-repeat;
  917. background-size:100% 100%;
  918. }
  919. header > .b .container{
  920. display: flex;
  921. justify-content: space-between;
  922. flex-direction: column;
  923. }
  924. header .tool {
  925. line-height: 50px;
  926. color: #fff;
  927. }
  928. header .tool .loca {
  929. display: inline-block;
  930. /* margin-left: 25px; */
  931. }
  932. header .tool .loca .ca {
  933. color: #009944;
  934. }
  935. header .tool .loca .cb {
  936. color: #cc0000;
  937. }
  938. header .tool .loca img {
  939. position: relative;
  940. top: -1px;
  941. }
  942. header .tool .srch {
  943. display: inline-block;
  944. margin-left: 44%;
  945. font-size: 14px;
  946. position: relative;
  947. }
  948. header .tool .hujey {
  949. display: inline-block;
  950. margin-left: 38%;
  951. }
  952. header .tool .srch .tt {
  953. width: 278px;
  954. height: 30px;
  955. border: 1px solid #022D53;
  956. border-radius: 15px;
  957. padding-left: 10px;
  958. background-color: #022D53;
  959. color: #fff;
  960. }
  961. header .tool .srch input::-webkit-input-placeholder {
  962. color: #fff;
  963. }
  964. header .tool .srch .tt::-moz-placeholder {
  965. color: #fff;
  966. }
  967. header .tool .srch .tt:-moz-placeholder {
  968. color: #fff;
  969. }
  970. header .tool .srch .tt:-ms-input-placeholder {
  971. color: #fff;
  972. }
  973. header .tool .srch img {
  974. width: 18px;
  975. height: 18px;
  976. position: absolute;
  977. right: 20px;
  978. top: 50%;
  979. transform: translateY(-50%);
  980. }
  981. header .tool .srch .tt::-webkit-input-placeholder {
  982. color: #fff;
  983. }
  984. header .tool .srch .bt {
  985. display: inline-block;
  986. width: 28px;
  987. height: 28px;
  988. background: url(../images/i-find.png) no-repeat center #b6b6b6;
  989. border-radius: 50%;
  990. vertical-align: middle;
  991. margin: 0 8px;
  992. }
  993. header .tool .srch .bt:hover {
  994. opacity: 0.8;
  995. }
  996. header .tool .srch .lk {
  997. text-decoration: underline !important;
  998. }
  999. header .tool .srch .lk:hover {
  1000. color: #e10101;
  1001. }
  1002. header .logo {
  1003. /* padding-top: 22px; */
  1004. margin-top: 50px;
  1005. }
  1006. header .logo img{
  1007. /* padding-top: 22px; */
  1008. width: 769px;
  1009. height: 78px;
  1010. }
  1011. header .menu > ul > li {
  1012. margin-left: 82px;
  1013. }
  1014. header .menu > ul > li:first-child {
  1015. margin-left: 0;
  1016. }
  1017. header .menu .i.on > p a {
  1018. border-bottom-color: #014582;
  1019. color: #014582;
  1020. font-weight: 700;
  1021. }
  1022. header .menu .i:hover > .ex {
  1023. display: block;
  1024. }
  1025. header .menu .i > p a {
  1026. display: block;
  1027. padding: 0 5px;
  1028. line-height: 55px;
  1029. height: 55px;
  1030. border-bottom: 2px solid transparent;
  1031. font-size: 18px;
  1032. }
  1033. header .condese > ul > li{
  1034. margin-left: 67px;
  1035. }
  1036. header .menu .i > .ex {
  1037. position: absolute;
  1038. top: 100%;
  1039. left: 0;
  1040. width: 100%;
  1041. background-color: #C0E1FF;
  1042. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1043. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1044. display: none;
  1045. }
  1046. header .menu .i > .ex p {
  1047. /* border-bottom: 1px solid #eee; */
  1048. }
  1049. header .menu .i > .ex p:hover {
  1050. /* border-bottom: 1px solid #eee; */
  1051. background-color: #014582;
  1052. color: #fff !important;
  1053. }
  1054. header .menu .i > .ex p a {
  1055. display: block;
  1056. line-height: 50px;
  1057. text-align: center;
  1058. font-size: 14px;
  1059. color: #014582;
  1060. }
  1061. header .menu .i > .ex p a:hover {
  1062. color: #fff !important;
  1063. }
  1064. @media (max-width: 768px) {
  1065. header {
  1066. position: fixed;
  1067. height: 50px;
  1068. background-color: #fff;
  1069. }
  1070. header > .a {
  1071. display: none;
  1072. }
  1073. header > .b {
  1074. height: 50px;
  1075. }
  1076. header .logo {
  1077. padding-top: 12px;
  1078. margin-top: 0;
  1079. }
  1080. header .logo img {
  1081. height: 26px;
  1082. width: 80%;
  1083. margin-top: 0;
  1084. }
  1085. header .mbtn {
  1086. position: absolute;
  1087. top: 0;
  1088. right: 0;
  1089. width: 50px;
  1090. height: 50px;
  1091. background: url(../picture/微信图片_20211215145934.png) no-repeat center #014582;
  1092. background-size: 40px auto;
  1093. }
  1094. body.on-menu header .mbtn {
  1095. background-image: url(../images/mbtn-hide.png);
  1096. }
  1097. header .fr {
  1098. position: absolute;
  1099. top: 100%;
  1100. left: 0;
  1101. width: 100%;
  1102. border-top: 1px solid #eee;
  1103. background-color: #fff;
  1104. -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1105. box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1106. display: none;
  1107. }
  1108. body.on-menu header .fr {
  1109. display: block;
  1110. }
  1111. header .menu > ul > li {
  1112. margin-left: 0;
  1113. float: none;
  1114. }
  1115. header .menu .i > p a {
  1116. line-height: 45px;
  1117. height: 45px;
  1118. font-size: 14px;
  1119. text-align: center;
  1120. border-bottom-width: 1px;
  1121. }
  1122. header .menu .i > .ex {
  1123. background-color: #fff;
  1124. z-index: 1;
  1125. }
  1126. header .menu .i > .ex p a {
  1127. line-height: 45px;
  1128. font-size: 13px;
  1129. }
  1130. }
  1131. @media (max-width: 768px) {
  1132. main {
  1133. padding-top: 50px;
  1134. }
  1135. }
  1136. footer > .a {
  1137. /* background: url(../images/foot-bg.jpg) no-repeat 50% 0; */
  1138. background-size: auto 342px;
  1139. padding-top: 30px;
  1140. padding-bottom: 20px;
  1141. text-align: center;
  1142. }
  1143. footer > .b {
  1144. background-color: #28564c;
  1145. }
  1146. footer .link p a {
  1147. font-size: 16px;
  1148. margin: 0 35px;
  1149. }
  1150. footer .info p {
  1151. color: #666;
  1152. font-size: 14px;
  1153. line-height: 24px;
  1154. }
  1155. footer .foot p {
  1156. line-height: 50px;
  1157. color: #fff;
  1158. font-size: 14px;
  1159. }
  1160. footer .foot p a {
  1161. color: #fff;
  1162. }
  1163. footer .foot p a:hover {
  1164. opacity: 0.8;
  1165. }
  1166. @media (max-width: 768px) {
  1167. footer > .a {
  1168. background-size: cover;
  1169. padding-top: 35px;
  1170. padding-bottom: 55px;
  1171. }
  1172. footer .link p a {
  1173. font-size: 12px;
  1174. margin: 0 5px;
  1175. }
  1176. footer .info p {
  1177. font-size: 12px;
  1178. line-height: 20px;
  1179. }
  1180. footer .info p img {
  1181. zoom: 0.8;
  1182. }
  1183. footer .foot p {
  1184. line-height: 20px;
  1185. font-size: 11px;
  1186. text-align: center;
  1187. padding: 10px 0;
  1188. }
  1189. footer .foot p .fr {
  1190. float: none !important;
  1191. display: block;
  1192. }
  1193. }
  1194. .u-fullpart {
  1195. padding: 0 0;
  1196. background: none no-repeat 50% 0;
  1197. background-size: cover;
  1198. overflow: hidden;
  1199. }
  1200. .u-fullpart.bgrp {
  1201. background-repeat: no-repeat;
  1202. background-size: auto;
  1203. }
  1204. .u-fullpart.bg-g {
  1205. background-color: #ececec;
  1206. }
  1207. .u-fullpart.mtht {
  1208. margin-top: -50px;
  1209. }
  1210. @media (max-width: 768px) {
  1211. .u-fullpart.mtht {
  1212. margin-top: 10px;
  1213. }
  1214. }
  1215. .u-banner .i {
  1216. display: block;
  1217. height: 423px;
  1218. background: none no-repeat center;
  1219. background-size: cover;
  1220. }
  1221. .u-banner .carousel-indicators li {
  1222. width: 12px;
  1223. height: 12px;
  1224. background-color: #fff;
  1225. border-radius: 50%;
  1226. margin: 0 6px;
  1227. }
  1228. .u-banner .carousel-indicators li.active {
  1229. background-color: #e10101 !important;
  1230. }
  1231. @media (max-width: 768px) {
  1232. .u-banner .i {
  1233. height: 150px;
  1234. }
  1235. .u-banner .carousel-indicators {
  1236. bottom: 8px;
  1237. }
  1238. .u-banner .carousel-indicators li {
  1239. width: 8px;
  1240. height: 8px;
  1241. margin: 0 4px;
  1242. }
  1243. }
  1244. .u-notice {
  1245. background-color: #eee;
  1246. }
  1247. .u-notice .noti {
  1248. position: relative;
  1249. padding-left: 115px;
  1250. }
  1251. .u-notice .noti > label {
  1252. font-size: 16px;
  1253. line-height: 40px;
  1254. position: absolute;
  1255. top: 0;
  1256. left: 0;
  1257. }
  1258. .u-notice .noti > label::before {
  1259. content: "";
  1260. display: inline-block;
  1261. width: 20px;
  1262. height: 19px;
  1263. background: url(../images/i-noti.png) no-repeat center;
  1264. background-size: 100% 100%;
  1265. vertical-align: middle;
  1266. margin: 0 5px;
  1267. }
  1268. .u-notice .noti > .ct {
  1269. line-height: 40px;
  1270. font-size: 16px;
  1271. }
  1272. .u-notice .noti > .ct a {
  1273. padding: 0 10px;
  1274. }
  1275. .u-notice .scroll {
  1276. overflow: hidden;
  1277. }
  1278. .u-notice .scroll ul {
  1279. white-space: nowrap;
  1280. }
  1281. .u-notice .scroll ul li {
  1282. display: inline-block;
  1283. }
  1284. @media (max-width: 768px) {
  1285. .u-notice .noti {
  1286. padding-left: 90px;
  1287. }
  1288. .u-notice .noti > label {
  1289. font-size: 12px;
  1290. line-height: 35px;
  1291. }
  1292. .u-notice .noti > label::before {
  1293. zoom: 0.8;
  1294. }
  1295. .u-notice .noti > .ct {
  1296. line-height: 35px;
  1297. font-size: 12px;
  1298. }
  1299. .u-notice .noti > .ct a {
  1300. padding: 0 5px;
  1301. }
  1302. }
  1303. .u-hotops {
  1304. padding: 12px;
  1305. position: relative;
  1306. }
  1307. .u-hotops::before {
  1308. content: "";
  1309. display: inline-block;
  1310. width: 59px;
  1311. height: 59px;
  1312. background: url(../images/d-tops.png) no-repeat center;
  1313. background-size: 100% 100%;
  1314. vertical-align: middle;
  1315. position: absolute;
  1316. top: 0;
  1317. left: 0;
  1318. }
  1319. .u-hotops h3 {
  1320. text-align: center;
  1321. font-size: 30px;
  1322. font-weight: bold;
  1323. margin-bottom: 8px;
  1324. }
  1325. .u-hotops h3 a {
  1326. color: #e10101;
  1327. }
  1328. .u-hotops p {
  1329. font-size: 16px;
  1330. line-height: 28px;
  1331. text-indent: 2em;
  1332. }
  1333. .u-hotops p a {
  1334. color: #e10101;
  1335. }
  1336. .u-hotops p a:hover {
  1337. text-decoration: underline !important;
  1338. }
  1339. @media (max-width: 768px) {
  1340. .u-hotops::before {
  1341. zoom: 0.8;
  1342. }
  1343. .u-hotops h3 {
  1344. font-size: 16px;
  1345. }
  1346. .u-hotops p {
  1347. font-size: 12px;
  1348. line-height: 22px;
  1349. }
  1350. }
  1351. .u-lrcthome > .l {
  1352. width: 600px;
  1353. }
  1354. .u-lrcthome > .r {
  1355. width: 600px;
  1356. padding-left: 20px;
  1357. }
  1358. @media (max-width: 768px) {
  1359. .u-lrcthome > .l,
  1360. .u-lrcthome > .r {
  1361. float: none;
  1362. width: 100%;
  1363. padding: 0;
  1364. }
  1365. .u-lrcthome > .l {
  1366. margin-bottom: 15px;
  1367. }
  1368. }
  1369. .u-focus .i > p {
  1370. content: "";
  1371. position: absolute;
  1372. z-index: 1;
  1373. bottom: 0;
  1374. left: 0;
  1375. width: 100%;
  1376. background-color: rgba(0, 0, 0, 0.6);
  1377. padding: 0 10px;
  1378. line-height: 34px;
  1379. font-size: 14px;
  1380. color: #fff;
  1381. }
  1382. .u-focus .i img {
  1383. width: 100%;
  1384. }
  1385. .u-focus .carousel-indicators {
  1386. left: auto;
  1387. right: 0;
  1388. margin-right: 10px;
  1389. bottom: 12px;
  1390. }
  1391. .u-focus .carousel-indicators li {
  1392. width: 9px;
  1393. height: 9px;
  1394. background-color: #fff;
  1395. border-radius: 50%;
  1396. margin: 0 2px;
  1397. }
  1398. .u-focus .carousel-indicators li.active {
  1399. background-color: #e10101 !important;
  1400. }
  1401. @media (max-width: 768px) {
  1402. .u-focus .i > p {
  1403. font-size: 12px;
  1404. line-height: 32px;
  1405. }
  1406. .u-focus .carousel-indicators li {
  1407. width: 8px;
  1408. height: 8px;
  1409. }
  1410. }
  1411. .u-partview > .hd {
  1412. border-bottom: 1px solid #e3e3e3;
  1413. }
  1414. .u-partview > .hd p > label {
  1415. display: inline-block;
  1416. border-bottom: 2px solid #014582;
  1417. padding-bottom: 5px;
  1418. font-size: 20px;
  1419. margin-bottom: -1px;
  1420. font-weight: bold;
  1421. color: #014582;
  1422. }
  1423. .u-partview > .hd p a {
  1424. display: inline-block;
  1425. padding-top: 8px;
  1426. }
  1427. @media (max-width: 768px) {
  1428. .u-partview > .hd p > label {
  1429. border-bottom-width: 1px;
  1430. font-size: 16px;
  1431. }
  1432. .u-partview > .hd p a {
  1433. padding-top: 4px;
  1434. font-size: 11px;
  1435. }
  1436. }
  1437. .u-newslist.in p {
  1438. line-height: 40px;
  1439. }
  1440. .u-newslist.in p::before {
  1441. width: 3px;
  1442. height: 3px;
  1443. background: #1a5cbf;
  1444. position: relative;
  1445. top: -1px;
  1446. }
  1447. .u-newslist p {
  1448. line-height: 33px;
  1449. font-size: 16px;
  1450. overflow: hidden;
  1451. text-overflow: ellipsis;
  1452. white-space: nowrap;
  1453. }
  1454. .u-newslist p::before {
  1455. content: "";
  1456. display: inline-block;
  1457. width: 8px;
  1458. height: 11px;
  1459. background: url(../images/i_san.png) no-repeat center;
  1460. background-size: 100% 100%;
  1461. vertical-align: middle;
  1462. vertical-align: middle;
  1463. margin-right: 5px;
  1464. position: relative;
  1465. top: -1px;
  1466. border-radius: 50%;
  1467. }
  1468. .u-newslist p small {
  1469. font-size: 14px;
  1470. color: #999999;
  1471. }
  1472. @media (max-width: 768px) {
  1473. .u-newslist.in p {
  1474. line-height: 32px;
  1475. }
  1476. .u-newslist p {
  1477. line-height: 28px;
  1478. font-size: 12px;
  1479. }
  1480. .u-newslist p::before {
  1481. zoom: 0.8;
  1482. }
  1483. .u-newslist p small {
  1484. font-size: 12px;
  1485. }
  1486. }
  1487. .u-homenews > ul {
  1488. margin: -10px;
  1489. }
  1490. .u-homenews > ul > li {
  1491. padding: 10px;
  1492. }
  1493. @media (max-width: 768px) {
  1494. .u-homenews.s3 > ul > li {
  1495. width: 100%;
  1496. }
  1497. }
  1498. .u-fullad img {
  1499. width: 100%;
  1500. }
  1501. .u-prodshow ul {
  1502. margin: -6px;
  1503. }
  1504. .u-prodshow ul li {
  1505. padding: 6px;
  1506. }
  1507. .u-prodshow .i > .ct {
  1508. border: 1px solid #e4e4e4;
  1509. padding: 2px;
  1510. }
  1511. .u-prodshow .i p {
  1512. margin-top: 10px;
  1513. text-align: center;
  1514. font-size: 14px;
  1515. overflow: hidden;
  1516. text-overflow: ellipsis;
  1517. white-space: nowrap;
  1518. }
  1519. @media (max-width: 768px) {
  1520. .u-prodshow.s5 > ul > li {
  1521. width: 50%;
  1522. }
  1523. .u-prodshow .i p {
  1524. margin-top: 8px;
  1525. font-size: 12px;
  1526. }
  1527. }
  1528. .u-pagepath {
  1529. padding: 10px 0;
  1530. padding-left: 15px;
  1531. }
  1532. .u-pagepath p {
  1533. font-size: 15px;
  1534. }
  1535. .u-pagepath p::before {
  1536. content: "";
  1537. display: inline-block;
  1538. width: 12px;
  1539. height: 12px;
  1540. background: url(../images/i-this.png) no-repeat center;
  1541. background-size: 100% 100%;
  1542. vertical-align: middle;
  1543. margin-right: 5px;
  1544. }
  1545. @media (max-width: 768px) {
  1546. .u-pagepath {
  1547. padding: 8px 0;
  1548. padding-left: 10px;
  1549. }
  1550. .u-pagepath p {
  1551. font-size: 12px;
  1552. }
  1553. .u-pagepath p::before {
  1554. zoom: 0.8;
  1555. }
  1556. }
  1557. .u-lrctmain > .l {
  1558. width: 310px;
  1559. }
  1560. .u-lrctmain > .r {
  1561. width: 870px;
  1562. }
  1563. @media (max-width: 768px) {
  1564. .u-lrctmain > .l,
  1565. .u-lrctmain > .r {
  1566. width: 100%;
  1567. float: none;
  1568. }
  1569. .u-lrctmain > .l {
  1570. margin-bottom: 15px;
  1571. }
  1572. }
  1573. .u-sidenavi {
  1574. min-height: 700px;
  1575. padding: 20px;
  1576. }
  1577. .u-sidenavi > .hd {
  1578. border-bottom: 1px solid #c3c3c3;
  1579. padding-bottom: 10px;
  1580. }
  1581. .u-sidenavi > .hd p {
  1582. color: #1a5cbf;
  1583. font-size: 24px;
  1584. font-weight: bold;
  1585. }
  1586. .u-sidenavi > .ct ul li {
  1587. margin-bottom: 15px;
  1588. }
  1589. .u-sidenavi > .ct ul li:last-child {
  1590. margin-bottom: 0;
  1591. }
  1592. .u-sidenavi > .ct .i {
  1593. display: block;
  1594. background-color: #f0f0f0;
  1595. border-left: 5px solid #dddddd;
  1596. line-height: 40px;
  1597. text-align: center;
  1598. font-size: 18px;
  1599. }
  1600. .u-sidenavi > .ct .i:hover, .u-sidenavi > .ct .i.on {
  1601. background-color: #e8f1f8;
  1602. border-left-color: #3366d1;
  1603. color: #3366d1;
  1604. }
  1605. @media (max-width: 768px) {
  1606. .u-sidenavi {
  1607. min-height: 0;
  1608. padding: 15px;
  1609. }
  1610. .u-sidenavi > .hd {
  1611. padding-bottom: 5px;
  1612. }
  1613. .u-sidenavi > .hd p {
  1614. font-size: 16px;
  1615. }
  1616. .u-sidenavi > .ct ul li {
  1617. margin-bottom: 10px;
  1618. }
  1619. .u-sidenavi > .ct .i {
  1620. border-left-width: 3px;
  1621. line-height: 36px;
  1622. font-size: 14px;
  1623. }
  1624. }
  1625. .u-maincont {
  1626. min-height: 700px;
  1627. padding: 20px;
  1628. }
  1629. @media (max-width: 768px) {
  1630. .u-maincont {
  1631. min-height: 0;
  1632. padding: 15px;
  1633. }
  1634. }
  1635. .u-paging p {
  1636. text-align: center;
  1637. }
  1638. .u-paging p a {
  1639. display: inline-block;
  1640. line-height: 28px;
  1641. padding: 0 6px;
  1642. font-size: 13px;
  1643. border: 1px solid transparent;
  1644. margin: 0 1px;
  1645. }
  1646. .u-paging p a:not(.tt):hover, .u-paging p a.on {
  1647. background-color: #eeeeee;
  1648. border-color: #0078d3;
  1649. }
  1650. .u-paging p a.aw {
  1651. border-color: #dfdfdf;
  1652. }
  1653. @media (max-width: 768px) {
  1654. .u-paging p a:not(.aw) {
  1655. display: none;
  1656. }
  1657. .u-paging p a.tt {
  1658. display: none;
  1659. }
  1660. .u-paging p span {
  1661. display: none;
  1662. }
  1663. }
  1664. .u-article {
  1665. background-color: transparent;
  1666. padding: 35px;
  1667. }
  1668. .u-article > .hd {
  1669. text-align: center;
  1670. border-bottom: 1px dashed #cccccc;
  1671. padding-bottom: 10px;
  1672. }
  1673. .u-article > .hd h3 {
  1674. color: #164fa6;
  1675. font-size: 28px;
  1676. font-weight: bold;
  1677. }
  1678. .u-article > .hd p {
  1679. margin-top: 20px;
  1680. color: #888888;
  1681. font-size: 16px;
  1682. }
  1683. .u-article > .hd h5 {
  1684. margin-top: 10px;
  1685. text-align: right;
  1686. }
  1687. .u-article > .ct {
  1688. margin-top: 20px;
  1689. }
  1690. .u-article > .ct p {
  1691. font-size: 18px;
  1692. line-height: 32px;
  1693. text-indent: 2em;
  1694. }
  1695. .u-article > .ct img {
  1696. display: block;
  1697. margin: 1em auto;
  1698. }
  1699. .u-article > .ft {
  1700. border-top: 1px dashed #cccccc;
  1701. padding-top: 20px;
  1702. }
  1703. .u-article > .ft p.p1 {
  1704. text-align: right;
  1705. padding: 0 8%;
  1706. }
  1707. .u-article > .ft p.p1 .i {
  1708. display: inline-block;
  1709. border: 1px solid #cecece;
  1710. line-height: 24px;
  1711. padding: 0 6px;
  1712. color: #666666;
  1713. font-size: 13px;
  1714. }
  1715. .u-article > .ft p.p2 {
  1716. margin-top: 20px;
  1717. padding: 0 15%;
  1718. }
  1719. .u-article > .ft p.p2 a {
  1720. color: #555555;
  1721. font-size: 14px;
  1722. /*display: inline-block;*/
  1723. width: 48%;
  1724. text-align: center;
  1725. }
  1726. .u-article > .ft p.p2 a:hover {
  1727. text-decoration: underline !important;
  1728. }
  1729. .u-article > .ft p.p2 a em {
  1730. font-style: normal;
  1731. color: #0078d3;
  1732. }
  1733. @media (max-width: 768px) {
  1734. .u-article {
  1735. padding: 15px;
  1736. }
  1737. .u-article > .hd h3 {
  1738. font-size: 18px;
  1739. line-height: 1.4em;
  1740. }
  1741. .u-article > .hd p {
  1742. margin-top: 10px;
  1743. font-size: 12px;
  1744. }
  1745. .u-article > .hd h5 {
  1746. text-align: center;
  1747. }
  1748. .u-article > .ct {
  1749. margin-top: 15px;
  1750. }
  1751. .u-article > .ct p {
  1752. font-size: 12px;
  1753. line-height: 24px;
  1754. }
  1755. .u-article > .ct img {
  1756. max-width: 100%;
  1757. }
  1758. .u-article > .ft {
  1759. padding-top: 15px;
  1760. }
  1761. .u-article > .ft p.p1 {
  1762. padding: 0;
  1763. }
  1764. .u-article > .ft p.p1 .i {
  1765. zoom: 0.8;
  1766. }
  1767. .u-article > .ft p.p2 {
  1768. padding: 0;
  1769. }
  1770. .u-article > .ft p.p2 a {
  1771. display: block;
  1772. width: 100%;
  1773. font-size: 12px;
  1774. margin-bottom: 10px;
  1775. text-align: left;
  1776. }
  1777. .u-article > .ft p.p2 a:last-child {
  1778. margin-bottom: 0;
  1779. }
  1780. }
  1781. .btm{
  1782. width: 42px;
  1783. height: 83px;
  1784. background-color: rgb(255, 255, 255);
  1785. border: 1px solid #eeeeee;
  1786. position: fixed;
  1787. bottom:220px;
  1788. right:2px;
  1789. }
  1790. .upd{
  1791. width: 40px;
  1792. height: 40px;
  1793. display: block;
  1794. position: relative;
  1795. }
  1796. .db{
  1797. width: 15px;
  1798. height: 24px;
  1799. position: absolute;
  1800. top: 50%;
  1801. left: 50%;
  1802. margin-top: -12px;
  1803. margin-left: -7.5px;
  1804. }
  1805. .bjx{
  1806. width: 42px;
  1807. height: 1px;
  1808. background-color: rgb(207, 207, 207);
  1809. margin: 0;
  1810. border: 0;
  1811. }
  1812. .dowe{
  1813. width: 40px;
  1814. height: 40px;
  1815. display: block;
  1816. position: relative;
  1817. }
  1818. .ewm{
  1819. width: 21px;
  1820. height: 21px;
  1821. position: absolute;
  1822. top: 50%;
  1823. left: 50%;
  1824. margin-left: -10.5px;
  1825. margin-top: -10.5px;
  1826. display: inline-block;
  1827. }
  1828. .xs{
  1829. visibility: hidden;
  1830. width: 148px;
  1831. height: 211px;
  1832. border: 1px solid #8f8f8f;
  1833. background-color: rgb(255, 255, 255);
  1834. position: absolute;
  1835. z-index: 1;
  1836. top: -160px;
  1837. right: 200%;
  1838. }
  1839. .xs::before{
  1840. content: "";
  1841. border: inherit;
  1842. position: absolute;
  1843. top: 79%;
  1844. left: 100%;
  1845. margin-top: -5px;
  1846. border-width: 10px;
  1847. border-style: solid ;
  1848. background: inherit;
  1849. border-color: transparent transparent transparent rgb(228, 228, 228);
  1850. }
  1851. b{
  1852. display: block;
  1853. color: #333333;
  1854. text-align: center;
  1855. border-radius: 6px;
  1856. padding: 5px 0;
  1857. margin-top: 20px;
  1858. }
  1859. .da{
  1860. width: 125px;
  1861. height: 125px;
  1862. margin: 0 11px;
  1863. }
  1864. .ewm:hover .xs{
  1865. visibility: visible;
  1866. }
  1867. .u-partview.hd p>label {
  1868. display: inline-block;
  1869. padding-bottom: 5px;
  1870. font-size: 20px;
  1871. margin-bottom: -1px;
  1872. font-weight: 400;
  1873. color: #e10101;
  1874. cursor:pointer;
  1875. }
  1876. .hdiu{
  1877. border-bottom: 2px solid #e10101;
  1878. font-weight: bold !important;
  1879. }
  1880. .publicity{
  1881. display: none;
  1882. }
  1883. .home_activ {
  1884. width: 1200px !important;
  1885. margin: auto !important;
  1886. }
  1887. .home_activ li:nth-child(1){
  1888. padding-left: 0 !important;
  1889. }
  1890. .home_activ li:nth-child(3){
  1891. padding-right: 0 !important;
  1892. }
  1893. .a_inmg{
  1894. width: 1200px;
  1895. display: inline-block;
  1896. margin: auto;
  1897. }
  1898. .u_ima{
  1899. text-align: center;
  1900. }