style.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  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: #D31D1D !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. margin-top: 0 !important;
  739. }
  740. body.pcs .home_activ {
  741. width: 100% !important;
  742. padding: 0 15px;
  743. margin: auto;
  744. }
  745. body.pcs .home_activ li:nth-child(1){
  746. padding-right: 0 !important;
  747. }
  748. body.pcs .home_activ li:nth-child(2){
  749. padding-right: 0 !important;
  750. padding-left: 0 !important;
  751. }
  752. body.pcs .home_activ li:nth-child(3){
  753. padding-left: 0 !important;
  754. }
  755. body.pcs .a_inmg{
  756. width: 100%;
  757. display: inline-block;
  758. margin: auto;
  759. padding: 0 15px;
  760. }
  761. body.pcs .container.full {
  762. padding: 0;
  763. }
  764. body.pcs header {
  765. z-index: 11;
  766. min-width: 0;
  767. }
  768. body.pcs header .mbtn {
  769. display: block;
  770. }
  771. }
  772. html {
  773. font-size: 10px;
  774. }
  775. body {
  776. font-size: 1.2rem;
  777. display: block !important;
  778. margin: 0 ;
  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. header .mbtn {
  811. display: none;
  812. position: absolute;
  813. z-index: 1;
  814. top: 0;
  815. right: 0;
  816. }
  817. footer .back {
  818. position: fixed;
  819. z-index: 9;
  820. -webkit-transform: scale(0);
  821. transform: scale(0);
  822. -webkit-transition: -webkit-transform 300ms;
  823. transition: -webkit-transform 300ms;
  824. transition: transform 300ms;
  825. transition: transform 300ms, -webkit-transform 300ms;
  826. }
  827. body.on-scro footer .back {
  828. -webkit-transform: scale(1);
  829. transform: scale(1);
  830. }
  831. .hd,
  832. .ct,
  833. .ft,
  834. .head,
  835. .cont,
  836. .foot,
  837. .cnt,
  838. .img,
  839. .i,
  840. .p {
  841. position: relative;
  842. display: block;
  843. }
  844. .bt {
  845. display: inline-block;
  846. }
  847. .u-fullpart {
  848. position: relative;
  849. background: none no-repeat 50% 0;
  850. background-size: cover;
  851. overflow: hidden;
  852. }
  853. .u-fullpart.bgrp {
  854. background-repeat: no-repeat;
  855. background-size: auto;
  856. }
  857. /*
  858. @font-face{
  859. font-family: 字体名称;
  860. src: url(../fonts/字体名称.ttf);
  861. }*/
  862. html {
  863. font-size: 10px;
  864. }
  865. body {
  866. font-family: 微软雅黑;
  867. font-size: 1.2rem;
  868. display: block !important;
  869. min-width: 1200px;
  870. color: #000000;
  871. }
  872. .container {
  873. padding: 0;
  874. position: relative;
  875. height: 100%;
  876. width: 1200px;
  877. }
  878. .condese{
  879. width: 1100px;
  880. margin: 0 auto;
  881. margin-left: 68px !important;
  882. }
  883. .condesee{
  884. width: 1000px;
  885. margin: 0 auto;
  886. }
  887. .container.lt {
  888. width: 980px;
  889. }
  890. .container.gt {
  891. width: 1400px;
  892. }
  893. .container.full {
  894. width: 100%;
  895. padding: 0;
  896. }
  897. a {
  898. color: #000000;
  899. text-align: center;
  900. }
  901. a:hover {
  902. color: #e10101;
  903. }
  904. .bd {
  905. border: 1px solid #e2e2e2;
  906. background-color: #fff;
  907. }
  908. header {
  909. /* margin-bottom: 10px; */
  910. }
  911. header > .a {
  912. background: linear-gradient(25deg, #C50000, #E0312E);
  913. border-bottom: 1px solid #D4D4D4;
  914. /* margin-top: -2px; */
  915. }
  916. header > .b {
  917. /* border-bottom: 1px solid #eaeaea; */
  918. height: 300px;
  919. /* background-image: url(../images/pic_hp_dbbg.png) ;
  920. background-repeat:no-repeat;
  921. background-size:100% 100%; */
  922. /* position: relative;
  923. top:0; */
  924. /* z-index: -1; */
  925. }
  926. .loseg{
  927. height: 100%;
  928. }
  929. .xpse{
  930. display: none;
  931. }
  932. header > .b .container{
  933. display: flex;
  934. justify-content: space-between;
  935. flex-direction: column;
  936. margin-top: -320px;
  937. }
  938. header .tool {
  939. line-height: 36px;
  940. color: #fff;
  941. display: flex;
  942. justify-content: space-between;
  943. }
  944. header .tool .loca {
  945. display: inline-block;
  946. /* flex: 1; */
  947. width: 50%;
  948. /* margin-left: 25px; */
  949. }
  950. header .tool .loca .ca {
  951. color: #009944;
  952. }
  953. header .tool .loca .cb {
  954. color: #cc0000;
  955. }
  956. header .tool .loca img {
  957. position: relative;
  958. top: -1px;
  959. }
  960. header .tool .srch {
  961. display: inline-block;
  962. /* margin-left: 44%; */
  963. font-size: 14px;
  964. position: relative;
  965. }
  966. header .srchshou {
  967. display: inline-block;
  968. /* margin-left: 61%; */
  969. font-size: 14px;
  970. position: relative;
  971. width: 20%;
  972. text-align: right;
  973. }
  974. header .tool .hujey {
  975. display: inline-block;
  976. margin-left: 38%;
  977. }
  978. header .tool .srch .tt {
  979. width: 188px;
  980. height: 30px;
  981. border: 1px solid #BFBFBF;
  982. border-radius: 15px;
  983. padding-left: 10px;
  984. background-color: #fff !important;
  985. color: #333;
  986. }
  987. header .srch .tt {
  988. width: 278px;
  989. height: 30px;
  990. border: 1px solid #fff;
  991. border-radius: 15px;
  992. padding-left: 10px;
  993. background-color: #fff !important;
  994. color: #333;
  995. }
  996. header .tool .srch input::-webkit-input-placeholder {
  997. color: #333;
  998. }
  999. header .tool .srch .tt::-moz-placeholder {
  1000. color: #333;
  1001. }
  1002. header .tool .srch .tt:-moz-placeholder {
  1003. color: #333;
  1004. }
  1005. header .tool .srch .tt:-ms-input-placeholder {
  1006. color: #333;
  1007. }
  1008. header .tool .srch img {
  1009. width: 18px;
  1010. height: 18px;
  1011. position: absolute;
  1012. right: 0 !important;
  1013. left: 82%;
  1014. top: 50% !important;
  1015. transform: translateY(-50%) !important;
  1016. }
  1017. header .tool .srch button
  1018. {
  1019. border: none;
  1020. width: 18px;
  1021. height: 18px;
  1022. position: absolute;
  1023. right: 0 !important;
  1024. left: 82%;
  1025. top: 50% !important;
  1026. transform: translateY(-50%) !important;
  1027. }
  1028. header .tool .srch .tt::-webkit-input-placeholder {
  1029. color: #333;
  1030. }
  1031. header .tool .srch .bt {
  1032. display: inline-block;
  1033. width: 28px;
  1034. height: 28px;
  1035. background: url(../images/i-find.png) no-repeat center #b6b6b6;
  1036. border-radius: 50%;
  1037. vertical-align: middle;
  1038. margin: 0 8px;
  1039. }
  1040. header .tool .srch .bt:hover {
  1041. opacity: 0.8;
  1042. }
  1043. header .tool .srch .lk {
  1044. text-decoration: underline !important;
  1045. }
  1046. header .tool .srch .lk:hover {
  1047. color: #e10101;
  1048. }
  1049. .nkeiyd{
  1050. background: url(../images/pic_hp_dbbg.png) no-repeat top center;
  1051. background-size: 100% 100%;
  1052. width: 100%;
  1053. height: 300px;
  1054. /* position: absolute;
  1055. top:229px;
  1056. left: 0;
  1057. z-index: -1; */
  1058. }
  1059. /* .loseg{
  1060. height: 330px;
  1061. } */
  1062. header .logo {
  1063. /* padding-top: 22px; */
  1064. /* margin-top: 50px; */
  1065. /* width: 100%; */
  1066. display: flex;
  1067. justify-content: space-between;
  1068. align-items: center;
  1069. /* position: relative; */
  1070. }
  1071. header .logo img{
  1072. /* padding-top: 22px; */
  1073. width: 275px;
  1074. height: 85px;
  1075. /* margin-top: 30px; */
  1076. position: relative;
  1077. left: 0;
  1078. top:100px;
  1079. /* margin-bottom: 40px; */
  1080. }
  1081. header .menu > ul{
  1082. display: flex;
  1083. justify-items: center;
  1084. align-items: center;
  1085. background-color: #fff;
  1086. }
  1087. header .menu > ul > li {
  1088. /* margin-left: 33px; */
  1089. flex: 1;
  1090. border-bottom: 4px solid #CC2525;
  1091. }
  1092. header .menu > ul > li:first-child {
  1093. margin-left: 0;
  1094. }
  1095. header .menu .i.on > p a {
  1096. /* border-bottom-color: #014582; */
  1097. color: #fff;
  1098. font-weight: 700;
  1099. /* margin-right: 10px; */
  1100. }
  1101. header .menu .i .ni{
  1102. width: 30px;
  1103. height: 30px;
  1104. background: url(../images/icon_dh_sy_normal.png) no-repeat;
  1105. background-size: 30px 30px;
  1106. }
  1107. header .menu .i .nis{
  1108. width: 30px;
  1109. height: 30px;
  1110. background: url(../images/icon_dh_zjrd_normal.png) no-repeat;
  1111. background-size: 30px 30px;
  1112. }
  1113. header .menu .i .niss{
  1114. width: 30px;
  1115. height: 30px;
  1116. background: url(../images/icon_dh_dtxw_normal.png) no-repeat;
  1117. background-size: 30px 30px;
  1118. }
  1119. header .menu .i .nisss{
  1120. width: 30px;
  1121. height: 30px;
  1122. background: url(../images/icon_dh_lzgz_normal.png) no-repeat;
  1123. background-size: 30px 30px;
  1124. }
  1125. header .menu .i .nissss{
  1126. width: 30px;
  1127. height: 30px;
  1128. background: url(../images/icon_dh_zsjs_normal.png) no-repeat;
  1129. background-size: 30px 30px;
  1130. }
  1131. header .menu .i .nisssss{
  1132. width: 30px;
  1133. height: 30px;
  1134. background: url(../images/icon_dh_xxzl_normal.png) no-repeat;
  1135. background-size: 30px 30px;
  1136. }
  1137. header .menu .i:hover .ni{
  1138. width: 30px;
  1139. height: 30px;
  1140. background: url(../images/icon_dh_sy_selected.png) no-repeat;
  1141. background-size: 30px 30px;
  1142. }
  1143. header .menu .ond .ni{
  1144. width: 30px;
  1145. height: 30px;
  1146. background: url(../images/icon_dh_sy_selected.png) no-repeat;
  1147. background-size: 30px 30px;
  1148. }
  1149. header .menu .i:hover .nis{
  1150. width: 30px;
  1151. height: 30px;
  1152. background: url(../images/icon_dh_zjrd_selected.png) no-repeat;
  1153. background-size: 30px 30px;
  1154. }
  1155. header .menu .ond .nis{
  1156. width: 30px;
  1157. height: 30px;
  1158. background: url(../images/icon_dh_zjrd_selected.png) no-repeat;
  1159. background-size: 30px 30px;
  1160. }
  1161. header .menu .i:hover .niss{
  1162. width: 30px;
  1163. height: 30px;
  1164. background: url(../images/icon_dh_dtxw_selected.png) no-repeat;
  1165. background-size: 30px 30px;
  1166. }
  1167. header .menu .ond .niss{
  1168. width: 30px;
  1169. height: 30px;
  1170. background: url(../images/icon_dh_dtxw_selected.png) no-repeat;
  1171. background-size: 30px 30px;
  1172. }
  1173. header .menu .i:hover .nisss{
  1174. width: 30px;
  1175. height: 30px;
  1176. background: url(../images/icon_dh_lzgz_selected.png) no-repeat;
  1177. background-size: 30px 30px;
  1178. }
  1179. header .menu .ond .nisss {
  1180. width: 30px;
  1181. height: 30px;
  1182. background: url(../images/icon_dh_lzgz_selected.png) no-repeat;
  1183. background-size: 30px 30px;
  1184. }
  1185. header .menu .i:hover .nissss{
  1186. width: 30px;
  1187. height: 30px;
  1188. background: url(../images/icon_dh_zsjs_selected.png) no-repeat;
  1189. background-size: 30px 30px;
  1190. }
  1191. header .menu .ond .nissss{
  1192. width: 30px;
  1193. height: 30px;
  1194. background: url(../images/icon_dh_zsjs_selected.png) no-repeat;
  1195. background-size: 30px 30px;
  1196. }
  1197. header .menu .i:hover .nisssss{
  1198. width: 30px;
  1199. height: 30px;
  1200. background: url(../images/icon_dh_xxzl_selected.png) no-repeat;
  1201. background-size: 30px 30px;
  1202. }
  1203. header .menu .ond .nisssss{
  1204. width: 30px;
  1205. height: 30px;
  1206. background: url(../images/icon_dh_xxzl_selected.png) no-repeat;
  1207. background-size: 30px 30px;
  1208. }
  1209. header .menu .i:hover {
  1210. background: linear-gradient(90deg, #C50000, #E05400);
  1211. }
  1212. header .menu .i:hover a{
  1213. color: #fff;
  1214. }
  1215. header .menu .i a:hover {
  1216. color: #fff !important;
  1217. }
  1218. header .menu .i:hover > .ex {
  1219. display: block;
  1220. /* display: none; */
  1221. }
  1222. header .menu .i p:hover > .ex {
  1223. display: block;
  1224. }
  1225. header .menu .i > p{
  1226. display: flex;
  1227. align-items: center;
  1228. justify-content: center;
  1229. }
  1230. header .menu .i > .jie{
  1231. display: flex;
  1232. align-items: center;
  1233. justify-content: center;
  1234. }
  1235. header .menu .i > p a {
  1236. display: block;
  1237. /* padding: 0 5px; */
  1238. line-height: 55px;
  1239. height: 55px;
  1240. margin-left: 10px;
  1241. /* border-bottom: 2px solid transparent; */
  1242. font-size: 18px;
  1243. }
  1244. header .condese > ul > li{
  1245. margin-left: 67px;
  1246. }
  1247. header .menu .i > .ex {
  1248. position: absolute;
  1249. top: 100%;
  1250. left: 0;
  1251. width: 100%;
  1252. background-color: #C90C00;
  1253. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1254. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1255. display: none;
  1256. z-index: 55;
  1257. }
  1258. header .menu .i > .jie{
  1259. display: block;
  1260. position: relative !important;
  1261. }
  1262. header .condese > ul > li{
  1263. display: block;
  1264. }
  1265. header .menu .i > .ex:hover{
  1266. /* display: block; */
  1267. /* border-bottom: 1px solid #eee; */
  1268. }
  1269. header .menu .i > .ex > .jie > .exs {
  1270. position: absolute;
  1271. top:0;
  1272. left:100%;
  1273. width: 100%;
  1274. background-color: #960900 !important;
  1275. display: none;
  1276. z-index: 47;
  1277. }
  1278. header .menu .i > .ex > .cdf > .exs {
  1279. left:-100%;
  1280. }
  1281. /* header .menu .i > .ex >.exs .jie:hover {
  1282. background-color: #DC4900;
  1283. } */
  1284. header .menu .i > .ex >.jie > .exs p:hover {
  1285. background-color: #DC4900;
  1286. }
  1287. header .menu .i > .ex > .jie:hover .exs{
  1288. display: block;
  1289. /* border-bottom: 1px solid #eee; */
  1290. }
  1291. header .menu .i > .ex:hover .exss{
  1292. display: block;
  1293. /* border-bottom: 1px solid #eee; */
  1294. }
  1295. header .menu .i > .ex .jie:hover {
  1296. background-color: #960900;
  1297. color: #fff !important;
  1298. }
  1299. header .menu .i > .ex .inhye{
  1300. /* background-color:#C90C00; */
  1301. color: #fff !important;
  1302. }
  1303. header .menu .i > .ex .jie a {
  1304. display: block;
  1305. line-height: 50px;
  1306. text-align: center;
  1307. font-size: 14px;
  1308. color: #fff;
  1309. }
  1310. header .menu .i > .ex .jie a:hover {
  1311. color: #fff !important;
  1312. }
  1313. @media (max-width: 768px) {
  1314. header {
  1315. position: fixed;
  1316. height: 50px;
  1317. background-color: #fff;
  1318. }
  1319. header > .a {
  1320. display: none;
  1321. }
  1322. header > .b {
  1323. height: 50px;
  1324. }
  1325. header .logo {
  1326. padding-top: 12px;
  1327. margin-top: 0;
  1328. }
  1329. header .logo img {
  1330. height: 26px;
  1331. width: 100%;
  1332. margin-top: 0;
  1333. position: relative;
  1334. left: 0;
  1335. top: 0;
  1336. }
  1337. .xpse{
  1338. display: block;
  1339. width: 100%;
  1340. height: 250px;
  1341. /* margin-top: 10px; */
  1342. }
  1343. header .mbtn {
  1344. position: absolute;
  1345. top: 6px;
  1346. right: 0;
  1347. width: 38px;
  1348. height: 38px;
  1349. background: url(../images/_20211215145934.png) no-repeat center #E0312E;
  1350. background-size: 40px auto;
  1351. z-index: 999;
  1352. }
  1353. header .tool .srch {
  1354. display: none;
  1355. }
  1356. body.on-menu header .mbtn {
  1357. background-image: url(../images/mbtn-hide.png);
  1358. }
  1359. header .fr {
  1360. position: absolute;
  1361. top: 100%;
  1362. left: 0;
  1363. width: 100%;
  1364. border-top: 1px solid #eee;
  1365. background-color: #fff;
  1366. -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1367. box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  1368. display: none;
  1369. }
  1370. body.on-menu header .fr {
  1371. display: block;
  1372. }
  1373. header .menu > ul{
  1374. flex-direction: column;
  1375. }
  1376. header .menu > ul > li {
  1377. margin-left: 0;
  1378. float: none;
  1379. width: 100%;
  1380. border: 1px solid #D31D1D;
  1381. }
  1382. header .menu .i > p a {
  1383. line-height: 45px;
  1384. height: 45px;
  1385. font-size: 14px;
  1386. text-align: center;
  1387. border-bottom-width: 1px;
  1388. }
  1389. header .menu .i > .ex {
  1390. display: none;
  1391. background-color: #fff;
  1392. z-index: 1;
  1393. }
  1394. header .menu .i > .ex > .jie > .exs{
  1395. display: none !important;
  1396. }
  1397. header .menu .i > .ex > .jie:hover .exs{
  1398. display: none;
  1399. /* border-bottom: 1px solid #eee; */
  1400. }
  1401. header .menu .i > .ex .jie a:hover {
  1402. color: #fff !important;
  1403. }
  1404. header .menu .i > .ex p a {
  1405. line-height: 45px;
  1406. font-size: 13px;
  1407. }
  1408. }
  1409. @media (max-width: 768px) {
  1410. main {
  1411. padding-top: 50px;
  1412. }
  1413. }
  1414. footer > .a {
  1415. /* background: url(../images/foot-bg.jpg) no-repeat 50% 0; */
  1416. background-size: auto 342px;
  1417. padding-top: 30px;
  1418. padding-bottom: 20px;
  1419. text-align: center;
  1420. background-color: #fff;
  1421. margin-top: 26px;
  1422. border-top: 5px solid #f2f2f2;
  1423. }
  1424. footer > .b {
  1425. background-color: #28564c;
  1426. }
  1427. footer .link p a {
  1428. font-size: 16px;
  1429. margin: 0 35px;
  1430. }
  1431. footer .info p {
  1432. color: #343434;
  1433. font-size: 14px;
  1434. line-height: 24px;
  1435. }
  1436. footer .foot p {
  1437. line-height: 50px;
  1438. color: #343434;
  1439. font-size: 14px;
  1440. }
  1441. footer .foot p a {
  1442. color: #343434;
  1443. }
  1444. .nhy{
  1445. background-color: #eee ;
  1446. height: 6px;
  1447. width: 100%;
  1448. margin-top: 30px;
  1449. }
  1450. footer .foot p a:hover {
  1451. opacity: 0.8;
  1452. }
  1453. @media (max-width: 768px) {
  1454. footer > .a {
  1455. background-size: cover;
  1456. padding-top: 35px;
  1457. padding-bottom: 55px;
  1458. }
  1459. footer .link p a {
  1460. font-size: 12px;
  1461. margin: 0 5px;
  1462. }
  1463. footer .info p {
  1464. font-size: 12px;
  1465. line-height: 20px;
  1466. }
  1467. footer .info p img {
  1468. zoom: 0.8;
  1469. }
  1470. footer .foot p {
  1471. line-height: 20px;
  1472. font-size: 11px;
  1473. text-align: center;
  1474. padding: 10px 0;
  1475. }
  1476. footer .foot p .fr {
  1477. float: none !important;
  1478. display: block;
  1479. }
  1480. }
  1481. .u-fullpart {
  1482. padding: 0 0;
  1483. background: none no-repeat 50% 0;
  1484. background-size: cover;
  1485. overflow: hidden;
  1486. }
  1487. .u-fullpart.bgrp {
  1488. background-repeat: no-repeat;
  1489. background-size: auto;
  1490. }
  1491. .u-fullpart.bg-g {
  1492. background-color: #ececec;
  1493. }
  1494. .u-fullpart.mtht {
  1495. margin-top: -50px;
  1496. }
  1497. @media (max-width: 768px) {
  1498. .u-fullpart.mtht {
  1499. margin-top: 10px;
  1500. }
  1501. }
  1502. .u-banner .i {
  1503. display: block;
  1504. height: 423px;
  1505. background: none no-repeat center;
  1506. background-size: cover;
  1507. }
  1508. .u-banner .nhyeowe{
  1509. height: 410px !important;
  1510. }
  1511. .u-banner .nhyeowe .el-carousel__container{
  1512. height: 410px !important;
  1513. }
  1514. .u-banner .carousel-indicators li {
  1515. width: 12px;
  1516. height: 12px;
  1517. background-color: #fff;
  1518. border-radius: 50%;
  1519. margin: 0 6px;
  1520. }
  1521. .u-banner .carousel-indicators li.active {
  1522. background-color: #e10101 !important;
  1523. }
  1524. @media (max-width: 768px) {
  1525. .u-banner .i {
  1526. height: 150px;
  1527. }
  1528. .u-banner .nhyeowe{
  1529. height: 86px !important;
  1530. }
  1531. .u-banner .nhyeowe .el-carousel__container{
  1532. height: 86px !important;
  1533. }
  1534. .u-banner img {
  1535. /* width: auto !important;
  1536. height: auto !important;
  1537. max-width: 100%;
  1538. max-height: 100%; */
  1539. }
  1540. .u-banner .carousel-indicators {
  1541. bottom: 8px;
  1542. }
  1543. .u-banner .carousel-indicators li {
  1544. width: 8px;
  1545. height: 8px;
  1546. margin: 0 4px;
  1547. }
  1548. /* 头部 */
  1549. .nkeiyd{
  1550. /* width: 100%;
  1551. height: 200px;
  1552. background: url(../images/dbbg.png) no-repeat ;
  1553. background-size: 100% 100%; */
  1554. display: none;
  1555. }
  1556. .logo{
  1557. display: block;
  1558. }
  1559. }
  1560. .u-notice {
  1561. background-color: #eee;
  1562. }
  1563. .u-notice .noti {
  1564. position: relative;
  1565. padding-left: 115px;
  1566. }
  1567. .u-notice .noti > label {
  1568. font-size: 16px;
  1569. line-height: 40px;
  1570. position: absolute;
  1571. top: 0;
  1572. left: 0;
  1573. }
  1574. .u-notice .noti > label::before {
  1575. content: "";
  1576. display: inline-block;
  1577. width: 20px;
  1578. height: 19px;
  1579. background: url(../images/i-noti.png) no-repeat center;
  1580. background-size: 100% 100%;
  1581. vertical-align: middle;
  1582. margin: 0 5px;
  1583. }
  1584. .u-notice .noti > .ct {
  1585. line-height: 40px;
  1586. font-size: 16px;
  1587. }
  1588. .u-notice .noti > .ct a {
  1589. padding: 0 10px;
  1590. }
  1591. .u-notice .scroll {
  1592. overflow: hidden;
  1593. }
  1594. .u-notice .scroll ul {
  1595. white-space: nowrap;
  1596. }
  1597. .u-notice .scroll ul li {
  1598. display: inline-block;
  1599. }
  1600. @media (max-width: 768px) {
  1601. .u-notice .noti {
  1602. padding-left: 90px;
  1603. }
  1604. .u-notice .noti > label {
  1605. font-size: 12px;
  1606. line-height: 35px;
  1607. }
  1608. .u-notice .noti > label::before {
  1609. zoom: 0.8;
  1610. }
  1611. .u-notice .noti > .ct {
  1612. line-height: 35px;
  1613. font-size: 12px;
  1614. }
  1615. .u-notice .noti > .ct a {
  1616. padding: 0 5px;
  1617. }
  1618. }
  1619. .u-hotops {
  1620. padding: 12px;
  1621. position: relative;
  1622. }
  1623. .u-hotops::before {
  1624. content: "";
  1625. display: inline-block;
  1626. width: 59px;
  1627. height: 59px;
  1628. background: url(../images/d-tops.png) no-repeat center;
  1629. background-size: 100% 100%;
  1630. vertical-align: middle;
  1631. position: absolute;
  1632. top: 0;
  1633. left: 0;
  1634. }
  1635. .u-hotops h3 {
  1636. text-align: center;
  1637. font-size: 30px;
  1638. font-weight: bold;
  1639. margin-bottom: 8px;
  1640. }
  1641. .u-hotops h3 a {
  1642. color: #e10101;
  1643. }
  1644. .u-hotops p {
  1645. font-size: 16px;
  1646. line-height: 28px;
  1647. text-indent: 2em;
  1648. }
  1649. .u-hotops p a {
  1650. color: #e10101;
  1651. }
  1652. .u-hotops p a:hover {
  1653. text-decoration: underline !important;
  1654. }
  1655. @media (max-width: 768px) {
  1656. .u-hotops::before {
  1657. zoom: 0.8;
  1658. }
  1659. .u-hotops h3 {
  1660. font-size: 16px;
  1661. }
  1662. .u-hotops p {
  1663. font-size: 12px;
  1664. line-height: 22px;
  1665. }
  1666. }
  1667. .u-lrcthome > .l {
  1668. width: 600px;
  1669. }
  1670. .u-lrcthome > .r {
  1671. width: 600px;
  1672. padding-left: 20px;
  1673. }
  1674. @media (max-width: 768px) {
  1675. .u-lrcthome > .l,
  1676. .u-lrcthome > .r {
  1677. float: none;
  1678. width: 100%;
  1679. padding: 0;
  1680. }
  1681. .u-lrcthome > .l {
  1682. margin-bottom: 15px;
  1683. }
  1684. }
  1685. .u-focus .i > p {
  1686. content: "";
  1687. position: absolute;
  1688. z-index: 1;
  1689. bottom: 0;
  1690. left: 0;
  1691. width: 100%;
  1692. background-color: rgba(0, 0, 0, 0.6);
  1693. padding: 0 10px;
  1694. line-height: 34px;
  1695. font-size: 14px;
  1696. color: #fff;
  1697. }
  1698. .u-focus .i img {
  1699. width: 100%;
  1700. }
  1701. .u-focus .carousel-indicators {
  1702. left: auto;
  1703. right: 0;
  1704. margin-right: 10px;
  1705. bottom: 12px;
  1706. }
  1707. .u-focus .carousel-indicators li {
  1708. width: 9px;
  1709. height: 9px;
  1710. background-color: #fff;
  1711. border-radius: 50%;
  1712. margin: 0 2px;
  1713. }
  1714. .u-focus .carousel-indicators li.active {
  1715. background-color: #e10101 !important;
  1716. }
  1717. @media (max-width: 768px) {
  1718. .u-focus .i > p {
  1719. font-size: 12px;
  1720. line-height: 32px;
  1721. }
  1722. .u-focus .carousel-indicators li {
  1723. width: 8px;
  1724. height: 8px;
  1725. }
  1726. .u-partview > .hd p > label:last-child{display: none;}
  1727. .u-partview > .hd_two .hd p > label:last-child{display: none;}
  1728. }
  1729. .u-partview > .hd {
  1730. border-bottom: 1px solid #e3e3e3;
  1731. }
  1732. .u-partview > .hd_two .hd {
  1733. border-bottom: 1px solid #e3e3e3;
  1734. }
  1735. .u-partview > .hd p > label {
  1736. display: inline-block;
  1737. /* border-bottom: 2px solid #014582; */
  1738. padding-bottom: 5px;
  1739. font-size: 16px;
  1740. margin-bottom: -1px;
  1741. /* font-weight: bold; */
  1742. color: #666;
  1743. }
  1744. .u-partview > .hd_two .hd p > label {
  1745. display: inline-block;
  1746. /* border-bottom: 2px solid #014582; */
  1747. padding-bottom: 5px;
  1748. font-size: 16px;
  1749. margin-bottom: -1px;
  1750. /* font-weight: bold; */
  1751. color: #666;
  1752. }
  1753. .u-partview .hd label{cursor: pointer;}
  1754. .u-partview > .hd p > .xz_lable {
  1755. display: inline-block;
  1756. border-bottom: 2px solid #D31D1D;
  1757. padding-bottom: 5px;
  1758. font-size: 16px;
  1759. margin-bottom: -1px;
  1760. font-weight: bold;
  1761. color: #D31D1D;
  1762. }
  1763. .u-partview > .hd_two .hd p > .xz_lable {
  1764. display: inline-block;
  1765. border-bottom: 2px solid #D31D1D;
  1766. padding-bottom: 9px;
  1767. font-size: 16px;
  1768. margin-bottom: -1px;
  1769. font-weight: bold;
  1770. color: #D31D1D;
  1771. }
  1772. .u-partview > .hd p a {
  1773. display: inline-block;
  1774. padding-top: 5px;
  1775. }
  1776. .u-partview > .hd_two .hd p a {
  1777. display: inline-block;
  1778. padding-top: 5px;
  1779. }
  1780. @media (max-width: 768px) {
  1781. .u-partview > .hd p > label {
  1782. border-bottom-width: 1px;
  1783. font-size: 14px !important;
  1784. }
  1785. .u-partview > .hd_two .hd p > label {
  1786. border-bottom-width: 1px;
  1787. font-size: 14px !important;
  1788. }
  1789. .u-partview > .hd p > .xz_lable {
  1790. display: inline-block;
  1791. border-bottom: 2px solid #D31D1D;
  1792. padding-bottom: 5px;
  1793. font-size: 14px !important;
  1794. margin-bottom: -1px;
  1795. font-weight: bold;
  1796. color: #D31D1D;
  1797. }
  1798. .hd_two{
  1799. flex-direction: column;
  1800. }
  1801. .nhlksiewv{
  1802. display: none !important;
  1803. }
  1804. .u-partview > .hd_two .hd_span{
  1805. width: 100%;
  1806. text-align: center;
  1807. margin-bottom: 10px;
  1808. }
  1809. .u-partview > .hd_two .hd{
  1810. width: 100%;
  1811. }
  1812. .u-partview > .hd_two .hd p > .xz_lable {
  1813. display: inline-block;
  1814. border-bottom: 2px solid #D31D1D;
  1815. padding-bottom: 5px;
  1816. font-size: 14px !important;
  1817. margin-bottom: -1px;
  1818. font-weight: bold;
  1819. color: #D31D1D;
  1820. }
  1821. .u-partview > .hd p a {
  1822. padding-top: 4px;
  1823. font-size: 11px;
  1824. }
  1825. .u-partview > .hd_two .hd p a {
  1826. padding-top: 4px;
  1827. font-size: 12px;
  1828. }
  1829. }
  1830. .u-newslist.in p {
  1831. line-height: 40px;
  1832. }
  1833. .u-newslist.in p::before {
  1834. width: 3px;
  1835. height: 3px;
  1836. background: #1a5cbf;
  1837. position: relative;
  1838. top: -1px;
  1839. }
  1840. .u-newslist p {
  1841. line-height: 33px;
  1842. font-size: 16px;
  1843. overflow: hidden;
  1844. text-overflow: ellipsis;
  1845. white-space: nowrap;
  1846. }
  1847. .u-newslist p::before {
  1848. content: "";
  1849. display: inline-block;
  1850. width: 8px;
  1851. height: 8px;
  1852. background-color: #AEAEAE;
  1853. /* background: url(../images/i_san.png) no-repeat center;
  1854. background-size: 100% 100%; */
  1855. vertical-align: middle;
  1856. vertical-align: middle;
  1857. margin-right: 5px;
  1858. position: relative;
  1859. top: -1px;
  1860. border-radius: 50%;
  1861. }
  1862. .u-newslist p small {
  1863. font-size: 14px;
  1864. color: #999999;
  1865. }
  1866. @media (max-width: 768px) {
  1867. .u-newslist.in p {
  1868. line-height: 32px;
  1869. }
  1870. .u-newslist p {
  1871. line-height: 28px;
  1872. font-size: 12px;
  1873. }
  1874. .u-newslist p::before {
  1875. zoom: 0.8;
  1876. }
  1877. .u-newslist p small {
  1878. font-size: 12px;
  1879. }
  1880. }
  1881. .u-homenews > ul {
  1882. margin: -10px;
  1883. }
  1884. .u-homenews > ul > li {
  1885. padding: 10px;
  1886. }
  1887. @media (max-width: 768px) {
  1888. .u-homenews.s3 > ul > li {
  1889. width: 100% !important;
  1890. padding-bottom: 4px;
  1891. }
  1892. .mjkuewdfv_two li{margin-bottom: 10px !important;margin-top: 14px !important;}
  1893. .njeshome ul > li{
  1894. width: 100% !important;
  1895. }
  1896. }
  1897. .u-fullad img {
  1898. width: 100%;
  1899. }
  1900. .u-prodshow ul {
  1901. margin: -6px;
  1902. }
  1903. .u-prodshow ul li {
  1904. padding: 6px;
  1905. }
  1906. .u-prodshow .i > .ct {
  1907. border: 1px solid #e4e4e4;
  1908. padding: 2px;
  1909. }
  1910. .u-prodshow .i p {
  1911. margin-top: 10px;
  1912. text-align: center;
  1913. font-size: 14px;
  1914. overflow: hidden;
  1915. text-overflow: ellipsis;
  1916. white-space: nowrap;
  1917. }
  1918. @media (max-width: 768px) {
  1919. .u-prodshow.s5 > ul > li {
  1920. width: 50%;
  1921. }
  1922. .u-prodshow .i p {
  1923. margin-top: 8px;
  1924. font-size: 12px;
  1925. }
  1926. }
  1927. .u-pagepath {
  1928. padding: 10px 0;
  1929. padding-left: 15px;
  1930. }
  1931. .u-pagepath p {
  1932. font-size: 15px;
  1933. }
  1934. .u-pagepath p::before {
  1935. content: "";
  1936. display: inline-block;
  1937. width: 12px;
  1938. height: 12px;
  1939. background: url(../images/i-this.png) no-repeat center;
  1940. background-size: 100% 100%;
  1941. vertical-align: middle;
  1942. margin-right: 5px;
  1943. }
  1944. @media (max-width: 768px) {
  1945. .u-pagepath {
  1946. padding: 8px 0;
  1947. padding-left: 10px;
  1948. }
  1949. .u-pagepath p {
  1950. font-size: 12px;
  1951. }
  1952. .u-pagepath p::before {
  1953. zoom: 0.8;
  1954. }
  1955. }
  1956. .u-lrctmain > .l {
  1957. width: 310px;
  1958. }
  1959. .u-lrctmain > .r {
  1960. width: 870px;
  1961. }
  1962. @media (max-width: 768px) {
  1963. .u-lrctmain > .l,
  1964. .u-lrctmain > .r {
  1965. width: 100%;
  1966. float: none;
  1967. }
  1968. .u-lrctmain > .l {
  1969. margin-bottom: 15px;
  1970. }
  1971. }
  1972. .u-sidenavi {
  1973. min-height: 700px;
  1974. padding: 20px;
  1975. }
  1976. .u-sidenavi > .hd {
  1977. border-bottom: 1px solid #c3c3c3;
  1978. padding-bottom: 10px;
  1979. }
  1980. .u-sidenavi > .hd p {
  1981. color: #1a5cbf;
  1982. font-size: 24px;
  1983. font-weight: bold;
  1984. }
  1985. .u-sidenavi > .ct ul li {
  1986. margin-bottom: 15px;
  1987. }
  1988. .u-sidenavi > .ct ul li:last-child {
  1989. margin-bottom: 0;
  1990. }
  1991. .u-sidenavi > .ct .i {
  1992. display: block;
  1993. background-color: #f0f0f0;
  1994. border-left: 5px solid #dddddd;
  1995. line-height: 40px;
  1996. text-align: center;
  1997. font-size: 18px;
  1998. }
  1999. .u-sidenavi > .ct .i:hover, .u-sidenavi > .ct .i.on {
  2000. background-color: #e8f1f8;
  2001. border-left-color: #3366d1;
  2002. color: #3366d1;
  2003. }
  2004. @media (max-width: 768px) {
  2005. .u-sidenavi {
  2006. min-height: 0;
  2007. padding: 15px;
  2008. }
  2009. .u-sidenavi > .hd {
  2010. padding-bottom: 5px;
  2011. }
  2012. .u-sidenavi > .hd p {
  2013. font-size: 16px;
  2014. }
  2015. .u-sidenavi > .ct ul li {
  2016. margin-bottom: 10px;
  2017. }
  2018. .u-sidenavi > .ct .i {
  2019. border-left-width: 3px;
  2020. line-height: 36px;
  2021. font-size: 14px;
  2022. }
  2023. }
  2024. .u-maincont {
  2025. min-height: 700px;
  2026. padding: 20px;
  2027. }
  2028. @media (max-width: 768px) {
  2029. .u-maincont {
  2030. min-height: 0;
  2031. padding: 15px;
  2032. }
  2033. }
  2034. .u-paging p {
  2035. text-align: center;
  2036. }
  2037. .u-paging p a {
  2038. display: inline-block;
  2039. line-height: 28px;
  2040. padding: 0 6px;
  2041. font-size: 13px;
  2042. border: 1px solid transparent;
  2043. margin: 0 1px;
  2044. }
  2045. .u-paging p a:not(.tt):hover, .u-paging p a.on {
  2046. background-color: #eeeeee;
  2047. border-color: #0078d3;
  2048. }
  2049. .u-paging p a.aw {
  2050. border-color: #dfdfdf;
  2051. }
  2052. @media (max-width: 768px) {
  2053. .u-paging p a:not(.aw) {
  2054. display: none;
  2055. }
  2056. .u-paging p a.tt {
  2057. display: none;
  2058. }
  2059. .u-paging p span {
  2060. display: none;
  2061. }
  2062. }
  2063. .u-article {
  2064. background-color: transparent;
  2065. padding: 35px;
  2066. }
  2067. .u-article > .hd {
  2068. text-align: center;
  2069. border-bottom: 1px dashed #cccccc;
  2070. padding-bottom: 10px;
  2071. }
  2072. .u-article > .hd h3 {
  2073. color: #164fa6;
  2074. font-size: 28px;
  2075. font-weight: bold;
  2076. }
  2077. .u-partview > .hd p > label {
  2078. display: inline-block;
  2079. /* border-bottom: 2px solid #014582; */
  2080. padding-bottom: 5px;
  2081. font-size: 16px;
  2082. margin-bottom: -1px;
  2083. /* font-weight: bold; */
  2084. color: #666;
  2085. margin-right: 20px;
  2086. }
  2087. .u-article > .hd p {
  2088. margin-top: 20px;
  2089. color: #888888;
  2090. font-size: 16px;
  2091. }
  2092. .u-article > .hd h5 {
  2093. margin-top: 10px;
  2094. text-align: right;
  2095. }
  2096. .u-article > .ct {
  2097. margin-top: 20px;
  2098. }
  2099. .u-article > .ct p {
  2100. font-size: 18px;
  2101. line-height: 32px;
  2102. text-indent: 2em;
  2103. }
  2104. .u-article > .ct img {
  2105. display: block;
  2106. margin: 1em auto;
  2107. }
  2108. .u-article > .ft {
  2109. border-top: 1px dashed #cccccc;
  2110. padding-top: 20px;
  2111. }
  2112. .u-article > .ft p.p1 {
  2113. text-align: right;
  2114. padding: 0 8%;
  2115. }
  2116. .u-article > .ft p.p1 .i {
  2117. display: inline-block;
  2118. border: 1px solid #cecece;
  2119. line-height: 24px;
  2120. padding: 0 6px;
  2121. color: #666666;
  2122. font-size: 13px;
  2123. }
  2124. .u-article > .ft p.p2 {
  2125. margin-top: 20px;
  2126. padding: 0 15%;
  2127. }
  2128. .u-article > .ft p.p2 a {
  2129. color: #555555;
  2130. font-size: 14px;
  2131. /*display: inline-block;*/
  2132. width: 48%;
  2133. text-align: center;
  2134. }
  2135. .u-article > .ft p.p2 a:hover {
  2136. text-decoration: underline !important;
  2137. }
  2138. .u-article > .ft p.p2 a em {
  2139. font-style: normal;
  2140. color: #0078d3;
  2141. }
  2142. @media (max-width: 768px) {
  2143. .u-article {
  2144. padding: 15px;
  2145. }
  2146. .u-article > .hd h3 {
  2147. font-size: 18px;
  2148. line-height: 1.4em;
  2149. }
  2150. .u-article > .hd p {
  2151. margin-top: 10px;
  2152. font-size: 12px;
  2153. }
  2154. .u-article > .hd h5 {
  2155. text-align: center;
  2156. }
  2157. .u-article > .ct {
  2158. margin-top: 15px;
  2159. }
  2160. .u-article > .ct p {
  2161. font-size: 12px;
  2162. line-height: 24px;
  2163. }
  2164. .u-article > .ct img {
  2165. max-width: 100%;
  2166. }
  2167. .u-article > .ft {
  2168. padding-top: 15px;
  2169. }
  2170. .u-article > .ft p.p1 {
  2171. padding: 0;
  2172. }
  2173. .u-article > .ft p.p1 .i {
  2174. zoom: 0.8;
  2175. }
  2176. .u-article > .ft p.p2 {
  2177. padding: 0;
  2178. }
  2179. .u-article > .ft p.p2 a {
  2180. display: block;
  2181. width: 100%;
  2182. font-size: 12px;
  2183. margin-bottom: 10px;
  2184. text-align: left;
  2185. }
  2186. .u-article > .ft p.p2 a:last-child {
  2187. margin-bottom: 0;
  2188. }
  2189. }
  2190. .btm{
  2191. width: 42px;
  2192. height: 83px;
  2193. background-color: rgb(255, 255, 255);
  2194. border: 1px solid #eeeeee;
  2195. position: fixed;
  2196. bottom:220px;
  2197. right:2px;
  2198. /* z-index: 56; */
  2199. }
  2200. .upd{
  2201. width: 40px;
  2202. height: 40px;
  2203. display: block;
  2204. position: relative;
  2205. }
  2206. .db{
  2207. width: 15px;
  2208. height: 24px;
  2209. position: absolute;
  2210. top: 50%;
  2211. left: 50%;
  2212. margin-top: -12px;
  2213. margin-left: -7.5px;
  2214. }
  2215. .bjx{
  2216. width: 42px;
  2217. height: 1px;
  2218. background-color: rgb(207, 207, 207);
  2219. margin: 0;
  2220. border: 0;
  2221. }
  2222. .dowe{
  2223. width: 40px;
  2224. height: 40px;
  2225. display: block;
  2226. position: relative;
  2227. }
  2228. .ewm{
  2229. width: 21px;
  2230. height: 21px;
  2231. position: absolute;
  2232. top: 50%;
  2233. left: 50%;
  2234. margin-left: -10.5px;
  2235. margin-top: -10.5px;
  2236. display: inline-block;
  2237. }
  2238. .xs{
  2239. visibility: hidden;
  2240. width: 148px;
  2241. height: 211px;
  2242. border: 1px solid #8f8f8f;
  2243. background-color: rgb(255, 255, 255);
  2244. position: absolute;
  2245. z-index: 1;
  2246. top: -160px;
  2247. right: 200%;
  2248. }
  2249. .xs::before{
  2250. content: "";
  2251. border: inherit;
  2252. position: absolute;
  2253. top: 79%;
  2254. left: 100%;
  2255. margin-top: -5px;
  2256. border-width: 10px;
  2257. border-style: solid ;
  2258. background: inherit;
  2259. border-color: transparent transparent transparent rgb(228, 228, 228);
  2260. }
  2261. b{
  2262. display: block;
  2263. color: #333333;
  2264. text-align: center;
  2265. border-radius: 6px;
  2266. padding: 5px 0;
  2267. margin-top: 20px;
  2268. }
  2269. .da{
  2270. width: 125px;
  2271. height: 125px;
  2272. margin: 0 11px;
  2273. }
  2274. .ewm:hover .xs{
  2275. visibility: visible;
  2276. }
  2277. .u-partview.hd p>label {
  2278. display: inline-block;
  2279. padding-bottom: 5px;
  2280. font-size: 20px;
  2281. margin-bottom: -1px;
  2282. font-weight: 400;
  2283. color: #e10101;
  2284. cursor:pointer;
  2285. }
  2286. .hdiu{
  2287. border-bottom: 2px solid #e10101;
  2288. font-weight: bold !important;
  2289. }
  2290. .publicity{
  2291. display: none;
  2292. }
  2293. .home_activ {
  2294. width: 1200px !important;
  2295. margin: auto !important;
  2296. }
  2297. .home_activ li:nth-child(1){
  2298. padding-left: 0 !important;
  2299. }
  2300. .home_activ li:nth-child(3){
  2301. padding-right: 0 !important;
  2302. }
  2303. .a_inmg{
  2304. width: 1200px;
  2305. display: inline-block;
  2306. margin: auto;
  2307. }
  2308. .u_ima{
  2309. text-align: center;
  2310. }
  2311. .hoesf{
  2312. display: none;
  2313. }
  2314. .hoesf li{
  2315. background-color: #f7f7f7 !important;
  2316. color: #666;
  2317. border-bottom: 1px solid #dedede;
  2318. }
  2319. .hoesf li:last-child{
  2320. border-bottom: 0;
  2321. }
  2322. .hoesf li:hover {
  2323. background-color: #d31d1d !important;
  2324. color: #fff;
  2325. border-bottom: 0;
  2326. }
  2327. .hoesf li:hover a{
  2328. color: #fff;
  2329. }
  2330. .hoesf li:hover a:hover{
  2331. color: #fff !important;
  2332. }
  2333. .nhyewsf li:hover .hoesf{
  2334. display: block;
  2335. }
  2336. .nhyewsf li{
  2337. flex: 1;
  2338. text-align: center;
  2339. position: relative;
  2340. height: 100%;
  2341. display: flex;
  2342. justify-content: center;
  2343. align-items: center;
  2344. z-index: 55;
  2345. }
  2346. .nhyewsf img{
  2347. width: 7px;
  2348. height: 6px;
  2349. margin-left: 5px;
  2350. }
  2351. .hoesf{
  2352. position: absolute;
  2353. top: 100%;
  2354. left: 0;
  2355. width: 100%;
  2356. }
  2357. .hoesf li {
  2358. text-align: center;
  2359. background-color: #D31D1D;
  2360. height: 34px;
  2361. }
  2362. /*页码*/
  2363. .pages{margin: 20px 0 0;text-align: center;font-size: 0;}
  2364. .pages a{display: inline-block;font-size: 14px;line-height: 35px;padding: 0 14px;margin: 5px;background-color: #f5f5f5;border-radius: 3px;-webkit-transition: all 0.5s;transition: all 0.5s;}
  2365. .pages a:hover, .pages a.active{background-color: #e13f38;color: #fff;}
  2366. .pages span{display: inline-block;font-size: 14px;line-height: 35px;padding: 0 14px;margin: 5px;background-color: #e13f38;border-radius: 3px;-webkit-transition: all 0.5s;transition: all 0.5s;color: #fff;}