index.less 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. .topNewsPart {
  2. width: 100%;
  3. padding-top: 15px;
  4. box-sizing: border-box;
  5. .inner {
  6. width: 1200px;
  7. overflow: hidden;
  8. .toutiao {
  9. .xwtt {
  10. width: 1200px;
  11. height: 41px;
  12. line-height: 41px;
  13. .ttlogo {
  14. margin-left: 110px;
  15. display: inline-block;
  16. width: 94px;
  17. height: 41px;
  18. line-height: 41px;
  19. text-align: center;
  20. color: #fff;
  21. font-family: Microsoft YaHei, Microsoft YaHei;
  22. font-weight: bold;
  23. font-size: 16px;
  24. background-color: #a01c0e;
  25. margin-right: 135px;
  26. }
  27. .tttitle {
  28. display: inline-block;
  29. width: 561px;
  30. height: 41px;
  31. white-space: nowrap;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. font-family: Microsoft YaHei, Microsoft YaHei;
  35. font-weight: bold;
  36. font-size: 30px;
  37. color: #333333;
  38. line-height: 35px;
  39. text-align: left;
  40. vertical-align: middle;
  41. }
  42. }
  43. .toutiao1 {
  44. width: 1200px;
  45. text-align: center;
  46. white-space: nowrap;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. font-family: Microsoft YaHei, Microsoft YaHei;
  50. font-weight: 400;
  51. font-size: 18px;
  52. color: #333333;
  53. line-height: 21px;
  54. margin-top: 20px;
  55. padding: 0 100px;
  56. box-sizing: border-box;
  57. a {
  58. color: #333333;
  59. }
  60. }
  61. }
  62. .vibrant {
  63. width: 1200px;
  64. display: flex;
  65. justify-content: space-between;
  66. margin: 30px 0;
  67. li {
  68. width: 390px;
  69. height: 5px;
  70. background-color: #ecd2cf;
  71. }
  72. li:hover {
  73. background-color: #a01c0e;
  74. }
  75. .active {
  76. background-color: #a01c0e;
  77. }
  78. }
  79. .messageLeft {
  80. float: left;
  81. width: 456px;
  82. .leftTitle {
  83. display: flex;
  84. justify-content: space-between;
  85. align-items: center;
  86. // margin-bottom: 20px;
  87. .leftnav {
  88. font-family: Microsoft YaHei, Microsoft YaHei;
  89. font-weight: 400;
  90. font-size: 20px;
  91. color: #333333;
  92. line-height: 23px;
  93. position: relative;
  94. a {
  95. color: #333333;
  96. }
  97. em {
  98. display: inline-block;
  99. width: 8px;
  100. height: 8px;
  101. background-color: #a01c0e;
  102. position: absolute;
  103. top: 0px;
  104. right: -10px;
  105. border-radius: 4px;
  106. }
  107. }
  108. .rightnav {
  109. width: 337px;
  110. // display: flex;
  111. // justify-content: space-between;
  112. // align-items: center;
  113. li {
  114. float: left;
  115. margin-right: 10px;
  116. color: #999999;
  117. font-family: 14px;
  118. a {
  119. margin-right: 10px;
  120. color: #999999;
  121. font-size: 16px;
  122. }
  123. }
  124. li:hover {
  125. a {
  126. color: #a01c0e;
  127. }
  128. }
  129. }
  130. }
  131. .leftContent {
  132. width: 456px;
  133. margin-top: 30px;
  134. background-color: #fafafa;
  135. background-color: #fff;
  136. li:nth-child(1) {
  137. width: 445px;
  138. margin-bottom: 20px;
  139. white-space: nowrap;
  140. overflow: hidden;
  141. text-overflow: ellipsis;
  142. font-family: Microsoft YaHei, Microsoft YaHei;
  143. font-weight: bold;
  144. font-size: 18px;
  145. color: #333333;
  146. a {
  147. width: 456px;
  148. color: #333333;
  149. }
  150. }
  151. li:nth-child(1):hover a {
  152. color: #a01c0e;
  153. }
  154. .context {
  155. width: 445px;
  156. margin-bottom: 22px;
  157. white-space: nowrap;
  158. overflow: hidden;
  159. text-overflow: ellipsis;
  160. font-family: Microsoft YaHei, Microsoft YaHei;
  161. font-weight: 400;
  162. font-size: 18px;
  163. color: #333333;
  164. a {
  165. width: 456px;
  166. color: #333333;
  167. }
  168. }
  169. .context:nth-child(5n+1) {
  170. font-weight: bold;
  171. }
  172. .context:last-child {
  173. margin-bottom: 10px;
  174. }
  175. .context:hover a {
  176. color: #a01c0e;
  177. }
  178. }
  179. .leftContent1 {
  180. margin-top: 20px;
  181. }
  182. }
  183. .messageRight {
  184. float: right;
  185. width: 720px;
  186. .lunbo {
  187. width: 720px;
  188. height: 405px;
  189. }
  190. .mid {
  191. width: 720px;
  192. height: 250px;
  193. margin-top: 20px;
  194. .nav1,
  195. .nav2 {
  196. float: left;
  197. width: 355px;
  198. background-color: #f8f8f8;
  199. .navtitle {
  200. width: 355px;
  201. height: 60px;
  202. line-height: 60px;
  203. background-color: #f4f4f4;
  204. padding-left: 20px;
  205. box-sizing: border-box;
  206. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  207. font-weight: 400;
  208. font-size: 24px;
  209. color: #333333;
  210. img {
  211. width: 24px;
  212. height: 24px;
  213. vertical-align: -2px;
  214. margin-right: 8px;
  215. }
  216. a {
  217. color: #333333;
  218. }
  219. a:hover {
  220. color: #a01c0e;
  221. }
  222. }
  223. .navContext {
  224. width: 360px;
  225. height: 196px;
  226. padding: 20px 20px;
  227. box-sizing: border-box;
  228. font-family: Microsoft YaHei, Microsoft YaHei;
  229. font-weight: 400;
  230. font-size: 18px;
  231. color: #333333;
  232. .Contextlist {
  233. width: 330px;
  234. white-space: nowrap;
  235. overflow: hidden;
  236. text-overflow: ellipsis;
  237. margin-bottom: 20px;
  238. a {
  239. color: #333333;
  240. }
  241. }
  242. .Contextlist:last-child {
  243. margin-bottom: 0;
  244. }
  245. .Contextlist:hover a {
  246. color: #a01c0e;
  247. }
  248. }
  249. }
  250. .nav1 {
  251. margin-right: 10px;
  252. }
  253. }
  254. .foot {
  255. width: 720px;
  256. background-color: #f8f8f8;
  257. margin-top: 20px;
  258. padding: 20px 20px;
  259. box-sizing: border-box;
  260. .head_nav {
  261. width: 680px;
  262. height: 140px;
  263. padding: 30px 40px;
  264. box-sizing: border-box;
  265. background-color: #fff;
  266. border: 1px solid #E9E9E9;
  267. display: flex;
  268. justify-content: space-between;
  269. flex-wrap: wrap;
  270. align-items: center;
  271. .nav_list {
  272. float: left;
  273. font-family: Microsoft YaHei, Microsoft YaHei;
  274. font-weight: bold;
  275. font-size: 18px;
  276. color: #333333;
  277. height: 40px;
  278. line-height: 40px;
  279. margin-right: 45px;
  280. img {
  281. width: 24px;
  282. height: 24px;
  283. vertical-align: -6px;
  284. margin-right: 8px;
  285. }
  286. a {
  287. color: #333333;
  288. }
  289. }
  290. }
  291. .foot_nav {
  292. width: 680px;
  293. height: 68px;
  294. line-height: 68px;
  295. background-color: #fff;
  296. margin-top: 15px;
  297. text-align: center;
  298. font-family: Microsoft YaHei, Microsoft YaHei;
  299. font-weight: bold;
  300. font-size: 20px;
  301. color: #333333;
  302. border: 1px solid #E9E9E9;
  303. a {
  304. color: #333333;
  305. }
  306. }
  307. }
  308. }
  309. }
  310. }
  311. //第一部分
  312. .part1 {
  313. width: 100%;
  314. overflow: hidden;
  315. .inner {
  316. width: 1200px;
  317. margin: 0 auto;
  318. .part1_left {
  319. float: left;
  320. width: 720px;
  321. .part1_title {
  322. width: 720px;
  323. height: 50px;
  324. line-height: 50px;
  325. .nav_part1_left {
  326. float: left;
  327. width: 100px;
  328. font-family: Microsoft YaHei, Microsoft YaHei;
  329. font-weight: 400;
  330. font-size: 20px;
  331. color: #333333;
  332. position: relative;
  333. a {
  334. color: #333333;
  335. }
  336. em {
  337. display: inline-block;
  338. width: 8px;
  339. height: 8px;
  340. background-color: #a01c0e;
  341. border-radius: 4px;
  342. position: absolute;
  343. top: 9px;
  344. // right: 0px;
  345. }
  346. }
  347. .nav_part1_right {
  348. float: right;
  349. .nav_part1_right_title {
  350. float: left;
  351. margin-left: 10px;
  352. font-family: Microsoft YaHei, Microsoft YaHei;
  353. font-weight: 400;
  354. font-size: 16px;
  355. color: #999999;
  356. a {
  357. color: #999999;
  358. }
  359. span {
  360. margin-left: 10px;
  361. }
  362. }
  363. .nav_part1_right_title:hover {
  364. a {
  365. color: #a01c0e;
  366. }
  367. }
  368. }
  369. }
  370. .part1_content {
  371. width: 720px;
  372. margin-top: 10px;
  373. .context_left {
  374. float: left;
  375. width: 350px;
  376. .top {
  377. width: 350px;
  378. height: 285px;
  379. position: relative;
  380. .bottom_left_img {
  381. width: 165px;
  382. height: 96px;
  383. }
  384. a img {
  385. width: 350px;
  386. height: 230px;
  387. }
  388. a .title1 {
  389. margin-top: 5px;
  390. width: 350px;
  391. height: 48px;
  392. display: -webkit-box;
  393. -webkit-box-orient: vertical;
  394. -webkit-line-clamp: 2;
  395. overflow: hidden;
  396. text-overflow: ellipsis;
  397. word-break: break-all;
  398. font-family: Microsoft YaHei, Microsoft YaHei;
  399. font-weight: bold;
  400. font-size: 18px;
  401. color: #333333;
  402. }
  403. // a {
  404. // color: #333333;
  405. // }
  406. }
  407. .top:hover a .title1 {
  408. color: #a01c0e;
  409. }
  410. .bottom_context {
  411. width: 350px;
  412. margin-top: 20px;
  413. .bottom_left {
  414. float: left;
  415. width: 165px;
  416. .bottom_left_img {
  417. width: 165px;
  418. height: 96px;
  419. }
  420. a img {
  421. width: 165px;
  422. height: 96px;
  423. }
  424. a .title2 {
  425. margin-top: 5px;
  426. width: 165px;
  427. height: 48px;
  428. display: -webkit-box;
  429. -webkit-box-orient: vertical;
  430. -webkit-line-clamp: 2;
  431. overflow: hidden;
  432. text-overflow: ellipsis;
  433. word-break: break-all;
  434. font-family: Microsoft YaHei, Microsoft YaHei;
  435. font-weight: 400;
  436. font-size: 18px;
  437. color: #333333;
  438. }
  439. a {
  440. color: #333333;
  441. }
  442. }
  443. .bottom_left:hover a .title2 {
  444. color: #a01c0e;
  445. }
  446. .bottom_left:first-child {
  447. margin-right: 20px;
  448. }
  449. }
  450. }
  451. .context_right {
  452. float: right;
  453. width: 350px;
  454. .rightContent {
  455. width: 350px;
  456. li:nth-child(5n+1) {
  457. margin-bottom: 24px;
  458. width: 345px;
  459. white-space: nowrap;
  460. overflow: hidden;
  461. text-overflow: ellipsis;
  462. font-family: Microsoft YaHei, Microsoft YaHei;
  463. font-weight: bold;
  464. font-size: 18px;
  465. color: #333333;
  466. a {
  467. color: #333333;
  468. }
  469. }
  470. .li:nth-child(5n+1):hover a {
  471. color: #a01c0e;
  472. }
  473. .context1 {
  474. margin-bottom: 24px;
  475. width: 345px;
  476. white-space: nowrap;
  477. overflow: hidden;
  478. text-overflow: ellipsis;
  479. font-family: Microsoft YaHei, Microsoft YaHei;
  480. font-weight: 400;
  481. font-size: 18px;
  482. color: #333333;
  483. a {
  484. color: #333333;
  485. }
  486. }
  487. .context1:hover a {
  488. color: #a01c0e;
  489. }
  490. }
  491. // .rightContent:first-child {
  492. // margin-bottom: 25px;
  493. // }
  494. }
  495. }
  496. }
  497. .part1_right {
  498. float: right;
  499. width: 450px;
  500. // height: 1000px;
  501. .part1_right_title {
  502. width: 450px;
  503. height: 50px;
  504. line-height: 50px;
  505. .part1_right_title1_active {
  506. float: left;
  507. margin-right: 40px;
  508. font-family: Microsoft YaHei, Microsoft YaHei;
  509. font-weight: 400;
  510. font-size: 20px;
  511. color: #333333;
  512. position: relative;
  513. a.active {
  514. color: #333333;
  515. }
  516. .active_bg {
  517. display: inline-block;
  518. width: 8px;
  519. height: 8px;
  520. background-color: #a01c0e;
  521. border-radius: 4px;
  522. position: absolute;
  523. top: 7px;
  524. right: -5px;
  525. }
  526. }
  527. .part1_right_title1 {
  528. float: left;
  529. margin-right: 40px;
  530. font-family: Microsoft YaHei, Microsoft YaHei;
  531. font-weight: 400;
  532. font-size: 20px;
  533. color: #999999;
  534. position: relative;
  535. a {
  536. color: #999999;
  537. }
  538. }
  539. }
  540. .part1_right_content {
  541. width: 450px;
  542. margin-top: 10px;
  543. .part1_top_111 {
  544. width: 450px;
  545. height: 165px;
  546. // margin-bottom: 20px;
  547. position: relative;
  548. .part1_right_content_top {
  549. float: left;
  550. width: 220px;
  551. a img {
  552. width: 220px;
  553. height: 130px;
  554. }
  555. a .content_top_title2 {
  556. display: inline-block;
  557. width: 220px;
  558. padding: 0 10px;
  559. box-sizing: border-box;
  560. white-space: nowrap;
  561. overflow: hidden;
  562. text-overflow: ellipsis;
  563. font-family: Microsoft YaHei, Microsoft YaHei;
  564. font-weight: 400;
  565. font-size: 18px;
  566. color: #333333;
  567. margin-top: 5px;
  568. }
  569. }
  570. .part1_right_content_top:hover a .content_top_title2 {
  571. color: #a01c0e;
  572. }
  573. .part1_right_content_top:nth-child(2) {
  574. margin-left: 10px;
  575. }
  576. }
  577. .part1_right_content_bottom {
  578. width: 450px;
  579. overflow: hidden;
  580. .content_bottom_list {
  581. width: 450px;
  582. margin-top: 24px;
  583. a {
  584. color: #333333;
  585. }
  586. a .sec_title {
  587. font-family: Microsoft YaHei, Microsoft YaHei;
  588. font-weight: 400;
  589. font-size: 18px;
  590. color: #A01C0E;
  591. line-height: 21px;
  592. margin-right: 15px;
  593. }
  594. a .sec_content {
  595. display: inline-block;
  596. width: 355px;
  597. white-space: nowrap;
  598. overflow: hidden;
  599. text-overflow: ellipsis;
  600. font-family: Microsoft YaHei, Microsoft YaHei;
  601. font-weight: 400;
  602. font-size: 18px;
  603. color: #333333;
  604. line-height: 21px;
  605. padding-left: 15px;
  606. border-left: 1px solid #666;
  607. box-sizing: border-box;
  608. vertical-align: -1px;
  609. }
  610. }
  611. a .sec_content:hover {
  612. color: #a01c0e;
  613. }
  614. }
  615. }
  616. }
  617. }
  618. }
  619. //第二部分
  620. .part2 {
  621. width: 100%;
  622. height: 540px;
  623. overflow: hidden;
  624. .inner {
  625. width: 1200px;
  626. margin: 0 auto;
  627. .part2_left {
  628. float: left;
  629. width: 720px;
  630. // overflow: hidden;
  631. .part2_title {
  632. width: 720px;
  633. height: 50px;
  634. line-height: 50px;
  635. .nav_part2_left {
  636. float: left;
  637. width: 100px;
  638. font-family: Microsoft YaHei, Microsoft YaHei;
  639. font-weight: 400;
  640. font-size: 20px;
  641. color: #333333;
  642. position: relative;
  643. a {
  644. color: #333333;
  645. }
  646. em {
  647. display: inline-block;
  648. width: 8px;
  649. height: 8px;
  650. background-color: #a01c0e;
  651. border-radius: 4px;
  652. position: absolute;
  653. top: 9px;
  654. right: 0px;
  655. }
  656. }
  657. .nav_part2_right {
  658. float: right;
  659. .nav_part2_right_title {
  660. float: left;
  661. margin-left: 10px;
  662. font-family: Microsoft YaHei, Microsoft YaHei;
  663. font-weight: 400;
  664. font-size: 16px;
  665. color: #999999;
  666. a {
  667. color: #999999;
  668. }
  669. span {
  670. margin-left: 10px;
  671. }
  672. }
  673. .nav_part2_right_title:hover {
  674. a {
  675. color: #a01c0e;
  676. }
  677. }
  678. }
  679. }
  680. .part2_content {
  681. width: 720px;
  682. margin-top: 20px;
  683. .part2_content_left {
  684. float: left;
  685. width: 350px;
  686. .content_a {
  687. width: 350px;
  688. li:nth-child(5n+1) {
  689. margin-bottom: 24px;
  690. width: 345px;
  691. white-space: nowrap;
  692. overflow: hidden;
  693. text-overflow: ellipsis;
  694. font-family: Microsoft YaHei, Microsoft YaHei;
  695. font-weight: bold;
  696. font-size: 18px;
  697. color: #333333;
  698. a {
  699. color: #333333;
  700. }
  701. }
  702. li:nth-child(5n+1):hover a {
  703. color: #a01c0e;
  704. }
  705. .context111 {
  706. margin-bottom: 24px;
  707. width: 345px;
  708. white-space: nowrap;
  709. overflow: hidden;
  710. text-overflow: ellipsis;
  711. font-family: Microsoft YaHei, Microsoft YaHei;
  712. font-weight: 400;
  713. font-size: 18px;
  714. color: #333333;
  715. a {
  716. color: #333333;
  717. }
  718. }
  719. .context111:hover a {
  720. color: #a01c0e;
  721. }
  722. }
  723. }
  724. .part2_content_right {
  725. float: right;
  726. width: 350px;
  727. height: 440px;
  728. .right_top {
  729. width: 350px;
  730. height: 285px;
  731. position: relative;
  732. a img {
  733. width: 350px;
  734. height: 230px;
  735. }
  736. a .title11 {
  737. margin-top: 5px;
  738. width: 350px;
  739. height: 48px;
  740. display: -webkit-box;
  741. -webkit-box-orient: vertical;
  742. -webkit-line-clamp: 2;
  743. overflow: hidden;
  744. text-overflow: ellipsis;
  745. word-break: break-all;
  746. font-family: Microsoft YaHei, Microsoft YaHei;
  747. font-weight: bold;
  748. font-size: 18px;
  749. color: #333333;
  750. }
  751. }
  752. .right_top:hover a .title11 {
  753. color: #a01c0e;
  754. }
  755. .right_bottom {
  756. width: 350px;
  757. margin-top: 20px;
  758. .bottom_left {
  759. float: left;
  760. width: 165px;
  761. a img {
  762. width: 165px;
  763. height: 96px;
  764. }
  765. a .title22 {
  766. margin-top: 5px;
  767. width: 165px;
  768. // height: 48px;
  769. display: -webkit-box;
  770. -webkit-box-orient: vertical;
  771. -webkit-line-clamp: 2;
  772. overflow: hidden;
  773. text-overflow: ellipsis;
  774. word-break: break-all;
  775. font-family: Microsoft YaHei, Microsoft YaHei;
  776. font-weight: 400;
  777. font-size: 18px;
  778. color: #333333;
  779. }
  780. a {
  781. color: #333333;
  782. }
  783. }
  784. .bottom_left:hover a .title22 {
  785. color: #a01c0e;
  786. }
  787. .bottom_left:first-child {
  788. margin-right: 20px;
  789. }
  790. }
  791. }
  792. }
  793. }
  794. .part2_right {
  795. float: right;
  796. width: 450px;
  797. // height: 1000px;
  798. .part2_right_title {
  799. width: 450px;
  800. height: 50px;
  801. line-height: 50px;
  802. .part2_right_title1_active {
  803. float: left;
  804. margin-right: 40px;
  805. font-family: Microsoft YaHei, Microsoft YaHei;
  806. font-weight: 400;
  807. font-size: 20px;
  808. color: #333333;
  809. position: relative;
  810. a.active {
  811. color: #333333;
  812. }
  813. .active_bg11 {
  814. display: inline-block;
  815. width: 8px;
  816. height: 8px;
  817. background-color: #a01c0e;
  818. border-radius: 4px;
  819. position: absolute;
  820. top: 7px;
  821. right: -5px;
  822. }
  823. }
  824. .part2_right_title1 {
  825. float: left;
  826. margin-right: 40px;
  827. font-family: Microsoft YaHei, Microsoft YaHei;
  828. font-weight: 400;
  829. font-size: 20px;
  830. color: #999999;
  831. position: relative;
  832. a {
  833. color: #999999;
  834. }
  835. }
  836. }
  837. .part2_right_content {
  838. width: 450px;
  839. margin-top: 20px;
  840. .part2_top_1111 {
  841. width: 450px;
  842. height: 165px;
  843. position: relative;
  844. .part2_right_content_top {
  845. float: left;
  846. width: 220px;
  847. a img {
  848. width: 220px;
  849. height: 130px;
  850. }
  851. a .content_top_title22 {
  852. display: inline-block;
  853. width: 220px;
  854. padding: 0 10px;
  855. box-sizing: border-box;
  856. white-space: nowrap;
  857. overflow: hidden;
  858. text-overflow: ellipsis;
  859. font-family: Microsoft YaHei, Microsoft YaHei;
  860. font-weight: 400;
  861. font-size: 18px;
  862. color: #333333;
  863. margin-top: 5px;
  864. }
  865. }
  866. .part2_right_content_top:hover a .content_top_title22 {
  867. color: #a01c0e;
  868. }
  869. .part2_right_content_top:nth-child(2) {
  870. margin-left: 10px;
  871. }
  872. }
  873. .part2_right_content_bottom {
  874. width: 450px;
  875. // height: 300px;
  876. // margin-top: 20px;
  877. overflow: hidden;
  878. .content_bottom_list {
  879. width: 450px;
  880. margin-top: 24px;
  881. a {
  882. color: #333333;
  883. }
  884. a .sec_title_part2 {
  885. font-family: Microsoft YaHei, Microsoft YaHei;
  886. font-weight: 400;
  887. font-size: 18px;
  888. color: #A01C0E;
  889. line-height: 21px;
  890. margin-right: 15px;
  891. }
  892. a .sec_content_part2 {
  893. display: inline-block;
  894. width: 355px;
  895. white-space: nowrap;
  896. overflow: hidden;
  897. text-overflow: ellipsis;
  898. font-family: Microsoft YaHei, Microsoft YaHei;
  899. font-weight: 400;
  900. font-size: 18px;
  901. color: #333333;
  902. line-height: 21px;
  903. padding-left: 15px;
  904. border-left: 1px solid #666;
  905. box-sizing: border-box;
  906. vertical-align: -1px;
  907. }
  908. }
  909. a .sec_content_part2:hover {
  910. color: #a01c0e;
  911. }
  912. }
  913. }
  914. }
  915. }
  916. }
  917. //第三部分
  918. .part3 {
  919. width: 100%;
  920. margin-top: 30px;
  921. margin-bottom: 20px;
  922. .inner {
  923. width: 1200px;
  924. overflow: hidden;
  925. margin: 0 auto;
  926. background-color: #fff;
  927. .part3_left {
  928. float: left;
  929. width: 720px;
  930. overflow: hidden;
  931. background-color: #fff;
  932. .part3_left_1 {
  933. width: 350px;
  934. overflow: hidden;
  935. float: left;
  936. background-color: #fff;
  937. .part3_title1 {
  938. width: 100px;
  939. height: 50px;
  940. line-height: 50px;
  941. font-family: Microsoft YaHei, Microsoft YaHei;
  942. font-weight: 400;
  943. font-size: 20px;
  944. color: #333333;
  945. position: relative;
  946. a {
  947. color: #333333;
  948. }
  949. em {
  950. display: inline-block;
  951. width: 8px;
  952. height: 8px;
  953. background-color: #a01c0e;
  954. border-radius: 4px;
  955. position: absolute;
  956. top: 9px;
  957. right: 0px;
  958. }
  959. }
  960. .part3_photo_text {
  961. width: 350px;
  962. height: 96px;
  963. margin-top: 20px;
  964. img {
  965. width: 165px;
  966. height: 96px;
  967. float: left;
  968. }
  969. .part3_text {
  970. width: 175px;
  971. height: 75px;
  972. display: -webkit-box;
  973. -webkit-box-orient: vertical;
  974. -webkit-line-clamp: 2;
  975. overflow: hidden;
  976. text-overflow: ellipsis;
  977. word-break: break-all;
  978. float: right;
  979. font-family: Microsoft YaHei, Microsoft YaHei;
  980. font-weight: 400;
  981. font-size: 18px;
  982. color: #333333;
  983. line-height: 25px;
  984. padding: 24px 10px;
  985. box-sizing: border-box;
  986. }
  987. }
  988. .part3_photo_text:hover {
  989. color: #a01c0e;
  990. a span {
  991. color: #a01c0e;
  992. }
  993. }
  994. .part3_content {
  995. width: 350px;
  996. .part3_contentList {
  997. width: 350px;
  998. white-space: nowrap;
  999. overflow: hidden;
  1000. text-overflow: ellipsis;
  1001. font-family: Microsoft YaHei, Microsoft YaHei;
  1002. font-weight: 400;
  1003. font-size: 18px;
  1004. color: #333333;
  1005. line-height: 21px;
  1006. margin-top: 22px;
  1007. a {
  1008. color: #333333;
  1009. }
  1010. }
  1011. .part3_contentList:hover {
  1012. color: #a01c0e;
  1013. a {
  1014. color: #a01c0e;
  1015. }
  1016. }
  1017. .part3_contentList:nth-child(1) {
  1018. font-weight: bold;
  1019. }
  1020. }
  1021. }
  1022. .part3_left_1:first-child {
  1023. margin-right: 10px;
  1024. }
  1025. }
  1026. .part3_right {
  1027. float: right;
  1028. width: 450px;
  1029. // height: 420px;
  1030. background-color: #f8f8f8;
  1031. .part3_right_title {
  1032. width: 450px;
  1033. height: 60px;
  1034. line-height: 60px;
  1035. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1036. font-weight: 400;
  1037. font-size: 22px;
  1038. color: #333333;
  1039. background-color: #f4f4f4;
  1040. a {
  1041. color: #333333;
  1042. }
  1043. a:hover {
  1044. color: #a01c0e;
  1045. }
  1046. img {
  1047. width: 24px;
  1048. height: 24px;
  1049. vertical-align: -3px;
  1050. margin-right: 12px;
  1051. margin-left: 20px;
  1052. }
  1053. }
  1054. .part3_right_content {
  1055. width: 450px;
  1056. height: 320px;
  1057. padding: 16px 20px;
  1058. box-sizing: border-box;
  1059. display: flex;
  1060. flex-wrap: wrap;
  1061. justify-content: space-between;
  1062. align-content: space-between;
  1063. .content_list {
  1064. float: left;
  1065. width: 200px;
  1066. height: 133px;
  1067. background-color: #fff;
  1068. border: 1px solid #E9E9E9;
  1069. text-align: center;
  1070. padding: 20px auto;
  1071. .part3_right_content_list {
  1072. display: block;
  1073. font-family: Microsoft YaHei, Microsoft YaHei;
  1074. font-weight: bold;
  1075. font-size: 20px;
  1076. color: #333333;
  1077. }
  1078. .photo {
  1079. width: 90px;
  1080. height: 68px;
  1081. text-align: center;
  1082. margin: 10px auto 10px;
  1083. // img{
  1084. // width: 47px;
  1085. // height: 47px;
  1086. // }
  1087. }
  1088. }
  1089. .content_list:hover {
  1090. color: #a01c0e;
  1091. a span {
  1092. color: #a01c0e;
  1093. }
  1094. }
  1095. }
  1096. }
  1097. }
  1098. }
  1099. //第四部分
  1100. .part4 {
  1101. width: 100%;
  1102. height: 405px;
  1103. // margin-bottom: 40px;
  1104. .inner {
  1105. width: 1200px;
  1106. height: 425px;
  1107. background-color: #fff;
  1108. .part4_title {
  1109. width: 1200px;
  1110. height: 50px;
  1111. line-height: 50px;
  1112. .part4_title_left {
  1113. float: left;
  1114. width: 100px;
  1115. position: relative;
  1116. font-family: Microsoft YaHei, Microsoft YaHei;
  1117. font-weight: 400;
  1118. font-size: 20px;
  1119. color: #333333;
  1120. a {
  1121. color: #333333;
  1122. }
  1123. em {
  1124. display: inline-block;
  1125. width: 8px;
  1126. height: 8px;
  1127. background-color: #a01c0e;
  1128. border-radius: 4px;
  1129. position: absolute;
  1130. top: 9px;
  1131. right: 0px;
  1132. }
  1133. }
  1134. .part4_title_right {
  1135. float: right;
  1136. .right_titleList {
  1137. float: left;
  1138. font-family: Microsoft YaHei, Microsoft YaHei;
  1139. font-weight: 400;
  1140. font-size: 16px;
  1141. color: #999999;
  1142. margin-right: 10px;
  1143. a {
  1144. color: #999999;
  1145. }
  1146. span {
  1147. margin-left: 10px;
  1148. }
  1149. }
  1150. .right_titleList:hover {
  1151. color: #a01c0e;
  1152. a {
  1153. color: #a01c0e;
  1154. }
  1155. span {
  1156. color: #999999;
  1157. }
  1158. }
  1159. .more {
  1160. float: right;
  1161. height: 50px;
  1162. line-height: 50px;
  1163. font-family: Microsoft YaHei, Microsoft YaHei;
  1164. font-weight: 400;
  1165. font-size: 14px;
  1166. color: #999999;
  1167. a {
  1168. color: #999999;
  1169. }
  1170. }
  1171. .more:hover {
  1172. color: #a01c0e;
  1173. a {
  1174. color: #a01c0e;
  1175. }
  1176. }
  1177. }
  1178. }
  1179. .part4_left {
  1180. float: left;
  1181. width: 720px;
  1182. // height: 400px;
  1183. .part4_left_top {
  1184. width: 700px;
  1185. text-align: center;
  1186. padding: 20px 35px 15px;
  1187. box-sizing: border-box;
  1188. border-bottom: 1px solid #d9d9d9;
  1189. margin: 0 20px;
  1190. .left_top_newsList:first-child {
  1191. font-family: Microsoft YaHei, Microsoft YaHei;
  1192. font-weight: bold;
  1193. font-size: 18px;
  1194. color: #333333;
  1195. line-height: 21px;
  1196. a {
  1197. color: #333333;
  1198. }
  1199. }
  1200. .left_top_newsList {
  1201. width: 600px;
  1202. white-space: nowrap;
  1203. overflow: hidden;
  1204. text-overflow: ellipsis;
  1205. font-family: Microsoft YaHei, Microsoft YaHei;
  1206. font-weight: 400;
  1207. font-size: 18px;
  1208. color: #999999;
  1209. margin-bottom: 15px;
  1210. a {
  1211. color: #999999;
  1212. }
  1213. }
  1214. .left_top_newsList:last-child {
  1215. margin-bottom: 0;
  1216. }
  1217. .left_top_newsList:hover {
  1218. color: #a01c0e;
  1219. a {
  1220. color: #a01c0e;
  1221. }
  1222. }
  1223. }
  1224. .part4_left_bottom {
  1225. width: 720px;
  1226. // height: 178px;
  1227. margin-top: 20px;
  1228. .left_btm_newsList {
  1229. float: left;
  1230. width: 350px;
  1231. white-space: nowrap;
  1232. overflow: hidden;
  1233. text-overflow: ellipsis;
  1234. font-family: Microsoft YaHei, Microsoft YaHei;
  1235. font-weight: 400;
  1236. font-size: 18px;
  1237. color: #333333;
  1238. line-height: 21px;
  1239. margin-bottom: 20px;
  1240. a {
  1241. color: #333333;
  1242. }
  1243. }
  1244. .left_btm_newsList:nth-child(2n) {
  1245. margin-left: 20px;
  1246. }
  1247. .left_btm_newsList:hover {
  1248. color: #a01c0e;
  1249. a {
  1250. color: #a01c0e;
  1251. }
  1252. }
  1253. }
  1254. }
  1255. .part4_right {
  1256. float: right;
  1257. width: 450px;
  1258. // height: 345px;
  1259. margin-top: 20px;
  1260. a img {
  1261. width: 450px;
  1262. height: 267px;
  1263. }
  1264. .part4_right_title {
  1265. display: inline-block;
  1266. width: 450px;
  1267. height: 50px;
  1268. display: -webkit-box;
  1269. -webkit-box-orient: vertical;
  1270. -webkit-line-clamp: 2;
  1271. overflow: hidden;
  1272. text-overflow: ellipsis;
  1273. word-break: break-all;
  1274. font-family: Microsoft YaHei, Microsoft YaHei;
  1275. font-weight: bold;
  1276. font-size: 18px;
  1277. color: #333333;
  1278. line-height: 25px;
  1279. margin-top: 5px;
  1280. }
  1281. }
  1282. .part4_right:hover {
  1283. color: #a01c0e;
  1284. .part4_right_title {
  1285. color: #a01c0e;
  1286. }
  1287. }
  1288. }
  1289. }
  1290. //第五部分
  1291. .part5 {
  1292. width: 100%;
  1293. // height: 1200px;
  1294. margin-top: 20px;
  1295. margin-bottom: 10px;
  1296. .inner {
  1297. width: 1200px;
  1298. height: 1080px;
  1299. background-color: #fff;
  1300. .part5_left {
  1301. float: left;
  1302. .part5_left_top {
  1303. width: 720px;
  1304. overflow: hidden;
  1305. .part5_leftTitle {
  1306. width: 720px;
  1307. height: 50px;
  1308. line-height: 50px;
  1309. .part5_left_title_active {
  1310. float: left;
  1311. margin-right: 20px;
  1312. width: 100px;
  1313. height: 50px;
  1314. line-height: 50px;
  1315. position: relative;
  1316. font-family: Microsoft YaHei, Microsoft YaHei;
  1317. font-weight: 400;
  1318. font-size: 20px;
  1319. color: #333333;
  1320. a.active {
  1321. color: #333333;
  1322. }
  1323. em {
  1324. display: inline-block;
  1325. width: 8px;
  1326. height: 8px;
  1327. background-color: #a01c0e;
  1328. border-radius: 4px;
  1329. position: absolute;
  1330. top: 9px;
  1331. right: 0px;
  1332. }
  1333. }
  1334. .part5_left_title {
  1335. float: left;
  1336. margin-right: 20px;
  1337. width: 100px;
  1338. height: 50px;
  1339. line-height: 50px;
  1340. position: relative;
  1341. font-family: Microsoft YaHei, Microsoft YaHei;
  1342. font-weight: 400;
  1343. font-size: 20px;
  1344. color: #999999;
  1345. a {
  1346. color: #999999;
  1347. }
  1348. }
  1349. }
  1350. .part5_left_content {
  1351. width: 720px;
  1352. margin-top: 20px;
  1353. .part5_left_content_top {
  1354. height: 484px;
  1355. .content_top_left {
  1356. float: left;
  1357. width: 350px;
  1358. height: 484px;
  1359. position: relative;
  1360. .part5_photo_text {
  1361. width: 350px;
  1362. height: 270px;
  1363. img {
  1364. width: 350px;
  1365. height: 230px;
  1366. }
  1367. .littleTips {
  1368. display: inline-block;
  1369. width: 50px;
  1370. height: 26px;
  1371. line-height: 26px;
  1372. text-align: center;
  1373. background-color: #a01c0e;
  1374. font-family: Microsoft YaHei, Microsoft YaHei;
  1375. font-weight: 400;
  1376. font-size: 16px;
  1377. color: #fff;
  1378. position: absolute;
  1379. top: 0;
  1380. right: 10px;
  1381. }
  1382. .part5_text {
  1383. display: inline-block;
  1384. width: 350px;
  1385. height: 26px;
  1386. white-space: nowrap;
  1387. overflow: hidden;
  1388. text-overflow: ellipsis;
  1389. font-family: Microsoft YaHei, Microsoft YaHei;
  1390. font-weight: bold;
  1391. font-size: 18px;
  1392. color: #333333;
  1393. margin-top: 15px;
  1394. }
  1395. }
  1396. .part5_photo_text:hover {
  1397. .part5_text {
  1398. color: #a01c0e;
  1399. }
  1400. }
  1401. .part5_content {
  1402. width: 350px;
  1403. height: 210px;
  1404. position: absolute;
  1405. bottom: 0;
  1406. left: 0;
  1407. .part5_content_list:first-child {
  1408. width: 350px;
  1409. height: 25px;
  1410. white-space: nowrap;
  1411. overflow: hidden;
  1412. text-overflow: ellipsis;
  1413. font-family: Microsoft YaHei, Microsoft YaHei;
  1414. font-weight: bold;
  1415. font-size: 18px;
  1416. color: #333333;
  1417. line-height: 22px;
  1418. margin-top: 15px;
  1419. a {
  1420. color: #333333;
  1421. }
  1422. }
  1423. .part5_content_list:last-child {
  1424. margin-bottom: 0;
  1425. }
  1426. .part5_content_list {
  1427. width: 350px;
  1428. height: 25px;
  1429. white-space: nowrap;
  1430. overflow: hidden;
  1431. text-overflow: ellipsis;
  1432. font-family: Microsoft YaHei, Microsoft YaHei;
  1433. font-weight: 400;
  1434. font-size: 18px;
  1435. color: #333333;
  1436. line-height: 22px;
  1437. margin-bottom: 17px;
  1438. a {
  1439. color: #333333;
  1440. }
  1441. }
  1442. .part5_content_list:hover {
  1443. color: #a01c0e;
  1444. a {
  1445. color: #a01c0e;
  1446. }
  1447. }
  1448. }
  1449. }
  1450. .content_top_right {
  1451. float: left;
  1452. width: 350px;
  1453. height: 484px;
  1454. border: 1px solid #D9D9D9;
  1455. margin-left: 20px;
  1456. padding: 30px 25px;
  1457. box-sizing: border-box;
  1458. .content_right_list {
  1459. width: 350px;
  1460. height: 58px;
  1461. line-height: 58px;
  1462. margin-bottom: 35px;
  1463. .part5_time {
  1464. float: left;
  1465. width: 77px;
  1466. height: 58px;
  1467. color: #a01c0e;
  1468. .month {
  1469. font-family: Microsoft YaHei, Microsoft YaHei;
  1470. font-weight: 400;
  1471. font-size: 26px;
  1472. color: #A01C0E;
  1473. line-height: 30px;
  1474. }
  1475. .xiegang {
  1476. font-size: 22px;
  1477. font-weight: 400;
  1478. }
  1479. .day {
  1480. font-family: Microsoft YaHei, Microsoft YaHei;
  1481. font-weight: 400;
  1482. font-size: 16px;
  1483. color: #A01C0E;
  1484. line-height: 19px;
  1485. }
  1486. }
  1487. .time_left_content {
  1488. float: left;
  1489. width: 231px;
  1490. height: 58px;
  1491. display: -webkit-box;
  1492. -webkit-box-orient: vertical;
  1493. -webkit-line-clamp: 2;
  1494. overflow: hidden;
  1495. text-overflow: ellipsis;
  1496. word-break: break-all;
  1497. line-height: 22px;
  1498. padding-top: 12px;
  1499. box-sizing: border-box;
  1500. font-family: Microsoft YaHei, Microsoft YaHei;
  1501. font-weight: 400;
  1502. font-size: 18px;
  1503. color: #333333;
  1504. border-left: 1px solid #D9D9D9;
  1505. padding-left: 22px;
  1506. a {
  1507. color: #333333;
  1508. }
  1509. }
  1510. .time_left_content:hover {
  1511. color: #a01c0e;
  1512. }
  1513. }
  1514. }
  1515. }
  1516. }
  1517. }
  1518. .part5_left_bottom {
  1519. width: 720px;
  1520. margin-top: 15px;
  1521. .part5_leftTitle1 {
  1522. width: 720px;
  1523. height: 50px;
  1524. line-height: 50px;
  1525. .part5_left_title_active {
  1526. float: left;
  1527. margin-right: 20px;
  1528. width: 100px;
  1529. height: 50px;
  1530. line-height: 50px;
  1531. position: relative;
  1532. font-family: Microsoft YaHei, Microsoft YaHei;
  1533. font-weight: 400;
  1534. font-size: 20px;
  1535. color: #333333;
  1536. a.active {
  1537. color: #333333;
  1538. }
  1539. em {
  1540. display: inline-block;
  1541. width: 8px;
  1542. height: 8px;
  1543. background-color: #a01c0e;
  1544. border-radius: 4px;
  1545. position: absolute;
  1546. top: 9px;
  1547. right: 0px;
  1548. }
  1549. }
  1550. .part5_left_title {
  1551. float: left;
  1552. margin-right: 20px;
  1553. width: 100px;
  1554. height: 50px;
  1555. line-height: 50px;
  1556. position: relative;
  1557. font-family: Microsoft YaHei, Microsoft YaHei;
  1558. font-weight: 400;
  1559. font-size: 20px;
  1560. color: #999999;
  1561. a {
  1562. color: #999999;
  1563. }
  1564. }
  1565. }
  1566. .part5_left_content1 {
  1567. width: 720px;
  1568. .content_bottom_left {
  1569. float: left;
  1570. width: 350px;
  1571. .content_top {
  1572. width: 350px;
  1573. height: 285px;
  1574. position: relative;
  1575. img {
  1576. width: 350px;
  1577. height: 230px;
  1578. }
  1579. .part5_text {
  1580. display: inline-block;
  1581. width: 350px;
  1582. height: 47px;
  1583. line-height: 22px;
  1584. display: -webkit-box;
  1585. -webkit-box-orient: vertical;
  1586. -webkit-line-clamp: 2;
  1587. overflow: hidden;
  1588. text-overflow: ellipsis;
  1589. word-break: break-all;
  1590. margin-top: 5px;
  1591. font-family: Microsoft YaHei, Microsoft YaHei;
  1592. font-weight: bold;
  1593. font-size: 18px;
  1594. color: #333333
  1595. }
  1596. }
  1597. .content_top:hover {
  1598. .part5_text {
  1599. color: #a01c0e;
  1600. }
  1601. }
  1602. .content_bottom {
  1603. width: 350px;
  1604. margin-top: 10px;
  1605. .content_bottom_1 {
  1606. float: left;
  1607. width: 165px;
  1608. img {
  1609. width: 165px;
  1610. height: 96px;
  1611. }
  1612. .part5_text {
  1613. display: inline-block;
  1614. width: 165px;
  1615. height: 44px;
  1616. line-height: 22px;
  1617. display: -webkit-box;
  1618. -webkit-box-orient: vertical;
  1619. -webkit-line-clamp: 2;
  1620. overflow: hidden;
  1621. text-overflow: ellipsis;
  1622. word-break: break-all;
  1623. font-family: Microsoft YaHei, Microsoft YaHei;
  1624. font-weight: 400;
  1625. font-size: 18px;
  1626. color: #333333;
  1627. // margin-top: 5px;
  1628. }
  1629. }
  1630. .content_bottom_1:hover {
  1631. .part5_text {
  1632. color: #a01c0e;
  1633. }
  1634. }
  1635. .content_bottom_1:first-child {
  1636. margin-right: 20px;
  1637. }
  1638. }
  1639. }
  1640. .content_bottom_right {
  1641. float: left;
  1642. margin-left: 20px;
  1643. width: 350px;
  1644. .bottom_content_1 {
  1645. width: 350px;
  1646. .bottom_content_list:nth-child(5n+1) {
  1647. font-weight: bold;
  1648. }
  1649. .bottom_content_list {
  1650. width: 350px;
  1651. height: 25px;
  1652. white-space: nowrap;
  1653. overflow: hidden;
  1654. text-overflow: ellipsis;
  1655. font-family: Microsoft YaHei, Microsoft YaHei;
  1656. font-weight: 400;
  1657. font-size: 18px;
  1658. color: #333333;
  1659. line-height: 21px;
  1660. margin-bottom: 21px;
  1661. a {
  1662. color: #333333;
  1663. }
  1664. }
  1665. .bottom_content_list:hover {
  1666. color: #a01c0e;
  1667. a {
  1668. color: #a01c0e;
  1669. }
  1670. }
  1671. }
  1672. .bottom_content_1:first-child {
  1673. margin-bottom: 20px;
  1674. }
  1675. .bottom_content_1:last-child {
  1676. .bottom_content_list:last-child {
  1677. margin-bottom: 0;
  1678. }
  1679. }
  1680. }
  1681. }
  1682. }
  1683. }
  1684. .part5_right {
  1685. float: right;
  1686. width: 451px;
  1687. height: 1070px;
  1688. position: relative;
  1689. .part5_rightTitle {
  1690. width: 451px;
  1691. height: 50px;
  1692. line-height: 50px;
  1693. .part5_right_title_active {
  1694. float: left;
  1695. margin-right: 20px;
  1696. width: 100px;
  1697. height: 50px;
  1698. line-height: 50px;
  1699. position: relative;
  1700. font-family: Microsoft YaHei, Microsoft YaHei;
  1701. font-weight: 400;
  1702. font-size: 20px;
  1703. color: #333333;
  1704. a.active {
  1705. color: #333333;
  1706. }
  1707. em {
  1708. display: inline-block;
  1709. width: 8px;
  1710. height: 8px;
  1711. background-color: #a01c0e;
  1712. border-radius: 4px;
  1713. position: absolute;
  1714. top: 9px;
  1715. right: 0px;
  1716. }
  1717. }
  1718. .part5_right_title {
  1719. float: left;
  1720. margin-right: 20px;
  1721. width: 100px;
  1722. height: 50px;
  1723. line-height: 50px;
  1724. position: relative;
  1725. font-family: Microsoft YaHei, Microsoft YaHei;
  1726. font-weight: 400;
  1727. font-size: 20px;
  1728. color: #999999;
  1729. a {
  1730. color: #999999;
  1731. }
  1732. }
  1733. .rightMore {
  1734. float: right;
  1735. font-family: Microsoft YaHei, Microsoft YaHei;
  1736. font-weight: 400;
  1737. font-size: 14px;
  1738. color: #999999;
  1739. a {
  1740. color: #999999;
  1741. }
  1742. }
  1743. }
  1744. .part5_right_content_top {
  1745. width: 451px;
  1746. height: 325px;
  1747. margin-top: 20px;
  1748. .part5_right_contentlist_top {
  1749. font-family: Microsoft YaHei, Microsoft YaHei;
  1750. font-weight: 400;
  1751. font-size: 18px;
  1752. color: #333333;
  1753. width: 425px;
  1754. height: 25px;
  1755. white-space: nowrap;
  1756. overflow: hidden;
  1757. text-overflow: ellipsis;
  1758. margin-bottom: 25px;
  1759. a {
  1760. color: #333333;
  1761. }
  1762. .numStyle {
  1763. display: inline-block;
  1764. width: 22px;
  1765. height: 22px;
  1766. background-color: #f6f6f6;
  1767. text-align: center;
  1768. margin-right: 20px;
  1769. font-family: Protest Strike, Protest Strike;
  1770. font-weight: 400;
  1771. font-size: 16px;
  1772. color: #CCCCCC;
  1773. border-radius: 4px;
  1774. }
  1775. }
  1776. .part5_right_contentlist_top:hover {
  1777. color: #a01c0e;
  1778. a {
  1779. color: #a01c0e;
  1780. }
  1781. }
  1782. .part5_right_contentlist_top:nth-child(1) {
  1783. .numStyle {
  1784. background-color: #a01c0e;
  1785. color: #fff;
  1786. }
  1787. }
  1788. .part5_right_contentlist_top:nth-child(2) {
  1789. .numStyle {
  1790. background-color: #FFC62E;
  1791. color: #fff;
  1792. }
  1793. }
  1794. .part5_right_contentlist_top:nth-child(3) {
  1795. .numStyle {
  1796. background-color: #e98008;
  1797. color: #fff;
  1798. }
  1799. }
  1800. .part5_right_contentlist_top:last-child {
  1801. margin-bottom: 10px;
  1802. }
  1803. }
  1804. .part5_photo_text_right {
  1805. width: 451px;
  1806. height: 120px;
  1807. margin-top: 20px;
  1808. margin-bottom: 20px;
  1809. background-color: #f6f3f0;
  1810. .part5_text11 {
  1811. float: left;
  1812. width: 271px;
  1813. height: 96px;
  1814. display: -webkit-box;
  1815. -webkit-box-orient: vertical;
  1816. -webkit-line-clamp: 3;
  1817. overflow: hidden;
  1818. text-overflow: ellipsis;
  1819. word-break: break-all;
  1820. font-family: Microsoft YaHei, Microsoft YaHei;
  1821. font-weight: 400;
  1822. font-size: 18px;
  1823. color: #333333;
  1824. padding: 25px 20px;
  1825. box-sizing: border-box;
  1826. }
  1827. img {
  1828. float: left;
  1829. width: 180px;
  1830. height: 120px;
  1831. }
  1832. }
  1833. .part5_photo_text_right:hover {
  1834. .part5_text11 {
  1835. color: #a01c0e;
  1836. }
  1837. }
  1838. .part5_right_content_11 {
  1839. width: 451px;
  1840. height: 70px;
  1841. .part5_right_contentlist_11 {
  1842. width: 451px;
  1843. height: 25px;
  1844. white-space: nowrap;
  1845. overflow: hidden;
  1846. text-overflow: ellipsis;
  1847. font-family: Microsoft YaHei, Microsoft YaHei;
  1848. font-weight: 400;
  1849. font-size: 18px;
  1850. color: #333333;
  1851. line-height: 21px;
  1852. .erjibiaoti {
  1853. display: inline-block;
  1854. width: 87px;
  1855. height: 24px;
  1856. font-family: Microsoft YaHei, Microsoft YaHei;
  1857. font-weight: 400;
  1858. font-size: 18px;
  1859. color: #A01C0E;
  1860. border-right: #D3D5D8 1px solid;
  1861. margin-right: 10px;
  1862. }
  1863. a {
  1864. color: #333333;
  1865. }
  1866. }
  1867. a:hover {
  1868. color: #a01c0e;
  1869. }
  1870. .part5_right_contentlist_11:first-child {
  1871. margin-bottom: 12px;
  1872. }
  1873. }
  1874. .adBox1 {
  1875. position: absolute;
  1876. bottom: 0;
  1877. left: 0;
  1878. width: 450px;
  1879. height: 290px;
  1880. }
  1881. }
  1882. }
  1883. }
  1884. //第六部分
  1885. .part6 {
  1886. width: 100%;
  1887. overflow: hidden;
  1888. background-color: #fff;
  1889. margin-bottom: 10px;
  1890. .inner {
  1891. width: 1200px;
  1892. .part6_left {
  1893. float: left;
  1894. width: 720px;
  1895. .part6_left_content1 {
  1896. float: left;
  1897. width: 350px;
  1898. background-color: #f8f8f8;
  1899. .part6_left_content_title {
  1900. width: 350px;
  1901. height: 59px;
  1902. background-color: #f4f4f4;
  1903. line-height: 59px;
  1904. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1905. font-weight: 400;
  1906. font-size: 24px;
  1907. color: #333333;
  1908. img {
  1909. margin-left: 20px;
  1910. margin-right: 10px;
  1911. vertical-align: -2px;
  1912. }
  1913. a {
  1914. color: #333333;
  1915. }
  1916. }
  1917. .selectMore {
  1918. float: right;
  1919. font-family: Microsoft YaHei, Microsoft YaHei;
  1920. font-weight: 400;
  1921. font-size: 16px;
  1922. color: #999999;
  1923. margin-right: 20px;
  1924. }
  1925. .part6_left_content111 {
  1926. height: 230px;
  1927. padding-top: 20px;
  1928. .part6_left_content_list {
  1929. margin-bottom: 20px;
  1930. .jiantou {
  1931. display: inline-block;
  1932. font-size: 22px;
  1933. color: #a01c0e;
  1934. margin-left: 20px;
  1935. margin-right: 25px;
  1936. }
  1937. .fenlei {
  1938. display: inline-block;
  1939. width: 110px;
  1940. height: 36px;
  1941. line-height: 36px;
  1942. text-align: center;
  1943. background-color: #fff;
  1944. border: 1px solid #f8f8f8;
  1945. margin-right: 20px;
  1946. font-family: Microsoft YaHei, Microsoft YaHei;
  1947. font-weight: 400;
  1948. font-size: 18px;
  1949. color: #333333;
  1950. }
  1951. }
  1952. }
  1953. }
  1954. .part6_left_content1:first-child {
  1955. margin-right: 20px;
  1956. }
  1957. .part6_left_content2 {
  1958. float: left;
  1959. width: 350px;
  1960. height: 309px;
  1961. background-color: #f8f8f8;
  1962. .part6_left_content_title {
  1963. width: 350px;
  1964. height: 59px;
  1965. background-color: #f4f4f4;
  1966. line-height: 59px;
  1967. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1968. font-weight: 400;
  1969. font-size: 24px;
  1970. color: #333333;
  1971. img {
  1972. margin-left: 20px;
  1973. margin-right: 10px;
  1974. vertical-align: -2px;
  1975. }
  1976. a {
  1977. color: #333333;
  1978. }
  1979. }
  1980. .part6_left_content222 {
  1981. width: 350px;
  1982. padding: 20px 32px;
  1983. .part6_left_content_list {
  1984. width: 130px;
  1985. height: 90px;
  1986. background-color: #fff;
  1987. float: left;
  1988. margin-right: 26px;
  1989. margin-bottom: 20px;
  1990. text-align: center;
  1991. img {
  1992. width: 28px;
  1993. height: 28px;
  1994. padding: 15px 10px 5px;
  1995. }
  1996. .title_div {
  1997. color: #333333;
  1998. font-size: 18px;
  1999. }
  2000. }
  2001. }
  2002. }
  2003. }
  2004. .part6_right {
  2005. float: right;
  2006. width: 450px;
  2007. background-color: #f8f8f8;
  2008. .part6_right_title {
  2009. width: 450px;
  2010. height: 59px;
  2011. line-height: 59px;
  2012. background-color: #f4f4f4;
  2013. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  2014. font-weight: 400;
  2015. font-size: 24px;
  2016. color: #333333;
  2017. padding-left: 20px;
  2018. box-sizing: border-box;
  2019. a {
  2020. color: #333333;
  2021. }
  2022. }
  2023. .part6_right_content {
  2024. width: 410px;
  2025. height: 200px;
  2026. background-color: #fff;
  2027. margin: 25px 20px;
  2028. .part6_right_content_list {
  2029. float: left;
  2030. width: 205px;
  2031. height: 160px;
  2032. margin-top: 20px;
  2033. padding-left: 40px;
  2034. box-sizing: border-box;
  2035. border-right: 1px solid #ececec;
  2036. .yslist {
  2037. font-family: Microsoft YaHei, Microsoft YaHei;
  2038. font-weight: bold;
  2039. font-size: 18px;
  2040. color: #333333;
  2041. line-height: 21px;
  2042. margin-bottom: 20px;
  2043. img {
  2044. margin-right: 10px;
  2045. vertical-align: middle;
  2046. }
  2047. a {
  2048. color: #333333;
  2049. }
  2050. }
  2051. }
  2052. .part6_right_content_list1 {
  2053. float: left;
  2054. width: 205px;
  2055. margin-top: 20px;
  2056. padding-left: 40px;
  2057. box-sizing: border-box;
  2058. .swlist {
  2059. font-family: Microsoft YaHei, Microsoft YaHei;
  2060. font-weight: bold;
  2061. font-size: 18px;
  2062. color: #333333;
  2063. line-height: 21px;
  2064. margin-bottom: 20px;
  2065. img {
  2066. margin-right: 10px;
  2067. vertical-align: middle;
  2068. }
  2069. a {
  2070. color: #333333;
  2071. }
  2072. }
  2073. }
  2074. }
  2075. }
  2076. }
  2077. }