| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069 |
- .farming {
- width: 100%;
- height: 664px;
- .farmerLeft,
- .farmerRight {
- float: left;
- }
- .farmerLeft {
- width: 720px;
- height: 616px;
- margin-right: 21px;
- .farmer {
- width: 720px;
- height: 330px;
- >h3 {
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #D9D9D9;
- height: 50px;
- line-height: 50px;
- display: flex;
- justify-content: space-between;
- a.active {
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- color: #49a769;
- font-weight: bold;
- box-sizing: border-box;
- width: auto;
- font-weight: bold;
- border-bottom: 3px solid #49A769;
- }
- .titleBoxTabs {
- a {
- color: #333;
- }
- span {
- a {
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- }
- margin-right: 20px;
- }
- .active {
- a {
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- margin-right: 40px;
- font-weight: bold;
- }
- a.active {
- color: #49a769;
- border-bottom: 3px solid #49A769;
- }
- }
- a.active {
- color: #49a769;
- border-bottom: 3px solid #49A769;
- }
- }
- span {
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- }
- >a {
- width: 65px;
- height: 50px;
- line-height: 50px;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- font-style: normal;
- text-transform: none;
- display: inline-block;
- }
- }
- ul.mode1ul_style1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-top: 30px;
- li {
- position: relative;
- width: 349px;
- height: 236px;
- border-radius: 10px;
- box-sizing: border-box;
- overflow: hidden;
- img {
- width: 349px;
- height: 236px;
- }
- a {
- div {
- position: absolute;
- width: 320px;
- height: 48px;
- bottom: 10px;
- z-index: 10;
- left: 15px;
- color: #fff;
- font-size: 16px;
- z-index: 99;
- span {
- display: inline-block;
- background: #9CD26B;
- font-size: 14px;
- color: #fff;
- padding: 2px 6px;
- border-radius: 4px;
- margin-right: 5px;
- }
- p {
- font-size: 16px;
- margin-top: 5px;
- height: 46px;
- }
- p:nth-child(1) {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- }
- }
- }
- }
- ul.mode1ul_style2 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- padding-top: 20px;
- li {
- width: 349px;
- height: 58px;
- border-radius: 10px;
- border-bottom: 1px solid #E6E6E6;
- box-sizing: border-box;
- margin-bottom: 22px;
- }
- p {
- font-size: 16px;
- color: #333333;
- margin-bottom: 4px;
- }
- p.title {
- width: 349px;
- height: 46px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- p.title:hover {
- color: #49A769;
- }
- }
- }
- .farmerbottom {
- width: 720px;
- height: 280px;
- img {
- width: 498px;
- height: 280px;
- }
- >.leftList {
- width: 290px;
- height: 280px;
- background-color: #f6f6f6;
- padding: 11px 26px 6px 20px;
- box-sizing: border-box;
- >li {
- width: 296px;
- height: 32px;
- color: #666666;
- font-size: 14px;
- margin-bottom: 14px;
- h4 {
- width: 249px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: Source Han Sans, Source Han Sans;
- height: 27px;
- line-height: 21px;
- font-size: 18px;
- color: #333333;
- font-weight: 400;
- em {
- display: inline-block;
- width: 8px;
- height: 8px;
- background-color: #333333;
- border-radius: 8px;
- }
- }
- p {
- width: 249px;
- height: 48px;
- // line-height: 24px;
- padding-left: 14px;
- // color: #333333;
- }
- a {
- color: #333333;
- }
- a:hover {
- color: #139602;
- }
- }
- >li:hover,
- >li:hover>a>h4 {
- color: #088f04;
- }
- >li:hover>a>h4>em {
- background-color: #088f04;
- }
- }
- }
- }
- .farmerRight {
- width: 450px;
- height: 600px;
- .rich,
- .inquire {
- width: 100%;
- height: 309px;
- >h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #D9D9D9;
- height: 50px;
- line-height: 50px;
- display: flex;
- justify-content: space-between;
- .active {
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- color: #49A769;
- border-bottom: 3px solid #49A769;
- box-sizing: border-box;
- width: auto;
- font-weight: bold;
- }
- span {
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- color: #49A769;
- border-bottom: 3px solid #49A769;
- box-sizing: border-box;
- }
- a {
- width: 65px;
- height: 50px;
- line-height: 50px;
- font-size: 16px;
- color: #333333;
- font-weight: normal;
- }
- }
- .photo {
- height: 104px;
- margin-top: 23px;
- >.photoL:first-child {
- margin-right: 10px;
- }
- }
- .photoL {
- display: inline-block;
- width: 185px;
- height: 104px;
- border-radius: 6px;
- position: relative;
- a {
- width: 185px;
- height: 104px;
- }
- img {
- width: 185px;
- height: 104px;
- border-radius: 6px;
- }
- span {
- position: absolute;
- bottom: 0;
- left: 0;
- display: inline-block;
- padding-left: 7px;
- box-sizing: border-box;
- width: 185px;
- height: 22px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background-color: rgba(0, 0, 0, 0.5);
- font-weight: 500px;
- font-size: 14px;
- color: #FFFFFF;
- line-height: 22px;
- }
- }
- .photoList {
- display: inline-block;
- width: 185px;
- height: 104px;
- position: relative;
- img {
- width: 185px;
- height: 104px;
- }
- span {
- position: absolute;
- bottom: 0;
- left: 0;
- display: inline-block;
- width: 185px;
- height: 30px;
- font-weight: 500;
- color: #FFFFFF;
- padding-top: 7px;
- padding-left: 6px;
- box-sizing: border-box;
- }
- }
- // 文字部分
- ul {
- height: 220px;
- margin-bottom: 10px;
- padding-top: 10px;
- li {
- height: 55px;
- padding: 10px 0 6px 0;
- border-bottom: 1px solid #E6E6E6;
- a {
- display: flex;
- color: #333333;
- font-size: 16px;
- .index {
- height: 48px;
- margin-right: 20px;
- }
- .title {
- height: 48px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- }
- a:hover {
- color: #139609;
- }
- }
- li:nth-child(1) .index,
- li:nth-child(2) .index,
- li:nth-child(3) .index {
- color: #49A769;
- font-weight: bold;
- }
- }
- }
- .richList {
- margin-top: 30px;
- .richListPic,
- .richListPictow {
- a {
- color: #333333;
- font-size: 16px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- img {
- width: 152px;
- height: 103px;
- margin-right: 10px;
- border-radius: 8px;
- }
- div {
- width: 285px;
- height: 103px;
- padding-top: 10px;
- box-sizing: border-box;
- border-bottom: 1px solid #D9D9D9;
- span {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- &:hover {
- color: #49A769;
- }
- }
- }
- }
- }
- .richListPic {
- margin-bottom: 20px;
- }
- .richListPictow {
- margin-top: 30px;
- margin-bottom: 20px;
- }
- .richListText {
- margin-bottom: 17px;
- a {
- font-size: 16px;
- color: #333333;
- border-bottom: 1px solid #E6E6E6;
- display: block;
- height: 60px;
- line-height: 60px;
- &:hover {
- color: #49A769;
- }
- span {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: block;
- }
- }
- }
- }
- .rich {
- .photoL {
- display: inline-block;
- width: 185px;
- height: 104px;
- position: relative;
- border-radius: 6px;
- img {
- width: 185px;
- height: 104px;
- border-radius: 6px;
- }
- span {
- position: absolute;
- bottom: 0;
- left: 0;
- display: inline-block;
- padding-left: 7px;
- box-sizing: border-box;
- width: 185px;
- height: 22px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background-color: rgba(0, 0, 0, 0.5);
- font-weight: 500px;
- font-size: 14px;
- color: #FFFFFF;
- line-height: 22px;
- border-radius: 0px 0px 6px 6px;
- }
- }
- }
- .inquire {
- width: 380px;
- height: 280px;
- margin-top: 20px;
- background: #FFFFFF;
- box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
- border-radius: 6px 6px 6px 6px;
- padding: 4px 6px;
- box-sizing: border-box;
- p {
- width: 328px;
- height: 69px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding: 12px 20px 0 32px;
- }
- .radio {
- /deep/.el-radio {
- --el-radio-input-border-color-hover: #27881a;
- }
- /deep/.el-radio-group {
- align-items: center;
- display: inline-flex;
- flex-wrap: wrap;
- font-size: 0;
- padding-left: 35px;
- }
- /deep/.el-radio.el-radio--large {
- height: 29px;
- }
- /deep/.el-radio.el-radio--large .el-radio__label {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- }
- /deep/.el-radio.el-radio--large .el-radio__inner {
- height: 16px;
- width: 16px;
- }
- /deep/.el-radio__input.is-checked+.el-radio__label {
- color: #27881a;
- }
- /deep/.el-radio__input.is-checked .el-radio__inner {
- background: #33b023;
- border-color: #27881a;
- }
- }
- .btn {
- width: 188px;
- height: 32px;
- margin: 20px auto;
- button {
- width: 70px;
- height: 32px;
- line-height: 32px;
- border-radius: 6px;
- border: none;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #999999;
- cursor: pointer;
- }
- .voting {
- background-color: #33b023;
- color: #fff;
- margin-right: 44px;
- }
- }
- }
- }
- }
- .scienceEducation {
- height: 694px;
- .scienceLeft,
- .scienceRight {
- float: left;
- }
- .adBox1 {
- margin-bottom: 20px;
- width: 450px;
- height: 290px;
- overflow: hidden;
- a {
- display: block;
- height: 290px;
- }
- img {
- width: 450px;
- height: 290px;
- }
- }
- .scienceLeft {
- width: 720px;
- height: 700px;
- margin-right: 21px;
- }
- .scienceRight {
- width: 450px;
- height: 600px;
- >h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- height: 50px;
- line-height: 50px;
- display: flex;
- justify-content: space-between;
- span {
- color: #49a769;
- border-bottom: 3px solid #139602;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- a {
- color: #49a769;
- }
- }
- >a {
- width: 65px;
- height: 50px;
- line-height: 50px;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- font-style: normal;
- text-transform: none;
- display: inline-block;
- }
- }
- .banner {
- width: 380px;
- height: 214px;
- margin-top: 20px;
- }
- .banner_b_img {
- .photo {
- height: 104px;
- margin-top: 23px;
- >.photoL:first-child {
- margin-right: 10px;
- }
- }
- .photoL {
- display: inline-block;
- width: 185px;
- height: 104px;
- position: relative;
- border-radius: 2px;
- img {
- width: 185px;
- height: 104px;
- border-radius: 2px;
- }
- span {
- position: absolute;
- top: 0;
- left: 0;
- display: inline-block;
- padding-left: 7px;
- box-sizing: border-box;
- width: 185px;
- height: 22px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background-color: rgba(0, 0, 0, 0.5);
- font-weight: 500px;
- font-size: 14px;
- color: #FFFFFF;
- line-height: 22px;
- border-radius: 2px 2px 0px 0px;
- }
- }
- // .photoL {
- // margin-right: 5px;
- // }
- // ul {
- // width: 380px;
- // height: 186px;
- // >li {
- // height: 22px;
- // padding-top: 16px;
- // >strong {
- // display: inline-block;
- // width: 24px;
- // height: 24px;
- // line-height: 24px;
- // background-color: #cecece;
- // padding-left: 6px;
- // box-sizing: border-box;
- // font-family: Source Han Sans, Source Han Sans;
- // font-weight: 500;
- // font-size: 18px;
- // color: #FFFFFF;
- // font-style: normal;
- // text-transform: none;
- // }
- // >em {
- // display: inline-block;
- // width: 6px;
- // height: 6px;
- // border-radius: 10px;
- // border: 2px solid #8CBA86;
- // vertical-align: 5px;
- // }
- // a,
- // span {
- // display: inline-block;
- // width: 350px;
- // height: 22px;
- // white-space: nowrap;
- // overflow: hidden;
- // text-overflow: ellipsis;
- // font-family: PingFang SC, PingFang SC;
- // font-weight: 500;
- // font-size: 18px;
- // color: #333333;
- // line-height: 21px;
- // text-align: left;
- // font-style: normal;
- // text-transform: none;
- // padding-left: 9px;
- // }
- // >a:hover,
- // >span:hover {
- // color: #139609;
- // }
- // }
- // }
- ul {
- padding: 30px 0 0 0;
- li {
- margin-bottom: 5px;
- a {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 450px;
- height: 55px;
- color: #333333;
- font-size: 16px;
- border-bottom: 1px solid #E6E6E6;
- &:hover {
- color: #49A769;
- }
- p {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 450px;
- height: 46px;
- box-sizing: border-box;
- //padding-left: 10px;
- //border-left: 1px solid #D9D9D9;
- margin-bottom: 5px;
- }
- p:nth-last-child {
- border-bottom: none
- }
- }
- }
- }
- }
- }
- }
- .dynamic {
- height: 610px;
- .inner {
- height: 610px;
- }
- .innerLeft {
- .title {
- >h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- >a {
- float: right;
- width: 56px;
- height: 20px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .protectRights {
- float: left;
- margin-top: 26px;
- .photoList {
- float: left;
- width: 387px;
- margin-right: 40px;
- >.top {
- width: 387px;
- height: 320px;
- position: relative;
- img {
- width: 387px;
- height: 320px;
- border-radius: 6px;
- }
- span {
- position: absolute;
- bottom: 0;
- left: 0;
- display: inline-block;
- width: 387px;
- height: 68px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding: 33px 33px 8px 13px;
- box-sizing: border-box;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #FFFFFF;
- line-height: 21px;
- }
- }
- >.bottom {
- width: 387px;
- height: 202px;
- margin-top: 15px;
- >li {
- width: 185px;
- height: 210px;
- float: left;
- margin-right: 17px;
- background-color: #f5f5f5;
- img {
- width: 185px;
- height: 139px;
- border-radius: 6px;
- }
- p {
- width: 175px;
- height: 63px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 30px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- margin-left: 5px;
- }
- }
- >li:nth-child(2) {
- margin-right: 0;
- }
- }
- }
- .textList {
- float: left;
- width: 340px;
- height: 545px;
- >li {
- width: 340px;
- height: 27px;
- margin-bottom: 19px;
- h4 {
- width: 282px;
- height: 25px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- em {
- display: inline-block;
- width: 8px;
- height: 8px;
- margin-right: 6px;
- border-radius: 4px;
- background-color: #333333;
- }
- }
- p {
- padding-left: 14px;
- width: 249px;
- height: 48px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #666666;
- line-height: 24px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- a {
- color: #333333;
- }
- a:hover {
- color: #139602;
- }
- >li:hover>a>h4,
- >li:hover>a>p {
- color: #139602;
- }
- >li:hover>a>h4>em {
- background-color: #139602;
- }
- }
- }
- }
- .innerRight {
- .title {
- >h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- >a {
- float: right;
- width: 56px;
- height: 20px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .dynamicList {
- width: 380px;
- margin-top: 26px;
- >li {
- width: 380px;
- height: 120px;
- margin-bottom: 21px;
- img {
- float: left;
- width: 160px;
- height: 120px;
- }
- .text {
- float: left;
- width: 220px;
- height: 120px;
- padding-left: 15px;
- box-sizing: border-box;
- font-size: 16px;
- >h5 {
- width: 199px;
- height: 52px;
- margin-bottom: 40px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- padding-top: 6px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 18px;
- color: #333333;
- line-height: 26px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- >p {
- width: 198px;
- height: 70px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- margin-top: 10px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #666666;
- line-height: 24px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- li:hover {
- .text {
- box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
- background-color: #fff;
- h5,
- p {
- color: #139602;
- }
- }
- }
- }
- }
- }
- .policy {
- height: 678px;
- .inner {
- height: 678px;
- .innerLeft {
- width: 790px;
- height: 621px;
- .title {
- >h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- >a {
- float: right;
- width: 56px;
- height: 20px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .policyList {
- width: 790px;
- margin-top: 20px;
- >li {
- width: 790px;
- height: 121px;
- margin-bottom: 20px;
- img,
- .text {
- float: left;
- }
- img {
- width: 224px;
- height: 121px;
- }
- .text {
- width: 566px;
- height: 121px;
- padding-left: 20px;
- box-sizing: border-box;
- >h5 {
- padding: 13px 0 6px;
- width: 536px;
- height: 25px;
- margin-bottom: 45px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- p {
- width: 536px;
- height: 30px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #666666;
- line-height: 24px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- >span:first-child {
- margin-right: 20px;
- }
- }
- }
- }
- li:hover {
- .text {
- box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
- background-color: #fff;
- h5,
- p {
- color: #139602;
- }
- }
- }
- }
- }
- .innerRight {
- .title {
- h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- a {
- float: right;
- width: 56px;
- height: 20px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .banner {
- width: 380px;
- height: 214px;
- margin-top: 20px;
- }
- .banner_b_img {
- .photo {
- height: 104px;
- margin-top: 23px;
- }
- .photoL {
- display: inline-block;
- width: 185px;
- height: 104px;
- position: relative;
- img {
- width: 185px;
- height: 104px;
- border-radius: 2px;
- }
- span {
- position: absolute;
- top: 0;
- left: 0;
- display: inline-block;
- padding-left: 7px;
- box-sizing: border-box;
- width: 185px;
- height: 22px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background-color: rgba(0, 0, 0, 0.5);
- font-weight: 500px;
- font-size: 14px;
- color: #FFFFFF;
- line-height: 22px;
- }
- }
- .photoL {
- margin-right: 10px;
- }
- ul {
- width: 380px;
- height: 186px;
- >li {
- height: 22px;
- padding-top: 16px;
- >strong {
- display: inline-block;
- width: 24px;
- height: 24px;
- line-height: 24px;
- background-color: #cecece;
- padding-left: 6px;
- box-sizing: border-box;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 500;
- font-size: 18px;
- color: #FFFFFF;
- font-style: normal;
- text-transform: none;
- }
- >em {
- display: inline-block;
- width: 6px;
- height: 6px;
- border-radius: 10px;
- border: 2px solid #8CBA86;
- vertical-align: middle;
- }
- a,
- >span {
- display: inline-block;
- width: 350px;
- height: 22px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-left: 9px;
- vertical-align: middle;
- }
- a:hover,
- >span:hover {
- color: #139609;
- }
- }
- }
- }
- }
- }
- }
- // 改版新增样式 start---------------------------------------->
- .titleBox {
- width: 1200px;
- margin: 0 auto;
- padding: 20px 0 0 0;
- img {
- margin: 0 auto;
- display: block;
- width: 1200px;
- height: 90px;
- }
- }
- //布局复制
- .layoutCopy {
- display: flex;
- justify-content: space-between;
- position: relative;
- width: 1200px;
- margin: 0 auto;
- margin-bottom: 15px;
- .layoutCopyLeft {
- width: 720px;
- .layoutCopyLeftTop {
- width: 720px;
- display: flex;
- justify-content: space-between;
- .layoutCopyLeft1 {
- width: 350px;
- }
- .layoutCopyLeft2 {
- width: 350px;
- }
- .layoutCopyAll {
- width: 720px;
- }
- }
- .layoutCopyLeftBottom{
- height: 338px;
- }
- .layoutCopyAll {
- width: 720px;
- }
- }
- .layoutCopyRight {
- width: 450px;
- }
- .layoutTitleBox {
- border-bottom: 1px solid #D9D9D9;
- margin-bottom: 40px;
- display: flex;
- justify-content: space-between;
- .layoutTitleBoxTabs {
- display: flex;
- justify-content: space-between;
- div.layoutTitle {
- margin-right: 40px;
- border-bottom: 0;
- color: #333;
- cursor: pointer;
- font-weight: bold;
- }
- div.active {
- border-bottom: 3px solid #49A769;
- color: #49A769;
- cursor: pointer;
- }
- }
- .layoutTitle {
- font-size: 22px;
- color: #49A769;
- border-bottom: 3px solid #49A769;
- height: 50px;
- line-height: 50px;
- font-weight: bold;
- a {
- font-size: 22px;
- color: #49A769;
- }
- }
- .layoutMore {
- color: #333333;
- font-size: 16px;
- height: 50px;
- line-height: 50px;
- a {
- color: #333333;
- font-size: 16px;
- }
- }
- }
- }
- //布局内容样式
- .layoutCopyData_style1 {
- margin-bottom: 30px;
- a:nth-child(1) {
- color: #333333;
- font-size: 16px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- img {
- width: 152px;
- height: 103px;
- margin-right: 10px;
- border-radius: 8px;
- }
- div {
- width: 181px;
- height: 103px;
- box-sizing: border-box;
- border-bottom: 1px solid #D9D9D9;
- span {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- }
- }
- a:nth-child(1):hover {
- color: #49A769
- }
- a:nth-child(2) {
- margin-top: 30px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-size: 16px;
- color: #333333;
- border-bottom: 1px solid #E6E6E6;
- .title {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- height: 45px;
- }
- p {
- margin-top: 10px;
- margin-bottom: 15px;
- }
- }
- a:hover .title {
- color: #49A769
- }
- }
- .layoutCopyData_style2 {
- a {
- margin-top: 32px;
- font-size: 16px;
- color: #333333;
- display: block;
- border-bottom: 1px solid #E6E6E6;
- .title {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- height: 45px;
- }
- p {
- margin-top: 10px;
- margin-bottom: 13px;
- }
- }
- a:nth-child(1) .title {
- font-weight: bold;
- }
- a:hover .title {
- color: #49A769
- }
- }
- .layoutCopyData_style3 {
- .style3link1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .time {
- width: 100px;
- height: 100px;
- background: #F4FFF7;
- p:nth-child(1) {
- font-size: 38px;
- color: #49A769;
- text-align: center;
- border-bottom: 1px solid #49A769;
- width: 75px;
- margin: 0 auto;
- margin-bottom: 5px;
- padding-bottom: 5px;
- padding-top: 10px;
- }
- p:nth-child(2) {
- font-size: 15px;
- color: #49A769;
- text-align: center;
- }
- }
- .title {
- width: 590px;
- font-size: 22px;
- color: #333333;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- &:hover {
- color: #49A769;
- }
- }
- .introduce {
- width: 590px;
- font-size: 16px;
- color: #999999;
- margin-top: 10px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- height: 45px;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- margin-bottom: 20px;
- }
- .style3link2 {
- display: flex;
- justify-content: space-between;
- height: 30px;
- line-height: 30px;
- color: #333333;
- div {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title {
- width: 600px;
- // 修改这里,添加单行文本溢出省略样式
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #333333;
- font-size: 16px;
- &:hover {
- color: #49A769;
- }
- }
- }
- b {
- width: 6px;
- height: 6px;
- background: #49A769;
- margin-right: 8px;
- }
- margin-bottom: 10px;
- }
- }
- .layoutCopyData_style4 {
- .layoutCopyData_pic {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- position: relative;
- a {
- width: 220px;
- height: 140px;
- display: block;
- position: relative;
- z-index: 99;
- img {
- width: 220px;
- height: 140px;
- border-radius: 8px;
- }
- p {
- position: absolute;
- bottom: 10px;
- width: 200px;
- height: 18px;
- font-size: 14px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #fff;
- left: 10px;
- }
- }
- }
- .layoutCopyData_text {
- a {
- border-bottom: 1px soild #E6E6E6;
- color: #333333;
- font-size: 16px;
- display: flex;
- height: 41px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #E6E6E6;
- padding-bottom: 12px;
- margin-top: 10px;
- .title {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 431px;
- &:hover {
- color: #49A769;
- }
- }
- .more {
- width: 16px;
- height: 16px;
- background: #EDF7F0;
- color: #49A769;
- font-size: 12px;
- text-align: center;
- line-height: 15px;
- border-radius: 3px;
- }
- }
- }
- }
- // 改版新增样式 end---------------------------------------->
- .lastPart3 {
- width: 100%;
- height: 688px;
- .inner {
- margin-top: 20px;
- width: 1200px;
- height: 660px;
- background-color: #fff;
- .lastPartTitle {
- width: 100%;
- height: 50px;
- line-height: 50px;
- border-bottom: 1px solid #D9D9D9;
- .left {
- span {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 22px;
- color: #333333;
- line-height: 19px;
- letter-spacing: 1px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-bottom: 13px;
- a {
- color: #333;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- margin-right: 40px;
- }
- a.active {
- color: #49A769;
- border-bottom: 3px solid #49A769;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- }
- }
- .active {
- a {
- color: #49A769;
- border-bottom: 3px solid #49A769;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- margin-right: 40px;
- font-weight: bold;
- }
- }
- }
- .right {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- line-height: 19px;
- letter-spacing: 1px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- a {
- color: #333333;
- margin-right: 20px;
- line-height: 50px;
- padding-right: 20px;
- border-right: 1px solid #e5e5e5;
- }
- >a:last-child {
- border-right: none;
- }
- >a:hover {
- cursor: pointer;
- color: #49A769;
- }
- a:nth-child(8) {
- border-right: none;
- }
- a:nth-child(9) {
- display: none;
- }
- }
- }
- .lastPartContext {
- margin-top: 30px;
- .left {
- float: left;
- width: 720px;
- ul.mode1ul_style1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- li {
- position: relative;
- width: 349px;
- height: 236px;
- border-radius: 10px;
- box-sizing: border-box;
- overflow: hidden;
- img {
- width: 349px;
- height: 236px;
- }
- a {
- div {
- position: absolute;
- width: 320px;
- height: 42px;
- bottom: 20px;
- z-index: 10;
- left: 15px;
- color: #fff;
- font-size: 16px;
- z-index: 99;
- span {
- display: inline-block;
- background: #9CD26B;
- font-size: 12px;
- color: #fff;
- padding: 2px 6px;
- border-radius: 4px;
- margin-right: 5px;
- }
- p {
- font-size: 16px;
- margin-top: 5px;
- height: 45px;
- margin-bottom: 10px;
- }
- p:nth-child(1) {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- }
- }
- }
- }
- ul.mode1ul_style2 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- padding-top: 20px;
- li {
- width: 349px;
- height: 60px;
- //border-radius: 10px;
- border-bottom: 1px solid #E6E6E6;
- box-sizing: border-box;
- margin-bottom: 20px;
- }
- p {
- font-size: 16px;
- color: #333333;
- margin-bottom: 4px;
- }
- p.title {
- width: 349px;
- height: 46px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- p.title:hover {
- color: #49A769;
- }
- }
- }
- .right {
- float: right;
- width: 450px;
- height: 570px;
- .title {
- height: 56px;
- h3 {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 22px;
- color: #333333;
- line-height: 19px;
- letter-spacing: 1px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- a {
- float: right;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- line-height: 19px;
- letter-spacing: 1px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-top: 3px;
- }
- .leftTitle {
- color: #333333;
- font-size: 22px;
- font-weight: bold;
- float: left
- }
- }
- }
- .content {
- li {
- width: 450px;
- height: 85px;
- line-height: 50px;
- border-top: 3px solid #49A769;
- background-color: #fbfbfb;
- margin-bottom: 23px;
- a {
- display: block;
- width: 450px;
- height: 102px;
- span {
- float: left;
- padding: 18px 20px 14px 20px;
- height: 46px;
- width: 70px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 15px;
- color: #49A769;
- line-height: 18px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- strong {
- display: inline-block;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 25px;
- color: #49A769;
- line-height: 29px;
- text-align: center;
- font-style: normal;
- text-transform: none;
- margin-bottom: 5px;
- }
- }
- .text {
- float: left;
- width: 300px;
- height: 30px;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- line-height: 22px;
- padding: 21px 0 14px 0;
- color: #333333;
- font-size: 16px;
- }
- }
- }
- >li:nth-child(2n) {
- border-top: 3px solid #DF9A2B;
- a {
- display: block;
- width: 450px;
- height: 102px;
- span {
- float: left;
- padding: 18px 20px 14px 20px;
- width: 70px;
- height: 46px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 15px;
- color: #DF9A2B;
- line-height: 18px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- strong {
- display: inline-block;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 25px;
- color: #DF9A2B;
- line-height: 29px;
- text-align: center;
- font-style: normal;
- text-transform: none;
- margin-bottom: 5px;
- }
- }
- .text {
- float: left;
- width: 300px;
- line-height: 22px;
- height: 30px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- overflow: hidden;
- padding: 21px 0 14px 0;
- color: #333333;
- }
- }
- }
- >li:hover {
- cursor: pointer;
- .text {
- color: #49A769;
- }
- }
- >li:nth-child(2n):hover {
- cursor: pointer;
- .text {
- color: #49A769;
- }
- }
- }
- }
- }
- }
- }
- //曹国庆
- //public
- .clearfix {
- overflow: hidden;
- }
- .clearfix_2::after {
- content: '';
- display: block;
- height: 0;
- visibility: hidden;
- clear: both;
- }
- .hiddenColor {
- visibility: hidden;
- }
- .hand {
- cursor: pointer;
- }
- .aTag_parent {
- position: relative;
- }
- .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);
- }
- .dot1 {
- display: block;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .dot2 {
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .dot3 {
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
- .cover100 img {
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 8px;
- }
- .back100 {
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .index_main {
- margin: 0 auto;
- }
- .slow_6 {
- -webkit-transition: all .6s;
- -moz-transition: all .6s;
- -ms-transition: all .6s;
- -o-transition: all .6s;
- transition: all .6s;
- }
- //index 1
- .index1 {
- width: 1200px;
- margin: 0 auto;
- margin-top: 20px;
- }
- .index_1_box {
- float: left;
- width: 29%;
- margin-right: 2%;
- }
- .index_1_head_box {
- width: 100%;
- border-bottom: solid 1px #D9D9D9;
- position: relative;
- display: flex;
- justify-content: space-between;
- .leftTitle {
- // color: #49A769;
- font-size: 22px;
- font-weight: bold;
- }
- }
- .index_1_head_box a {
- height: 54px;
- line-height: 54px;
- color: #333;
- font-size: 16px;
- }
- .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;
- }
- .index_1_head a {
- display: block;
- height: 54px;
- line-height: 54px;
- color: #333;
- font-weight: bold;
- font-size: 22px;
- }
- .index_1_head a.active {
- color: #49A769;
- border-bottom: solid 3px #49A769;
- }
- .index_1_head_only a {
- color: #333;
- }
- .index_1_head_only a.active {
- color: #49A769;
- border-bottom: solid 3px #49A769;
- }
- .index_1_head_box_line_none {
- border: none;
- }
- .index_1_head:nth-of-type(even) {
- margin: 0px 20px;
- }
- .index_1_img_li {
- margin-top: 30px;
- position: relative;
- }
- .index_1_img_li::after {
- content: '';
- display: block;
- position: absolute;
- right: 0px;
- bottom: 0px;
- height: 0px;
- border-bottom: solid 1px #D9D9D9;
- width: 188px;
- }
- .index_1_img_li img {
- float: left;
- width: 150px;
- height: 85px;
- margin-right: 13px;
- border-radius: 8px;
- }
- .index_1_li_dot3 {
- height: 60px;
- line-height: 20px;
- color: #333;
- font-size: 16px;
- font-weight: bold;
- }
- .index_1_li {
- width: 100%;
- border-bottom: solid 1px #D9D9D9;
- margin-bottom: 30px;
- }
- .index_1_li_only {
- height: 54px !important;
- }
- .index_1_li_dot2 {
- height: 38px;
- line-height: 19px;
- color: #000;
- font-size: 16px;
- }
- .index_1_li_time {
- height: 16px;
- line-height: 14px;
- color: #999;
- font-size: 14px
- }
- .index_1_li_bold {
- margin-top: 30px;
- }
- .index_1_li_bold .index_1_li_dot2 {
- font-weight: bold;
- line-height: 20px;
- height: 40px;
- }
- .index_1_li_bold .index_1_li_time {
- display: block;
- }
- .index_1_li_dot2:hover {
- color: #49A769;
- }
- .index_1_li_dot3:hover {
- color: #49A769;
- }
- .index_1_li {
- margin-bottom: 27px;
- a {
- display: block;
- padding-bottom: 10px;
- }
- li {
- margin-bottom: 26px !important;
- }
- }
- .index_1_box_right {
- width: 450px;
- float: right;
- }
- .index_1_box_right_img_ul {
- margin-top: 30px;
- }
- .index_1_box_right_img_li {
- width: 49%;
- height: 140px;
- border-radius: 4px;
- position: relative;
- margin-bottom: 5px;
- }
- .index_1_box_right_img_li:nth-of-type(odd) {
- float: left;
- }
- .index_1_box_right_img_li:nth-of-type(even) {
- float: right;
- }
- .index_1_box_right_img_li_dot1 {
- position: absolute;
- width: 100%;
- height: 33px;
- line-height: 33px;
- box-sizing: border-box;
- padding: 0px 8px;
- left: 0px;
- bottom: 0px;
- font-size: 16px;
- color: #fff;
- }
- .index_1_box_right_li {
- border-bottom: solid 1px #E6E6E6;
- width: 98%;
- margin: 0px auto;
- a {
- .index_1_box_right_li_dot1 {
- &:hover {
- color: #49A769;
- }
- }
- }
- }
- .index_1_box_right_li_dot1 {
- height: 55px;
- line-height: 55px;
- color: #333;
- font-size: 16px;
- }
- .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;
- }
- .index_2,
- .index_1,
- .index_3 {
- width: 1200px;
- height: 583px;
- margin: 0 auto;
- }
- .index_2_h {
- height: 715px !important;
- }
- .index_2_head_box {
- border-bottom: solid 1px #D9D9D9;
- margin-bottom: 30px;
- }
- .index_1_head_box_2 {
- float: left;
- width: auto;
- border: none;
- }
- .index_2_head_a_box {
- margin-top: 11px;
- float: right;
- }
- .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;
- }
- .index_2_head_a_box a:nth-of-type(1) {
- border: none;
- }
- .index_2_big_img_li {
- height: 236px;
- position: relative;
- margin: 0px auto 20px;
- border-radius: 6px;
- overflow: hidden;
- }
- .index_2_big_img_li::after {
- content: '';
- display: block;
- width: 100%;
- height: 68px;
- z-index: 44;
- left: 0px;
- bottom: 0px;
- position: absolute;
- background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
- opacity: .5;
- }
- .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;
- }
- .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;
- }
- .index_1_box_right_img_ul_2 {
- margin: 20px auto 20px;
- }
- .index_1_box_right_img_ul_2 .index_1_box_right_img_li {
- height: 115px;
- margin-bottom: 0px;
- }
- .index_2_li {
- border-bottom: solid 1px #E6E6E6;
- height: 115px;
- box-sizing: border-box;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 100%;
- a {
- display: block;
- height: 80px;
- .index_2_li_dot2 {
- &:hover {
- color: #49A769;
- }
- }
- }
- }
- .index_2_li_time_box {
- float: left;
- background: #F4FFF7;
- width: 100px;
- margin-right: 30px;
- padding: 5px 0px;
- height: 80px;
- box-sizing: border-box;
- }
- .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;
- }
- .index_2_li_time_foot {
- text-align: center;
- font-size: 15px;
- color: #49A769;
- width: 100%;
- margin: 0px auto 0px;
- }
- .index_2_li_dot2 {
- height: 42px;
- line-height: 21px;
- color: #333;
- font-size: 16px;
- margin-top: 11px;
- }
- .index_3_box_left {
- float: left;
- width: 720px;
- }
- .index_3_li {
- border-bottom: solid 1px #E6E6E6;
- padding: 14px 0px;
- width: 49%;
- font-size: 16px;
- p {
- color: #333333;
- padding-left: 20px;
- }
- a:hover {
- p.title {
- color: #33b023;
- }
- }
- .title {
- height: 45px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- b.lis {
- background: #E6E6E6;
- width: 6px;
- height: 6px;
- display: inline-block;
- margin-bottom: 2px;
- margin-right: 5px;
- }
- }
- }
- .index_3_li:nth-of-type(1),
- .index_3_li:nth-of-type(2) {
- font-weight: bold;
- }
- .index_3_li:nth-of-type(odd) {
- float: left;
- }
- .index_3_li:nth-of-type(even) {
- float: right;
- }
- .index_3 .index_2_head_box {
- margin-bottom: 0px;
- }
- .index_3_li_dot2 {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- padding: 0px 20px;
- height: 42px;
- line-height: 21px
- }
- .index_3_li_dot2::after {
- content: '';
- display: block;
- width: 6px;
- height: 6px;
- z-index: 144;
- left: 0px;
- top: 10px;
- position: absolute;
- background: #E6E6E6;
- }
- .index_3_li_color {
- border-bottom: solid 1px #49A769 !important;
- b.active {
- background: #33b023 !important;
- width: 6px;
- height: 6px;
- display: inline-block;
- margin-bottom: 2px;
- margin-right: 5px;
- }
- }
- .index_3_li_color .index_3_li_dot2::after {
- background: #49A769;
- }
- .index_3_li_color .index_3_li_dot2 {
- font-weight: bold;
- }
- .banner_1_vote {
- width: 100%;
- position: relative;
- }
- .banner_1_vote img,
- .banner_1_vote a {
- width: 100%;
- display: block;
- }
- .banner_1_vote_h4 {
- font-size: 32px;
- color: #fff;
- position: absolute;
- z-index: 11;
- left: 0px;
- top: 0px;
- }
- .index_3_box_vote {
- width: 100%;
- box-sizing: border-box;
- border: solid 1px #FBFBFB;
- background: #FBFBFB;
- .inquire {
- width: 450px;
- height: 420px;
- margin-top: 20px;
- border-radius: 6px 6px 6px 6px;
- padding: 4px 6px;
- box-sizing: border-box;
- p {
- width: 380px;
- height: 69px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding: 12px 20px 0 32px;
- }
- .radioBox {
- width: 440px;
- height: 230px;
- padding-left: 30px;
- overflow-y: auto;
- box-sizing: border-box;
- }
- .radio {
- /deep/.el-radio {
- --el-radio-input-border-color-hover: #27881a;
- }
- /deep/.el-radio-group {
- align-items: center;
- display: inline-flex;
- flex-wrap: wrap;
- font-size: 0;
- //padding-left: 35px;
- }
- /deep/.el-radio.el-radio--large {
- width: 330px;
- height: 29px;
- margin-bottom: 15px;
- }
- /deep/.el-radio.el-radio--large .el-radio__label {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 300px;
- }
- /deep/.el-radio.el-radio--large .el-radio__inner {
- height: 16px;
- width: 16px;
- }
- /deep/.el-radio__input.is-checked+.el-radio__label {
- color: #27881a;
- }
- /deep/.el-radio__input.is-checked .el-radio__inner {
- background: #33b023;
- border-color: #27881a;
- }
- }
- .checkInputBox {
- /deep/.el-checkbox {
- --el-radio-input-border-color-hover: #27881a;
- }
- /deep/.el-checkbox-group {
- align-items: center;
- display: inline-flex;
- flex-wrap: wrap;
- font-size: 0;
- //padding-left: 35px;
- }
- /deep/.el-checkbox.el-checkbox--large {
- width: 330px;
- height: 29px;
- margin-bottom: 15px;
- }
- /deep/.el-checkbox.el-checkbox--large .el-checkbox__label {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 300px;
- }
- /deep/.el-checkbox.el-checkbox--large .el-checkbox__inner {
- height: 16px;
- width: 16px;
- }
- /deep/.el-checkbox__input.is-checked+.el-checkbox__label {
- color: #27881a;
- }
- /deep/.el-checkbox__input.is-checked .el-checkbox__inner {
- background: #33b023;
- border-color: #27881a;
- }
- }
- .btn {
- width: 70px;
- height: 32px;
- margin: 0 auto;
- padding-top: 15px;
- button {
- width: 70px;
- height: 32px;
- line-height: 32px;
- border-radius: 6px;
- border: none;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #999999;
- }
- .voting {
- background-color: #49A769;
- color: #fff;
- margin-right: 44px;
- cursor: pointer;
- }
- .look {
- cursor: pointer;
- }
- }
- }
- .inquireData {
- .inquireDataItem {
- width: 380px;
- height: 38px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #F3F3F3;
- border: 1px solid #D2D2D2;
- margin-bottom: 10px;
- border-radius: 6px;
- padding: 0 15px;
- box-sizing: border-box;
- color: #999999;
- .inquireDataItemTitle {
- width: 290px;
- height: 38px;
- font-size: 16px;
- line-height: 38px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .inquireDataItemNum {
- font-size: 16px;
- }
- }
- .active {
- color: #49A769;
- background: #dff7e8;
- border: 1px solid #49A769;
- }
- }
- }
- .index_1_li {
- height: 50px;
- .index_1_li_time {
- margin-top: 10px;
- }
- }
- .index_1_ul_mrbot {
- margin-bottom: 30px;
- }
- .imgbg::after {
- content: '';
- display: block;
- width: 100%;
- height: 68px;
- z-index: 44;
- left: 0px;
- bottom: 0px;
- position: absolute;
- background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
- opacity: .5;
- }
- .index_1_li_bottom {
- margin-bottom: 22px;
- }
- .index_1_li_bottom2 {
- height: 57px;
- }
|