index.less 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  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. height: 438px;
  373. margin-top: 10px;
  374. .context_left {
  375. float: left;
  376. width: 350px;
  377. .top {
  378. width: 350px;
  379. height: 285px;
  380. position: relative;
  381. .bottom_left_img {
  382. width: 165px;
  383. height: 96px;
  384. }
  385. a img {
  386. width: 350px;
  387. height: 230px;
  388. }
  389. a .title1 {
  390. margin-top: 5px;
  391. width: 350px;
  392. height: 48px;
  393. display: -webkit-box;
  394. -webkit-box-orient: vertical;
  395. -webkit-line-clamp: 2;
  396. overflow: hidden;
  397. text-overflow: ellipsis;
  398. word-break: break-all;
  399. font-family: Microsoft YaHei, Microsoft YaHei;
  400. font-weight: bold;
  401. font-size: 18px;
  402. color: #333333;
  403. }
  404. // a {
  405. // color: #333333;
  406. // }
  407. }
  408. .top:hover a .title1 {
  409. color: #a01c0e;
  410. }
  411. .bottom_context {
  412. width: 350px;
  413. margin-top: 20px;
  414. .bottom_left {
  415. float: left;
  416. width: 165px;
  417. .bottom_left_img {
  418. width: 165px;
  419. height: 96px;
  420. }
  421. a img {
  422. width: 165px;
  423. height: 96px;
  424. }
  425. a .title2 {
  426. margin-top: 5px;
  427. width: 165px;
  428. height: 48px;
  429. display: -webkit-box;
  430. -webkit-box-orient: vertical;
  431. -webkit-line-clamp: 2;
  432. overflow: hidden;
  433. text-overflow: ellipsis;
  434. word-break: break-all;
  435. font-family: Microsoft YaHei, Microsoft YaHei;
  436. font-weight: 400;
  437. font-size: 18px;
  438. color: #333333;
  439. }
  440. a {
  441. color: #333333;
  442. }
  443. }
  444. .bottom_left:hover a .title2 {
  445. color: #a01c0e;
  446. }
  447. .bottom_left:first-child {
  448. margin-right: 20px;
  449. }
  450. }
  451. }
  452. .context_right {
  453. float: right;
  454. width: 350px;
  455. .rightContent {
  456. width: 350px;
  457. li:nth-child(5n+1) {
  458. margin-bottom: 24px;
  459. width: 345px;
  460. white-space: nowrap;
  461. overflow: hidden;
  462. text-overflow: ellipsis;
  463. font-family: Microsoft YaHei, Microsoft YaHei;
  464. font-weight: bold;
  465. font-size: 18px;
  466. color: #333333;
  467. a {
  468. color: #333333;
  469. }
  470. }
  471. .li:nth-child(5n+1):hover a {
  472. color: #a01c0e;
  473. }
  474. .context1 {
  475. margin-bottom: 24px;
  476. width: 345px;
  477. white-space: nowrap;
  478. overflow: hidden;
  479. text-overflow: ellipsis;
  480. font-family: Microsoft YaHei, Microsoft YaHei;
  481. font-weight: 400;
  482. font-size: 18px;
  483. color: #333333;
  484. a {
  485. color: #333333;
  486. }
  487. }
  488. .context1:hover a {
  489. color: #a01c0e;
  490. }
  491. }
  492. // .rightContent:first-child {
  493. // margin-bottom: 25px;
  494. // }
  495. }
  496. }
  497. }
  498. .part1_right {
  499. float: right;
  500. width: 450px;
  501. // height: 1000px;
  502. .part1_right_title {
  503. width: 450px;
  504. height: 50px;
  505. line-height: 50px;
  506. .part1_right_title1_active {
  507. float: left;
  508. margin-right: 40px;
  509. font-family: Microsoft YaHei, Microsoft YaHei;
  510. font-weight: 400;
  511. font-size: 20px;
  512. color: #333333;
  513. position: relative;
  514. a.active {
  515. color: #333333;
  516. }
  517. .active_bg {
  518. display: inline-block;
  519. width: 8px;
  520. height: 8px;
  521. background-color: #a01c0e;
  522. border-radius: 4px;
  523. position: absolute;
  524. top: 7px;
  525. right: -5px;
  526. }
  527. }
  528. .part1_right_title1 {
  529. float: left;
  530. margin-right: 40px;
  531. font-family: Microsoft YaHei, Microsoft YaHei;
  532. font-weight: 400;
  533. font-size: 20px;
  534. color: #999999;
  535. position: relative;
  536. a {
  537. color: #999999;
  538. }
  539. }
  540. }
  541. .part1_right_content {
  542. width: 450px;
  543. margin-top: 10px;
  544. .part1_top_111 {
  545. width: 450px;
  546. height: 165px;
  547. // margin-bottom: 20px;
  548. position: relative;
  549. .part1_right_content_top {
  550. float: left;
  551. width: 220px;
  552. a img {
  553. width: 220px;
  554. height: 130px;
  555. }
  556. a .content_top_title2 {
  557. display: inline-block;
  558. width: 220px;
  559. padding: 0 10px;
  560. box-sizing: border-box;
  561. white-space: nowrap;
  562. overflow: hidden;
  563. text-overflow: ellipsis;
  564. font-family: Microsoft YaHei, Microsoft YaHei;
  565. font-weight: 400;
  566. font-size: 18px;
  567. color: #333333;
  568. margin-top: 5px;
  569. }
  570. }
  571. .part1_right_content_top:hover a .content_top_title2 {
  572. color: #a01c0e;
  573. }
  574. .part1_right_content_top:nth-child(2) {
  575. margin-left: 10px;
  576. }
  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: 0px;
  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. height: 285px;
  732. position: relative;
  733. a img {
  734. width: 350px;
  735. height: 230px;
  736. }
  737. a .title11 {
  738. margin-top: 5px;
  739. width: 350px;
  740. height: 48px;
  741. display: -webkit-box;
  742. -webkit-box-orient: vertical;
  743. -webkit-line-clamp: 2;
  744. overflow: hidden;
  745. text-overflow: ellipsis;
  746. word-break: break-all;
  747. font-family: Microsoft YaHei, Microsoft YaHei;
  748. font-weight: bold;
  749. font-size: 18px;
  750. color: #333333;
  751. }
  752. }
  753. .right_top:hover a .title11 {
  754. color: #a01c0e;
  755. }
  756. .right_bottom {
  757. width: 350px;
  758. margin-top: 20px;
  759. .bottom_left {
  760. float: left;
  761. width: 165px;
  762. a img {
  763. width: 165px;
  764. height: 96px;
  765. }
  766. a .title22 {
  767. margin-top: 5px;
  768. width: 165px;
  769. // height: 48px;
  770. display: -webkit-box;
  771. -webkit-box-orient: vertical;
  772. -webkit-line-clamp: 2;
  773. overflow: hidden;
  774. text-overflow: ellipsis;
  775. word-break: break-all;
  776. font-family: Microsoft YaHei, Microsoft YaHei;
  777. font-weight: 400;
  778. font-size: 18px;
  779. color: #333333;
  780. }
  781. a {
  782. color: #333333;
  783. }
  784. }
  785. .bottom_left:hover a .title22 {
  786. color: #a01c0e;
  787. }
  788. .bottom_left:first-child {
  789. margin-right: 20px;
  790. }
  791. }
  792. }
  793. }
  794. }
  795. .part2_right {
  796. float: right;
  797. width: 450px;
  798. // height: 1000px;
  799. .part2_right_title {
  800. width: 450px;
  801. height: 50px;
  802. line-height: 50px;
  803. .part2_right_title1_active {
  804. float: left;
  805. margin-right: 40px;
  806. font-family: Microsoft YaHei, Microsoft YaHei;
  807. font-weight: 400;
  808. font-size: 20px;
  809. color: #333333;
  810. position: relative;
  811. a.active {
  812. color: #333333;
  813. }
  814. .active_bg11 {
  815. display: inline-block;
  816. width: 8px;
  817. height: 8px;
  818. background-color: #a01c0e;
  819. border-radius: 4px;
  820. position: absolute;
  821. top: 7px;
  822. right: -5px;
  823. }
  824. }
  825. .part2_right_title1 {
  826. float: left;
  827. margin-right: 40px;
  828. font-family: Microsoft YaHei, Microsoft YaHei;
  829. font-weight: 400;
  830. font-size: 20px;
  831. color: #999999;
  832. position: relative;
  833. a {
  834. color: #999999;
  835. }
  836. }
  837. }
  838. .part2_right_content {
  839. width: 450px;
  840. margin-top: 20px;
  841. .part2_top_1111 {
  842. width: 450px;
  843. height: 165px;
  844. position: relative;
  845. .part2_right_content_top {
  846. float: left;
  847. width: 220px;
  848. a img {
  849. width: 220px;
  850. height: 130px;
  851. }
  852. a .content_top_title22 {
  853. display: inline-block;
  854. width: 220px;
  855. padding: 0 10px;
  856. box-sizing: border-box;
  857. white-space: nowrap;
  858. overflow: hidden;
  859. text-overflow: ellipsis;
  860. font-family: Microsoft YaHei, Microsoft YaHei;
  861. font-weight: 400;
  862. font-size: 18px;
  863. color: #333333;
  864. margin-top: 5px;
  865. }
  866. }
  867. .part2_right_content_top:hover a .content_top_title22 {
  868. color: #a01c0e;
  869. }
  870. .part2_right_content_top:nth-child(2) {
  871. margin-left: 10px;
  872. }
  873. }
  874. .part2_right_content_bottom {
  875. width: 450px;
  876. // height: 300px;
  877. // margin-top: 20px;
  878. overflow: hidden;
  879. .content_bottom_list {
  880. width: 450px;
  881. margin-top: 24px;
  882. a {
  883. color: #333333;
  884. }
  885. a .sec_title_part2 {
  886. font-family: Microsoft YaHei, Microsoft YaHei;
  887. font-weight: 400;
  888. font-size: 18px;
  889. color: #A01C0E;
  890. line-height: 21px;
  891. margin-right: 15px;
  892. }
  893. a .sec_content_part2 {
  894. display: inline-block;
  895. width: 355px;
  896. white-space: nowrap;
  897. overflow: hidden;
  898. text-overflow: ellipsis;
  899. font-family: Microsoft YaHei, Microsoft YaHei;
  900. font-weight: 400;
  901. font-size: 18px;
  902. color: #333333;
  903. line-height: 21px;
  904. padding-left: 15px;
  905. border-left: 1px solid #666;
  906. box-sizing: border-box;
  907. vertical-align: -1px;
  908. }
  909. }
  910. a .sec_content_part2:hover {
  911. color: #a01c0e;
  912. }
  913. }
  914. }
  915. }
  916. }
  917. }
  918. //第三部分
  919. .part3 {
  920. width: 100%;
  921. margin-top: 30px;
  922. margin-bottom: 20px;
  923. .inner {
  924. width: 1200px;
  925. overflow: hidden;
  926. margin: 0 auto;
  927. background-color: #fff;
  928. .part3_left {
  929. float: left;
  930. width: 720px;
  931. overflow: hidden;
  932. background-color: #fff;
  933. .part3_left_1 {
  934. width: 350px;
  935. overflow: hidden;
  936. float: left;
  937. background-color: #fff;
  938. .part3_title1 {
  939. width: 100px;
  940. height: 50px;
  941. line-height: 50px;
  942. font-family: Microsoft YaHei, Microsoft YaHei;
  943. font-weight: 400;
  944. font-size: 20px;
  945. color: #333333;
  946. position: relative;
  947. a {
  948. color: #333333;
  949. }
  950. em {
  951. display: inline-block;
  952. width: 8px;
  953. height: 8px;
  954. background-color: #a01c0e;
  955. border-radius: 4px;
  956. position: absolute;
  957. top: 9px;
  958. right: 0px;
  959. }
  960. }
  961. .part3_photo_text {
  962. width: 350px;
  963. height: 96px;
  964. margin-top: 20px;
  965. img {
  966. width: 165px;
  967. height: 96px;
  968. float: left;
  969. }
  970. .part3_text {
  971. width: 175px;
  972. height: 75px;
  973. display: -webkit-box;
  974. -webkit-box-orient: vertical;
  975. -webkit-line-clamp: 2;
  976. overflow: hidden;
  977. text-overflow: ellipsis;
  978. word-break: break-all;
  979. float: right;
  980. font-family: Microsoft YaHei, Microsoft YaHei;
  981. font-weight: 400;
  982. font-size: 18px;
  983. color: #333333;
  984. line-height: 25px;
  985. padding: 24px 10px;
  986. box-sizing: border-box;
  987. }
  988. }
  989. .part3_photo_text:hover {
  990. color: #a01c0e;
  991. a span {
  992. color: #a01c0e;
  993. }
  994. }
  995. .part3_content {
  996. width: 350px;
  997. .part3_contentList {
  998. width: 350px;
  999. white-space: nowrap;
  1000. overflow: hidden;
  1001. text-overflow: ellipsis;
  1002. font-family: Microsoft YaHei, Microsoft YaHei;
  1003. font-weight: 400;
  1004. font-size: 18px;
  1005. color: #333333;
  1006. line-height: 21px;
  1007. margin-top: 22px;
  1008. a {
  1009. color: #333333;
  1010. }
  1011. }
  1012. .part3_contentList:hover {
  1013. color: #a01c0e;
  1014. a {
  1015. color: #a01c0e;
  1016. }
  1017. }
  1018. .part3_contentList:nth-child(1) {
  1019. font-weight: bold;
  1020. }
  1021. }
  1022. }
  1023. .part3_left_1:first-child {
  1024. margin-right: 10px;
  1025. }
  1026. }
  1027. .part3_right {
  1028. float: right;
  1029. width: 450px;
  1030. // height: 420px;
  1031. background-color: #f8f8f8;
  1032. .part3_right_title {
  1033. width: 450px;
  1034. height: 60px;
  1035. line-height: 60px;
  1036. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1037. font-weight: 400;
  1038. font-size: 22px;
  1039. color: #333333;
  1040. background-color: #f4f4f4;
  1041. a {
  1042. color: #333333;
  1043. }
  1044. a:hover {
  1045. color: #a01c0e;
  1046. }
  1047. img {
  1048. width: 24px;
  1049. height: 24px;
  1050. vertical-align: -3px;
  1051. margin-right: 12px;
  1052. margin-left: 20px;
  1053. }
  1054. }
  1055. .part3_right_content {
  1056. width: 450px;
  1057. height: 320px;
  1058. padding: 16px 20px;
  1059. box-sizing: border-box;
  1060. display: flex;
  1061. flex-wrap: wrap;
  1062. justify-content: space-between;
  1063. align-content: space-between;
  1064. .content_list {
  1065. float: left;
  1066. width: 200px;
  1067. height: 133px;
  1068. background-color: #fff;
  1069. border: 1px solid #E9E9E9;
  1070. text-align: center;
  1071. padding: 20px auto;
  1072. .part3_right_content_list {
  1073. display: block;
  1074. font-family: Microsoft YaHei, Microsoft YaHei;
  1075. font-weight: bold;
  1076. font-size: 20px;
  1077. color: #333333;
  1078. }
  1079. .photo {
  1080. width: 90px;
  1081. height: 68px;
  1082. text-align: center;
  1083. margin: 10px auto 10px;
  1084. // img{
  1085. // width: 47px;
  1086. // height: 47px;
  1087. // }
  1088. }
  1089. }
  1090. .content_list:hover {
  1091. color: #a01c0e;
  1092. a span {
  1093. color: #a01c0e;
  1094. }
  1095. }
  1096. }
  1097. }
  1098. }
  1099. }
  1100. //第四部分
  1101. .part4 {
  1102. width: 100%;
  1103. height: 405px;
  1104. // margin-bottom: 40px;
  1105. .inner {
  1106. width: 1200px;
  1107. height: 425px;
  1108. background-color: #fff;
  1109. .part4_title {
  1110. width: 1200px;
  1111. height: 50px;
  1112. line-height: 50px;
  1113. .part4_title_left {
  1114. float: left;
  1115. width: 100px;
  1116. position: relative;
  1117. font-family: Microsoft YaHei, Microsoft YaHei;
  1118. font-weight: 400;
  1119. font-size: 20px;
  1120. color: #333333;
  1121. a {
  1122. color: #333333;
  1123. }
  1124. em {
  1125. display: inline-block;
  1126. width: 8px;
  1127. height: 8px;
  1128. background-color: #a01c0e;
  1129. border-radius: 4px;
  1130. position: absolute;
  1131. top: 9px;
  1132. right: 0px;
  1133. }
  1134. }
  1135. .part4_title_right {
  1136. float: right;
  1137. .right_titleList {
  1138. float: left;
  1139. font-family: Microsoft YaHei, Microsoft YaHei;
  1140. font-weight: 400;
  1141. font-size: 16px;
  1142. color: #999999;
  1143. margin-right: 10px;
  1144. a {
  1145. color: #999999;
  1146. }
  1147. span {
  1148. margin-left: 10px;
  1149. }
  1150. }
  1151. .right_titleList:hover {
  1152. color: #a01c0e;
  1153. a {
  1154. color: #a01c0e;
  1155. }
  1156. span {
  1157. color: #999999;
  1158. }
  1159. }
  1160. .more {
  1161. float: right;
  1162. height: 50px;
  1163. line-height: 50px;
  1164. font-family: Microsoft YaHei, Microsoft YaHei;
  1165. font-weight: 400;
  1166. font-size: 14px;
  1167. color: #999999;
  1168. a {
  1169. color: #999999;
  1170. }
  1171. }
  1172. .more:hover {
  1173. color: #a01c0e;
  1174. a {
  1175. color: #a01c0e;
  1176. }
  1177. }
  1178. }
  1179. }
  1180. .part4_left {
  1181. float: left;
  1182. width: 720px;
  1183. // height: 400px;
  1184. .part4_left_top {
  1185. width: 700px;
  1186. text-align: center;
  1187. padding: 20px 35px 15px;
  1188. box-sizing: border-box;
  1189. border-bottom: 1px solid #d9d9d9;
  1190. margin: 0 20px;
  1191. .left_top_newsList:first-child {
  1192. font-family: Microsoft YaHei, Microsoft YaHei;
  1193. font-weight: bold;
  1194. font-size: 18px;
  1195. color: #333333;
  1196. line-height: 21px;
  1197. a {
  1198. color: #333333;
  1199. }
  1200. }
  1201. .left_top_newsList {
  1202. width: 600px;
  1203. white-space: nowrap;
  1204. overflow: hidden;
  1205. text-overflow: ellipsis;
  1206. font-family: Microsoft YaHei, Microsoft YaHei;
  1207. font-weight: 400;
  1208. font-size: 18px;
  1209. color: #999999;
  1210. margin-bottom: 15px;
  1211. a {
  1212. color: #999999;
  1213. }
  1214. }
  1215. .left_top_newsList:last-child {
  1216. margin-bottom: 0;
  1217. }
  1218. .left_top_newsList:hover {
  1219. color: #a01c0e;
  1220. a {
  1221. color: #a01c0e;
  1222. }
  1223. }
  1224. }
  1225. .part4_left_bottom {
  1226. width: 720px;
  1227. // height: 178px;
  1228. margin-top: 20px;
  1229. .left_btm_newsList {
  1230. float: left;
  1231. width: 350px;
  1232. white-space: nowrap;
  1233. overflow: hidden;
  1234. text-overflow: ellipsis;
  1235. font-family: Microsoft YaHei, Microsoft YaHei;
  1236. font-weight: 400;
  1237. font-size: 18px;
  1238. color: #333333;
  1239. line-height: 21px;
  1240. margin-bottom: 20px;
  1241. a {
  1242. color: #333333;
  1243. }
  1244. }
  1245. .left_btm_newsList:nth-child(2n) {
  1246. margin-left: 20px;
  1247. }
  1248. .left_btm_newsList:hover {
  1249. color: #a01c0e;
  1250. a {
  1251. color: #a01c0e;
  1252. }
  1253. }
  1254. }
  1255. }
  1256. .part4_right {
  1257. float: right;
  1258. width: 450px;
  1259. // height: 345px;
  1260. margin-top: 20px;
  1261. a img {
  1262. width: 450px;
  1263. height: 267px;
  1264. }
  1265. .part4_right_title {
  1266. display: inline-block;
  1267. width: 450px;
  1268. height: 50px;
  1269. display: -webkit-box;
  1270. -webkit-box-orient: vertical;
  1271. -webkit-line-clamp: 2;
  1272. overflow: hidden;
  1273. text-overflow: ellipsis;
  1274. word-break: break-all;
  1275. font-family: Microsoft YaHei, Microsoft YaHei;
  1276. font-weight: bold;
  1277. font-size: 18px;
  1278. color: #333333;
  1279. line-height: 25px;
  1280. margin-top: 5px;
  1281. }
  1282. }
  1283. .part4_right:hover {
  1284. color: #a01c0e;
  1285. .part4_right_title {
  1286. color: #a01c0e;
  1287. }
  1288. }
  1289. }
  1290. }
  1291. //第五部分
  1292. .part5 {
  1293. width: 100%;
  1294. // height: 1200px;
  1295. margin-top: 20px;
  1296. margin-bottom: 10px;
  1297. .inner {
  1298. width: 1200px;
  1299. height: 1080px;
  1300. background-color: #fff;
  1301. .part5_left {
  1302. float: left;
  1303. .part5_left_top {
  1304. width: 720px;
  1305. overflow: hidden;
  1306. .part5_leftTitle {
  1307. width: 720px;
  1308. height: 50px;
  1309. line-height: 50px;
  1310. .part5_left_title_active {
  1311. float: left;
  1312. margin-right: 20px;
  1313. width: 100px;
  1314. height: 50px;
  1315. line-height: 50px;
  1316. position: relative;
  1317. font-family: Microsoft YaHei, Microsoft YaHei;
  1318. font-weight: 400;
  1319. font-size: 20px;
  1320. color: #333333;
  1321. a.active {
  1322. color: #333333;
  1323. }
  1324. em {
  1325. display: inline-block;
  1326. width: 8px;
  1327. height: 8px;
  1328. background-color: #a01c0e;
  1329. border-radius: 4px;
  1330. position: absolute;
  1331. top: 9px;
  1332. right: 0px;
  1333. }
  1334. }
  1335. .part5_left_title {
  1336. float: left;
  1337. margin-right: 20px;
  1338. width: 100px;
  1339. height: 50px;
  1340. line-height: 50px;
  1341. position: relative;
  1342. font-family: Microsoft YaHei, Microsoft YaHei;
  1343. font-weight: 400;
  1344. font-size: 20px;
  1345. color: #999999;
  1346. a {
  1347. color: #999999;
  1348. }
  1349. }
  1350. }
  1351. .part5_left_content {
  1352. width: 720px;
  1353. margin-top: 20px;
  1354. .part5_left_content_top {
  1355. height: 484px;
  1356. .content_top_left {
  1357. float: left;
  1358. width: 350px;
  1359. height: 484px;
  1360. position: relative;
  1361. .part5_photo_text {
  1362. width: 350px;
  1363. height: 270px;
  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. height: 210px;
  1405. position: absolute;
  1406. bottom: 0;
  1407. left: 0;
  1408. .part5_content_list:first-child {
  1409. width: 350px;
  1410. height: 25px;
  1411. white-space: nowrap;
  1412. overflow: hidden;
  1413. text-overflow: ellipsis;
  1414. font-family: Microsoft YaHei, Microsoft YaHei;
  1415. font-weight: bold;
  1416. font-size: 18px;
  1417. color: #333333;
  1418. line-height: 22px;
  1419. margin-top: 15px;
  1420. a {
  1421. color: #333333;
  1422. }
  1423. }
  1424. .part5_content_list:last-child {
  1425. margin-bottom: 0;
  1426. }
  1427. .part5_content_list {
  1428. width: 350px;
  1429. height: 25px;
  1430. white-space: nowrap;
  1431. overflow: hidden;
  1432. text-overflow: ellipsis;
  1433. font-family: Microsoft YaHei, Microsoft YaHei;
  1434. font-weight: 400;
  1435. font-size: 18px;
  1436. color: #333333;
  1437. line-height: 22px;
  1438. margin-bottom: 17px;
  1439. a {
  1440. color: #333333;
  1441. }
  1442. }
  1443. .part5_content_list:hover {
  1444. color: #a01c0e;
  1445. a {
  1446. color: #a01c0e;
  1447. }
  1448. }
  1449. }
  1450. }
  1451. .content_top_right {
  1452. float: left;
  1453. width: 350px;
  1454. height: 484px;
  1455. border: 1px solid #D9D9D9;
  1456. margin-left: 20px;
  1457. padding: 30px 25px;
  1458. box-sizing: border-box;
  1459. .content_right_list {
  1460. height:54px;
  1461. line-height: 54px;
  1462. .part5_time {
  1463. float: left;
  1464. width: 77px;
  1465. height: 58px;
  1466. color: #a01c0e;
  1467. .month {
  1468. font-family: Microsoft YaHei, Microsoft YaHei;
  1469. font-weight: 400;
  1470. font-size: 26px;
  1471. color: #A01C0E;
  1472. line-height: 30px;
  1473. }
  1474. .xiegang {
  1475. font-size: 22px;
  1476. font-weight: 400;
  1477. }
  1478. .day {
  1479. font-family: Microsoft YaHei, Microsoft YaHei;
  1480. font-weight: 400;
  1481. font-size: 16px;
  1482. color: #A01C0E;
  1483. line-height: 19px;
  1484. }
  1485. }
  1486. .time_left_content {
  1487. float: left;
  1488. width: 300px;
  1489. height: 32px;
  1490. white-space: nowrap;
  1491. overflow: hidden;
  1492. text-overflow: ellipsis;
  1493. line-height: 22px;
  1494. padding-top: 12px;
  1495. box-sizing: border-box;
  1496. font-family: Microsoft YaHei, Microsoft YaHei;
  1497. font-weight: 400;
  1498. font-size: 18px;
  1499. color: #333333;
  1500. //border-left: 1px solid #D9D9D9;
  1501. padding-left: 10px;
  1502. a {
  1503. color: #333333;
  1504. }
  1505. }
  1506. .time_left_content:hover {
  1507. color: #a01c0e;
  1508. }
  1509. &:nth-child(1),&:nth-child(5) {
  1510. a {
  1511. color:#333;
  1512. font-weight: bold;
  1513. }
  1514. }
  1515. }
  1516. }
  1517. }
  1518. }
  1519. }
  1520. .part5_left_bottom {
  1521. width: 720px;
  1522. margin-top: 15px;
  1523. .part5_leftTitle1 {
  1524. width: 720px;
  1525. height: 50px;
  1526. line-height: 50px;
  1527. .part5_left_title_active {
  1528. float: left;
  1529. margin-right: 20px;
  1530. width: 100px;
  1531. height: 50px;
  1532. line-height: 50px;
  1533. position: relative;
  1534. font-family: Microsoft YaHei, Microsoft YaHei;
  1535. font-weight: 400;
  1536. font-size: 20px;
  1537. color: #333333;
  1538. a.active {
  1539. color: #333333;
  1540. }
  1541. em {
  1542. display: inline-block;
  1543. width: 8px;
  1544. height: 8px;
  1545. background-color: #a01c0e;
  1546. border-radius: 4px;
  1547. position: absolute;
  1548. top: 9px;
  1549. right: 0px;
  1550. }
  1551. }
  1552. .part5_left_title {
  1553. float: left;
  1554. margin-right: 20px;
  1555. width: 100px;
  1556. height: 50px;
  1557. line-height: 50px;
  1558. position: relative;
  1559. font-family: Microsoft YaHei, Microsoft YaHei;
  1560. font-weight: 400;
  1561. font-size: 20px;
  1562. color: #999999;
  1563. a {
  1564. color: #999999;
  1565. }
  1566. }
  1567. }
  1568. .part5_left_content1 {
  1569. width: 720px;
  1570. .content_bottom_left {
  1571. float: left;
  1572. width: 350px;
  1573. .content_top {
  1574. width: 350px;
  1575. height: 285px;
  1576. position: relative;
  1577. img {
  1578. width: 350px;
  1579. height: 230px;
  1580. }
  1581. .part5_text {
  1582. display: inline-block;
  1583. width: 350px;
  1584. height: 47px;
  1585. line-height: 22px;
  1586. display: -webkit-box;
  1587. -webkit-box-orient: vertical;
  1588. -webkit-line-clamp: 2;
  1589. overflow: hidden;
  1590. text-overflow: ellipsis;
  1591. word-break: break-all;
  1592. margin-top: 5px;
  1593. font-family: Microsoft YaHei, Microsoft YaHei;
  1594. font-weight: bold;
  1595. font-size: 18px;
  1596. color: #333333
  1597. }
  1598. }
  1599. .content_top:hover {
  1600. .part5_text {
  1601. color: #a01c0e;
  1602. }
  1603. }
  1604. .content_bottom {
  1605. width: 350px;
  1606. margin-top: 10px;
  1607. .content_bottom_1 {
  1608. float: left;
  1609. width: 165px;
  1610. img {
  1611. width: 165px;
  1612. height: 96px;
  1613. }
  1614. .part5_text {
  1615. display: inline-block;
  1616. width: 165px;
  1617. height: 44px;
  1618. line-height: 22px;
  1619. display: -webkit-box;
  1620. -webkit-box-orient: vertical;
  1621. -webkit-line-clamp: 2;
  1622. overflow: hidden;
  1623. text-overflow: ellipsis;
  1624. word-break: break-all;
  1625. font-family: Microsoft YaHei, Microsoft YaHei;
  1626. font-weight: 400;
  1627. font-size: 18px;
  1628. color: #333333;
  1629. // margin-top: 5px;
  1630. }
  1631. }
  1632. .content_bottom_1:hover {
  1633. .part5_text {
  1634. color: #a01c0e;
  1635. }
  1636. }
  1637. .content_bottom_1:first-child {
  1638. margin-right: 20px;
  1639. }
  1640. }
  1641. }
  1642. .content_bottom_right {
  1643. float: left;
  1644. margin-left: 20px;
  1645. width: 350px;
  1646. .bottom_content_1 {
  1647. width: 350px;
  1648. .bottom_content_list:nth-child(5n+1) {
  1649. font-weight: bold;
  1650. }
  1651. .bottom_content_list {
  1652. width: 350px;
  1653. height: 25px;
  1654. white-space: nowrap;
  1655. overflow: hidden;
  1656. text-overflow: ellipsis;
  1657. font-family: Microsoft YaHei, Microsoft YaHei;
  1658. font-weight: 400;
  1659. font-size: 18px;
  1660. color: #333333;
  1661. line-height: 21px;
  1662. margin-bottom: 21px;
  1663. a {
  1664. color: #333333;
  1665. }
  1666. }
  1667. .bottom_content_list:hover {
  1668. color: #a01c0e;
  1669. a {
  1670. color: #a01c0e;
  1671. }
  1672. }
  1673. }
  1674. .bottom_content_1:first-child {
  1675. margin-bottom: 20px;
  1676. }
  1677. .bottom_content_1:last-child {
  1678. .bottom_content_list:last-child {
  1679. margin-bottom: 0;
  1680. }
  1681. }
  1682. }
  1683. }
  1684. }
  1685. }
  1686. .part5_right {
  1687. float: right;
  1688. width: 451px;
  1689. height: 1070px;
  1690. position: relative;
  1691. .part5_rightTitle {
  1692. width: 451px;
  1693. height: 50px;
  1694. line-height: 50px;
  1695. .part5_right_title_active {
  1696. float: left;
  1697. margin-right: 20px;
  1698. width: 100px;
  1699. height: 50px;
  1700. line-height: 50px;
  1701. position: relative;
  1702. font-family: Microsoft YaHei, Microsoft YaHei;
  1703. font-weight: 400;
  1704. font-size: 20px;
  1705. color: #333333;
  1706. a.active {
  1707. color: #333333;
  1708. }
  1709. em {
  1710. display: inline-block;
  1711. width: 8px;
  1712. height: 8px;
  1713. background-color: #a01c0e;
  1714. border-radius: 4px;
  1715. position: absolute;
  1716. top: 9px;
  1717. right: 0px;
  1718. }
  1719. }
  1720. .part5_right_title {
  1721. float: left;
  1722. margin-right: 20px;
  1723. width: 100px;
  1724. height: 50px;
  1725. line-height: 50px;
  1726. position: relative;
  1727. font-family: Microsoft YaHei, Microsoft YaHei;
  1728. font-weight: 400;
  1729. font-size: 20px;
  1730. color: #999999;
  1731. a {
  1732. color: #999999;
  1733. }
  1734. }
  1735. .rightMore {
  1736. float: right;
  1737. font-family: Microsoft YaHei, Microsoft YaHei;
  1738. font-weight: 400;
  1739. font-size: 14px;
  1740. color: #999999;
  1741. a {
  1742. color: #999999;
  1743. }
  1744. }
  1745. }
  1746. .part5_right_content_top {
  1747. width: 451px;
  1748. height: 325px;
  1749. margin-top: 20px;
  1750. .part5_right_contentlist_top {
  1751. font-family: Microsoft YaHei, Microsoft YaHei;
  1752. font-weight: 400;
  1753. font-size: 18px;
  1754. color: #333333;
  1755. width: 425px;
  1756. height: 25px;
  1757. white-space: nowrap;
  1758. overflow: hidden;
  1759. text-overflow: ellipsis;
  1760. margin-bottom: 25px;
  1761. a {
  1762. color: #333333;
  1763. }
  1764. .numStyle {
  1765. display: inline-block;
  1766. width: 22px;
  1767. height: 22px;
  1768. background-color: #f6f6f6;
  1769. text-align: center;
  1770. margin-right: 20px;
  1771. font-family: Protest Strike, Protest Strike;
  1772. font-weight: 400;
  1773. font-size: 16px;
  1774. color: #CCCCCC;
  1775. border-radius: 4px;
  1776. }
  1777. }
  1778. .part5_right_contentlist_top:hover {
  1779. color: #a01c0e;
  1780. a {
  1781. color: #a01c0e;
  1782. }
  1783. }
  1784. .part5_right_contentlist_top:nth-child(1) {
  1785. .numStyle {
  1786. background-color: #a01c0e;
  1787. color: #fff;
  1788. }
  1789. }
  1790. .part5_right_contentlist_top:nth-child(2) {
  1791. .numStyle {
  1792. background-color: #FFC62E;
  1793. color: #fff;
  1794. }
  1795. }
  1796. .part5_right_contentlist_top:nth-child(3) {
  1797. .numStyle {
  1798. background-color: #e98008;
  1799. color: #fff;
  1800. }
  1801. }
  1802. .part5_right_contentlist_top:last-child {
  1803. margin-bottom: 10px;
  1804. }
  1805. }
  1806. .part5_photo_text_right {
  1807. width: 451px;
  1808. height: 120px;
  1809. margin-top: 20px;
  1810. margin-bottom: 20px;
  1811. background-color: #f6f3f0;
  1812. .part5_text11 {
  1813. float: left;
  1814. width: 271px;
  1815. height: 96px;
  1816. display: -webkit-box;
  1817. -webkit-box-orient: vertical;
  1818. -webkit-line-clamp: 3;
  1819. overflow: hidden;
  1820. text-overflow: ellipsis;
  1821. word-break: break-all;
  1822. font-family: Microsoft YaHei, Microsoft YaHei;
  1823. font-weight: 400;
  1824. font-size: 18px;
  1825. color: #333333;
  1826. padding: 25px 20px;
  1827. box-sizing: border-box;
  1828. }
  1829. img {
  1830. float: left;
  1831. width: 180px;
  1832. height: 120px;
  1833. }
  1834. }
  1835. .part5_photo_text_right:hover {
  1836. .part5_text11 {
  1837. color: #a01c0e;
  1838. }
  1839. }
  1840. .part5_right_content_11 {
  1841. width: 451px;
  1842. height: 70px;
  1843. .part5_right_contentlist_11 {
  1844. width: 451px;
  1845. height: 25px;
  1846. white-space: nowrap;
  1847. overflow: hidden;
  1848. text-overflow: ellipsis;
  1849. font-family: Microsoft YaHei, Microsoft YaHei;
  1850. font-weight: 400;
  1851. font-size: 18px;
  1852. color: #333333;
  1853. line-height: 21px;
  1854. .erjibiaoti {
  1855. display: inline-block;
  1856. width: 87px;
  1857. height: 24px;
  1858. font-family: Microsoft YaHei, Microsoft YaHei;
  1859. font-weight: 400;
  1860. font-size: 18px;
  1861. color: #A01C0E;
  1862. border-right: #D3D5D8 1px solid;
  1863. margin-right: 10px;
  1864. }
  1865. a {
  1866. color: #333333;
  1867. }
  1868. }
  1869. a:hover {
  1870. color: #a01c0e;
  1871. }
  1872. .part5_right_contentlist_11:first-child {
  1873. margin-bottom: 12px;
  1874. }
  1875. }
  1876. .adBox1 {
  1877. position: absolute;
  1878. bottom: 0;
  1879. left: 0;
  1880. width: 450px;
  1881. height: 290px;
  1882. }
  1883. }
  1884. }
  1885. }
  1886. //第六部分
  1887. .part6 {
  1888. width: 100%;
  1889. overflow: hidden;
  1890. background-color: #fff;
  1891. margin-bottom: 10px;
  1892. .inner {
  1893. width: 1200px;
  1894. .part6_left {
  1895. float: left;
  1896. width: 720px;
  1897. .part6_left_content1 {
  1898. float: left;
  1899. width: 350px;
  1900. background-color: #f8f8f8;
  1901. .part6_left_content_title {
  1902. width: 350px;
  1903. height: 59px;
  1904. background-color: #f4f4f4;
  1905. line-height: 59px;
  1906. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1907. font-weight: 400;
  1908. font-size: 24px;
  1909. color: #333333;
  1910. img {
  1911. margin-left: 20px;
  1912. margin-right: 10px;
  1913. vertical-align: -2px;
  1914. }
  1915. a {
  1916. color: #333333;
  1917. }
  1918. }
  1919. .selectMore {
  1920. float: right;
  1921. font-family: Microsoft YaHei, Microsoft YaHei;
  1922. font-weight: 400;
  1923. font-size: 16px;
  1924. color: #999999;
  1925. margin-right: 20px;
  1926. }
  1927. .part6_left_content111 {
  1928. height: 230px;
  1929. padding-top: 20px;
  1930. .part6_left_content_list {
  1931. margin-bottom: 20px;
  1932. .jiantou {
  1933. display: inline-block;
  1934. font-size: 22px;
  1935. color: #a01c0e;
  1936. margin-left: 20px;
  1937. margin-right: 25px;
  1938. }
  1939. .fenlei {
  1940. display: inline-block;
  1941. width: 110px;
  1942. height: 36px;
  1943. line-height: 36px;
  1944. text-align: center;
  1945. background-color: #fff;
  1946. border: 1px solid #f8f8f8;
  1947. margin-right: 20px;
  1948. font-family: Microsoft YaHei, Microsoft YaHei;
  1949. font-weight: 400;
  1950. font-size: 18px;
  1951. color: #333333;
  1952. }
  1953. }
  1954. }
  1955. }
  1956. .part6_left_content1:first-child {
  1957. margin-right: 20px;
  1958. }
  1959. .part6_left_content2 {
  1960. float: left;
  1961. width: 350px;
  1962. height: 309px;
  1963. background-color: #f8f8f8;
  1964. .part6_left_content_title {
  1965. width: 350px;
  1966. height: 59px;
  1967. background-color: #f4f4f4;
  1968. line-height: 59px;
  1969. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  1970. font-weight: 400;
  1971. font-size: 24px;
  1972. color: #333333;
  1973. img {
  1974. margin-left: 20px;
  1975. margin-right: 10px;
  1976. vertical-align: -2px;
  1977. }
  1978. a {
  1979. color: #333333;
  1980. }
  1981. }
  1982. .part6_left_content222 {
  1983. width: 350px;
  1984. padding: 20px 32px;
  1985. .part6_left_content_list {
  1986. width: 130px;
  1987. height: 90px;
  1988. background-color: #fff;
  1989. float: left;
  1990. margin-right: 26px;
  1991. margin-bottom: 20px;
  1992. text-align: center;
  1993. img {
  1994. width: 28px;
  1995. height: 28px;
  1996. padding: 15px 10px 5px;
  1997. }
  1998. .title_div {
  1999. color: #333333;
  2000. font-size: 18px;
  2001. }
  2002. }
  2003. }
  2004. }
  2005. }
  2006. .part6_right {
  2007. float: right;
  2008. width: 450px;
  2009. background-color: #f8f8f8;
  2010. .part6_right_title {
  2011. width: 450px;
  2012. height: 59px;
  2013. line-height: 59px;
  2014. background-color: #f4f4f4;
  2015. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  2016. font-weight: 400;
  2017. font-size: 24px;
  2018. color: #333333;
  2019. padding-left: 20px;
  2020. box-sizing: border-box;
  2021. a {
  2022. color: #333333;
  2023. }
  2024. }
  2025. .part6_right_content {
  2026. width: 410px;
  2027. height: 200px;
  2028. background-color: #fff;
  2029. margin: 25px 20px;
  2030. .part6_right_content_list {
  2031. float: left;
  2032. width: 205px;
  2033. height: 160px;
  2034. margin-top: 20px;
  2035. padding-left: 40px;
  2036. box-sizing: border-box;
  2037. border-right: 1px solid #ececec;
  2038. .yslist {
  2039. font-family: Microsoft YaHei, Microsoft YaHei;
  2040. font-weight: bold;
  2041. font-size: 18px;
  2042. color: #333333;
  2043. line-height: 21px;
  2044. margin-bottom: 20px;
  2045. img {
  2046. margin-right: 10px;
  2047. vertical-align: middle;
  2048. }
  2049. a {
  2050. color: #333333;
  2051. }
  2052. }
  2053. }
  2054. .part6_right_content_list1 {
  2055. float: left;
  2056. width: 205px;
  2057. margin-top: 20px;
  2058. padding-left: 40px;
  2059. box-sizing: border-box;
  2060. .swlist {
  2061. font-family: Microsoft YaHei, Microsoft YaHei;
  2062. font-weight: bold;
  2063. font-size: 18px;
  2064. color: #333333;
  2065. line-height: 21px;
  2066. margin-bottom: 20px;
  2067. img {
  2068. margin-right: 10px;
  2069. vertical-align: middle;
  2070. }
  2071. a {
  2072. color: #333333;
  2073. }
  2074. }
  2075. }
  2076. }
  2077. }
  2078. }
  2079. }