index.less 81 KB

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