layout.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. /* AB模版网 做最好的织梦整站模板下载网站 Www.AdminBuy.Cn */
  2. /* QQ:9490489 */
  3. /* 仿站:Fang.AdminBuy.Cn */
  4. /* 素材:Sc.AdminBuy.Cn */
  5. .header {
  6. height: 101px;
  7. width: 100%;
  8. background: #fff;
  9. }
  10. .nav {
  11. height: 100px;
  12. }
  13. .nav .xgjtop {
  14. height: 48px;
  15. line-height: 48px;
  16. width: 158px;
  17. float: right;
  18. }
  19. .nav .xgjtop span {
  20. color: #656565;
  21. font-size: 14px;
  22. padding-left: 10px;
  23. }
  24. .nav .xgjtop a {
  25. padding-left: 10px;
  26. }
  27. .nav .mainnav {
  28. position: relative;
  29. height: 52px;
  30. margin-top:25px;
  31. }
  32. .z_ny_banner {
  33. width: 100%;
  34. height: 315px;
  35. overflow: hidden;
  36. }
  37. .z_ny_banner .lmmc {
  38. text-align: center;
  39. color: #fff;
  40. font-size: 30px;
  41. font-weight: bold;
  42. margin-top: 114px;
  43. }
  44. .z_ny_banner .mbxdh {
  45. font-size: 14px;
  46. color: #fff;
  47. text-align: center;
  48. opacity: .7;
  49. margin-top: 20px;
  50. }
  51. .z_ny_banner .mbxdh a {
  52. color: #fff;
  53. }
  54. .z_ejdh {
  55. height: 65px;
  56. background: #F3F1F1;
  57. width: 100%;
  58. text-align: center;
  59. }
  60. .z_ejdh_main {
  61. position: relative;
  62. display: inline-block;
  63. }
  64. .z_ejdh .z_ejdh_main ul li {
  65. float: left;
  66. }
  67. .z_ejdh .z_ejdh_main ul li a {
  68. display: block;
  69. height: 65px;
  70. width: 140px;
  71. text-align: center;
  72. line-height: 65px;
  73. font-size: 18px;
  74. color: #005eb8;
  75. font-weight: bold;
  76. }
  77. .z_cplist ul li {
  78. width: 383px;
  79. height: 306px;
  80. border-bottom: 1px solid #D9D9D9;
  81. margin-right: 25px;
  82. margin-bottom: 32px;
  83. float: left;
  84. }
  85. .z_cplist ul li a .cptp {
  86. width: 385px;
  87. height: 235px;
  88. overflow: hidden;
  89. display: block;
  90. }
  91. .z_cplist ul li a .cptp img {
  92. width: 100%;
  93. transform: scale(1);
  94. -webkit-transform: scale(1);
  95. -o-transform: scale(1);
  96. -moz-transform: scale(1);
  97. transition: all .3s;
  98. -moz-transition: all .3s;
  99. -webkit-transition: all .3s;
  100. -o-transition: all .3s;
  101. }
  102. .z_cplist ul li a:hover .cptp img {
  103. transform: scale(1.1);
  104. -webkit-transform: scale(1.1);
  105. -o-transform: scale(1.1);
  106. -moz-transform: scale(1.1);
  107. }
  108. .z_cplist ul li a:hover .cpbt {
  109. padding: 0 10px;
  110. color: #005eb8;
  111. }
  112. .z_cplist ul li a .cpbt {
  113. display: block;
  114. height: 71px;
  115. line-height: 71px;
  116. transition: all .3s;
  117. -moz-transition: all .3s;
  118. -webkit-transition: all .3s;
  119. -o-transition: all .3s;
  120. }
  121. .z_cplist ul li a .cpbt b {
  122. font-size: 16px;
  123. color: #000;
  124. transition: all .3s;
  125. -moz-transition: all .3s;
  126. -webkit-transition: all .3s;
  127. -o-transition: all .3s;
  128. }
  129. .z_cplist ul li a .cpbt i {
  130. font-size: 16px;
  131. color: #000;
  132. font-family: 宋体;
  133. font-style: normal;
  134. transition: all .3s;
  135. -moz-transition: all .3s;
  136. -webkit-transition: all .3s;
  137. -o-transition: all .3s;
  138. }
  139. .z_cplist ul li a:hover .cpbt b {
  140. color: #005eb8;
  141. }
  142. .z_cplist ul li a:hover .cpbt i {
  143. color: #005eb8;
  144. }
  145. .z_ny_cont {
  146. padding: 60px 0;
  147. }
  148. .footer_top {
  149. height: 253px;
  150. width: 100%;
  151. background: #f8f8f8;
  152. }
  153. .footer_top .dbdh {
  154. width: 730px;
  155. height: 253px;
  156. padding-top: 55px;
  157. }
  158. .footer_top .dbdh ul li {
  159. float: left;
  160. margin-right: 90px;
  161. }
  162. .footer_top .dbdh ul li a {
  163. font-size: 14px;
  164. color: #333333;
  165. font-weight: bold;
  166. }
  167. .footer_top .dbdh ul li ul li {
  168. float: none;
  169. margin-right: 0;
  170. line-height: 22px;
  171. }
  172. .footer_top .dbdh ul li ul li a {
  173. font-size: 13px;
  174. color: #666666;
  175. font-weight: normal;
  176. transition: all .5s;
  177. -moz-transition: all .5s;
  178. -webkit-transition: all .5s;
  179. -o-transition: all .5s;
  180. }
  181. .footer_top .dbdh ul li ul li a:hover {
  182. color: #1A499B;
  183. }
  184. .footer_top .rcewm {
  185. width: 470px;
  186. height: 253px;
  187. background: url("../image/dblogo.jpg") no-repeat;
  188. padding: 55px 0 0 162px;
  189. }
  190. .footer_top .rcewm .ntcb {
  191. margin: 0 20px;
  192. font-size: 14px;
  193. color: #333333;
  194. font-weight: bold;
  195. }
  196. .footer_top .rcewm .ntcb img {
  197. margin-top: 10px;
  198. }
  199. .footer_bottom {
  200. height: 70px;
  201. width: 100%;
  202. background: #ECECEC;
  203. }
  204. .footer_bottom_l {
  205. height: 70px;
  206. line-height: 70px;
  207. font-size: 13px;
  208. color: #787878;
  209. }
  210. .footer_bottom_l a {
  211. color: #787878;
  212. }
  213. .footer_bottom_r a {
  214. height: 70px;
  215. line-height: 70px;
  216. font-size: 13px;
  217. color: #787878;
  218. }
  219. .z_xq_cont_l {
  220. width: 50%;
  221. min-height: 765px;
  222. background: #E4EBF1;
  223. }
  224. .z_xq_cont_r {
  225. width: 50%;
  226. min-height: 765px;
  227. background: #F4F7F9;
  228. }
  229. .z_xq_cont {
  230. position: relative;
  231. width: 100%;
  232. }
  233. .z_xq_cont .z_xq_cont_top {
  234. position: absolute;
  235. z-index: 2;
  236. width: 100%;
  237. }
  238. .z_xq_cont_top_l {
  239. width: 305px;
  240. min-height: 765px;
  241. background: #E4EBF1;
  242. }
  243. .z_xq_cont_top_r {
  244. width: 895px;
  245. min-height: 765px;
  246. background: #F4F7F9;
  247. padding-left: 50px;
  248. padding-top: 53px;
  249. }
  250. .z_xq_cont_top_lt {
  251. font-size: 25px;
  252. color: #000000;
  253. margin-top: 55px;
  254. font-weight: bold;
  255. }
  256. .z_xq_cont_top_ls {
  257. font-size: 20px;
  258. color: #263d8f;
  259. margin: 20px 0;
  260. }
  261. .z_xq_cont_top_lc {
  262. overflow: hidden;
  263. }
  264. .z_xq_cont_top_lx {
  265. height: 88px;
  266. border-left: 1px solid #CCCCCC;
  267. padding-left: 10px;
  268. margin-top: 50px;
  269. }
  270. .z_xq_cont_top_lx .jzmssj {
  271. font-size: 46px;
  272. color: #263d8f;
  273. font-weight: 100;
  274. line-height: 52px;
  275. }
  276. .z_xq_cont_top_lx .jzmssj .dwi {
  277. font-size: 14px;
  278. color: #666666;
  279. }
  280. .z_xq_cont_top_rbt {
  281. font-size: 24px;
  282. color: #000;
  283. font-weight: bold;
  284. border-bottom: 1px solid #AAACAE;
  285. padding-bottom: 18px;
  286. }
  287. .z_xq_cont_top_rms {
  288. font-size: 15px;
  289. color: #666;
  290. margin-top: 35px;
  291. }
  292. .z_xq_cont_top_rqh {
  293. margin-top: 47px;
  294. }
  295. .z_news_banner {
  296. width: 100%;
  297. height: 533px;
  298. }
  299. .jgllw {
  300. font-size: 30px;
  301. color: #fff;
  302. font-weight: bold;
  303. margin-top: 47px;
  304. }
  305. .jgllwtab {
  306. width: 1200px;
  307. height: 318px;
  308. background: #fff;
  309. margin-top: 30px;
  310. }
  311. .gsdtlt {
  312. width: 510px;
  313. height: 100%;
  314. overflow: hidden;
  315. }
  316. .gsdtrnbt {
  317. font-size: 20px;
  318. color: #000;
  319. font-weight: bold;
  320. width: 400px;
  321. }
  322. .gsdtrn {
  323. padding: 39px 42px;
  324. width: 690px;
  325. height: 100%;
  326. position: relative;
  327. }
  328. .gsdtrnxt {
  329. width: 35px;
  330. height: 2px;
  331. background: #df1f00;
  332. margin: 20px 0;
  333. }
  334. .gsdtrnnr {
  335. font-size: 14px;
  336. color: #666666;
  337. }
  338. .gsdtrnck {
  339. height: 47px;
  340. display: inline-block;
  341. border: 1px solid #CCCCCC;
  342. margin-top: 43px;
  343. }
  344. .gsdtrnck a {
  345. display: block;
  346. color: #858585;
  347. font-size: 14px;
  348. padding: 0 15px;
  349. width: 162px;
  350. height: 47px;
  351. line-height: 47px;
  352. background: url("../image/xxdjt.png") no-repeat 90% 50%;
  353. transition: all .3s;
  354. -moz-transition: all .3s;
  355. -webkit-transition: all .3s;
  356. -o-transition: all .3s;
  357. }
  358. .gsdtrnck a:hover {
  359. width: 170px;
  360. color: #fff;
  361. background: url(../image/xxdjt2.png) no-repeat 90% 50% #2449A4;
  362. }
  363. .gsdtrnrq {
  364. width: 76px;
  365. height: 92px;
  366. background: url("../image/xwjb.jpg") no-repeat center;
  367. position: absolute;
  368. z-index: 3;
  369. top: -1px;
  370. right: 58px;
  371. }
  372. .gsdtrnrqd {
  373. color: #fff;
  374. font-weight: bold;
  375. font-size: 35px;
  376. width: 76px;
  377. line-height: 45px;
  378. text-align: center;
  379. }
  380. .gsdtrnrqs {
  381. width: 76px;
  382. text-align: center;
  383. font-weight: bold;
  384. font-size: 14px;
  385. color: #fff;
  386. }
  387. .newsca {
  388. background: #F9F9F9;
  389. padding: 45px 0;
  390. }
  391. .newscabtr {
  392. width: 162px;
  393. height: 47px;
  394. border: 1px solid #CCCCCC;
  395. }
  396. .newscabtr a {
  397. display: block;
  398. color: #858585;
  399. font-size: 14px;
  400. padding: 0 15px;
  401. width: 162px;
  402. height: 47px;
  403. line-height: 47px;
  404. background: url("../image/xxdjt.png") no-repeat 90% 50%;
  405. transition: all .3s;
  406. -moz-transition: all .3s;
  407. -webkit-transition: all .3s;
  408. -o-transition: all .3s;
  409. }
  410. .newscabtr a:hover {
  411. color: #fff;
  412. background: url(../image/xxdjt2.png) no-repeat 90% 50% #2449A4;
  413. }
  414. .newscabtl {
  415. font-size: 30px;
  416. color: #000;
  417. font-weight: bold;
  418. height: 47px;
  419. line-height: 47px;
  420. }
  421. .newscanr {
  422. margin-top: 45px;
  423. }
  424. .newscanr ul li {
  425. width: 100%;
  426. height: 166px;
  427. margin-bottom: 20px;
  428. }
  429. .newscanr ul li a {
  430. width: 100%;
  431. height: 166px;
  432. background: #FFFFFF;
  433. padding: 13px 20px;
  434. display: block;
  435. transition: all .3s;
  436. -moz-transition: all .3s;
  437. -webkit-transition: all .3s;
  438. -o-transition: all .3s;
  439. }
  440. .newscanr ul li a:hover .newscanrnbt {
  441. color: #2449A4;
  442. }
  443. .newscanr ul li a:hover {
  444. background: #F9F9F9;
  445. }
  446. .newscanr ul li a:hover .newscanrt img {
  447. transform: scale(1.1);
  448. -webkit-transform: scale(1.1);
  449. -o-transform: scale(1.1);
  450. -moz-transform: scale(1.1);
  451. }
  452. .newscanrt {
  453. height: 138px;
  454. width: 236px;
  455. overflow: hidden;
  456. }
  457. .newscanrt img {
  458. width: 100%;
  459. transform: scale(1);
  460. -webkit-transform: scale(1);
  461. -o-transform: scale(1);
  462. -moz-transform: scale(1);
  463. transition: all .3s;
  464. -moz-transition: all .3s;
  465. -webkit-transition: all .3s;
  466. -o-transition: all .3s;
  467. }
  468. .newscanrn {
  469. width: 825px;
  470. height: 138px;
  471. margin-left: 35px;
  472. }
  473. .newscanrnbt {
  474. font-size: 18px;
  475. color: #000;
  476. font-weight: bold;
  477. margin-top: 15px;
  478. transition: all .3s;
  479. -moz-transition: all .3s;
  480. -webkit-transition: all .3s;
  481. -o-transition: all .3s;
  482. }
  483. .newscanrnxt {
  484. font-size: 14px;
  485. color: #ababab;
  486. }
  487. .newscanrnnr {
  488. font-size: 14px;
  489. color: #666666;
  490. margin-top: 10px;
  491. }
  492. .newscb {
  493. padding: 45px 0;
  494. }
  495. .newscbnr ul li {
  496. width: 385px;
  497. height: 269px;
  498. border: 1px solid #CCCCCC;
  499. margin-right: 22px;
  500. float: left;
  501. transition: all .3s;
  502. -moz-transition: all .3s;
  503. -webkit-transition: all .3s;
  504. -o-transition: all .3s;
  505. }
  506. .newscbnr ul li:hover {
  507. border: 1px solid #2449A4;
  508. }
  509. .newscbnr ul li:hover .newscbnrbt {
  510. color: #2449A4;
  511. }
  512. .newscbnr ul li a {
  513. width: 385px;
  514. height: 269px;
  515. display: block;
  516. padding: 46px 25px 0 25px;
  517. }
  518. .newscbnr ul li a span {
  519. display: block;
  520. }
  521. .newscbnrmd {
  522. width: 40px;
  523. height: 40px;
  524. text-align: center;
  525. line-height: 40px;
  526. border: 1px solid #ADADAD;
  527. font-size: 22px;
  528. color: #ADADAD;
  529. font-family: 宋体;
  530. float: right;
  531. transition: all .3s;
  532. -moz-transition: all .3s;
  533. -webkit-transition: all .3s;
  534. -o-transition: all .3s;
  535. }
  536. .newscbnrbt {
  537. font-size: 18px;
  538. color: #333333;
  539. font-weight: bold;
  540. transition: all .3s;
  541. -moz-transition: all .3s;
  542. -webkit-transition: all .3s;
  543. -o-transition: all .3s;
  544. }
  545. .newscbnr ul li:hover .newscbnrmd {
  546. width: 60px;
  547. color: #fff;
  548. background: #2449A4;
  549. border: 1px solid #2449A4;
  550. }
  551. .newscbnrnr {
  552. font-size: 14px;
  553. color: #666;
  554. margin-top: 20px;
  555. }
  556. .newscbnrrq {
  557. font-size: 14px;
  558. color: #ababab;
  559. margin-top: 20px;
  560. }
  561. .newscbnr {
  562. margin-top: 30px;
  563. }
  564. .newshowbox {
  565. width: 835px;
  566. padding: 0px 0 30px 0;
  567. float: left;
  568. }
  569. .newshowbox_r {
  570. width: 306px;
  571. float: right;
  572. margin: 0 0 50px 0;
  573. }
  574. .newshow_name {
  575. font-size: 28px;
  576. color: #333333;
  577. font-weight: bold;
  578. line-height: 48px;
  579. }
  580. .newshow_zx div {
  581. float: left;
  582. font-size: 14px;
  583. color: #999999;
  584. }
  585. .newshow_ctrl a {
  586. color: #999999;
  587. font-weight: 600;
  588. margin-right: 10px;
  589. -webkit-transition: all 0.5s;
  590. -moz-transition: all 0.5s;
  591. -ms-transition: all 0.5s;
  592. -o-transition: all 0.5s;
  593. transition: all 0.5s;
  594. }
  595. .newshow_ctrl a:hover {
  596. color: #333;
  597. }
  598. .newshow_follow {
  599. margin-right: 20px;
  600. }
  601. .newshow_fx .bdsharebuttonbox a {
  602. margin: 0 6px 0 0;
  603. }
  604. .newshow_fx {
  605. margin-left: 30px;
  606. }
  607. .newshow_zx {
  608. margin-top: 20px;
  609. }
  610. .newshow_title {
  611. padding-bottom: 16px;
  612. }
  613. .newshow_zx .newshow_back {
  614. float: right;
  615. }
  616. .newshow_back a {
  617. color: #999999;
  618. -webkit-transition: all 0.5s;
  619. -moz-transition: all 0.5s;
  620. -ms-transition: all 0.5s;
  621. -o-transition: all 0.5s;
  622. transition: all 0.5s;
  623. }
  624. .newshow_back a:hover {
  625. color: #333333;
  626. }
  627. .newshow_cont {
  628. font-size: 16px;
  629. color: #666666;
  630. line-height: 30px;
  631. margin-top: 24px;
  632. }
  633. .newshow_cont p {
  634. margin-bottom: 20px;
  635. text-indent: 2em;
  636. }
  637. .newshow_cont p img {
  638. margin-left: -2em;
  639. }
  640. .newshow_cont h3 {
  641. font-weight: bold;
  642. font-size: 16px;
  643. margin-bottom: 15px;
  644. color: #333;
  645. }
  646. .newshow_cont h4 {
  647. font-weight: bold;
  648. font-size: 14px;
  649. margin-bottom: 15px;
  650. color: #333;
  651. }
  652. /**/
  653. .newshow_aboutsearch {
  654. font-size: 14px;
  655. color: #333;
  656. font-weight: bold;
  657. }
  658. .newshow_aboutsearch a {
  659. color: #333333;
  660. -webkit-transition: all 0.5s;
  661. -moz-transition: all 0.5s;
  662. -ms-transition: all 0.5s;
  663. -o-transition: all 0.5s;
  664. transition: all 0.5s;
  665. }
  666. .newshow_aboutsearch a:hover {
  667. color: #666666;
  668. }
  669. .newshow_pjs {
  670. float: left;
  671. margin-top: 20px;
  672. font-size: 14px;
  673. color: #333333;
  674. line-height: 28px;
  675. }
  676. .newshow_p a {
  677. color: #333333;
  678. padding-bottom: 2px;
  679. border-bottom: 1px solid #666666;
  680. }
  681. .newshow_p {
  682. float: left;
  683. }
  684. .newshow_pjs_fx {
  685. float: right;
  686. }
  687. .newshow_bottom {
  688. margin-top: 14px;
  689. }
  690. .newshow_back {
  691. float: right;
  692. font-size: 14px;
  693. margin-top: 25px;
  694. }
  695. .newshowbox_r_b {
  696. padding: 0 20px;
  697. margin-top: 32px;
  698. width: 306px;
  699. /*height: 343px;*/
  700. padding-bottom: 25px;
  701. border: 7px solid #F3F3F3;
  702. }
  703. .show_prev_title {
  704. font-size: 20px;
  705. color: #555555;
  706. font-weight: 600;
  707. margin-top: 30px;
  708. }
  709. .show_prev_time {
  710. font-size: 12px;
  711. color: #555555;
  712. margin-top: 5px;
  713. }
  714. .show_prev_name {
  715. font-size: 16px;
  716. color: #555555;
  717. line-height: 30px;
  718. }
  719. .newshowbox_r_b_prev {
  720. border-bottom: 1px solid #ECECEC;
  721. padding-bottom: 26px;
  722. }
  723. .show_chanpin_touch {
  724. display: none;
  725. }
  726. .prenextpage_touch {
  727. display: none;
  728. }
  729. .z_ny_banner_bg {
  730. width: 100%;
  731. height: 315px;
  732. background: url("../image/ddddt.png");
  733. }
  734. .about_nra {
  735. width: 100%;
  736. height: 405px;
  737. background: url("../image/aboutlbg.jpg") no-repeat center top;
  738. }
  739. .about_nra_bt {
  740. font-size: 30px;
  741. color: #000;
  742. font-weight: bold;
  743. margin-top: 30px;
  744. }
  745. .about_nra_nr {
  746. margin-top: 20px;
  747. min-height: 275px;
  748. }
  749. .about_nra_nr h3 {
  750. font-size: 18px;
  751. }
  752. .about_nra_nr .am-slider-default {
  753. height: 275px;
  754. }
  755. .about_nra_nr .am-slider-default .am-viewport {
  756. height: 275px;
  757. }
  758. .about_nra_nr .am-slider-default .am-viewport .am-gallery {
  759. height: 275px;
  760. }
  761. .about_nra_nr p {
  762. font-size: 15px;
  763. color: #666666;
  764. }
  765. .about_nra_sg {
  766. width: 100%;
  767. text-align: center;
  768. margin-top: 52px;
  769. }
  770. .about_nra_sg_box {
  771. display: inline-block;
  772. overflow: hidden;
  773. }
  774. .about_nra_sg_boxa {
  775. margin-right: 72px;
  776. }
  777. .about_nra_sg_boxart {
  778. font-size: 28px;
  779. color: #000;
  780. font-weight: bold;
  781. line-height: 22px;
  782. }
  783. .about_nra_sg_boxart span {
  784. font-size: 15px;
  785. color: #333333;
  786. }
  787. .about_nra_sg_boxarb {
  788. font-size: 15px;
  789. color: #333;
  790. text-align: left;
  791. }
  792. .about_nra_sg_boxal {
  793. height: 51px;
  794. line-height: 43px;
  795. }
  796. .about_nra_sg_boxar {
  797. padding-left: 10px;
  798. }
  799. .about_nrbl {
  800. width: 50%;
  801. height: 288px;
  802. position: relative;
  803. overflow: hidden;
  804. }
  805. .about_nrbl .about_nrblt {
  806. position: absolute;
  807. z-index: 3;
  808. padding: 105px 85px;
  809. width: 100%;
  810. }
  811. .about_nrbl .about_nrbls {
  812. width: 100%;
  813. height: 288px;
  814. position: absolute;
  815. z-index: 2;
  816. background: url("../image/ddddt.png") rgba(10,68,141,.8);
  817. }
  818. .about_nrbl .about_nrblss {
  819. width: 100%;
  820. height: 288px;
  821. position: absolute;
  822. z-index: 2;
  823. background: url("../image/ddddt.png") rgba(170,170,170,.8);
  824. }
  825. .about_nrbltlt {
  826. font-size: 30px;
  827. color: #fff;
  828. font-weight: bold;
  829. padding-left: 50px;
  830. background: url("../image/zzjg.png") no-repeat center left;
  831. }
  832. .about_nrbltlts {
  833. font-size: 30px;
  834. color: #fff;
  835. font-weight: bold;
  836. padding-left: 50px;
  837. background: url("../image/whcm.png") no-repeat center left;
  838. }
  839. .about_nrbltlb {
  840. font-size: 14px;
  841. color: #ffff;
  842. }
  843. .about_nrbltr {
  844. width: 162px;
  845. height: 40px;
  846. border-radius: 50px;
  847. border: 1px solid #fff;
  848. color: #fff;
  849. line-height: 40px;
  850. font-size: 14px;
  851. padding: 0 25px;
  852. text-align: left;
  853. margin-top: 20px;
  854. transition: all .5s;
  855. -moz-transition: all .5s;
  856. -webkit-transition: all .5s;
  857. -o-transition: all .5s;
  858. }
  859. .about_nrblc img {
  860. transform: scale(1);
  861. -webkit-transform: scale(1);
  862. -o-transform: scale(1);
  863. -moz-transform: scale(1);
  864. transition: all .5s;
  865. -moz-transition: all .5s;
  866. -webkit-transition: all .5s;
  867. -o-transition: all .5s;
  868. }
  869. .about_nrbl:hover img {
  870. transform: scale(1.1);
  871. -webkit-transform: scale(1.1);
  872. -o-transform: scale(1.1);
  873. -moz-transform: scale(1.1);
  874. }
  875. .about_nrbltr:hover {
  876. width: 170px;
  877. background: #1A499B;
  878. color: #fff !important;
  879. }
  880. .about_nrbltr:hover span {
  881. color: #fff;
  882. }
  883. .about_nrbltr span {
  884. font-family: 宋体;
  885. font-size: 16px;
  886. margin-left: 40px;
  887. }
  888. .about_nrc {
  889. margin-top: 50px;
  890. overflow: hidden;
  891. }
  892. .rongyzz {
  893. padding: 40px 0;
  894. }
  895. .rongyzz .am-gallery li {
  896. float: left;
  897. margin-right: 10px;
  898. margin-bottom: 10px;
  899. }
  900. .bannersy {
  901. width: 100%;
  902. height: 535px;
  903. }
  904. .bannersy .am-slider-default {
  905. height: 535px;
  906. }
  907. .bannersy ul.am-slides li {
  908. width: 100%;
  909. height: 535px;
  910. }
  911. .bannersy .am-slider-default .am-control-nav {
  912. bottom: 31px;
  913. }
  914. .bannersy .am-slider-default .am-control-nav li a {
  915. width: 15px;
  916. height: 15px;
  917. background: #fff;
  918. transition: all .5s;
  919. -moz-transition: all .5s;
  920. -webkit-transition: all .5s;
  921. -o-transition: all .5s;
  922. }
  923. .bannersy .am-slider-default .am-control-nav li a.am-active {
  924. width: 57px;
  925. background: #e60012;
  926. }
  927. .z_bannersy {
  928. width: 100%;
  929. height: 535px;
  930. }
  931. .z_bannersy .am-slider-default {
  932. height: 535px;
  933. }
  934. .z_bannersy ul.am-slides li {
  935. width: 100%;
  936. height: 535px;
  937. }
  938. .z_bannersy .am-slider-default .am-control-nav {
  939. bottom: 31px;
  940. }
  941. .z_bannersy .am-slider-default .am-control-nav li a {
  942. width: 15px;
  943. height: 15px;
  944. background: #fff;
  945. transition: all .5s;
  946. -moz-transition: all .5s;
  947. -webkit-transition: all .5s;
  948. -o-transition: all .5s;
  949. }
  950. .z_bannersy .am-slider-default .am-control-nav li a.am-active {
  951. width: 57px;
  952. background: #e60012;
  953. }
  954. .contsyabt {
  955. font-size: 28px;
  956. font-weight: bold;
  957. color: #000;
  958. margin-bottom: 25px;
  959. }
  960. .contsyabtt {
  961. font-size: 28px;
  962. font-weight: bold;
  963. color: #000;
  964. margin-bottom: 26px;
  965. }
  966. .contsyabt span {
  967. font-size: 15px;
  968. color: #7f7f7f;
  969. font-weight: normal;
  970. margin-left: 10px;
  971. }
  972. .contsyabtt span {
  973. font-size: 15px;
  974. color: #7f7f7f;
  975. font-weight: normal;
  976. margin-left: 10px;
  977. }
  978. .contsya {
  979. margin-top: 25px;
  980. }
  981. .contsyanr {
  982. position: relative;
  983. }
  984. .contsyanrt {
  985. height: 80px;
  986. width: 100%;
  987. background: url("../image/xwsybg.jpg")no-repeat center bottom;
  988. }
  989. .contsyanrtl {
  990. width: 1080px;
  991. height: 80px;
  992. }
  993. .contsyanrtr {
  994. width: 100px;
  995. height: 80px;
  996. }
  997. .contsyanrtlt {
  998. font-size: 24px;
  999. color: #003f91;
  1000. font-weight: bold;
  1001. }
  1002. .contsyanrtlb {
  1003. font-size: 16px;
  1004. color: #666;
  1005. }
  1006. .contsyanrtr a {
  1007. display: block;
  1008. line-height: 67px;
  1009. font-size: 18px;
  1010. color: #003f91;
  1011. transition: all .5s;
  1012. -moz-transition: all .5s;
  1013. -webkit-transition: all .5s;
  1014. -o-transition: all .5s;
  1015. }
  1016. .contsyanrtr a:hover {
  1017. color: #DF1F00;
  1018. }
  1019. .contsyanrb {
  1020. margin-top: 35px;
  1021. height: 315px;
  1022. width: 100%;
  1023. }
  1024. .contsyanrbl {
  1025. width: 472px;
  1026. height: 324px;
  1027. overflow: hidden;
  1028. position: relative;
  1029. }
  1030. .contsyanrbl ul li a:hover img {
  1031. transform: scale(1.1);
  1032. -webkit-transform: scale(1.1);
  1033. -o-transform: scale(1.1);
  1034. -moz-transform: scale(1.1);
  1035. filter: brightness(1);
  1036. }
  1037. .am-slider .am-slides img {
  1038. filter: brightness(0.9);
  1039. transform: scale(1);
  1040. -webkit-transform: scale(1);
  1041. -o-transform: scale(1);
  1042. -moz-transform: scale(1);
  1043. transition: all .5s;
  1044. -moz-transition: all .5s;
  1045. -webkit-transition: all .5s;
  1046. -o-transition: all .5s;
  1047. }
  1048. .contsyanrblt {
  1049. position: absolute;
  1050. z-index: 3;
  1051. width: 70px;
  1052. height: 60px;
  1053. left: 7px;
  1054. top: 7px;
  1055. background: #DF1F00;
  1056. color: #fff;
  1057. font-size: 28px;
  1058. text-align: center;
  1059. padding-top: 10px;
  1060. line-height: 22px;
  1061. }
  1062. .contsyanrblt span {
  1063. font-size: 13px;
  1064. display: block;
  1065. }
  1066. .contsyanrbls {
  1067. position: absolute;
  1068. z-index: 2;
  1069. background: url("../image/syxwds.png") no-repeat center;
  1070. width: 100%;
  1071. height: 76px;
  1072. bottom: 0;
  1073. font-size: 16px;
  1074. color: #fff;
  1075. }
  1076. .contsyanrblss {
  1077. width: 310px;
  1078. margin-top: 15px;
  1079. padding-left: 20px;
  1080. height: 50px;
  1081. }
  1082. .contsyanrbl .am-slider-default .am-control-nav {
  1083. bottom: 27px;
  1084. width: auto;
  1085. right: 10px;
  1086. }
  1087. .contsyanrbl .am-slider-default .am-control-nav li a {
  1088. width: 10px;
  1089. height: 10px;
  1090. background-color: #fff;
  1091. transition: all .5s;
  1092. -moz-transition: all .5s;
  1093. -webkit-transition: all .5s;
  1094. -o-transition: all .5s;
  1095. }
  1096. .contsyanrbl .am-slider-default .am-control-nav li a.am-active {
  1097. width: 30px;
  1098. background-color: #E60012;
  1099. }
  1100. .contsyanrbl .am-slider-default .am-control-nav li {
  1101. margin: 0 3px;
  1102. }
  1103. .contsyanrbr {
  1104. width: 685px;
  1105. height: 314px;
  1106. }
  1107. .contsyanrbr ul li {
  1108. width: 100%;
  1109. padding-left: 19px;
  1110. background: url("../image/xhd.jpg") no-repeat center left;
  1111. display: block;
  1112. overflow: hidden;
  1113. margin-bottom: 12px;
  1114. }
  1115. .contsyanrbr ul li a {
  1116. display: block;
  1117. }
  1118. .contsyanrbr ul li a .contsyanrb2 {
  1119. font-size: 15px;
  1120. color: #333333;
  1121. transition: all .5s;
  1122. -moz-transition: all .5s;
  1123. -webkit-transition: all .5s;
  1124. -o-transition: all .5s;
  1125. }
  1126. .contsyanrbr ul li a .contsyanrb3 {
  1127. font-size: 15px;
  1128. color: #999999;
  1129. }
  1130. .contsyanrblx ul li {
  1131. width: 100%;
  1132. padding-left: 19px;
  1133. background: url("../image/xhd.jpg") no-repeat center left;
  1134. display: block;
  1135. overflow: hidden;
  1136. margin-bottom: 12px;
  1137. }
  1138. .contsyanrblx ul li a .contsyanrb2 {
  1139. font-size: 15px;
  1140. color: #333333;
  1141. transition: all .5s;
  1142. -moz-transition: all .5s;
  1143. -webkit-transition: all .5s;
  1144. -o-transition: all .5s;
  1145. }
  1146. .contsyanrb ul li a:hover .contsyanrb2 {
  1147. color: #1A499B;
  1148. padding-left: 10px;
  1149. }
  1150. .contsyanrblx ul li a .contsyanrb3 {
  1151. font-size: 15px;
  1152. color: #999999;
  1153. }
  1154. .contsyb {
  1155. width: 100%;
  1156. height: 650px;
  1157. margin-top: 25px;
  1158. background: url("../image/bhgcbg.jpg") no-repeat center;
  1159. padding-top: 35px;
  1160. }
  1161. .contsya .am-nav-tabs {
  1162. border: none;
  1163. position: absolute;
  1164. top: -60px;
  1165. right: 0;
  1166. }
  1167. .contsya .am-nav-tabs>li {
  1168. margin-left: 4px;
  1169. }
  1170. .contsya .am-nav-tabs>li>a {
  1171. width: 150px;
  1172. height: 50px;
  1173. background: #F7F7F7;
  1174. border: none;
  1175. margin: 0;
  1176. padding: 0;
  1177. text-align: center;
  1178. line-height: 50px;
  1179. font-size: 16px;
  1180. color: #333333;
  1181. font-weight: bold;
  1182. transition: all .5s;
  1183. -moz-transition: all .5s;
  1184. -webkit-transition: all .5s;
  1185. -o-transition: all .5s;
  1186. position: relative;
  1187. }
  1188. .contsya .am-nav-tabs>li>a:hover {
  1189. background: #EAEAEA;
  1190. }
  1191. .contsya .am-nav-tabs>li.am-active>a, .contsya .am-nav-tabs>li.am-active>a:focus {
  1192. background: #1A499B;
  1193. color: #fff;
  1194. border: none;
  1195. }
  1196. .contsya .am-direction-nav {
  1197. display: none;
  1198. }
  1199. .contsyb .am-nav-tabs {
  1200. width: 188px;
  1201. height: 439px;
  1202. float: left;
  1203. }
  1204. .contsybnr {
  1205. width: 100%;
  1206. height: 439px;
  1207. }
  1208. .contsyb .am-tabs-bd {
  1209. float: left;
  1210. width: 1012px;
  1211. height: 439px;
  1212. }
  1213. .contsybnr .am-tabs .am-nav-tabs li {
  1214. width: 100%;
  1215. height: 87px;
  1216. margin-bottom: 1px;
  1217. }
  1218. .contsybnr .am-nav-tabs>li>a {
  1219. background: #E7E7E7;
  1220. height: 100%;
  1221. text-align: center;
  1222. line-height: 87px;
  1223. color: #333333;
  1224. font-weight: bold;
  1225. font-size: 18px;
  1226. margin: 0;
  1227. transition: all .5s;
  1228. -moz-transition: all .5s;
  1229. -webkit-transition: all .5s;
  1230. -o-transition: all .5s;
  1231. padding: 0 30px;
  1232. border: none;
  1233. }
  1234. .contsybnr .am-nav-tabs>li>a:hover {
  1235. background: #D8D8D8;
  1236. }
  1237. .contsybnr .am-nav-tabs>li.am-active>a, .contsybnr .am-nav-tabs>li.am-active>a:focus {
  1238. background: #3071B7;
  1239. color: #fff;
  1240. border: none;
  1241. }
  1242. .contsybnr .am-tabs-bd .am-tab-panel {
  1243. padding: 0;
  1244. }
  1245. .contsybnr .am-nav-tabs {
  1246. border: none;
  1247. }
  1248. .contsybnrbll {
  1249. width: 705px;
  1250. height: 439px;
  1251. float: left;
  1252. overflow: hidden;
  1253. }
  1254. .contsybnrbll img {
  1255. transform: scale(1);
  1256. -webkit-transform: scale(1);
  1257. -o-transform: scale(1);
  1258. -moz-transform: scale(1);
  1259. transition: all .5s;
  1260. -moz-transition: all .5s;
  1261. -webkit-transition: all .5s;
  1262. -o-transition: all .5s;
  1263. filter: brightness(0.9);
  1264. }
  1265. .contsybnrbll:hover img {
  1266. transform: scale(1.1);
  1267. -webkit-transform: scale(1.1);
  1268. -o-transform: scale(1.1);
  1269. -moz-transform: scale(1.1);
  1270. filter: brightness(1);
  1271. }
  1272. .contsybnrblr {
  1273. float: left;
  1274. width: 307px;
  1275. height: 439px;
  1276. padding: 59px 32px 0 32px;
  1277. }
  1278. .contsybnrblrmo {
  1279. width: 124px;
  1280. height: 42px;
  1281. }
  1282. .contsybnrblrmo a {
  1283. width: 124px;
  1284. height: 42px;
  1285. display: block;
  1286. background: #F2F2F2;
  1287. transition: all .5s;
  1288. -moz-transition: all .5s;
  1289. -webkit-transition: all .5s;
  1290. -o-transition: all .5s;
  1291. font-size: 13px;
  1292. color: #666;
  1293. text-align: center;
  1294. line-height: 42px;
  1295. }
  1296. .contsybnrblrmo a:hover {
  1297. background: #1A499B;
  1298. color: #fff;
  1299. width: 140px;
  1300. }
  1301. .contsybnrblrmo a span {
  1302. font-family: 宋体;
  1303. margin-left: 10px;
  1304. font-size: 16px;
  1305. }
  1306. .contsybnrblrbt {
  1307. font-size: 20px;
  1308. font-weight: bold;
  1309. color: #3071b7;
  1310. }
  1311. .contsybnrblrnr {
  1312. font-size: 15px;
  1313. color: #666666;
  1314. margin-top: 20px;
  1315. }
  1316. .contsybnrblrmo {
  1317. margin-top: 20px;
  1318. }
  1319. .contsybnr .am-slider-default .am-direction-nav a:before {
  1320. display: none;
  1321. }
  1322. .contsybnr .am-slider-default .am-direction-nav a {
  1323. width: 44px;
  1324. height: 41px;
  1325. }
  1326. .contsybnr .am-slider-default .am-direction-nav .am-next {
  1327. background: url("../image/newsr.jpg") no-repeat center;
  1328. right: 39px;
  1329. }
  1330. .contsybnr .am-slider-default .am-direction-nav .am-prev {
  1331. background: url("../image/newsl.jpg") no-repeat center;
  1332. }
  1333. .contsybnr .am-slider-default .am-direction-nav a {
  1334. top: 87%;
  1335. }
  1336. .contsybnr .am-slider-default .am-direction-nav .am-prev {
  1337. left: auto;
  1338. right: 88px;
  1339. }
  1340. .xxdywtb {
  1341. position: absolute;
  1342. left: 30px;
  1343. opacity: 0;
  1344. transition: all .5s;
  1345. -moz-transition: all .5s;
  1346. -webkit-transition: all .5s;
  1347. -o-transition: all .5s;
  1348. }
  1349. .contsybnr .am-nav-tabs>li.am-active>a .xxdywtb, .contsybnr .am-nav-tabs>li.am-active>a:focus .xxdywtb {
  1350. opacity: 1;
  1351. }
  1352. .contsybnr .am-nav-tabs>li.am-active>a .xxdywtb2, .contsybnr .am-nav-tabs>li.am-active>a:focus .xxdywtb2 {
  1353. opacity: 0;
  1354. }
  1355. .xxdywtb2 {
  1356. opacity: 1;
  1357. }
  1358. .xxdywtb3 {
  1359. text-align: left;
  1360. width: 72px;
  1361. }
  1362. .contsyca {
  1363. float: left;
  1364. width: 25%;
  1365. height: 160px;
  1366. }
  1367. .contsyc {
  1368. padding: 25px 0;
  1369. background: #fff;
  1370. }
  1371. .contsycar {
  1372. width: 200px;
  1373. padding-left: 8px;
  1374. }
  1375. .contsycarbt {
  1376. font-size: 18px;
  1377. color: #333;
  1378. font-weight: bold;
  1379. height: 60px;
  1380. line-height: 60px;
  1381. }
  1382. .contsycarnr {
  1383. font-size: 14px;
  1384. color: #666;
  1385. }
  1386. .contsycarns {
  1387. font-size: 15px;
  1388. color: #3071B7;
  1389. display: block;
  1390. margin-top: 13px;
  1391. transition: all .5s;
  1392. -moz-transition: all .5s;
  1393. -webkit-transition: all .5s;
  1394. -o-transition: all .5s;
  1395. }
  1396. .contsycarns:hover {
  1397. color: #DF1F00;
  1398. }
  1399. .bannersy .am-direction-nav {
  1400. display: none;
  1401. }
  1402. .renli_main_box_ul {
  1403. margin-top: 35px;
  1404. }
  1405. .renli_main_box_ul_li_jianjie {
  1406. height: 90px;
  1407. line-height: 90px;
  1408. background-color: #fafafa;
  1409. -webkit-transition: all 0.4s;
  1410. -moz-transition: all 0.4s;
  1411. -ms-transition: all 0.4s;
  1412. -o-transition: all 0.4s;
  1413. transition: all 0.4s;
  1414. }
  1415. .renli_main_box_ul_li_jianjie .renli_main_box_ul_li_name {
  1416. font-size: 18px;
  1417. color: #333333;
  1418. margin-left: 46px;
  1419. width: 275px;
  1420. -webkit-transition: all 0.4s;
  1421. -moz-transition: all 0.4s;
  1422. -ms-transition: all 0.4s;
  1423. -o-transition: all 0.4s;
  1424. transition: all 0.4s;
  1425. }
  1426. .renli_main_box_ul_list {
  1427. margin-top: 45px;
  1428. }
  1429. .renli_main_box_ul_list li {
  1430. margin-bottom: 25px;
  1431. position: relative;
  1432. cursor: pointer;
  1433. }
  1434. .renli_main_box_ul_list li:hover .renli_main_box_ul_li_jianjie {
  1435. background-color: #eaeaea;
  1436. }
  1437. .renli_main_box_ul_li_s {
  1438. font-size: 14px;
  1439. color: #888888;
  1440. -webkit-transition: all 0.4s;
  1441. -moz-transition: all 0.4s;
  1442. -ms-transition: all 0.4s;
  1443. -o-transition: all 0.4s;
  1444. transition: all 0.4s;
  1445. }
  1446. .renli_main_box_ul_li_jianjie span {
  1447. display: block;
  1448. float: left;
  1449. width: 190px;
  1450. }
  1451. .renli_main_box_ul_li_more {
  1452. width: 20px;
  1453. height: 90px;
  1454. background-color: #2449A4;
  1455. text-align: center;
  1456. line-height: 88px;
  1457. color: #ffffff;
  1458. font-size: 20px;
  1459. position: absolute;
  1460. right: 0;
  1461. top: 0;
  1462. }
  1463. .renli_main_box_ul_li_xianxi_box {
  1464. width: 90%;
  1465. margin: 0 auto;
  1466. }
  1467. .renli_main_box_ul_li_xianxi h3 {
  1468. font-size: 17px;
  1469. color: #000000;
  1470. font-weight: normal;
  1471. margin-top: 40px;
  1472. margin-bottom: 26px;
  1473. }
  1474. .renli_main_box_ul_li_xianxi p {
  1475. font-size: 15px;
  1476. color: #555555;
  1477. line-height: 28px;
  1478. }
  1479. .renli_main_box_ul_li_xianxi {
  1480. display: none;
  1481. }
  1482. .n_lxwm {
  1483. margin: 65px 0;
  1484. }
  1485. .n_lxwm_l {
  1486. float: left;
  1487. width: 560px;
  1488. }
  1489. .n_lxwm_l_name {
  1490. font-size: 25px;
  1491. color: #000000;
  1492. }
  1493. .n_lxwm_l_js {
  1494. font-size: 14px;
  1495. color: #888888;
  1496. display: block;
  1497. line-height: 26px;
  1498. margin: 10px 0 10px 0;
  1499. }
  1500. .n_lxwm_l_list li {
  1501. margin-bottom: 20px;
  1502. }
  1503. .n_lxwm_l_list li span {
  1504. font-size: 15px;
  1505. vertical-align: middle;
  1506. }
  1507. .n_lxwm_l_list li img {
  1508. vertical-align: middle;
  1509. }
  1510. .n_lxwm_l_list {
  1511. margin-top: 22px;
  1512. }
  1513. .n_lxwm_l_ewm {
  1514. margin-top: 25px;
  1515. }
  1516. .n_lxwm_l_ewm li {
  1517. float: left;
  1518. text-align: center;
  1519. margin-right: 20px;
  1520. }
  1521. .n_lxwm_l_ewm_name {
  1522. font-size: 12px;
  1523. margin-top: 3px;
  1524. }
  1525. .n_lxwm_r {
  1526. float: right;
  1527. width: 560px;
  1528. margin-top: 65px;
  1529. }
  1530. .n_lxwm_r input {
  1531. width: 100%;
  1532. height: 50px;
  1533. border: 1px solid #D8D8D8;
  1534. border-radius: 4px;
  1535. padding-left: 20px;
  1536. font-size: 13px;
  1537. outline: none;
  1538. }
  1539. .n_lxwm_r textarea {
  1540. outline: none;
  1541. font-size: 13px;
  1542. width: 100%;
  1543. height: 182px;
  1544. min-height: 170px;
  1545. border: 1px solid #D8D8D8;
  1546. border-radius: 4px;
  1547. padding-left: 20px;
  1548. padding-top: 14px;
  1549. }
  1550. .n_lxwm_r div {
  1551. margin-bottom: 25px;
  1552. }
  1553. .n_lxwm_r div.n_lxwm_sub {
  1554. }
  1555. .n_lxwm_r div.n_lxwm_sub input {
  1556. width: auto;
  1557. padding-left: 0;
  1558. background: none;
  1559. }
  1560. .n_lxwm_r div.n_lxwm_sub input.n_lxwm_sub_s1 {
  1561. width: 200px;
  1562. height: 46px;
  1563. text-align: center;
  1564. line-height: 46px;
  1565. font-size: 13px;
  1566. color: #666666;
  1567. -webkit-transition: all 0.4s;
  1568. -moz-transition: all 0.4s;
  1569. -ms-transition: all 0.4s;
  1570. -o-transition: all 0.4s;
  1571. transition: all 0.4s;
  1572. }
  1573. .n_lxwm_r div.n_lxwm_sub input.n_lxwm_sub_s1:hover {
  1574. color: #ffffff;
  1575. background-color: #1A499B;
  1576. }
  1577. .n_lxwm_r div.n_lxwm_sub input.n_lxwm_sub_s2 {
  1578. width: 148px;
  1579. height: 46px;
  1580. text-align: center;
  1581. line-height: 46px;
  1582. font-size: 13px;
  1583. color: #666666;
  1584. margin-left: 15px;
  1585. -webkit-transition: all 0.4s;
  1586. -moz-transition: all 0.4s;
  1587. -ms-transition: all 0.4s;
  1588. -o-transition: all 0.4s;
  1589. transition: all 0.4s;
  1590. }
  1591. .n_lxwm_r div.n_lxwm_sub input.n_lxwm_sub_s2:hover {
  1592. color: #ffffff;
  1593. background-color: #1A499B;
  1594. }
  1595. .z_jxmap {
  1596. margin-bottom: 30px;
  1597. }
  1598. .z_jxlyx {
  1599. overflow: hidden;
  1600. margin-bottom: 50px;
  1601. }
  1602. .am-gallery-item {
  1603. transition: all .3s;
  1604. -moz-transition: all .3s;
  1605. -webkit-transition: all .3s;
  1606. -o-transition: all .3s;
  1607. }
  1608. .am-gallery-item:hover {
  1609. border: 5px solid #1A499B;
  1610. }
  1611. .c_nav_nav_li1 {
  1612. float: left;
  1613. width: 100px;
  1614. text-align: center;
  1615. margin-left: 14px;
  1616. position: relative;
  1617. display: block;
  1618. height: 52px;
  1619. }
  1620. .c_nav_nav_li_a {
  1621. font-size: 16px;
  1622. color: #333333;
  1623. font-weight: bold;
  1624. }
  1625. .c_nav_nav_li1 .c_nav_nav_li_a_hover {
  1626. border-bottom: 2px solid #0C4DA2;
  1627. color: #0C4DA2;
  1628. }
  1629. .c_nav_nav_li_b {
  1630. position: absolute;
  1631. top: 53px;
  1632. left: 0;
  1633. z-index: 99;
  1634. padding: 0;
  1635. background-color: #0C4DA2;
  1636. -webkit-transition: all 0.4s;
  1637. -moz-transition: all 0.4s;
  1638. -ms-transition: all 0.4s;
  1639. -o-transition: all 0.4s;
  1640. transition: all 0.4s;
  1641. }
  1642. .c_nav_nav_li1:hover .c_nav_nav_li_b {
  1643. padding: 8px 0;
  1644. }
  1645. .c_nav_nav_li2 {
  1646. width: 160px;
  1647. text-align: left;
  1648. background-color: #0C4DA2;
  1649. position: relative;
  1650. }
  1651. .c_nav_nav_li2_b {
  1652. height: 0;
  1653. overflow: hidden;
  1654. line-height: 36px;
  1655. color: #ffffff;
  1656. font-size: 14px;
  1657. padding-left: 20px;
  1658. -webkit-transition: all 0.4s;
  1659. -moz-transition: all 0.4s;
  1660. -ms-transition: all 0.4s;
  1661. -o-transition: all 0.4s;
  1662. transition: all 0.4s;
  1663. }
  1664. .c_nav_nav_li1:hover .c_nav_nav_li2_b {
  1665. height: 36px;
  1666. }
  1667. .c_nav_nav_li2_b_i {
  1668. font-weight: bolder;
  1669. font-style: normal;
  1670. float: right;
  1671. margin-right: 0;
  1672. font-family: SimSun;
  1673. color: #0C4DA2;
  1674. -webkit-transition: all 0.4s;
  1675. -moz-transition: all 0.4s;
  1676. -ms-transition: all 0.4s;
  1677. -o-transition: all 0.4s;
  1678. transition: all 0.4s;
  1679. }
  1680. .c_nav_nav_li2_b:hover {
  1681. color: #fff;
  1682. background-color: #3467AF;
  1683. }
  1684. .c_nav_nav_li2_b:hover .c_nav_nav_li2_b_i {
  1685. margin-right: 10px;
  1686. color: #fff;
  1687. }
  1688. .c_nav_nav_li_c {
  1689. position: absolute;
  1690. top: 0;
  1691. left: 160px;
  1692. width: 140px;
  1693. background-color: #2c3038;
  1694. }
  1695. .c_nav_nav_li3_div {
  1696. height: 0;
  1697. overflow: hidden;
  1698. line-height: 38px;
  1699. background-color: #2c3038;
  1700. padding-left: 20px;
  1701. color: #ffffff;
  1702. font-size: 14px;
  1703. -webkit-transition: all 0.4s;
  1704. -moz-transition: all 0.4s;
  1705. -ms-transition: all 0.4s;
  1706. -o-transition: all 0.4s;
  1707. transition: all 0.4s;
  1708. }
  1709. .c_nav_nav_li3_div:hover {
  1710. background-color: #414141;
  1711. color: #BBA26C;
  1712. }
  1713. .c_nav_nav_li2:hover .c_nav_nav_li3_div {
  1714. height: 38px;
  1715. }
  1716. .z_ny_cont_gc {
  1717. height: 659px;
  1718. width: 100%;
  1719. }
  1720. .z_ny_banner_bg ul li {
  1721. width: 240px;
  1722. float: left;
  1723. height: 440px;
  1724. margin-top: 105px;
  1725. }
  1726. .z_ny_banner_bg ul li a {
  1727. display: block;
  1728. width: 100%;
  1729. height: 100%;
  1730. position: relative;
  1731. text-align: center;
  1732. }
  1733. .z_ny_banner_bg ul li a:hover .z_yw_lhs {
  1734. background: url("../image/csdybd.png") no-repeat right bottom #fff;
  1735. width: 100%;
  1736. }
  1737. .z_ny_banner_bg ul li a:hover .z_yw_lhzx {
  1738. color: #0A448D;
  1739. }
  1740. .z_yw_lhs {
  1741. width: 0;
  1742. height: 100%;
  1743. display: inline-block;
  1744. transition: all .5s;
  1745. -moz-transition: all .5s;
  1746. -webkit-transition: all .5s;
  1747. -o-transition: all .5s;
  1748. overflow: hidden;
  1749. background: url("../image/csdybd.png") no-repeat right bottom;
  1750. }
  1751. .z_yw_lhz {
  1752. display: block;
  1753. position: absolute;
  1754. width: 100%;
  1755. top: 40px;
  1756. text-align: center;
  1757. }
  1758. .z_yw_lhz span {
  1759. display: block;
  1760. }
  1761. .z_yw_lhzt {
  1762. position: absolute;
  1763. left: 66px;
  1764. transition: all .3s;
  1765. -moz-transition: all .3s;
  1766. -webkit-transition: all .3s;
  1767. -o-transition: all .3s;
  1768. }
  1769. .z_yw_lhzts {
  1770. opacity: 0;
  1771. transition: all .3s;
  1772. -moz-transition: all .3s;
  1773. -webkit-transition: all .3s;
  1774. -o-transition: all .3s;
  1775. }
  1776. .z_ny_banner_bg ul li a:hover .z_yw_lhzt {
  1777. opacity: 0;
  1778. }
  1779. .z_ny_banner_bg ul li a:hover .z_yw_lhzts {
  1780. opacity: 1;
  1781. }
  1782. .z_ny_banner_bg ul li a:hover .z_yw_lhzc {
  1783. width: 162px;
  1784. display: block;
  1785. }
  1786. .z_yw_lhzx {
  1787. font-size: 25px;
  1788. font-weight: bold;
  1789. color: #fff;
  1790. margin: 17px 0 27px 0;
  1791. transition: all .3s;
  1792. -moz-transition: all .3s;
  1793. -webkit-transition: all .3s;
  1794. -o-transition: all .3s;
  1795. }
  1796. .z_yw_lhzc {
  1797. width: 0;
  1798. overflow: hidden;
  1799. height: 47px;
  1800. color: #fff;
  1801. text-align: center;
  1802. line-height: 47px;
  1803. background: #0A448D;
  1804. font-size: 14px;
  1805. margin: 0 auto;
  1806. display: block;
  1807. transition: all .3s;
  1808. -moz-transition: all .3s;
  1809. -webkit-transition: all .3s;
  1810. -o-transition: all .3s;
  1811. margin-top: 30px;
  1812. }
  1813. .z_yw_lhzc span {
  1814. display: inline-block;
  1815. font-family: 宋体;
  1816. margin-left: 20px;
  1817. }
  1818. .z_yw_lhzs {
  1819. width: 100%;
  1820. opacity: .9;
  1821. font-size: 15px;
  1822. color: #fff;
  1823. transition: all .3s;
  1824. -moz-transition: all .3s;
  1825. -webkit-transition: all .3s;
  1826. -o-transition: all .3s;
  1827. padding: 0 35px;
  1828. }
  1829. .z_ny_banner_bg ul li a:hover .z_yw_lhzs {
  1830. color: #666666;
  1831. opacity: 1;
  1832. }
  1833. .jtwzds {
  1834. background: url("../image/diqiu.jpg") no-repeat center left;
  1835. padding-left: 32px !important;
  1836. font-size: 14px;
  1837. color: #686868;
  1838. margin-left: 13px;
  1839. }
  1840. /*AB模版网新增翻页样式 各类模版第一站 www.adminbuy.cn*/
  1841. .dede_pages{padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
  1842. .dede_pages ul{display:inline-block;margin:0 auto;padding:0}
  1843. .dede_pages ul li{float:left;font-family:'microsoft yahei';margin:0 2px;padding:0 10px;line-height:25px;background:#fff;border:1px solid #d8dadf}
  1844. .dede_pages ul li a{float:left;color:#555;display:block}
  1845. .dede_pages ul li:hover{text-decoration:none;color:#fff;border:1px #333 solid;background-color:#333}
  1846. .dede_pages ul li:hover a{color:#fff}
  1847. .dede_pages ul li:hover a:hover{color:#fff;text-decoration:none}
  1848. .dede_pages ul li.thisclass{background-color:#333;color:#fff;border:1px #333 solid}
  1849. .dede_pages ul li.thisclass a{color:#fff}
  1850. .dede_pages .pageinfo{line-height:30px;padding-left:5px}
  1851. .dede_pages strong{font-weight:400}
  1852. .z_cplist{ overflow:hidden}
  1853. .pcxiao{ height:324px;}
  1854. .pcxiao img{ height:324px;}
  1855. .picda img{ height:440px;}
  1856. @media screen and (max-width: 768px) {
  1857. .pcxiao{ height:inherit}
  1858. .pcxiao img{ height:inherit}
  1859. .picda img{ height:inherit}
  1860. .newsca{ padding:45px 0 0 0;}
  1861. #maximg img{ max-width:100%; height:auto !important}
  1862. .n_lxwm_l_ewm li{ width:40%}
  1863. .n_lxwm_r div.n_lxwm_sub{ float:inherit}
  1864. }