index.less 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. .farming {
  2. width: 100%;
  3. height: 680px;
  4. .farmerLeft,
  5. .farmerRight {
  6. float: left;
  7. }
  8. .farmerLeft {
  9. width: 720px;
  10. height: 616px;
  11. margin-right: 21px;
  12. .farmer {
  13. width: 720px;
  14. height: 330px;
  15. >h3 {
  16. font-family: Source Han Sans, Source Han Sans;
  17. font-weight: bold;
  18. font-size: 24px;
  19. color: #000000;
  20. text-align: left;
  21. font-style: normal;
  22. text-transform: none;
  23. border-bottom: 1px solid #D9D9D9;
  24. height: 50px;
  25. line-height: 50px;
  26. display: flex;
  27. justify-content: space-between;
  28. a.active {
  29. font-size: 22px;
  30. height: 50px;
  31. line-height: 50px;
  32. display: inline-block;
  33. color: #139602;
  34. font-weight: bold;
  35. box-sizing: border-box;
  36. width: auto;
  37. font-weight: bold;
  38. border-bottom: 3px solid #49A769;
  39. }
  40. .titleBoxTabs {
  41. span {
  42. a {
  43. font-size: 22px;
  44. height: 50px;
  45. line-height: 50px;
  46. display: inline-block;
  47. color: #333;
  48. box-sizing: border-box;
  49. }
  50. margin-right: 20px;
  51. }
  52. .active {
  53. a {
  54. color: #49A769;
  55. border-bottom: 3px solid #49A769;
  56. height: 50px;
  57. line-height: 50px;
  58. display: inline-block;
  59. box-sizing: border-box;
  60. margin-right: 40px;
  61. font-weight: bold;
  62. }
  63. }
  64. }
  65. span {
  66. color: #139602;
  67. height: 50px;
  68. line-height: 50px;
  69. display: inline-block;
  70. box-sizing: border-box;
  71. }
  72. >a {
  73. width: 65px;
  74. height: 50px;
  75. line-height: 50px;
  76. font-weight: 400;
  77. font-size: 16px;
  78. color: #333333;
  79. font-style: normal;
  80. text-transform: none;
  81. display: inline-block;
  82. }
  83. }
  84. ul.mode1ul_style1 {
  85. display: flex;
  86. align-items: center;
  87. justify-content: space-between;
  88. padding-top: 30px;
  89. li {
  90. position: relative;
  91. width: 349px;
  92. height: 236px;
  93. border-radius: 10px;
  94. box-sizing: border-box;
  95. overflow: hidden;
  96. img {
  97. width: 349px;
  98. height: 236px;
  99. }
  100. a {
  101. div {
  102. position: absolute;
  103. width: 320px;
  104. height: 48px;
  105. bottom: 35px;
  106. z-index: 10;
  107. left:15px;
  108. color: #fff;
  109. font-size: 16px;
  110. z-index: 99;
  111. span {
  112. display: inline-block;
  113. background: #9CD26B;
  114. font-size: 14px;
  115. color: #fff;
  116. padding: 2px 6px;
  117. border-radius: 4px;
  118. margin-right: 5px;
  119. }
  120. p {
  121. font-size: 16px;
  122. margin-top: 5px;
  123. height: 46px;
  124. }
  125. p:nth-child(1) {
  126. display: -webkit-box;
  127. -webkit-box-orient: vertical;
  128. -webkit-line-clamp: 2;
  129. overflow: hidden;
  130. text-overflow: ellipsis;
  131. word-break: break-all;
  132. }
  133. }
  134. }
  135. }
  136. }
  137. ul.mode1ul_style2 {
  138. display: flex;
  139. align-items: center;
  140. justify-content: space-between;
  141. flex-wrap: wrap;
  142. padding-top: 20px;
  143. li {
  144. width: 349px;
  145. height: 85px;
  146. border-radius: 10px;
  147. border-bottom: 1px solid #E6E6E6;
  148. box-sizing: border-box;
  149. margin-bottom: 22px;
  150. }
  151. p {
  152. font-size: 16px;
  153. color: #333333;
  154. margin-bottom: 4px;
  155. }
  156. p.title {
  157. width: 349px;
  158. height: 46px;
  159. display: -webkit-box;
  160. -webkit-box-orient: vertical;
  161. -webkit-line-clamp: 2;
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. word-break: break-all;
  165. }
  166. p.title:hover {
  167. color: #49A769;
  168. }
  169. }
  170. }
  171. .farmerbottom {
  172. width: 720px;
  173. height: 280px;
  174. img {
  175. width: 498px;
  176. height: 280px;
  177. }
  178. >.leftList {
  179. width: 290px;
  180. height: 280px;
  181. background-color: #f6f6f6;
  182. padding: 11px 26px 6px 20px;
  183. box-sizing: border-box;
  184. >li {
  185. width: 296px;
  186. height: 32px;
  187. color: #666666;
  188. font-size: 14px;
  189. margin-bottom: 14px;
  190. h4 {
  191. width: 249px;
  192. white-space: nowrap;
  193. overflow: hidden;
  194. text-overflow: ellipsis;
  195. font-family: Source Han Sans, Source Han Sans;
  196. height: 27px;
  197. line-height: 21px;
  198. font-size: 18px;
  199. color: #333333;
  200. font-weight: 400;
  201. em {
  202. display: inline-block;
  203. width: 8px;
  204. height: 8px;
  205. background-color: #333333;
  206. border-radius: 8px;
  207. }
  208. }
  209. p {
  210. width: 249px;
  211. height: 48px;
  212. // line-height: 24px;
  213. padding-left: 14px;
  214. // color: #333333;
  215. }
  216. a {
  217. color: #333333;
  218. }
  219. a:hover {
  220. color: #139602;
  221. }
  222. }
  223. >li:hover,
  224. >li:hover>a>h4 {
  225. color: #088f04;
  226. }
  227. >li:hover>a>h4>em {
  228. background-color: #088f04;
  229. }
  230. }
  231. }
  232. }
  233. .farmerRight {
  234. width: 450px;
  235. height: 600px;
  236. .rich,
  237. .inquire {
  238. width: 100%;
  239. height: 309px;
  240. >h3 {
  241. height: 36px;
  242. font-family: Source Han Sans, Source Han Sans;
  243. font-weight: bold;
  244. font-size: 24px;
  245. color: #000000;
  246. line-height: 28px;
  247. text-align: left;
  248. font-style: normal;
  249. text-transform: none;
  250. border-bottom: 1px solid #D9D9D9;
  251. height: 50px;
  252. line-height: 50px;
  253. display: flex;
  254. justify-content: space-between;
  255. .active {
  256. font-size: 22px;
  257. height: 50px;
  258. line-height: 50px;
  259. display: inline-block;
  260. color: #49A769;
  261. border-bottom: 3px solid #49A769;
  262. box-sizing: border-box;
  263. width: auto;
  264. font-weight: bold;
  265. }
  266. span {
  267. font-size: 22px;
  268. height: 50px;
  269. line-height: 50px;
  270. display: inline-block;
  271. color: #49A769;
  272. border-bottom: 3px solid #49A769;
  273. box-sizing: border-box;
  274. }
  275. a {
  276. width: 65px;
  277. height: 50px;
  278. line-height: 50px;
  279. font-size: 16px;
  280. color: #333333;
  281. font-weight: normal;
  282. }
  283. }
  284. .photo {
  285. height: 104px;
  286. margin-top: 23px;
  287. >.photoL:first-child {
  288. margin-right: 10px;
  289. }
  290. }
  291. .photoL {
  292. display: inline-block;
  293. width: 185px;
  294. height: 104px;
  295. border-radius: 6px;
  296. position: relative;
  297. a {
  298. width: 185px;
  299. height: 104px;
  300. }
  301. img {
  302. width: 185px;
  303. height: 104px;
  304. border-radius: 6px;
  305. }
  306. span {
  307. position: absolute;
  308. bottom: 0;
  309. left: 0;
  310. display: inline-block;
  311. padding-left: 7px;
  312. box-sizing: border-box;
  313. width: 185px;
  314. height: 22px;
  315. white-space: nowrap;
  316. overflow: hidden;
  317. text-overflow: ellipsis;
  318. background-color: rgba(0, 0, 0, 0.5);
  319. font-weight: 500px;
  320. font-size: 14px;
  321. color: #FFFFFF;
  322. line-height: 22px;
  323. }
  324. }
  325. .photoList {
  326. display: inline-block;
  327. width: 185px;
  328. height: 104px;
  329. position: relative;
  330. img {
  331. width: 185px;
  332. height: 104px;
  333. }
  334. span {
  335. position: absolute;
  336. bottom: 0;
  337. left: 0;
  338. display: inline-block;
  339. width: 185px;
  340. height: 30px;
  341. font-weight: 500;
  342. color: #FFFFFF;
  343. padding-top: 7px;
  344. padding-left: 6px;
  345. box-sizing: border-box;
  346. }
  347. }
  348. // 文字部分
  349. ul {
  350. height: 220px;
  351. margin-bottom: 10px;
  352. padding-top: 10px;
  353. li {
  354. height: 55px;
  355. padding: 20px 0 6px 0;
  356. border-bottom: 1px solid #E6E6E6;
  357. a {
  358. display: flex;
  359. color: #333333;
  360. font-size: 16px;
  361. .index {
  362. height: 48px;
  363. margin-right: 20px;
  364. }
  365. .title {
  366. height: 48px;
  367. display: -webkit-box;
  368. -webkit-box-orient: vertical;
  369. -webkit-line-clamp: 2;
  370. overflow: hidden;
  371. text-overflow: ellipsis;
  372. word-break: break-all;
  373. }
  374. }
  375. a:hover{
  376. color: #139609;
  377. }
  378. }
  379. li:nth-child(1) .index,li:nth-child(2) .index,li:nth-child(3) .index {
  380. color: #49A769;
  381. font-weight: bold;
  382. }
  383. }
  384. }
  385. .richList {
  386. margin-top: 30px;
  387. .richListPic,.richListPictow{
  388. a {
  389. color: #333333;
  390. font-size: 16px;
  391. display: flex;
  392. justify-content: space-between;
  393. align-items: center;
  394. img {
  395. width: 152px;
  396. height: 103px;
  397. margin-right: 10px;
  398. border-radius: 8px;
  399. }
  400. div {
  401. width: 285px;
  402. height: 103px;
  403. padding-top: 10px;
  404. box-sizing: border-box;
  405. border-bottom: 1px solid #D9D9D9;
  406. span {
  407. display: -webkit-box;
  408. -webkit-box-orient: vertical;
  409. -webkit-line-clamp: 3;
  410. font-weight: bold;
  411. overflow: hidden;
  412. text-overflow: ellipsis;
  413. word-break: break-all;
  414. &:hover {
  415. color: #49A769;
  416. }
  417. }
  418. }
  419. }
  420. }
  421. .richListPic {
  422. margin-bottom: 20px;
  423. }
  424. .richListPictow {
  425. margin-top: 30px;
  426. margin-bottom: 20px;
  427. }
  428. .richListText {
  429. margin-bottom: 17px;
  430. a {
  431. font-size: 16px;
  432. color: #333333;
  433. border-bottom: 1px solid #E6E6E6;
  434. display: block;
  435. height: 60px;
  436. line-height: 60px;
  437. &:hover {
  438. color: #49A769;
  439. }
  440. span {
  441. white-space: nowrap;
  442. overflow: hidden;
  443. text-overflow: ellipsis;
  444. display: block;
  445. }
  446. }
  447. }
  448. }
  449. .rich {
  450. .photoL {
  451. display: inline-block;
  452. width: 185px;
  453. height: 104px;
  454. position: relative;
  455. border-radius: 6px;
  456. img {
  457. width: 185px;
  458. height: 104px;
  459. border-radius: 6px;
  460. }
  461. span {
  462. position: absolute;
  463. bottom: 0;
  464. left: 0;
  465. display: inline-block;
  466. padding-left: 7px;
  467. box-sizing: border-box;
  468. width: 185px;
  469. height: 22px;
  470. white-space: nowrap;
  471. overflow: hidden;
  472. text-overflow: ellipsis;
  473. background-color: rgba(0, 0, 0, 0.5);
  474. font-weight: 500px;
  475. font-size: 14px;
  476. color: #FFFFFF;
  477. line-height: 22px;
  478. border-radius: 0px 0px 6px 6px;
  479. }
  480. }
  481. }
  482. .inquire {
  483. width: 380px;
  484. height: 280px;
  485. margin-top: 20px;
  486. background: #FFFFFF;
  487. box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  488. border-radius: 6px 6px 6px 6px;
  489. padding: 4px 6px;
  490. box-sizing: border-box;
  491. p {
  492. width: 328px;
  493. height: 69px;
  494. font-family: PingFang SC, PingFang SC;
  495. font-weight: 500;
  496. font-size: 18px;
  497. color: #333333;
  498. line-height: 21px;
  499. text-align: left;
  500. font-style: normal;
  501. text-transform: none;
  502. padding: 12px 20px 0 32px;
  503. }
  504. .radio {
  505. /deep/.el-radio {
  506. --el-radio-input-border-color-hover: #27881a;
  507. }
  508. /deep/.el-radio-group {
  509. align-items: center;
  510. display: inline-flex;
  511. flex-wrap: wrap;
  512. font-size: 0;
  513. padding-left: 35px;
  514. }
  515. /deep/.el-radio.el-radio--large {
  516. height: 29px;
  517. }
  518. /deep/.el-radio.el-radio--large .el-radio__label {
  519. font-family: PingFang SC, PingFang SC;
  520. font-weight: 400;
  521. font-size: 16px;
  522. color: #333333;
  523. }
  524. /deep/.el-radio.el-radio--large .el-radio__inner {
  525. height: 16px;
  526. width: 16px;
  527. }
  528. /deep/.el-radio__input.is-checked+.el-radio__label {
  529. color: #27881a;
  530. }
  531. /deep/.el-radio__input.is-checked .el-radio__inner {
  532. background: #33b023;
  533. border-color: #27881a;
  534. }
  535. }
  536. .btn {
  537. width: 188px;
  538. height: 32px;
  539. margin: 20px auto;
  540. button {
  541. width: 70px;
  542. height: 32px;
  543. line-height: 32px;
  544. border-radius: 6px;
  545. border: none;
  546. font-family: PingFang SC, PingFang SC;
  547. font-weight: 400;
  548. font-size: 16px;
  549. color: #999999;
  550. cursor: pointer;
  551. }
  552. .voting {
  553. background-color: #33b023;
  554. color: #fff;
  555. margin-right: 44px;
  556. }
  557. }
  558. }
  559. }
  560. }
  561. .scienceEducation {
  562. height: 710px;
  563. .scienceLeft,
  564. .scienceRight {
  565. float: left;
  566. }
  567. .adBox1 {
  568. margin-bottom: 20px;
  569. }
  570. .scienceLeft {
  571. width: 720px;
  572. height:700px;
  573. margin-right: 21px;
  574. }
  575. .scienceRight {
  576. width: 450px;
  577. height: 600px;
  578. >h3 {
  579. height: 36px;
  580. font-family: Source Han Sans, Source Han Sans;
  581. font-weight: bold;
  582. font-size: 24px;
  583. color: #000000;
  584. line-height: 28px;
  585. text-align: left;
  586. font-style: normal;
  587. text-transform: none;
  588. border-bottom: 1px solid #139602;
  589. height: 50px;
  590. line-height: 50px;
  591. display: flex;
  592. justify-content: space-between;
  593. span {
  594. color: #139602;
  595. border-bottom: 3px solid #139602;
  596. height: 50px;
  597. line-height: 50px;
  598. display: inline-block;
  599. box-sizing: border-box;
  600. a {
  601. color: #139602;
  602. }
  603. }
  604. >a {
  605. width: 65px;
  606. height: 50px;
  607. line-height: 50px;
  608. font-weight: 400;
  609. font-size: 16px;
  610. color: #333333;
  611. font-style: normal;
  612. text-transform: none;
  613. display: inline-block;
  614. }
  615. }
  616. .banner {
  617. width: 380px;
  618. height: 214px;
  619. margin-top: 20px;
  620. }
  621. .banner_b_img {
  622. .photo {
  623. height: 104px;
  624. margin-top: 23px;
  625. >.photoL:first-child {
  626. margin-right: 10px;
  627. }
  628. }
  629. .photoL {
  630. display: inline-block;
  631. width: 185px;
  632. height: 104px;
  633. position: relative;
  634. border-radius: 2px;
  635. img {
  636. width: 185px;
  637. height: 104px;
  638. border-radius: 2px;
  639. }
  640. span {
  641. position: absolute;
  642. top: 0;
  643. left: 0;
  644. display: inline-block;
  645. padding-left: 7px;
  646. box-sizing: border-box;
  647. width: 185px;
  648. height: 22px;
  649. white-space: nowrap;
  650. overflow: hidden;
  651. text-overflow: ellipsis;
  652. background-color: rgba(0, 0, 0, 0.5);
  653. font-weight: 500px;
  654. font-size: 14px;
  655. color: #FFFFFF;
  656. line-height: 22px;
  657. border-radius: 2px 2px 0px 0px;
  658. }
  659. }
  660. // .photoL {
  661. // margin-right: 5px;
  662. // }
  663. // ul {
  664. // width: 380px;
  665. // height: 186px;
  666. // >li {
  667. // height: 22px;
  668. // padding-top: 16px;
  669. // >strong {
  670. // display: inline-block;
  671. // width: 24px;
  672. // height: 24px;
  673. // line-height: 24px;
  674. // background-color: #cecece;
  675. // padding-left: 6px;
  676. // box-sizing: border-box;
  677. // font-family: Source Han Sans, Source Han Sans;
  678. // font-weight: 500;
  679. // font-size: 18px;
  680. // color: #FFFFFF;
  681. // font-style: normal;
  682. // text-transform: none;
  683. // }
  684. // >em {
  685. // display: inline-block;
  686. // width: 6px;
  687. // height: 6px;
  688. // border-radius: 10px;
  689. // border: 2px solid #8CBA86;
  690. // vertical-align: 5px;
  691. // }
  692. // a,
  693. // span {
  694. // display: inline-block;
  695. // width: 350px;
  696. // height: 22px;
  697. // white-space: nowrap;
  698. // overflow: hidden;
  699. // text-overflow: ellipsis;
  700. // font-family: PingFang SC, PingFang SC;
  701. // font-weight: 500;
  702. // font-size: 18px;
  703. // color: #333333;
  704. // line-height: 21px;
  705. // text-align: left;
  706. // font-style: normal;
  707. // text-transform: none;
  708. // padding-left: 9px;
  709. // }
  710. // >a:hover,
  711. // >span:hover {
  712. // color: #139609;
  713. // }
  714. // }
  715. // }
  716. ul {
  717. padding: 30px 10px 0 10px;
  718. li {
  719. margin-bottom: 32px;
  720. a {
  721. display: flex;
  722. align-items: center;
  723. justify-content: space-between;
  724. width: 410px;
  725. height: 50px;
  726. color: #333333;
  727. font-size: 16px;
  728. &:hover {
  729. color: #49A769;
  730. }
  731. p {
  732. display: -webkit-box;
  733. -webkit-box-orient: vertical;
  734. -webkit-line-clamp: 2;
  735. overflow: hidden;
  736. text-overflow: ellipsis;
  737. word-break: break-all;
  738. width: 337px;
  739. height: 46px;
  740. box-sizing: border-box;
  741. padding-left: 10px;
  742. border-left: 1px solid #D9D9D9;
  743. }
  744. }
  745. }
  746. }
  747. }
  748. }
  749. }
  750. .dynamic {
  751. height: 610px;
  752. .inner {
  753. height: 610px;
  754. }
  755. .innerLeft {
  756. .title {
  757. >h3 {
  758. height: 36px;
  759. font-family: Source Han Sans, Source Han Sans;
  760. font-weight: bold;
  761. font-size: 24px;
  762. color: #000000;
  763. line-height: 28px;
  764. text-align: left;
  765. font-style: normal;
  766. text-transform: none;
  767. border-bottom: 1px solid #139602;
  768. >a {
  769. float: right;
  770. width: 56px;
  771. height: 20px;
  772. line-height: 24px;
  773. font-weight: 400;
  774. font-size: 14px;
  775. color: #999999;
  776. font-style: normal;
  777. text-transform: none;
  778. }
  779. }
  780. }
  781. .protectRights {
  782. float: left;
  783. margin-top: 26px;
  784. .photoList {
  785. float: left;
  786. width: 387px;
  787. margin-right: 40px;
  788. >.top {
  789. width: 387px;
  790. height: 320px;
  791. position: relative;
  792. img {
  793. width: 387px;
  794. height: 320px;
  795. border-radius: 6px;
  796. }
  797. span {
  798. position: absolute;
  799. bottom: 0;
  800. left: 0;
  801. display: inline-block;
  802. width: 387px;
  803. height: 68px;
  804. white-space: nowrap;
  805. overflow: hidden;
  806. text-overflow: ellipsis;
  807. padding: 33px 33px 8px 13px;
  808. box-sizing: border-box;
  809. font-family: PingFang SC, PingFang SC;
  810. font-weight: 500;
  811. font-size: 18px;
  812. color: #FFFFFF;
  813. line-height: 21px;
  814. }
  815. }
  816. >.bottom {
  817. width: 387px;
  818. height: 202px;
  819. margin-top: 15px;
  820. >li {
  821. width: 185px;
  822. height: 210px;
  823. float: left;
  824. margin-right: 17px;
  825. background-color: #f5f5f5;
  826. img {
  827. width: 185px;
  828. height: 139px;
  829. border-radius: 6px;
  830. }
  831. p {
  832. width: 175px;
  833. height: 63px;
  834. display: -webkit-box;
  835. -webkit-box-orient: vertical;
  836. -webkit-line-clamp: 2;
  837. overflow: hidden;
  838. text-overflow: ellipsis;
  839. word-break: break-all;
  840. font-family: PingFang SC, PingFang SC;
  841. font-weight: 500;
  842. font-size: 18px;
  843. color: #333333;
  844. line-height: 30px;
  845. text-align: left;
  846. font-style: normal;
  847. text-transform: none;
  848. margin-left: 5px;
  849. }
  850. }
  851. >li:nth-child(2) {
  852. margin-right: 0;
  853. }
  854. }
  855. }
  856. .textList {
  857. float: left;
  858. width: 340px;
  859. height: 545px;
  860. >li {
  861. width: 340px;
  862. height: 27px;
  863. margin-bottom: 19px;
  864. h4 {
  865. width: 282px;
  866. height: 25px;
  867. white-space: nowrap;
  868. overflow: hidden;
  869. text-overflow: ellipsis;
  870. font-family: PingFang SC, PingFang SC;
  871. font-weight: 400;
  872. font-size: 18px;
  873. color: #333333;
  874. line-height: 21px;
  875. text-align: left;
  876. font-style: normal;
  877. text-transform: none;
  878. em {
  879. display: inline-block;
  880. width: 8px;
  881. height: 8px;
  882. margin-right: 6px;
  883. border-radius: 4px;
  884. background-color: #333333;
  885. }
  886. }
  887. p {
  888. padding-left: 14px;
  889. width: 249px;
  890. height: 48px;
  891. display: -webkit-box;
  892. -webkit-box-orient: vertical;
  893. -webkit-line-clamp: 2;
  894. overflow: hidden;
  895. text-overflow: ellipsis;
  896. word-break: break-all;
  897. font-family: PingFang SC, PingFang SC;
  898. font-weight: 400;
  899. font-size: 14px;
  900. color: #666666;
  901. line-height: 24px;
  902. text-align: left;
  903. font-style: normal;
  904. text-transform: none;
  905. }
  906. }
  907. a {
  908. color: #333333;
  909. }
  910. a:hover {
  911. color: #139602;
  912. }
  913. >li:hover>a>h4,
  914. >li:hover>a>p {
  915. color: #139602;
  916. }
  917. >li:hover>a>h4>em {
  918. background-color: #139602;
  919. }
  920. }
  921. }
  922. }
  923. .innerRight {
  924. .title {
  925. >h3 {
  926. height: 36px;
  927. font-family: Source Han Sans, Source Han Sans;
  928. font-weight: bold;
  929. font-size: 24px;
  930. color: #000000;
  931. line-height: 28px;
  932. text-align: left;
  933. font-style: normal;
  934. text-transform: none;
  935. border-bottom: 1px solid #139602;
  936. >a {
  937. float: right;
  938. width: 56px;
  939. height: 20px;
  940. line-height: 24px;
  941. font-weight: 400;
  942. font-size: 14px;
  943. color: #999999;
  944. font-style: normal;
  945. text-transform: none;
  946. }
  947. }
  948. }
  949. .dynamicList {
  950. width: 380px;
  951. margin-top: 26px;
  952. >li {
  953. width: 380px;
  954. height: 120px;
  955. margin-bottom: 21px;
  956. img {
  957. float: left;
  958. width: 160px;
  959. height: 120px;
  960. }
  961. .text {
  962. float: left;
  963. width: 220px;
  964. height: 120px;
  965. padding-left: 15px;
  966. box-sizing: border-box;
  967. font-size: 16px;
  968. >h5 {
  969. width: 199px;
  970. height: 52px;
  971. margin-bottom: 40px;
  972. display: -webkit-box;
  973. -webkit-box-orient: vertical;
  974. -webkit-line-clamp: 2;
  975. overflow: hidden;
  976. text-overflow: ellipsis;
  977. word-break: break-all;
  978. padding-top: 6px;
  979. font-family: PingFang SC, PingFang SC;
  980. font-weight: 600;
  981. font-size: 18px;
  982. color: #333333;
  983. line-height: 26px;
  984. text-align: left;
  985. font-style: normal;
  986. text-transform: none;
  987. }
  988. >p {
  989. width: 198px;
  990. height: 70px;
  991. display: -webkit-box;
  992. -webkit-box-orient: vertical;
  993. -webkit-line-clamp: 3;
  994. overflow: hidden;
  995. text-overflow: ellipsis;
  996. word-break: break-all;
  997. margin-top: 10px;
  998. font-family: PingFang SC, PingFang SC;
  999. font-weight: 400;
  1000. font-size: 14px;
  1001. color: #666666;
  1002. line-height: 24px;
  1003. text-align: left;
  1004. font-style: normal;
  1005. text-transform: none;
  1006. }
  1007. }
  1008. }
  1009. li:hover {
  1010. .text {
  1011. box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
  1012. background-color: #fff;
  1013. h5,
  1014. p {
  1015. color: #139602;
  1016. }
  1017. }
  1018. }
  1019. }
  1020. }
  1021. }
  1022. .policy {
  1023. height: 678px;
  1024. .inner {
  1025. height: 678px;
  1026. .innerLeft {
  1027. width: 790px;
  1028. height: 621px;
  1029. .title {
  1030. >h3 {
  1031. height: 36px;
  1032. font-family: Source Han Sans, Source Han Sans;
  1033. font-weight: bold;
  1034. font-size: 24px;
  1035. color: #000000;
  1036. line-height: 28px;
  1037. text-align: left;
  1038. font-style: normal;
  1039. text-transform: none;
  1040. border-bottom: 1px solid #139602;
  1041. >a {
  1042. float: right;
  1043. width: 56px;
  1044. height: 20px;
  1045. line-height: 24px;
  1046. font-weight: 400;
  1047. font-size: 14px;
  1048. color: #999999;
  1049. font-style: normal;
  1050. text-transform: none;
  1051. }
  1052. }
  1053. }
  1054. .policyList {
  1055. width: 790px;
  1056. margin-top: 20px;
  1057. >li {
  1058. width: 790px;
  1059. height: 121px;
  1060. margin-bottom: 20px;
  1061. img,
  1062. .text {
  1063. float: left;
  1064. }
  1065. img {
  1066. width: 224px;
  1067. height: 121px;
  1068. }
  1069. .text {
  1070. width: 566px;
  1071. height: 121px;
  1072. padding-left: 20px;
  1073. box-sizing: border-box;
  1074. >h5 {
  1075. padding: 13px 0 6px;
  1076. width: 536px;
  1077. height: 25px;
  1078. margin-bottom: 45px;
  1079. white-space: nowrap;
  1080. overflow: hidden;
  1081. text-overflow: ellipsis;
  1082. font-family: PingFang SC, PingFang SC;
  1083. font-weight: 600;
  1084. font-size: 18px;
  1085. color: #333333;
  1086. line-height: 21px;
  1087. text-align: left;
  1088. font-style: normal;
  1089. text-transform: none;
  1090. }
  1091. p {
  1092. width: 536px;
  1093. height: 30px;
  1094. display: -webkit-box;
  1095. -webkit-box-orient: vertical;
  1096. -webkit-line-clamp: 3;
  1097. overflow: hidden;
  1098. text-overflow: ellipsis;
  1099. word-break: break-all;
  1100. font-family: PingFang SC, PingFang SC;
  1101. font-weight: 400;
  1102. font-size: 14px;
  1103. color: #666666;
  1104. line-height: 24px;
  1105. text-align: left;
  1106. font-style: normal;
  1107. text-transform: none;
  1108. >span:first-child {
  1109. margin-right: 20px;
  1110. }
  1111. }
  1112. }
  1113. }
  1114. li:hover {
  1115. .text {
  1116. box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
  1117. background-color: #fff;
  1118. h5,
  1119. p {
  1120. color: #139602;
  1121. }
  1122. }
  1123. }
  1124. }
  1125. }
  1126. .innerRight {
  1127. .title {
  1128. h3 {
  1129. height: 36px;
  1130. font-family: Source Han Sans, Source Han Sans;
  1131. font-weight: bold;
  1132. font-size: 24px;
  1133. color: #000000;
  1134. line-height: 28px;
  1135. text-align: left;
  1136. font-style: normal;
  1137. text-transform: none;
  1138. border-bottom: 1px solid #139602;
  1139. a {
  1140. float: right;
  1141. width: 56px;
  1142. height: 20px;
  1143. line-height: 24px;
  1144. font-weight: 400;
  1145. font-size: 14px;
  1146. color: #999999;
  1147. font-style: normal;
  1148. text-transform: none;
  1149. }
  1150. }
  1151. }
  1152. .banner {
  1153. width: 380px;
  1154. height: 214px;
  1155. margin-top: 20px;
  1156. }
  1157. .banner_b_img {
  1158. .photo {
  1159. height: 104px;
  1160. margin-top: 23px;
  1161. }
  1162. .photoL {
  1163. display: inline-block;
  1164. width: 185px;
  1165. height: 104px;
  1166. position: relative;
  1167. img {
  1168. width: 185px;
  1169. height: 104px;
  1170. border-radius: 2px;
  1171. }
  1172. span {
  1173. position: absolute;
  1174. top: 0;
  1175. left: 0;
  1176. display: inline-block;
  1177. padding-left: 7px;
  1178. box-sizing: border-box;
  1179. width: 185px;
  1180. height: 22px;
  1181. white-space: nowrap;
  1182. overflow: hidden;
  1183. text-overflow: ellipsis;
  1184. background-color: rgba(0, 0, 0, 0.5);
  1185. font-weight: 500px;
  1186. font-size: 14px;
  1187. color: #FFFFFF;
  1188. line-height: 22px;
  1189. }
  1190. }
  1191. .photoL {
  1192. margin-right: 10px;
  1193. }
  1194. ul {
  1195. width: 380px;
  1196. height: 186px;
  1197. >li {
  1198. height: 22px;
  1199. padding-top: 16px;
  1200. >strong {
  1201. display: inline-block;
  1202. width: 24px;
  1203. height: 24px;
  1204. line-height: 24px;
  1205. background-color: #cecece;
  1206. padding-left: 6px;
  1207. box-sizing: border-box;
  1208. font-family: Source Han Sans, Source Han Sans;
  1209. font-weight: 500;
  1210. font-size: 18px;
  1211. color: #FFFFFF;
  1212. font-style: normal;
  1213. text-transform: none;
  1214. }
  1215. >em {
  1216. display: inline-block;
  1217. width: 6px;
  1218. height: 6px;
  1219. border-radius: 10px;
  1220. border: 2px solid #8CBA86;
  1221. vertical-align: middle;
  1222. }
  1223. a,
  1224. >span {
  1225. display: inline-block;
  1226. width: 350px;
  1227. height: 22px;
  1228. white-space: nowrap;
  1229. overflow: hidden;
  1230. text-overflow: ellipsis;
  1231. font-family: PingFang SC, PingFang SC;
  1232. font-weight: 500;
  1233. font-size: 18px;
  1234. color: #333333;
  1235. line-height: 21px;
  1236. text-align: left;
  1237. font-style: normal;
  1238. text-transform: none;
  1239. padding-left: 9px;
  1240. vertical-align: middle;
  1241. }
  1242. a:hover,
  1243. >span:hover {
  1244. color: #139609;
  1245. }
  1246. }
  1247. }
  1248. }
  1249. }
  1250. }
  1251. }
  1252. // 改版新增样式 start---------------------------------------->
  1253. .titleBox {
  1254. width: 1200px;
  1255. margin: 0 auto;
  1256. padding:60px 0;
  1257. img {
  1258. margin: 0 auto;
  1259. display: block;
  1260. }
  1261. }
  1262. //布局复制
  1263. .layoutCopy {
  1264. display: flex;
  1265. justify-content: space-between;
  1266. position: relative;
  1267. width: 1200px;
  1268. margin: 0 auto;
  1269. .layoutCopyLeft {
  1270. width: 720px;
  1271. .layoutCopyLeftTop {
  1272. width: 720px;
  1273. display: flex;
  1274. justify-content: space-between;
  1275. .layoutCopyLeft1 {
  1276. width: 350px;
  1277. }
  1278. .layoutCopyLeft2 {
  1279. width: 350px;
  1280. }
  1281. .layoutCopyAll {
  1282. width: 720px;
  1283. }
  1284. }
  1285. .layoutCopyAll {
  1286. width: 720px;
  1287. }
  1288. }
  1289. .layoutCopyRight {
  1290. width: 450px;
  1291. }
  1292. .layoutTitleBox {
  1293. border-bottom: 1px solid #D9D9D9;
  1294. margin-bottom: 40px;
  1295. display: flex;
  1296. justify-content: space-between;
  1297. .layoutTitleBoxTabs {
  1298. display: flex;
  1299. justify-content: space-between;
  1300. div.layoutTitle {
  1301. margin-right: 40px;
  1302. border-bottom: 0;
  1303. color: #333;
  1304. cursor: pointer;
  1305. font-weight: bold;
  1306. }
  1307. div.active {
  1308. border-bottom: 3px solid #49A769;
  1309. color: #49A769;
  1310. cursor: pointer;
  1311. }
  1312. }
  1313. .layoutTitle {
  1314. font-size: 22px;
  1315. color:#49A769;
  1316. border-bottom: 3px solid #49A769;
  1317. height: 50px;
  1318. line-height: 50px;
  1319. font-weight: bold;
  1320. a {
  1321. font-size: 22px;
  1322. color:#49A769;
  1323. }
  1324. }
  1325. .layoutMore {
  1326. color:#333333;
  1327. font-size: 16px;
  1328. height: 50px;
  1329. line-height: 50px;
  1330. a {
  1331. color:#333333;
  1332. font-size: 16px;
  1333. }
  1334. }
  1335. }
  1336. }
  1337. //布局内容样式
  1338. .layoutCopyData_style1 {
  1339. margin-bottom: 30px;
  1340. a:nth-child(1) {
  1341. color: #333333;
  1342. font-size: 16px;
  1343. display: flex;
  1344. justify-content: space-between;
  1345. align-items: center;
  1346. img {
  1347. width: 152px;
  1348. height: 103px;
  1349. margin-right: 10px;
  1350. border-radius: 8px;
  1351. }
  1352. div {
  1353. height:103px;
  1354. padding-top: 10px;
  1355. box-sizing: border-box;
  1356. border-bottom: 1px solid #D9D9D9;
  1357. span {
  1358. display: -webkit-box;
  1359. -webkit-box-orient: vertical;
  1360. -webkit-line-clamp: 3;
  1361. font-weight: bold;
  1362. overflow: hidden;
  1363. text-overflow: ellipsis;
  1364. word-break: break-all;
  1365. }
  1366. }
  1367. }
  1368. a:nth-child(1):hover {
  1369. color:#49A769
  1370. }
  1371. a:nth-child(2) {
  1372. margin-top: 30px;
  1373. display: -webkit-box;
  1374. -webkit-box-orient: vertical;
  1375. -webkit-line-clamp: 2;
  1376. overflow: hidden;
  1377. text-overflow: ellipsis;
  1378. word-break: break-all;
  1379. font-size: 16px;
  1380. color: #333333;
  1381. border-bottom: 1px solid #E6E6E6;
  1382. .title {
  1383. display: -webkit-box;
  1384. -webkit-box-orient: vertical;
  1385. -webkit-line-clamp: 2;
  1386. overflow: hidden;
  1387. text-overflow: ellipsis;
  1388. word-break: break-all;
  1389. height: 45px;
  1390. }
  1391. p {
  1392. margin-top: 10px;
  1393. margin-bottom: 15px;
  1394. }
  1395. }
  1396. a:hover .title{
  1397. color:#49A769
  1398. }
  1399. }
  1400. .layoutCopyData_style2 {
  1401. a {
  1402. margin-top: 43px;
  1403. font-size: 16px;
  1404. color: #333333;
  1405. display: block;
  1406. border-bottom: 1px solid #E6E6E6;
  1407. .title {
  1408. display: -webkit-box;
  1409. -webkit-box-orient: vertical;
  1410. -webkit-line-clamp: 2;
  1411. overflow: hidden;
  1412. text-overflow: ellipsis;
  1413. word-break: break-all;
  1414. height: 45px;
  1415. }
  1416. p {
  1417. margin-top: 10px;
  1418. margin-bottom: 15px;
  1419. }
  1420. }
  1421. a:nth-child(1) .title{
  1422. font-weight: bold;
  1423. }
  1424. a:hover .title{
  1425. color:#49A769
  1426. }
  1427. }
  1428. .layoutCopyData_style3 {
  1429. .style3link1 {
  1430. display: flex;
  1431. align-items: center;
  1432. justify-content: space-between;
  1433. .time {
  1434. width: 100px;
  1435. height: 100px;
  1436. background: #F4FFF7;
  1437. p:nth-child(1) {
  1438. font-size: 38px;
  1439. color: #49A769;
  1440. text-align: center;
  1441. border-bottom: 1px solid #49A769;
  1442. width: 75px;
  1443. margin: 0 auto;
  1444. margin-bottom: 5px;
  1445. padding-bottom: 5px;
  1446. padding-top: 10px;
  1447. }
  1448. p:nth-child(2) {
  1449. font-size: 15px;
  1450. color: #49A769;
  1451. text-align: center;
  1452. }
  1453. }
  1454. .title {
  1455. width: 590px;
  1456. font-size: 22px;
  1457. color: #333333;
  1458. display: -webkit-box;
  1459. -webkit-box-orient: vertical;
  1460. -webkit-line-clamp: 2;
  1461. overflow: hidden;
  1462. text-overflow: ellipsis;
  1463. word-break: break-all;
  1464. &:hover {
  1465. color: #49A769;
  1466. }
  1467. }
  1468. .introduce {
  1469. width: 590px;
  1470. font-size: 16px;
  1471. color: #999999;
  1472. margin-top: 10px;
  1473. display: -webkit-box;
  1474. -webkit-box-orient: vertical;
  1475. -webkit-line-clamp: 2;
  1476. height: 40px;
  1477. overflow: hidden;
  1478. text-overflow: ellipsis;
  1479. word-break: break-all;
  1480. }
  1481. margin-bottom: 20px;
  1482. }
  1483. .style3link2 {
  1484. display: flex;
  1485. justify-content: space-between;
  1486. height: 30px;
  1487. line-height: 30px;
  1488. color:#333333;
  1489. div {
  1490. display: flex;
  1491. justify-content: space-between;
  1492. align-items: center;
  1493. .title {
  1494. width: 600px;
  1495. // 修改这里,添加单行文本溢出省略样式
  1496. white-space: nowrap;
  1497. overflow: hidden;
  1498. text-overflow: ellipsis;
  1499. color:#333333;
  1500. font-size: 16px;
  1501. &:hover {
  1502. color: #49A769;
  1503. }
  1504. }
  1505. }
  1506. b {
  1507. width: 6px;
  1508. height: 6px;
  1509. background: #49A769;
  1510. margin-right: 8px;
  1511. }
  1512. margin-bottom: 10px;
  1513. }
  1514. }
  1515. .layoutCopyData_style4 {
  1516. .layoutCopyData_pic {
  1517. display: flex;
  1518. flex-wrap: wrap;
  1519. justify-content: space-between;
  1520. position: relative;
  1521. a {
  1522. width: 220px;
  1523. height: 140px;
  1524. display: block;
  1525. position: relative;
  1526. z-index: 99;
  1527. img {
  1528. width: 220px;
  1529. height: 140px;
  1530. border-radius: 8px;
  1531. }
  1532. p {
  1533. position: absolute;
  1534. bottom:10px;
  1535. width: 200px;
  1536. height: 18px;
  1537. font-size: 14px;
  1538. white-space: nowrap;
  1539. overflow: hidden;
  1540. text-overflow: ellipsis;
  1541. color: #fff;
  1542. left: 10px;
  1543. }
  1544. }
  1545. }
  1546. .layoutCopyData_text {
  1547. a {
  1548. border-bottom:1px soild #E6E6E6;
  1549. color: #333333;
  1550. font-size: 16px;
  1551. display: flex;
  1552. height: 41px;
  1553. display: flex;
  1554. align-items: center;
  1555. justify-content: space-between;
  1556. border-bottom: 1px solid #E6E6E6;
  1557. padding-bottom: 12px;
  1558. margin-top: 10px;
  1559. .title {
  1560. white-space: nowrap;
  1561. overflow: hidden;
  1562. text-overflow: ellipsis;
  1563. width: 431px;
  1564. &:hover {
  1565. color: #49A769;
  1566. }
  1567. }
  1568. .more {
  1569. width: 16px;
  1570. height: 16px;
  1571. background: #EDF7F0;
  1572. color: #49A769;
  1573. font-size: 12px;
  1574. text-align: center;
  1575. line-height: 15px;
  1576. border-radius: 3px;
  1577. }
  1578. }
  1579. }
  1580. }
  1581. // 改版新增样式 end---------------------------------------->
  1582. .lastPart3 {
  1583. width: 100%;
  1584. height: 700px;
  1585. .inner {
  1586. margin-top: 20px;
  1587. width: 1200px;
  1588. height: 660px;
  1589. background-color: #fff;
  1590. .lastPartTitle {
  1591. width: 100%;
  1592. height: 50px;
  1593. line-height: 50px;
  1594. border-bottom: 1px solid #D9D9D9;
  1595. .left {
  1596. span {
  1597. font-family: Microsoft YaHei, Microsoft YaHei;
  1598. font-weight: bold;
  1599. font-size: 22px;
  1600. color: #333333;
  1601. line-height: 19px;
  1602. letter-spacing: 1px;
  1603. text-align: left;
  1604. font-style: normal;
  1605. text-transform: none;
  1606. padding-bottom: 13px;
  1607. a {
  1608. color: #333;
  1609. height: 50px;
  1610. line-height: 50px;
  1611. display: inline-block;
  1612. box-sizing: border-box;
  1613. margin-right: 40px;
  1614. }
  1615. }
  1616. .active {
  1617. a {
  1618. color: #49A769;
  1619. border-bottom: 3px solid #49A769;
  1620. height: 50px;
  1621. line-height: 50px;
  1622. display: inline-block;
  1623. box-sizing: border-box;
  1624. margin-right: 40px;
  1625. font-weight: bold;
  1626. }
  1627. }
  1628. }
  1629. .right {
  1630. font-family: Microsoft YaHei, Microsoft YaHei;
  1631. font-weight: 400;
  1632. font-size: 16px;
  1633. color: #333333;
  1634. line-height: 19px;
  1635. letter-spacing: 1px;
  1636. text-align: left;
  1637. font-style: normal;
  1638. text-transform: none;
  1639. a {
  1640. color: #333333;
  1641. margin-right: 20px;
  1642. line-height: 50px;
  1643. padding-right: 20px;
  1644. border-right: 1px solid #e5e5e5;
  1645. }
  1646. >a:last-child {
  1647. border-right: none;
  1648. }
  1649. >a:hover {
  1650. cursor: pointer;
  1651. color: #49A769;
  1652. }
  1653. }
  1654. }
  1655. .lastPartContext {
  1656. margin-top: 30px;
  1657. .left {
  1658. float: left;
  1659. width: 720px;
  1660. ul.mode1ul_style1 {
  1661. display: flex;
  1662. align-items: center;
  1663. justify-content: space-between;
  1664. padding-top: 30px;
  1665. li {
  1666. position: relative;
  1667. width: 349px;
  1668. height: 236px;
  1669. border-radius: 10px;
  1670. box-sizing: border-box;
  1671. overflow: hidden;
  1672. img {
  1673. width: 349px;
  1674. height: 236px;
  1675. }
  1676. a {
  1677. div {
  1678. position: absolute;
  1679. width: 320px;
  1680. height: 42px;
  1681. bottom: 48px;
  1682. z-index: 10;
  1683. left:15px;
  1684. color: #fff;
  1685. font-size: 16px;
  1686. z-index: 99;
  1687. span {
  1688. display: inline-block;
  1689. background: #9CD26B;
  1690. font-size: 12px;
  1691. color: #fff;
  1692. padding: 2px 6px;
  1693. border-radius: 4px;
  1694. margin-right: 5px;
  1695. }
  1696. p {
  1697. font-size: 16px;
  1698. margin-top: 5px;
  1699. height: 45px;
  1700. margin-bottom: 10px;
  1701. }
  1702. p:nth-child(1) {
  1703. display: -webkit-box;
  1704. -webkit-box-orient: vertical;
  1705. -webkit-line-clamp: 2;
  1706. overflow: hidden;
  1707. text-overflow: ellipsis;
  1708. word-break: break-all;
  1709. }
  1710. }
  1711. }
  1712. }
  1713. }
  1714. ul.mode1ul_style2 {
  1715. display: flex;
  1716. align-items: center;
  1717. justify-content: space-between;
  1718. flex-wrap: wrap;
  1719. padding-top: 20px;
  1720. li {
  1721. width: 349px;
  1722. height: 85px;
  1723. border-radius: 10px;
  1724. border-bottom: 1px solid #E6E6E6;
  1725. box-sizing: border-box;
  1726. margin-bottom: 20px;
  1727. }
  1728. p {
  1729. font-size: 16px;
  1730. color: #333333;
  1731. margin-bottom: 4px;
  1732. }
  1733. p.title {
  1734. width: 349px;
  1735. height: 46px;
  1736. display: -webkit-box;
  1737. -webkit-box-orient: vertical;
  1738. -webkit-line-clamp: 2;
  1739. overflow: hidden;
  1740. text-overflow: ellipsis;
  1741. word-break: break-all;
  1742. }
  1743. p.title:hover {
  1744. color: #49A769;
  1745. }
  1746. }
  1747. }
  1748. .right {
  1749. float: right;
  1750. width: 450px;
  1751. height: 570px;
  1752. .title {
  1753. height: 56px;
  1754. h3 {
  1755. font-family: Microsoft YaHei, Microsoft YaHei;
  1756. font-weight: bold;
  1757. font-size: 22px;
  1758. color: #333333;
  1759. line-height: 19px;
  1760. letter-spacing: 1px;
  1761. text-align: left;
  1762. font-style: normal;
  1763. text-transform: none;
  1764. a {
  1765. float: right;
  1766. font-family: Microsoft YaHei, Microsoft YaHei;
  1767. font-weight: 400;
  1768. font-size: 16px;
  1769. color: #333333;
  1770. line-height: 19px;
  1771. letter-spacing: 1px;
  1772. text-align: left;
  1773. font-style: normal;
  1774. text-transform: none;
  1775. padding-top: 3px;
  1776. }
  1777. .leftTitle {
  1778. color: #333333;
  1779. font-size: 22px;
  1780. font-weight: bold;
  1781. float:left
  1782. }
  1783. }
  1784. }
  1785. .content {
  1786. li {
  1787. width: 450px;
  1788. height: 102px;
  1789. line-height: 50px;
  1790. border-top: 3px solid #49A769;
  1791. background-color: #fbfbfb;
  1792. margin-bottom: 33px;
  1793. a {
  1794. display: block;
  1795. width: 450px;
  1796. height: 102px;
  1797. span {
  1798. float: left;
  1799. padding: 28px 20px 14px 20px;
  1800. height: 46px;
  1801. width: 70px;
  1802. font-family: Microsoft YaHei, Microsoft YaHei;
  1803. font-weight: 400;
  1804. font-size: 15px;
  1805. color: #49A769;
  1806. line-height: 18px;
  1807. text-align: left;
  1808. font-style: normal;
  1809. text-transform: none;
  1810. strong {
  1811. display: inline-block;
  1812. font-family: Microsoft YaHei, Microsoft YaHei;
  1813. font-weight: 400;
  1814. font-size: 25px;
  1815. color: #49A769;
  1816. line-height: 29px;
  1817. text-align: center;
  1818. font-style: normal;
  1819. text-transform: none;
  1820. margin-bottom: 5px;
  1821. }
  1822. }
  1823. .text {
  1824. float: left;
  1825. width: 300px;
  1826. height: 30px;
  1827. overflow: hidden;
  1828. display: -webkit-box;
  1829. -webkit-box-orient: vertical;
  1830. -webkit-line-clamp: 2;
  1831. overflow: hidden;
  1832. text-overflow: ellipsis;
  1833. word-break: break-all;
  1834. line-height: 22px;
  1835. padding: 28px 0 14px 0;
  1836. color: #333333;
  1837. font-size: 16px;
  1838. }
  1839. }
  1840. }
  1841. >li:nth-child(2n) {
  1842. border-top: 3px solid #DF9A2B;
  1843. a {
  1844. display: block;
  1845. width: 450px;
  1846. height: 102px;
  1847. span {
  1848. float: left;
  1849. padding: 28px 20px 14px 20px;
  1850. width: 70px;
  1851. height: 46px;
  1852. font-family: Microsoft YaHei, Microsoft YaHei;
  1853. font-weight: 400;
  1854. font-size: 15px;
  1855. color: #DF9A2B;
  1856. line-height: 18px;
  1857. text-align: left;
  1858. font-style: normal;
  1859. text-transform: none;
  1860. strong {
  1861. display: inline-block;
  1862. font-family: Microsoft YaHei, Microsoft YaHei;
  1863. font-weight: 400;
  1864. font-size: 25px;
  1865. color: #DF9A2B;
  1866. line-height: 29px;
  1867. text-align: center;
  1868. font-style: normal;
  1869. text-transform: none;
  1870. margin-bottom: 5px;
  1871. }
  1872. }
  1873. .text {
  1874. float: left;
  1875. width: 300px;
  1876. line-height: 22px;
  1877. height: 30px;
  1878. display: -webkit-box;
  1879. -webkit-box-orient: vertical;
  1880. -webkit-line-clamp: 2;
  1881. overflow: hidden;
  1882. text-overflow: ellipsis;
  1883. word-break: break-all;
  1884. overflow: hidden;
  1885. padding: 28px 0 14px 0;
  1886. color: #333333;
  1887. }
  1888. }
  1889. }
  1890. >li:hover{
  1891. cursor: pointer;
  1892. .text{
  1893. color: #49A769;
  1894. }
  1895. }
  1896. >li:nth-child(2n):hover{
  1897. cursor: pointer;
  1898. .text{
  1899. color: #49A769;
  1900. }
  1901. }
  1902. }
  1903. }
  1904. }
  1905. }
  1906. }
  1907. //曹国庆
  1908. //public
  1909. .clearfix{overflow:hidden;}
  1910. .clearfix_2::after{content: '';display: block;height: 0;visibility: hidden;clear: both;}
  1911. .hiddenColor{visibility:hidden;}
  1912. .hand{cursor:pointer;}
  1913. .aTag_parent{position:relative;}
  1914. .aTag_parent>a,.aTag{display:block;width:100%;height:100%;position:absolute;z-index:99;border:0px;top:0px;left:0px;background:rgba(0,0,0,0);}
  1915. .dot1{display:block;word-break: keep-all; white-space: nowrap;overflow:hidden;text-overflow:ellipsis;}
  1916. .dot2{overflow:hidden;display:-webkit-box!important;-webkit-box-orient:vertical;-webkit-line-clamp:2;}
  1917. .dot3{overflow:hidden;display:-webkit-box!important;-webkit-box-orient:vertical;-webkit-line-clamp:3;}
  1918. .cover100 img{
  1919. display:block;
  1920. width:100%;
  1921. height:100%;
  1922. border-radius: 8px;
  1923. }
  1924. .back100{background-size:100% 100%;background-repeat:no-repeat;}
  1925. .index_main{margin:0 auto;}
  1926. .slow_6{-webkit-transition:all .6s;-moz-transition: all .6s;-ms-transition: all .6s;-o-transition: all .6s;transition: all .6s;}
  1927. //index 1
  1928. .index1 {width: 1200px;margin: 0 auto; margin-top: 20px;}
  1929. .index_1_box{float:left;width:29%;margin-right:2%;}
  1930. .index_1_head_box{
  1931. width:100%;
  1932. border-bottom:solid 1px #D9D9D9;
  1933. position:relative;
  1934. display: flex;
  1935. justify-content: space-between;
  1936. .leftTitle {
  1937. color: #333333;
  1938. font-size: 22px;
  1939. font-weight: bold;
  1940. }
  1941. }
  1942. .index_1_head_box a{
  1943. height:54px;
  1944. line-height:54px;
  1945. color:#333;
  1946. font-size:16px;
  1947. }
  1948. .index_1_head{float:left;height:54px;line-height:54px;color:#333;font-weight:bold;font-size:22px;border-bottom:solid 3px #fff;margin-right: 40px;}
  1949. .index_1_head a{display:block;height:54px;line-height:54px;color:#333;font-weight:bold;font-size:22px;}
  1950. .index_1_head_only{color:#49A769;border-bottom:solid 3px #49A769;}
  1951. .index_1_head_only a{color:#49A769;}
  1952. .index_1_head_box_line_none{border:none;}
  1953. .index_1_head:nth-of-type(even){margin:0px 20px;}
  1954. .index_1_img_li{margin-top:30px;position:relative;}
  1955. .index_1_img_li::after{content: '';display: block;position:absolute;right:0px;bottom:0px;height:0px;border-bottom:solid 1px #D9D9D9;width:188px;}
  1956. .index_1_img_li img{float:left;width:150px;height:85px;margin-right:13px;border-radius: 8px;}
  1957. .index_1_li_dot3{height:60px;line-height:20px;color:#333;font-size:16px;font-weight:bold;}
  1958. .index_1_li{width:100%;border-bottom:solid 1px #D9D9D9;margin-bottom: 30px;}
  1959. .index_1_li_only {
  1960. height: 79px !important;
  1961. }
  1962. .index_1_li_dot2{height:38px;line-height:19px;color:#000;font-size:16px;}
  1963. .index_1_li_time{height:16px;line-height:14px;color:#999;font-size:14px}
  1964. .index_1_li_bold {
  1965. margin-top: 30px;
  1966. }
  1967. .index_1_li_bold .index_1_li_dot2{font-weight:bold;line-height:20px;height:40px;}
  1968. .index_1_li_bold .index_1_li_time{display: block; }
  1969. .index_1_li_dot2:hover{color:#49A769;}
  1970. .index_1_li_dot3:hover{color:#49A769;}
  1971. .index_1_li {
  1972. a {
  1973. display: block;
  1974. padding-bottom: 10px;
  1975. }
  1976. }
  1977. .index_1_box_right{width:450px;float:right;}
  1978. .index_1_box_right_img_ul{margin-top:30px;}
  1979. .index_1_box_right_img_li{width:49%;height:140px;border-radius:4px;position:relative;margin-bottom:5px;}
  1980. .index_1_box_right_img_li:nth-of-type(odd){float:left;}
  1981. .index_1_box_right_img_li:nth-of-type(even){float:right;}
  1982. .index_1_box_right_img_li_dot1{
  1983. position:absolute;
  1984. width:100%;
  1985. height:33px;
  1986. line-height:33px;
  1987. box-sizing:border-box;
  1988. padding:0px 8px;
  1989. left:0px;
  1990. bottom:0px;
  1991. font-size:16px;
  1992. color:#fff;
  1993. }
  1994. .index_1_box_right_li{
  1995. border-bottom:solid 1px #E6E6E6;
  1996. width:98%;
  1997. margin:0px auto;
  1998. a {
  1999. .index_1_box_right_li_dot1 {
  2000. &:hover {
  2001. color: #49A769;
  2002. }
  2003. }
  2004. }
  2005. }
  2006. .index_1_box_right_li_dot1{height:55px;line-height:55px;color:#333;font-size:16px;}
  2007. .index_1_box_right_li_font{float:right;padding:4px;background:#e8f5e6;color:#49A769;font-size:14px;margin-top:14px;border-radius:2px;margin-left:14px;}
  2008. .index_2,.index_1,.index_3 {
  2009. width: 1200px;margin: 0 auto;margin-top:15px;
  2010. }
  2011. .index_2_head_box{border-bottom:solid 1px #D9D9D9;margin-bottom:30px;}
  2012. .index_1_head_box_2{float:left;width:auto;border:none;}
  2013. .index_2_head_a_box{ margin-top:11px;float:right;}
  2014. .index_2_head_a_box a{float:left;height:12px;line-height:12px;color:#333;font-size:16px;padding:0 20px;border-left:solid 1px #ccc;margin:10px 0px;}
  2015. .index_2_head_a_box a:nth-of-type(1){border:none;}
  2016. .index_2_big_img_li{
  2017. height:236px;
  2018. position:relative;
  2019. margin:0px auto 20px;
  2020. border-radius:6px;
  2021. overflow: hidden;
  2022. }
  2023. .index_2_big_img_li::after{
  2024. content: '';
  2025. display: block;
  2026. width:100%;
  2027. height:68px;
  2028. z-index:44;
  2029. left:0px;
  2030. bottom:0px;
  2031. position:absolute;
  2032. background:linear-gradient(to bottom,rgba(0,0,0,0),black);
  2033. opacity:.5;
  2034. }
  2035. .index_2_big_img_li_dot2{position:absolute;width:100%;padding:0 8px;box-sizing:border-box;font-size:16px;color:#fff;height:38px;line-height:19px;left:0px;bottom:28px; z-index:111;}
  2036. .index_2_big_img_li_dot2_tag{float:left;background:#49A769;color:#fff;font-size:14px;height:18px;line-height:18px;margin:1px 4px 0px 0px;padding:0px 3px;z-index:111;}
  2037. .index_1_box_right_img_ul_2{margin:20px auto 20px;}
  2038. .index_1_box_right_img_ul_2 .index_1_box_right_img_li{height:115px;margin-bottom:0px;}
  2039. .index_2_li{
  2040. border-bottom:solid 1px #E6E6E6;
  2041. padding:29px 0px;
  2042. width:100%;
  2043. a {
  2044. .index_2_li_dot2 {
  2045. &:hover {
  2046. color: #49A769;
  2047. }
  2048. }
  2049. }
  2050. }
  2051. .index_2_li_time_box{
  2052. float:left;
  2053. background:#F4FFF7;
  2054. width:100px;
  2055. margin-right:30px;
  2056. padding:10px 0px;
  2057. }
  2058. .index_2_li_time_head{margin:0px auto 0;border-bottom:solid 1px #49A769;width:75px;font-size:38px;color:#49A769;height:44px;line-height:44px;text-align:center;}
  2059. .index_2_li_time_foot{text-align:center;font-size:15px;color:#49A769;width:100%;margin:0px auto 0px;}
  2060. .index_2_li_dot2{height:42px;line-height:21px;color:#333;font-size:16px;margin-top:11px;}
  2061. .index_3_box_left{float:left;width:720px;}
  2062. .index_3_li{
  2063. border-bottom:solid 1px #E6E6E6;
  2064. padding:18px 0px;
  2065. width:49%;
  2066. font-size: 16px;
  2067. p {
  2068. color: #333333;
  2069. padding-left: 20px;
  2070. }
  2071. a:hover {
  2072. p.title {
  2073. color: #33b023;
  2074. }
  2075. }
  2076. .title {
  2077. height: 42px;
  2078. display: -webkit-box;
  2079. -webkit-box-orient: vertical;
  2080. -webkit-line-clamp: 2;
  2081. overflow: hidden;
  2082. text-overflow: ellipsis;
  2083. word-break: break-all;
  2084. b.lis {
  2085. background: #E6E6E6;
  2086. width: 6px;
  2087. height: 6px;
  2088. display: inline-block;
  2089. margin-bottom: 2px;
  2090. margin-right: 5px;
  2091. }
  2092. }
  2093. }
  2094. .index_3_li:nth-of-type(1),.index_3_li:nth-of-type(2){
  2095. font-weight: bold;
  2096. }
  2097. .index_3_li:nth-of-type(odd){float:left;}
  2098. .index_3_li:nth-of-type(even){float:right;}
  2099. .index_3 .index_2_head_box{margin-bottom:0px;}
  2100. .index_3_li_dot2{position:relative;width:100%;box-sizing:border-box;padding:0px 20px;height:42px;line-height:21px}
  2101. .index_3_li_dot2::after{content: '';display: block;width:6px;height:6px;z-index:144;left:0px;top:10px;position:absolute;background:#E6E6E6;}
  2102. .index_3_li_color{
  2103. border-bottom:solid 1px #49A769 !important;
  2104. b.active {
  2105. background: #33b023 !important;
  2106. width: 6px;
  2107. height: 6px;
  2108. display: inline-block;
  2109. margin-bottom: 2px;
  2110. margin-right: 5px;
  2111. }
  2112. }
  2113. .index_3_li_color .index_3_li_dot2::after{background:#49A769;}
  2114. .index_3_li_color .index_3_li_dot2{font-weight:bold;}
  2115. .banner_1_vote{width:100%;position:relative;}
  2116. .banner_1_vote img,.banner_1_vote a{width:100%;display:block;}
  2117. .banner_1_vote_h4{font-size:32px;color:#fff;position:absolute;z-index:11;left:0px;top:0px;}
  2118. .index_3_box_vote{
  2119. width:100%;
  2120. box-sizing:border-box;
  2121. border:solid 1px #FBFBFB;
  2122. background: #FBFBFB;
  2123. .inquire {
  2124. width: 450px;
  2125. height: 394px;
  2126. margin-top: 20px;
  2127. border-radius: 6px 6px 6px 6px;
  2128. padding: 4px 6px;
  2129. box-sizing: border-box;
  2130. p {
  2131. width: 380px;
  2132. height: 69px;
  2133. font-family: PingFang SC, PingFang SC;
  2134. font-weight: 500;
  2135. font-size: 18px;
  2136. color: #333333;
  2137. line-height: 21px;
  2138. text-align: left;
  2139. font-style: normal;
  2140. text-transform: none;
  2141. padding: 12px 20px 0 32px;
  2142. }
  2143. .radio {
  2144. /deep/.el-radio {
  2145. --el-radio-input-border-color-hover: #27881a;
  2146. }
  2147. /deep/.el-radio-group {
  2148. align-items: center;
  2149. display: inline-flex;
  2150. flex-wrap: wrap;
  2151. font-size: 0;
  2152. padding-left: 35px;
  2153. }
  2154. /deep/.el-radio.el-radio--large {
  2155. width: 380px;
  2156. height: 29px;
  2157. margin-bottom: 15px;
  2158. }
  2159. /deep/.el-radio.el-radio--large .el-radio__label {
  2160. font-family: PingFang SC, PingFang SC;
  2161. font-weight: 400;
  2162. font-size: 16px;
  2163. color: #333333;
  2164. }
  2165. /deep/.el-radio.el-radio--large .el-radio__inner {
  2166. height: 16px;
  2167. width: 16px;
  2168. }
  2169. /deep/.el-radio__input.is-checked+.el-radio__label {
  2170. color: #27881a;
  2171. }
  2172. /deep/.el-radio__input.is-checked .el-radio__inner {
  2173. background: #33b023;
  2174. border-color: #27881a;
  2175. }
  2176. }
  2177. .btn {
  2178. width: 188px;
  2179. height: 32px;
  2180. margin: 20px auto;
  2181. button {
  2182. width: 70px;
  2183. height: 32px;
  2184. line-height: 32px;
  2185. border-radius: 6px;
  2186. border: none;
  2187. font-family: PingFang SC, PingFang SC;
  2188. font-weight: 400;
  2189. font-size: 16px;
  2190. color: #999999;
  2191. }
  2192. .voting {
  2193. background-color: #49A769;
  2194. color: #fff;
  2195. margin-right: 44px;
  2196. cursor: pointer;
  2197. }
  2198. .look {
  2199. cursor: pointer;
  2200. }
  2201. }
  2202. }
  2203. }
  2204. .index_1_li {
  2205. height: 83px;
  2206. .index_1_li_time {
  2207. margin-top: 10px;
  2208. }
  2209. }
  2210. .index_1_ul_mrbot {
  2211. margin-bottom: 30px;
  2212. }
  2213. .imgbg::after{
  2214. content: '';
  2215. display: block;
  2216. width:100%;
  2217. height:68px;
  2218. z-index:44;
  2219. left:0px;
  2220. bottom:0px;
  2221. position:absolute;
  2222. background:linear-gradient(to bottom,rgba(0,0,0,0),black);
  2223. opacity:.5;
  2224. }