index.less 74 KB

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