styles.css 257 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-100px;
  6. width:5085px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u28656 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u28657_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1303px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u28657 {
  52. border-width:0px;
  53. position:absolute;
  54. left:100px;
  55. top:115px;
  56. width:1000px;
  57. height:1303px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u28657 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u28657_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u28658_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:1000px;
  88. height:580px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(242, 242, 242, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u28658 {
  107. border-width:0px;
  108. position:absolute;
  109. left:100px;
  110. top:266px;
  111. width:1000px;
  112. height:580px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u28658 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u28658_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u28659_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:73px;
  143. height:40px;
  144. background:inherit;
  145. background-color:rgba(255, 255, 255, 0);
  146. border-left:0px;
  147. border-top:0px;
  148. border-right:0px;
  149. border-radius:0px;
  150. border-bottom-right-radius:0px;
  151. border-bottom-left-radius:0px;
  152. filter:drop-shadow(none);
  153. transition:none;
  154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u28659 {
  160. border-width:0px;
  161. position:absolute;
  162. left:140px;
  163. top:282px;
  164. width:73px;
  165. height:40px;
  166. display:flex;
  167. transition:none;
  168. transform-origin:50% 50%;
  169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  170. font-weight:400;
  171. font-style:normal;
  172. font-size:18px;
  173. }
  174. #u28659 .text {
  175. position:absolute;
  176. align-self:center;
  177. padding:0px 0px 0px 0px;
  178. box-sizing:border-box;
  179. width:100%;
  180. }
  181. #u28659_text {
  182. border-width:0px;
  183. white-space:nowrap;
  184. text-transform:none;
  185. }
  186. #u28660_div {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:81px;
  192. height:30px;
  193. background:inherit;
  194. background-color:rgba(255, 255, 255, 0);
  195. border-top:0px;
  196. border-right:0px;
  197. border-bottom:0px;
  198. border-radius:0px;
  199. border-top-left-radius:0px;
  200. border-bottom-left-radius:0px;
  201. filter:drop-shadow(none);
  202. transition:none;
  203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  204. font-weight:400;
  205. font-style:normal;
  206. font-size:14px;
  207. color:#7F7F7F;
  208. }
  209. #u28660 {
  210. border-width:0px;
  211. position:absolute;
  212. left:140px;
  213. top:332px;
  214. width:81px;
  215. height:30px;
  216. display:flex;
  217. transition:none;
  218. transform-origin:50% 50%;
  219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  220. font-weight:400;
  221. font-style:normal;
  222. font-size:14px;
  223. color:#7F7F7F;
  224. }
  225. #u28660 .text {
  226. position:absolute;
  227. align-self:center;
  228. padding:5px 10px 5px 0px;
  229. box-sizing:border-box;
  230. width:100%;
  231. }
  232. #u28660_text {
  233. border-width:0px;
  234. white-space:nowrap;
  235. text-transform:none;
  236. }
  237. #u28661_div {
  238. border-width:0px;
  239. position:absolute;
  240. left:0px;
  241. top:0px;
  242. width:142px;
  243. height:30px;
  244. background:inherit;
  245. background-color:rgba(255, 255, 255, 0);
  246. border-top:0px;
  247. border-right:0px;
  248. border-bottom:0px;
  249. border-radius:0px;
  250. border-top-left-radius:0px;
  251. border-bottom-left-radius:0px;
  252. filter:drop-shadow(none);
  253. transition:none;
  254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  255. font-weight:400;
  256. font-style:normal;
  257. font-size:14px;
  258. color:#1890FF;
  259. }
  260. #u28661 {
  261. border-width:0px;
  262. position:absolute;
  263. left:221px;
  264. top:332px;
  265. width:142px;
  266. height:30px;
  267. display:flex;
  268. transition:none;
  269. transform-origin:50% 50%;
  270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  271. font-weight:400;
  272. font-style:normal;
  273. font-size:14px;
  274. color:#1890FF;
  275. }
  276. #u28661 .text {
  277. position:absolute;
  278. align-self:center;
  279. padding:5px 10px 5px 0px;
  280. box-sizing:border-box;
  281. width:100%;
  282. }
  283. #u28661_text {
  284. border-width:0px;
  285. white-space:nowrap;
  286. text-transform:none;
  287. }
  288. #u28662_div {
  289. border-width:0px;
  290. position:absolute;
  291. left:0px;
  292. top:0px;
  293. width:81px;
  294. height:30px;
  295. background:inherit;
  296. background-color:rgba(255, 255, 255, 0);
  297. border-top:0px;
  298. border-right:0px;
  299. border-bottom:0px;
  300. border-radius:0px;
  301. border-top-left-radius:0px;
  302. border-bottom-left-radius:0px;
  303. filter:drop-shadow(none);
  304. transition:none;
  305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  306. font-weight:400;
  307. font-style:normal;
  308. font-size:14px;
  309. color:#7F7F7F;
  310. }
  311. #u28662 {
  312. border-width:0px;
  313. position:absolute;
  314. left:460px;
  315. top:332px;
  316. width:81px;
  317. height:30px;
  318. display:flex;
  319. transition:none;
  320. transform-origin:50% 50%;
  321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  322. font-weight:400;
  323. font-style:normal;
  324. font-size:14px;
  325. color:#7F7F7F;
  326. }
  327. #u28662 .text {
  328. position:absolute;
  329. align-self:center;
  330. padding:5px 10px 5px 0px;
  331. box-sizing:border-box;
  332. width:100%;
  333. }
  334. #u28662_text {
  335. border-width:0px;
  336. white-space:nowrap;
  337. text-transform:none;
  338. }
  339. #u28663_div {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:67px;
  345. height:30px;
  346. background:inherit;
  347. background-color:rgba(255, 255, 255, 0);
  348. border-top:0px;
  349. border-right:0px;
  350. border-bottom:0px;
  351. border-radius:0px;
  352. border-top-left-radius:0px;
  353. border-bottom-left-radius:0px;
  354. filter:drop-shadow(none);
  355. transition:none;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. }
  361. #u28663 {
  362. border-width:0px;
  363. position:absolute;
  364. left:541px;
  365. top:332px;
  366. width:67px;
  367. height:30px;
  368. display:flex;
  369. transition:none;
  370. transform-origin:50% 50%;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:14px;
  375. }
  376. #u28663 .text {
  377. position:absolute;
  378. align-self:center;
  379. padding:5px 10px 5px 0px;
  380. box-sizing:border-box;
  381. width:100%;
  382. }
  383. #u28663_text {
  384. border-width:0px;
  385. white-space:nowrap;
  386. text-transform:none;
  387. }
  388. #u28664_div {
  389. border-width:0px;
  390. position:absolute;
  391. left:0px;
  392. top:0px;
  393. width:81px;
  394. height:30px;
  395. background:inherit;
  396. background-color:rgba(255, 255, 255, 0);
  397. border-top:0px;
  398. border-right:0px;
  399. border-bottom:0px;
  400. border-radius:0px;
  401. border-top-left-radius:0px;
  402. border-bottom-left-radius:0px;
  403. filter:drop-shadow(none);
  404. transition:none;
  405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  406. font-weight:400;
  407. font-style:normal;
  408. font-size:14px;
  409. color:#7F7F7F;
  410. }
  411. #u28664 {
  412. border-width:0px;
  413. position:absolute;
  414. left:757px;
  415. top:332px;
  416. width:81px;
  417. height:30px;
  418. display:flex;
  419. transition:none;
  420. transform-origin:50% 50%;
  421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  422. font-weight:400;
  423. font-style:normal;
  424. font-size:14px;
  425. color:#7F7F7F;
  426. }
  427. #u28664 .text {
  428. position:absolute;
  429. align-self:center;
  430. padding:5px 10px 5px 0px;
  431. box-sizing:border-box;
  432. width:100%;
  433. }
  434. #u28664_text {
  435. border-width:0px;
  436. white-space:nowrap;
  437. text-transform:none;
  438. }
  439. #u28665_div {
  440. border-width:0px;
  441. position:absolute;
  442. left:0px;
  443. top:0px;
  444. width:53px;
  445. height:30px;
  446. background:inherit;
  447. background-color:rgba(255, 255, 255, 0);
  448. border-top:0px;
  449. border-right:0px;
  450. border-bottom:0px;
  451. border-radius:0px;
  452. border-top-left-radius:0px;
  453. border-bottom-left-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:14px;
  460. }
  461. #u28665 {
  462. border-width:0px;
  463. position:absolute;
  464. left:838px;
  465. top:332px;
  466. width:53px;
  467. height:30px;
  468. display:flex;
  469. transition:none;
  470. transform-origin:50% 50%;
  471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  472. font-weight:400;
  473. font-style:normal;
  474. font-size:14px;
  475. }
  476. #u28665 .text {
  477. position:absolute;
  478. align-self:center;
  479. padding:5px 10px 5px 0px;
  480. box-sizing:border-box;
  481. width:100%;
  482. }
  483. #u28665_text {
  484. border-width:0px;
  485. white-space:nowrap;
  486. text-transform:none;
  487. }
  488. #u28666_div {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:81px;
  494. height:30px;
  495. background:inherit;
  496. background-color:rgba(255, 255, 255, 0);
  497. border-top:0px;
  498. border-right:0px;
  499. border-bottom:0px;
  500. border-radius:0px;
  501. border-top-left-radius:0px;
  502. border-bottom-left-radius:0px;
  503. filter:drop-shadow(none);
  504. transition:none;
  505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:14px;
  509. color:#7F7F7F;
  510. }
  511. #u28666 {
  512. border-width:0px;
  513. position:absolute;
  514. left:140px;
  515. top:372px;
  516. width:81px;
  517. height:30px;
  518. display:flex;
  519. transition:none;
  520. transform-origin:50% 50%;
  521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  522. font-weight:400;
  523. font-style:normal;
  524. font-size:14px;
  525. color:#7F7F7F;
  526. }
  527. #u28666 .text {
  528. position:absolute;
  529. align-self:center;
  530. padding:5px 10px 5px 0px;
  531. box-sizing:border-box;
  532. width:100%;
  533. }
  534. #u28666_text {
  535. border-width:0px;
  536. white-space:nowrap;
  537. text-transform:none;
  538. }
  539. #u28667_div {
  540. border-width:0px;
  541. position:absolute;
  542. left:0px;
  543. top:0px;
  544. width:81px;
  545. height:30px;
  546. background:inherit;
  547. background-color:rgba(255, 255, 255, 0);
  548. border-top:0px;
  549. border-right:0px;
  550. border-bottom:0px;
  551. border-radius:0px;
  552. border-top-left-radius:0px;
  553. border-bottom-left-radius:0px;
  554. filter:drop-shadow(none);
  555. transition:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:14px;
  560. color:#7F7F7F;
  561. }
  562. #u28667 {
  563. border-width:0px;
  564. position:absolute;
  565. left:460px;
  566. top:372px;
  567. width:81px;
  568. height:30px;
  569. display:flex;
  570. transition:none;
  571. transform-origin:50% 50%;
  572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  573. font-weight:400;
  574. font-style:normal;
  575. font-size:14px;
  576. color:#7F7F7F;
  577. }
  578. #u28667 .text {
  579. position:absolute;
  580. align-self:center;
  581. padding:5px 10px 5px 0px;
  582. box-sizing:border-box;
  583. width:100%;
  584. }
  585. #u28667_text {
  586. border-width:0px;
  587. white-space:nowrap;
  588. text-transform:none;
  589. }
  590. #u28668_div {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:67px;
  596. height:30px;
  597. background:inherit;
  598. background-color:rgba(255, 255, 255, 0);
  599. border-top:0px;
  600. border-right:0px;
  601. border-bottom:0px;
  602. border-radius:0px;
  603. border-top-left-radius:0px;
  604. border-bottom-left-radius:0px;
  605. filter:drop-shadow(none);
  606. transition:none;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:14px;
  611. }
  612. #u28668 {
  613. border-width:0px;
  614. position:absolute;
  615. left:541px;
  616. top:372px;
  617. width:67px;
  618. height:30px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  623. font-weight:400;
  624. font-style:normal;
  625. font-size:14px;
  626. }
  627. #u28668 .text {
  628. position:absolute;
  629. align-self:center;
  630. padding:5px 10px 5px 0px;
  631. box-sizing:border-box;
  632. width:100%;
  633. }
  634. #u28668_text {
  635. border-width:0px;
  636. white-space:nowrap;
  637. text-transform:none;
  638. }
  639. #u28669_div {
  640. border-width:0px;
  641. position:absolute;
  642. left:0px;
  643. top:0px;
  644. width:67px;
  645. height:30px;
  646. background:inherit;
  647. background-color:rgba(255, 255, 255, 0);
  648. border-top:0px;
  649. border-right:0px;
  650. border-bottom:0px;
  651. border-radius:0px;
  652. border-top-left-radius:0px;
  653. border-bottom-left-radius:0px;
  654. filter:drop-shadow(none);
  655. transition:none;
  656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  657. font-weight:400;
  658. font-style:normal;
  659. font-size:14px;
  660. color:#7F7F7F;
  661. }
  662. #u28669 {
  663. border-width:0px;
  664. position:absolute;
  665. left:757px;
  666. top:372px;
  667. width:67px;
  668. height:30px;
  669. display:flex;
  670. transition:none;
  671. transform-origin:50% 50%;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:14px;
  676. color:#7F7F7F;
  677. }
  678. #u28669 .text {
  679. position:absolute;
  680. align-self:center;
  681. padding:5px 10px 5px 0px;
  682. box-sizing:border-box;
  683. width:100%;
  684. }
  685. #u28669_text {
  686. border-width:0px;
  687. white-space:nowrap;
  688. text-transform:none;
  689. }
  690. #u28670_div {
  691. border-width:0px;
  692. position:absolute;
  693. left:0px;
  694. top:0px;
  695. width:85px;
  696. height:30px;
  697. background:inherit;
  698. background-color:rgba(255, 255, 255, 0);
  699. border-top:0px;
  700. border-right:0px;
  701. border-bottom:0px;
  702. border-radius:0px;
  703. border-top-left-radius:0px;
  704. border-bottom-left-radius:0px;
  705. filter:drop-shadow(none);
  706. transition:none;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. font-size:14px;
  711. }
  712. #u28670 {
  713. border-width:0px;
  714. position:absolute;
  715. left:838px;
  716. top:372px;
  717. width:85px;
  718. height:30px;
  719. display:flex;
  720. transition:none;
  721. transform-origin:50% 50%;
  722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  723. font-weight:400;
  724. font-style:normal;
  725. font-size:14px;
  726. }
  727. #u28670 .text {
  728. position:absolute;
  729. align-self:center;
  730. padding:5px 10px 5px 0px;
  731. box-sizing:border-box;
  732. width:100%;
  733. }
  734. #u28670_text {
  735. border-width:0px;
  736. white-space:nowrap;
  737. text-transform:none;
  738. }
  739. #u28671_div {
  740. border-width:0px;
  741. position:absolute;
  742. left:0px;
  743. top:0px;
  744. width:183px;
  745. height:30px;
  746. background:inherit;
  747. background-color:rgba(255, 255, 255, 0);
  748. border-top:0px;
  749. border-right:0px;
  750. border-bottom:0px;
  751. border-radius:0px;
  752. border-top-left-radius:0px;
  753. border-bottom-left-radius:0px;
  754. filter:drop-shadow(none);
  755. transition:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:14px;
  760. }
  761. #u28671 {
  762. border-width:0px;
  763. position:absolute;
  764. left:221px;
  765. top:372px;
  766. width:183px;
  767. height:30px;
  768. display:flex;
  769. transition:none;
  770. transform-origin:50% 50%;
  771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  772. font-weight:400;
  773. font-style:normal;
  774. font-size:14px;
  775. }
  776. #u28671 .text {
  777. position:absolute;
  778. align-self:center;
  779. padding:5px 10px 5px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u28671_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u28672_div {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:81px;
  794. height:30px;
  795. background:inherit;
  796. background-color:rgba(255, 255, 255, 0);
  797. border-top:0px;
  798. border-right:0px;
  799. border-bottom:0px;
  800. border-radius:0px;
  801. border-top-left-radius:0px;
  802. border-bottom-left-radius:0px;
  803. filter:drop-shadow(none);
  804. transition:none;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:14px;
  809. color:#7F7F7F;
  810. }
  811. #u28672 {
  812. border-width:0px;
  813. position:absolute;
  814. left:140px;
  815. top:412px;
  816. width:81px;
  817. height:30px;
  818. display:flex;
  819. transition:none;
  820. transform-origin:50% 50%;
  821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  822. font-weight:400;
  823. font-style:normal;
  824. font-size:14px;
  825. color:#7F7F7F;
  826. }
  827. #u28672 .text {
  828. position:absolute;
  829. align-self:center;
  830. padding:5px 10px 5px 0px;
  831. box-sizing:border-box;
  832. width:100%;
  833. }
  834. #u28672_text {
  835. border-width:0px;
  836. white-space:nowrap;
  837. text-transform:none;
  838. }
  839. #u28673_div {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:126px;
  845. height:30px;
  846. background:inherit;
  847. background-color:rgba(255, 255, 255, 0);
  848. border-top:0px;
  849. border-right:0px;
  850. border-bottom:0px;
  851. border-radius:0px;
  852. border-top-left-radius:0px;
  853. border-bottom-left-radius:0px;
  854. filter:drop-shadow(none);
  855. transition:none;
  856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:14px;
  860. }
  861. #u28673 {
  862. border-width:0px;
  863. position:absolute;
  864. left:221px;
  865. top:412px;
  866. width:126px;
  867. height:30px;
  868. display:flex;
  869. transition:none;
  870. transform-origin:50% 50%;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:14px;
  875. }
  876. #u28673 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:5px 10px 5px 0px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u28673_text {
  884. border-width:0px;
  885. white-space:nowrap;
  886. text-transform:none;
  887. }
  888. #u28674_div {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:81px;
  894. height:30px;
  895. background:inherit;
  896. background-color:rgba(255, 255, 255, 0);
  897. border-top:0px;
  898. border-right:0px;
  899. border-bottom:0px;
  900. border-radius:0px;
  901. border-top-left-radius:0px;
  902. border-bottom-left-radius:0px;
  903. filter:drop-shadow(none);
  904. transition:none;
  905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. font-size:14px;
  909. color:#7F7F7F;
  910. }
  911. #u28674 {
  912. border-width:0px;
  913. position:absolute;
  914. left:140px;
  915. top:452px;
  916. width:81px;
  917. height:30px;
  918. display:flex;
  919. transition:none;
  920. transform-origin:50% 50%;
  921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  922. font-weight:400;
  923. font-style:normal;
  924. font-size:14px;
  925. color:#7F7F7F;
  926. }
  927. #u28674 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:5px 10px 5px 0px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u28674_text {
  935. border-width:0px;
  936. white-space:nowrap;
  937. text-transform:none;
  938. }
  939. #u28675_div {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:263px;
  945. height:30px;
  946. background:inherit;
  947. background-color:rgba(255, 255, 255, 0);
  948. border-top:0px;
  949. border-right:0px;
  950. border-bottom:0px;
  951. border-radius:0px;
  952. border-top-left-radius:0px;
  953. border-bottom-left-radius:0px;
  954. filter:drop-shadow(none);
  955. transition:none;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. font-size:14px;
  960. }
  961. #u28675 {
  962. border-width:0px;
  963. position:absolute;
  964. left:221px;
  965. top:452px;
  966. width:263px;
  967. height:30px;
  968. display:flex;
  969. transition:none;
  970. transform-origin:50% 50%;
  971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  972. font-weight:400;
  973. font-style:normal;
  974. font-size:14px;
  975. }
  976. #u28675 .text {
  977. position:absolute;
  978. align-self:center;
  979. padding:5px 10px 5px 0px;
  980. box-sizing:border-box;
  981. width:100%;
  982. }
  983. #u28675_text {
  984. border-width:0px;
  985. white-space:nowrap;
  986. text-transform:none;
  987. }
  988. #u28676 {
  989. border-width:0px;
  990. position:absolute;
  991. left:140px;
  992. top:500px;
  993. width:941px;
  994. height:1px;
  995. display:flex;
  996. transition:none;
  997. }
  998. #u28676 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u28676_img {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:942px;
  1011. height:2px;
  1012. }
  1013. #u28676_text {
  1014. border-width:0px;
  1015. word-wrap:break-word;
  1016. text-transform:none;
  1017. visibility:hidden;
  1018. }
  1019. #u28677_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:1000px;
  1025. height:200px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 1);
  1028. box-sizing:border-box;
  1029. border-width:1px;
  1030. border-style:solid;
  1031. border-color:rgba(215, 215, 215, 1);
  1032. border-radius:0px;
  1033. filter:drop-shadow(none);
  1034. transition:none;
  1035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. color:#AAAAAA;
  1040. text-align:center;
  1041. line-height:30px;
  1042. }
  1043. #u28677 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:101px;
  1047. top:55px;
  1048. width:1000px;
  1049. height:200px;
  1050. display:flex;
  1051. transition:none;
  1052. transform-origin:50% 50%;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:14px;
  1057. color:#AAAAAA;
  1058. text-align:center;
  1059. line-height:30px;
  1060. }
  1061. #u28677 .text {
  1062. position:absolute;
  1063. align-self:center;
  1064. padding:5px 10px 5px 10px;
  1065. box-sizing:border-box;
  1066. width:100%;
  1067. }
  1068. #u28677_text {
  1069. border-width:0px;
  1070. word-wrap:break-word;
  1071. text-transform:none;
  1072. visibility:hidden;
  1073. }
  1074. #u28678_div {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:83px;
  1080. height:35px;
  1081. background:inherit;
  1082. background-color:rgba(255, 255, 255, 0);
  1083. border-top:0px;
  1084. border-right:0px;
  1085. border-bottom:0px;
  1086. border-radius:0px;
  1087. border-top-left-radius:0px;
  1088. border-bottom-left-radius:0px;
  1089. filter:drop-shadow(none);
  1090. transition:none;
  1091. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1092. font-weight:500;
  1093. font-style:normal;
  1094. font-size:18px;
  1095. }
  1096. #u28678 {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:121px;
  1100. top:73px;
  1101. width:83px;
  1102. height:35px;
  1103. display:flex;
  1104. transition:none;
  1105. transform-origin:50% 50%;
  1106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1107. font-weight:500;
  1108. font-style:normal;
  1109. font-size:18px;
  1110. }
  1111. #u28678 .text {
  1112. position:absolute;
  1113. align-self:center;
  1114. padding:5px 10px 5px 0px;
  1115. box-sizing:border-box;
  1116. width:100%;
  1117. }
  1118. #u28678_text {
  1119. border-width:0px;
  1120. white-space:nowrap;
  1121. text-transform:none;
  1122. }
  1123. #u28679_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:107px;
  1129. height:43px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 0);
  1132. border-top:0px;
  1133. border-right:0px;
  1134. border-bottom:0px;
  1135. border-radius:0px;
  1136. border-top-left-radius:0px;
  1137. border-bottom-left-radius:0px;
  1138. filter:drop-shadow(none);
  1139. transition:none;
  1140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1141. font-weight:500;
  1142. font-style:normal;
  1143. font-size:24px;
  1144. }
  1145. #u28679 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:131px;
  1149. top:124px;
  1150. width:107px;
  1151. height:43px;
  1152. display:flex;
  1153. transition:none;
  1154. transform-origin:50% 50%;
  1155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1156. font-weight:500;
  1157. font-style:normal;
  1158. font-size:24px;
  1159. }
  1160. #u28679 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:5px 10px 5px 0px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u28679_text {
  1168. border-width:0px;
  1169. white-space:nowrap;
  1170. text-transform:none;
  1171. }
  1172. #u28680 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:951px;
  1176. top:125px;
  1177. width:108px;
  1178. height:108px;
  1179. display:flex;
  1180. -webkit-transform:rotate(315deg);
  1181. -moz-transform:rotate(315deg);
  1182. -ms-transform:rotate(315deg);
  1183. transform:rotate(315deg);
  1184. transition:none;
  1185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1186. font-weight:400;
  1187. font-style:normal;
  1188. font-size:28px;
  1189. color:#F59A23;
  1190. }
  1191. #u28680 .text {
  1192. position:absolute;
  1193. align-self:center;
  1194. padding:2px 2px 2px 2px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u28680_img {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:0px;
  1202. top:0px;
  1203. width:108px;
  1204. height:108px;
  1205. }
  1206. #u28680_text {
  1207. border-width:0px;
  1208. word-wrap:break-word;
  1209. text-transform:none;
  1210. }
  1211. #u28681_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:325px;
  1217. height:60px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 0);
  1220. border-left:0px;
  1221. border-top:0px;
  1222. border-right:0px;
  1223. border-radius:0px;
  1224. border-bottom-right-radius:0px;
  1225. border-bottom-left-radius:0px;
  1226. filter:drop-shadow(none);
  1227. transition:none;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:14px;
  1232. line-height:30px;
  1233. }
  1234. #u28681 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:131px;
  1238. top:179px;
  1239. width:325px;
  1240. height:60px;
  1241. display:flex;
  1242. transition:none;
  1243. transform-origin:50% 50%;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:14px;
  1248. line-height:30px;
  1249. }
  1250. #u28681 .text {
  1251. position:absolute;
  1252. align-self:flex-start;
  1253. padding:0px 0px 0px 0px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u28681_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. }
  1262. #u28682 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:1073px;
  1266. top:77px;
  1267. width:17px;
  1268. height:17px;
  1269. display:flex;
  1270. transition:none;
  1271. }
  1272. #u28682 .text {
  1273. position:absolute;
  1274. align-self:center;
  1275. padding:2px 2px 2px 2px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u28682_img {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:17px;
  1285. height:17px;
  1286. }
  1287. #u28682_text {
  1288. border-width:0px;
  1289. word-wrap:break-word;
  1290. text-transform:none;
  1291. visibility:hidden;
  1292. }
  1293. #u28683 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:0px;
  1299. height:0px;
  1300. }
  1301. #u28684_div {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:1000px;
  1307. height:562px;
  1308. background:inherit;
  1309. background-color:rgba(255, 255, 255, 1);
  1310. box-sizing:border-box;
  1311. border-width:1px;
  1312. border-style:solid;
  1313. border-color:rgba(242, 242, 242, 1);
  1314. border-radius:0px;
  1315. filter:drop-shadow(none);
  1316. transition:none;
  1317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1318. font-weight:400;
  1319. font-style:normal;
  1320. font-size:14px;
  1321. color:#AAAAAA;
  1322. text-align:center;
  1323. line-height:30px;
  1324. }
  1325. #u28684 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:100px;
  1329. top:856px;
  1330. width:1000px;
  1331. height:562px;
  1332. display:flex;
  1333. transition:none;
  1334. transform-origin:50% 50%;
  1335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. font-size:14px;
  1339. color:#AAAAAA;
  1340. text-align:center;
  1341. line-height:30px;
  1342. }
  1343. #u28684 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:5px 10px 5px 10px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u28684_text {
  1351. border-width:0px;
  1352. word-wrap:break-word;
  1353. text-transform:none;
  1354. visibility:hidden;
  1355. }
  1356. #u28685_div {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:73px;
  1362. height:40px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. border-left:0px;
  1366. border-top:0px;
  1367. border-right:0px;
  1368. border-radius:0px;
  1369. border-bottom-right-radius:0px;
  1370. border-bottom-left-radius:0px;
  1371. filter:drop-shadow(none);
  1372. transition:none;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:18px;
  1377. }
  1378. #u28685 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:140px;
  1382. top:872px;
  1383. width:73px;
  1384. height:40px;
  1385. display:flex;
  1386. transition:none;
  1387. transform-origin:50% 50%;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:18px;
  1392. }
  1393. #u28685 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u28685_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u28686 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u28687_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:175px;
  1419. height:20px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 0);
  1422. border-radius:0px;
  1423. filter:drop-shadow(none);
  1424. transition:none;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. }
  1429. #u28687 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:176px;
  1433. top:938px;
  1434. width:175px;
  1435. height:20px;
  1436. display:flex;
  1437. transition:none;
  1438. transform-origin:50% 50%;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. }
  1443. #u28687 .text {
  1444. position:absolute;
  1445. align-self:center;
  1446. padding:0px 0px 0px 0px;
  1447. box-sizing:border-box;
  1448. width:100%;
  1449. }
  1450. #u28687_text {
  1451. border-width:0px;
  1452. white-space:nowrap;
  1453. text-transform:none;
  1454. }
  1455. #u28688 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:0px;
  1461. height:0px;
  1462. }
  1463. #u28689_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:878px;
  1469. height:44px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 0);
  1472. border-top:0px;
  1473. border-right:0px;
  1474. border-bottom:0px;
  1475. border-radius:0px;
  1476. border-top-left-radius:0px;
  1477. border-bottom-left-radius:0px;
  1478. filter:drop-shadow(none);
  1479. transition:none;
  1480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:12px;
  1484. }
  1485. #u28689 {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:176px;
  1489. top:963px;
  1490. width:878px;
  1491. height:44px;
  1492. display:flex;
  1493. transition:none;
  1494. transform-origin:50% 50%;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:12px;
  1499. }
  1500. #u28689 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:5px 10px 5px 0px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u28689_text {
  1508. border-width:0px;
  1509. word-wrap:break-word;
  1510. text-transform:none;
  1511. }
  1512. #u28690 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:149px;
  1516. top:938px;
  1517. width:22px;
  1518. height:22px;
  1519. display:flex;
  1520. transition:none;
  1521. font-family:"Microsoft YaHei", sans-serif;
  1522. font-weight:400;
  1523. font-style:normal;
  1524. font-size:12px;
  1525. color:#FFFFFF;
  1526. }
  1527. #u28690 .text {
  1528. position:absolute;
  1529. align-self:center;
  1530. padding:4px 4px 4px 4px;
  1531. box-sizing:border-box;
  1532. width:100%;
  1533. }
  1534. #u28690_img {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:22px;
  1540. height:22px;
  1541. }
  1542. #u28690_text {
  1543. border-width:0px;
  1544. word-wrap:break-word;
  1545. text-transform:none;
  1546. visibility:hidden;
  1547. }
  1548. #u28691 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:128px;
  1552. top:992px;
  1553. width:64px;
  1554. height:1px;
  1555. display:flex;
  1556. -webkit-transform:rotate(90deg);
  1557. -moz-transform:rotate(90deg);
  1558. -ms-transform:rotate(90deg);
  1559. transform:rotate(90deg);
  1560. transition:none;
  1561. }
  1562. #u28691 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u28691_img {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:65px;
  1575. height:2px;
  1576. }
  1577. #u28691_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. visibility:hidden;
  1582. }
  1583. #u28692 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:149px;
  1587. top:1025px;
  1588. width:22px;
  1589. height:22px;
  1590. display:flex;
  1591. transition:none;
  1592. font-family:"Microsoft YaHei", sans-serif;
  1593. font-weight:400;
  1594. font-style:normal;
  1595. font-size:12px;
  1596. color:#FFFFFF;
  1597. }
  1598. #u28692 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:4px 4px 4px 4px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u28692_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:22px;
  1611. height:22px;
  1612. }
  1613. #u28692_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u28693_div {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:43px;
  1625. height:20px;
  1626. background:inherit;
  1627. background-color:rgba(255, 255, 255, 0);
  1628. border-radius:0px;
  1629. filter:drop-shadow(none);
  1630. transition:none;
  1631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1632. font-weight:400;
  1633. font-style:normal;
  1634. font-size:14px;
  1635. color:#AAAAAA;
  1636. }
  1637. #u28693 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:176px;
  1641. top:1025px;
  1642. width:43px;
  1643. height:20px;
  1644. display:flex;
  1645. transition:none;
  1646. transform-origin:50% 50%;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. font-size:14px;
  1651. color:#AAAAAA;
  1652. }
  1653. #u28693 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:0px 0px 0px 0px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u28693_text {
  1661. border-width:0px;
  1662. white-space:nowrap;
  1663. text-transform:none;
  1664. }
  1665. #u28694 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:0px;
  1671. height:0px;
  1672. }
  1673. #u28695_div {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:1000px;
  1679. height:60px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 1);
  1682. box-sizing:border-box;
  1683. border-width:1px;
  1684. border-style:solid;
  1685. border-color:rgba(215, 215, 215, 1);
  1686. border-radius:0px;
  1687. filter:drop-shadow(none);
  1688. transition:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#AAAAAA;
  1694. text-align:center;
  1695. line-height:30px;
  1696. }
  1697. #u28695 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:100px;
  1701. top:1418px;
  1702. width:1000px;
  1703. height:60px;
  1704. display:flex;
  1705. transition:none;
  1706. transform-origin:50% 50%;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:14px;
  1711. color:#AAAAAA;
  1712. text-align:center;
  1713. line-height:30px;
  1714. }
  1715. #u28695 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:5px 10px 5px 10px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u28695_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. visibility:hidden;
  1727. }
  1728. #u28696_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:80px;
  1734. height:30px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 1);
  1737. box-sizing:border-box;
  1738. border-width:1px;
  1739. border-style:solid;
  1740. border-color:rgba(170, 170, 170, 1);
  1741. border-radius:4px;
  1742. filter:drop-shadow(none);
  1743. transition:none;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:14px;
  1748. }
  1749. #u28696 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:990px;
  1753. top:1433px;
  1754. width:80px;
  1755. height:30px;
  1756. display:flex;
  1757. transition:none;
  1758. transform-origin:50% 50%;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:14px;
  1763. }
  1764. #u28696 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 2px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u28696_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. }
  1776. #u28697 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:0px;
  1782. height:0px;
  1783. }
  1784. #u28698 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:214px;
  1788. top:739px;
  1789. width:120px;
  1790. height:80px;
  1791. display:flex;
  1792. transition:none;
  1793. }
  1794. #u28698 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u28698_img {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:120px;
  1807. height:80px;
  1808. }
  1809. #u28698_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u28699 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:356px;
  1818. top:739px;
  1819. width:120px;
  1820. height:80px;
  1821. display:flex;
  1822. transition:none;
  1823. }
  1824. #u28699 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u28699_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:120px;
  1837. height:80px;
  1838. }
  1839. #u28699_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. }
  1844. #u28700_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:320px;
  1850. height:90px;
  1851. background:inherit;
  1852. background-color:rgba(255, 255, 255, 0);
  1853. border-left:0px;
  1854. border-top:0px;
  1855. border-right:0px;
  1856. border-radius:0px;
  1857. border-bottom-right-radius:0px;
  1858. border-bottom-left-radius:0px;
  1859. filter:drop-shadow(none);
  1860. transition:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:14px;
  1865. line-height:30px;
  1866. }
  1867. #u28700 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:140px;
  1871. top:564px;
  1872. width:320px;
  1873. height:90px;
  1874. display:flex;
  1875. transition:none;
  1876. transform-origin:50% 50%;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:14px;
  1881. line-height:30px;
  1882. }
  1883. #u28700 .text {
  1884. position:absolute;
  1885. align-self:flex-start;
  1886. padding:0px 0px 0px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u28700_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. }
  1895. #u28701_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:320px;
  1901. height:60px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 0);
  1904. border-left:0px;
  1905. border-top:0px;
  1906. border-right:0px;
  1907. border-radius:0px;
  1908. border-bottom-right-radius:0px;
  1909. border-bottom-left-radius:0px;
  1910. filter:drop-shadow(none);
  1911. transition:none;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:14px;
  1916. line-height:30px;
  1917. }
  1918. #u28701 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:460px;
  1922. top:564px;
  1923. width:320px;
  1924. height:60px;
  1925. display:flex;
  1926. transition:none;
  1927. transform-origin:50% 50%;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:14px;
  1932. line-height:30px;
  1933. }
  1934. #u28701 .text {
  1935. position:absolute;
  1936. align-self:flex-start;
  1937. padding:0px 0px 0px 0px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u28701_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. }
  1946. #u28702_div {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:320px;
  1952. height:60px;
  1953. background:inherit;
  1954. background-color:rgba(255, 255, 255, 0);
  1955. border-left:0px;
  1956. border-top:0px;
  1957. border-right:0px;
  1958. border-radius:0px;
  1959. border-bottom-right-radius:0px;
  1960. border-bottom-left-radius:0px;
  1961. filter:drop-shadow(none);
  1962. transition:none;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:14px;
  1967. line-height:30px;
  1968. }
  1969. #u28702 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:780px;
  1973. top:564px;
  1974. width:320px;
  1975. height:60px;
  1976. display:flex;
  1977. transition:none;
  1978. transform-origin:50% 50%;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. line-height:30px;
  1984. }
  1985. #u28702 .text {
  1986. position:absolute;
  1987. align-self:flex-start;
  1988. padding:0px 0px 0px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u28702_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u28703_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:83px;
  2003. height:35px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border-top:0px;
  2007. border-right:0px;
  2008. border-bottom:0px;
  2009. border-radius:0px;
  2010. border-top-left-radius:0px;
  2011. border-bottom-left-radius:0px;
  2012. filter:drop-shadow(none);
  2013. transition:none;
  2014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2015. font-weight:500;
  2016. font-style:normal;
  2017. font-size:18px;
  2018. }
  2019. #u28703 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:140px;
  2023. top:520px;
  2024. width:83px;
  2025. height:35px;
  2026. display:flex;
  2027. transition:none;
  2028. transform-origin:50% 50%;
  2029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2030. font-weight:500;
  2031. font-style:normal;
  2032. font-size:18px;
  2033. }
  2034. #u28703 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:5px 10px 5px 0px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u28703_text {
  2042. border-width:0px;
  2043. white-space:nowrap;
  2044. text-transform:none;
  2045. }
  2046. #u28704_div {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:323px;
  2052. height:90px;
  2053. background:inherit;
  2054. background-color:rgba(255, 255, 255, 0);
  2055. border-left:0px;
  2056. border-top:0px;
  2057. border-right:0px;
  2058. border-radius:0px;
  2059. border-bottom-right-radius:0px;
  2060. border-bottom-left-radius:0px;
  2061. filter:drop-shadow(none);
  2062. transition:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. line-height:30px;
  2068. }
  2069. #u28704 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:140px;
  2073. top:674px;
  2074. width:323px;
  2075. height:90px;
  2076. display:flex;
  2077. transition:none;
  2078. transform-origin:50% 50%;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. line-height:30px;
  2084. }
  2085. #u28704 .text {
  2086. position:absolute;
  2087. align-self:flex-start;
  2088. padding:0px 0px 0px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u28704_text {
  2093. border-width:0px;
  2094. white-space:nowrap;
  2095. text-transform:none;
  2096. }
  2097. #u28705_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:320px;
  2103. height:30px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 0);
  2106. border-left:0px;
  2107. border-top:0px;
  2108. border-right:0px;
  2109. border-radius:0px;
  2110. border-bottom-right-radius:0px;
  2111. border-bottom-left-radius:0px;
  2112. filter:drop-shadow(none);
  2113. transition:none;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:14px;
  2118. line-height:30px;
  2119. }
  2120. #u28705 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:460px;
  2124. top:674px;
  2125. width:320px;
  2126. height:30px;
  2127. display:flex;
  2128. transition:none;
  2129. transform-origin:50% 50%;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:14px;
  2134. line-height:30px;
  2135. }
  2136. #u28705 .text {
  2137. position:absolute;
  2138. align-self:flex-start;
  2139. padding:0px 0px 0px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u28705_text {
  2144. border-width:0px;
  2145. word-wrap:break-word;
  2146. text-transform:none;
  2147. }
  2148. #u28706_div {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:320px;
  2154. height:30px;
  2155. background:inherit;
  2156. background-color:rgba(255, 255, 255, 0);
  2157. border-left:0px;
  2158. border-top:0px;
  2159. border-right:0px;
  2160. border-radius:0px;
  2161. border-bottom-right-radius:0px;
  2162. border-bottom-left-radius:0px;
  2163. filter:drop-shadow(none);
  2164. transition:none;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:14px;
  2169. line-height:30px;
  2170. }
  2171. #u28706 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:780px;
  2175. top:674px;
  2176. width:320px;
  2177. height:30px;
  2178. display:flex;
  2179. transition:none;
  2180. transform-origin:50% 50%;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:14px;
  2185. line-height:30px;
  2186. }
  2187. #u28706 .text {
  2188. position:absolute;
  2189. align-self:flex-start;
  2190. padding:0px 0px 0px 0px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u28706_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u28707 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:0px;
  2205. height:0px;
  2206. }
  2207. #u28708_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:1000px;
  2213. height:1296px;
  2214. background:inherit;
  2215. background-color:rgba(242, 242, 242, 1);
  2216. box-sizing:border-box;
  2217. border-width:1px;
  2218. border-style:solid;
  2219. border-color:rgba(242, 242, 242, 1);
  2220. border-radius:0px;
  2221. filter:drop-shadow(none);
  2222. transition:none;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:14px;
  2227. color:#AAAAAA;
  2228. text-align:center;
  2229. line-height:30px;
  2230. }
  2231. #u28708 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:3163px;
  2235. top:115px;
  2236. width:1000px;
  2237. height:1296px;
  2238. display:flex;
  2239. transition:none;
  2240. transform-origin:50% 50%;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:14px;
  2245. color:#AAAAAA;
  2246. text-align:center;
  2247. line-height:30px;
  2248. }
  2249. #u28708 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:5px 10px 5px 10px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u28708_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. visibility:hidden;
  2261. }
  2262. #u28709_div {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:1000px;
  2268. height:580px;
  2269. background:inherit;
  2270. background-color:rgba(255, 255, 255, 1);
  2271. box-sizing:border-box;
  2272. border-width:1px;
  2273. border-style:solid;
  2274. border-color:rgba(242, 242, 242, 1);
  2275. border-radius:0px;
  2276. filter:drop-shadow(none);
  2277. transition:none;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:14px;
  2282. color:#AAAAAA;
  2283. text-align:center;
  2284. line-height:30px;
  2285. }
  2286. #u28709 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:3163px;
  2290. top:266px;
  2291. width:1000px;
  2292. height:580px;
  2293. display:flex;
  2294. transition:none;
  2295. transform-origin:50% 50%;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:14px;
  2300. color:#AAAAAA;
  2301. text-align:center;
  2302. line-height:30px;
  2303. }
  2304. #u28709 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:5px 10px 5px 10px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u28709_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u28710_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:73px;
  2323. height:40px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 0);
  2326. border-left:0px;
  2327. border-top:0px;
  2328. border-right:0px;
  2329. border-radius:0px;
  2330. border-bottom-right-radius:0px;
  2331. border-bottom-left-radius:0px;
  2332. filter:drop-shadow(none);
  2333. transition:none;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:18px;
  2338. }
  2339. #u28710 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:3203px;
  2343. top:282px;
  2344. width:73px;
  2345. height:40px;
  2346. display:flex;
  2347. transition:none;
  2348. transform-origin:50% 50%;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:18px;
  2353. }
  2354. #u28710 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:0px 0px 0px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u28710_text {
  2362. border-width:0px;
  2363. white-space:nowrap;
  2364. text-transform:none;
  2365. }
  2366. #u28711_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:81px;
  2372. height:30px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 0);
  2375. border-top:0px;
  2376. border-right:0px;
  2377. border-bottom:0px;
  2378. border-radius:0px;
  2379. border-top-left-radius:0px;
  2380. border-bottom-left-radius:0px;
  2381. filter:drop-shadow(none);
  2382. transition:none;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#7F7F7F;
  2388. }
  2389. #u28711 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:3203px;
  2393. top:332px;
  2394. width:81px;
  2395. height:30px;
  2396. display:flex;
  2397. transition:none;
  2398. transform-origin:50% 50%;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:14px;
  2403. color:#7F7F7F;
  2404. }
  2405. #u28711 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:5px 10px 5px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u28711_text {
  2413. border-width:0px;
  2414. white-space:nowrap;
  2415. text-transform:none;
  2416. }
  2417. #u28712_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:142px;
  2423. height:30px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border-top:0px;
  2427. border-right:0px;
  2428. border-bottom:0px;
  2429. border-radius:0px;
  2430. border-top-left-radius:0px;
  2431. border-bottom-left-radius:0px;
  2432. filter:drop-shadow(none);
  2433. transition:none;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:#1890FF;
  2439. }
  2440. #u28712 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:3284px;
  2444. top:332px;
  2445. width:142px;
  2446. height:30px;
  2447. display:flex;
  2448. transition:none;
  2449. transform-origin:50% 50%;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. color:#1890FF;
  2455. }
  2456. #u28712 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:5px 10px 5px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u28712_text {
  2464. border-width:0px;
  2465. white-space:nowrap;
  2466. text-transform:none;
  2467. }
  2468. #u28713_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:81px;
  2474. height:30px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. border-top:0px;
  2478. border-right:0px;
  2479. border-bottom:0px;
  2480. border-radius:0px;
  2481. border-top-left-radius:0px;
  2482. border-bottom-left-radius:0px;
  2483. filter:drop-shadow(none);
  2484. transition:none;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:14px;
  2489. color:#7F7F7F;
  2490. }
  2491. #u28713 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:3523px;
  2495. top:332px;
  2496. width:81px;
  2497. height:30px;
  2498. display:flex;
  2499. transition:none;
  2500. transform-origin:50% 50%;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:14px;
  2505. color:#7F7F7F;
  2506. }
  2507. #u28713 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:5px 10px 5px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u28713_text {
  2515. border-width:0px;
  2516. white-space:nowrap;
  2517. text-transform:none;
  2518. }
  2519. #u28714_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:67px;
  2525. height:30px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border-top:0px;
  2529. border-right:0px;
  2530. border-bottom:0px;
  2531. border-radius:0px;
  2532. border-top-left-radius:0px;
  2533. border-bottom-left-radius:0px;
  2534. filter:drop-shadow(none);
  2535. transition:none;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:14px;
  2540. }
  2541. #u28714 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:3604px;
  2545. top:332px;
  2546. width:67px;
  2547. height:30px;
  2548. display:flex;
  2549. transition:none;
  2550. transform-origin:50% 50%;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:14px;
  2555. }
  2556. #u28714 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:5px 10px 5px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u28714_text {
  2564. border-width:0px;
  2565. white-space:nowrap;
  2566. text-transform:none;
  2567. }
  2568. #u28715_div {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:81px;
  2574. height:30px;
  2575. background:inherit;
  2576. background-color:rgba(255, 255, 255, 0);
  2577. border-top:0px;
  2578. border-right:0px;
  2579. border-bottom:0px;
  2580. border-radius:0px;
  2581. border-top-left-radius:0px;
  2582. border-bottom-left-radius:0px;
  2583. filter:drop-shadow(none);
  2584. transition:none;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:14px;
  2589. color:#7F7F7F;
  2590. }
  2591. #u28715 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:3820px;
  2595. top:332px;
  2596. width:81px;
  2597. height:30px;
  2598. display:flex;
  2599. transition:none;
  2600. transform-origin:50% 50%;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:14px;
  2605. color:#7F7F7F;
  2606. }
  2607. #u28715 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:5px 10px 5px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u28715_text {
  2615. border-width:0px;
  2616. white-space:nowrap;
  2617. text-transform:none;
  2618. }
  2619. #u28716_div {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:53px;
  2625. height:30px;
  2626. background:inherit;
  2627. background-color:rgba(255, 255, 255, 0);
  2628. border-top:0px;
  2629. border-right:0px;
  2630. border-bottom:0px;
  2631. border-radius:0px;
  2632. border-top-left-radius:0px;
  2633. border-bottom-left-radius:0px;
  2634. filter:drop-shadow(none);
  2635. transition:none;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:14px;
  2640. }
  2641. #u28716 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:3901px;
  2645. top:332px;
  2646. width:53px;
  2647. height:30px;
  2648. display:flex;
  2649. transition:none;
  2650. transform-origin:50% 50%;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:14px;
  2655. }
  2656. #u28716 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:5px 10px 5px 0px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u28716_text {
  2664. border-width:0px;
  2665. white-space:nowrap;
  2666. text-transform:none;
  2667. }
  2668. #u28717_div {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:81px;
  2674. height:30px;
  2675. background:inherit;
  2676. background-color:rgba(255, 255, 255, 0);
  2677. border-top:0px;
  2678. border-right:0px;
  2679. border-bottom:0px;
  2680. border-radius:0px;
  2681. border-top-left-radius:0px;
  2682. border-bottom-left-radius:0px;
  2683. filter:drop-shadow(none);
  2684. transition:none;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. color:#7F7F7F;
  2690. }
  2691. #u28717 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:3203px;
  2695. top:372px;
  2696. width:81px;
  2697. height:30px;
  2698. display:flex;
  2699. transition:none;
  2700. transform-origin:50% 50%;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:14px;
  2705. color:#7F7F7F;
  2706. }
  2707. #u28717 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:5px 10px 5px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u28717_text {
  2715. border-width:0px;
  2716. white-space:nowrap;
  2717. text-transform:none;
  2718. }
  2719. #u28718_div {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:81px;
  2725. height:30px;
  2726. background:inherit;
  2727. background-color:rgba(255, 255, 255, 0);
  2728. border-top:0px;
  2729. border-right:0px;
  2730. border-bottom:0px;
  2731. border-radius:0px;
  2732. border-top-left-radius:0px;
  2733. border-bottom-left-radius:0px;
  2734. filter:drop-shadow(none);
  2735. transition:none;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:14px;
  2740. color:#7F7F7F;
  2741. }
  2742. #u28718 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:3523px;
  2746. top:372px;
  2747. width:81px;
  2748. height:30px;
  2749. display:flex;
  2750. transition:none;
  2751. transform-origin:50% 50%;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. color:#7F7F7F;
  2757. }
  2758. #u28718 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:5px 10px 5px 0px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u28718_text {
  2766. border-width:0px;
  2767. white-space:nowrap;
  2768. text-transform:none;
  2769. }
  2770. #u28719_div {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:67px;
  2776. height:30px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 0);
  2779. border-top:0px;
  2780. border-right:0px;
  2781. border-bottom:0px;
  2782. border-radius:0px;
  2783. border-top-left-radius:0px;
  2784. border-bottom-left-radius:0px;
  2785. filter:drop-shadow(none);
  2786. transition:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:14px;
  2791. }
  2792. #u28719 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:3604px;
  2796. top:372px;
  2797. width:67px;
  2798. height:30px;
  2799. display:flex;
  2800. transition:none;
  2801. transform-origin:50% 50%;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:14px;
  2806. }
  2807. #u28719 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:5px 10px 5px 0px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u28719_text {
  2815. border-width:0px;
  2816. white-space:nowrap;
  2817. text-transform:none;
  2818. }
  2819. #u28720_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:67px;
  2825. height:30px;
  2826. background:inherit;
  2827. background-color:rgba(255, 255, 255, 0);
  2828. border-top:0px;
  2829. border-right:0px;
  2830. border-bottom:0px;
  2831. border-radius:0px;
  2832. border-top-left-radius:0px;
  2833. border-bottom-left-radius:0px;
  2834. filter:drop-shadow(none);
  2835. transition:none;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:14px;
  2840. color:#7F7F7F;
  2841. }
  2842. #u28720 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:3820px;
  2846. top:372px;
  2847. width:67px;
  2848. height:30px;
  2849. display:flex;
  2850. transition:none;
  2851. transform-origin:50% 50%;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. color:#7F7F7F;
  2857. }
  2858. #u28720 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:5px 10px 5px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u28720_text {
  2866. border-width:0px;
  2867. white-space:nowrap;
  2868. text-transform:none;
  2869. }
  2870. #u28721_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:85px;
  2876. height:30px;
  2877. background:inherit;
  2878. background-color:rgba(255, 255, 255, 0);
  2879. border-top:0px;
  2880. border-right:0px;
  2881. border-bottom:0px;
  2882. border-radius:0px;
  2883. border-top-left-radius:0px;
  2884. border-bottom-left-radius:0px;
  2885. filter:drop-shadow(none);
  2886. transition:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:14px;
  2891. }
  2892. #u28721 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:3901px;
  2896. top:372px;
  2897. width:85px;
  2898. height:30px;
  2899. display:flex;
  2900. transition:none;
  2901. transform-origin:50% 50%;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. }
  2907. #u28721 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:5px 10px 5px 0px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u28721_text {
  2915. border-width:0px;
  2916. white-space:nowrap;
  2917. text-transform:none;
  2918. }
  2919. #u28722_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:183px;
  2925. height:30px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 0);
  2928. border-top:0px;
  2929. border-right:0px;
  2930. border-bottom:0px;
  2931. border-radius:0px;
  2932. border-top-left-radius:0px;
  2933. border-bottom-left-radius:0px;
  2934. filter:drop-shadow(none);
  2935. transition:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. }
  2941. #u28722 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:3284px;
  2945. top:372px;
  2946. width:183px;
  2947. height:30px;
  2948. display:flex;
  2949. transition:none;
  2950. transform-origin:50% 50%;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u28722 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:5px 10px 5px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u28722_text {
  2964. border-width:0px;
  2965. white-space:nowrap;
  2966. text-transform:none;
  2967. }
  2968. #u28723_div {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:81px;
  2974. height:30px;
  2975. background:inherit;
  2976. background-color:rgba(255, 255, 255, 0);
  2977. border-top:0px;
  2978. border-right:0px;
  2979. border-bottom:0px;
  2980. border-radius:0px;
  2981. border-top-left-radius:0px;
  2982. border-bottom-left-radius:0px;
  2983. filter:drop-shadow(none);
  2984. transition:none;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#7F7F7F;
  2990. }
  2991. #u28723 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:3203px;
  2995. top:412px;
  2996. width:81px;
  2997. height:30px;
  2998. display:flex;
  2999. transition:none;
  3000. transform-origin:50% 50%;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:14px;
  3005. color:#7F7F7F;
  3006. }
  3007. #u28723 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:5px 10px 5px 0px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u28723_text {
  3015. border-width:0px;
  3016. white-space:nowrap;
  3017. text-transform:none;
  3018. }
  3019. #u28724_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:126px;
  3025. height:30px;
  3026. background:inherit;
  3027. background-color:rgba(255, 255, 255, 0);
  3028. border-top:0px;
  3029. border-right:0px;
  3030. border-bottom:0px;
  3031. border-radius:0px;
  3032. border-top-left-radius:0px;
  3033. border-bottom-left-radius:0px;
  3034. filter:drop-shadow(none);
  3035. transition:none;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:14px;
  3040. }
  3041. #u28724 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:3284px;
  3045. top:412px;
  3046. width:126px;
  3047. height:30px;
  3048. display:flex;
  3049. transition:none;
  3050. transform-origin:50% 50%;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. }
  3056. #u28724 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:5px 10px 5px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u28724_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u28725_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:81px;
  3074. height:30px;
  3075. background:inherit;
  3076. background-color:rgba(255, 255, 255, 0);
  3077. border-top:0px;
  3078. border-right:0px;
  3079. border-bottom:0px;
  3080. border-radius:0px;
  3081. border-top-left-radius:0px;
  3082. border-bottom-left-radius:0px;
  3083. filter:drop-shadow(none);
  3084. transition:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:14px;
  3089. color:#7F7F7F;
  3090. }
  3091. #u28725 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:3203px;
  3095. top:452px;
  3096. width:81px;
  3097. height:30px;
  3098. display:flex;
  3099. transition:none;
  3100. transform-origin:50% 50%;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:14px;
  3105. color:#7F7F7F;
  3106. }
  3107. #u28725 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:5px 10px 5px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u28725_text {
  3115. border-width:0px;
  3116. white-space:nowrap;
  3117. text-transform:none;
  3118. }
  3119. #u28726_div {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:263px;
  3125. height:30px;
  3126. background:inherit;
  3127. background-color:rgba(255, 255, 255, 0);
  3128. border-top:0px;
  3129. border-right:0px;
  3130. border-bottom:0px;
  3131. border-radius:0px;
  3132. border-top-left-radius:0px;
  3133. border-bottom-left-radius:0px;
  3134. filter:drop-shadow(none);
  3135. transition:none;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:14px;
  3140. }
  3141. #u28726 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:3284px;
  3145. top:452px;
  3146. width:263px;
  3147. height:30px;
  3148. display:flex;
  3149. transition:none;
  3150. transform-origin:50% 50%;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:14px;
  3155. }
  3156. #u28726 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:5px 10px 5px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u28726_text {
  3164. border-width:0px;
  3165. white-space:nowrap;
  3166. text-transform:none;
  3167. }
  3168. #u28727 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:3203px;
  3172. top:500px;
  3173. width:941px;
  3174. height:1px;
  3175. display:flex;
  3176. transition:none;
  3177. }
  3178. #u28727 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 2px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u28727_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:942px;
  3191. height:2px;
  3192. }
  3193. #u28727_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u28728_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:1000px;
  3205. height:200px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 1);
  3208. box-sizing:border-box;
  3209. border-width:1px;
  3210. border-style:solid;
  3211. border-color:rgba(215, 215, 215, 1);
  3212. border-radius:0px;
  3213. filter:drop-shadow(none);
  3214. transition:none;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:14px;
  3219. color:#AAAAAA;
  3220. text-align:center;
  3221. line-height:30px;
  3222. }
  3223. #u28728 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:3164px;
  3227. top:55px;
  3228. width:1000px;
  3229. height:200px;
  3230. display:flex;
  3231. transition:none;
  3232. transform-origin:50% 50%;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. color:#AAAAAA;
  3238. text-align:center;
  3239. line-height:30px;
  3240. }
  3241. #u28728 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:5px 10px 5px 10px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u28728_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u28729_div {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:83px;
  3260. height:35px;
  3261. background:inherit;
  3262. background-color:rgba(255, 255, 255, 0);
  3263. border-top:0px;
  3264. border-right:0px;
  3265. border-bottom:0px;
  3266. border-radius:0px;
  3267. border-top-left-radius:0px;
  3268. border-bottom-left-radius:0px;
  3269. filter:drop-shadow(none);
  3270. transition:none;
  3271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3272. font-weight:500;
  3273. font-style:normal;
  3274. font-size:18px;
  3275. }
  3276. #u28729 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:3184px;
  3280. top:73px;
  3281. width:83px;
  3282. height:35px;
  3283. display:flex;
  3284. transition:none;
  3285. transform-origin:50% 50%;
  3286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3287. font-weight:500;
  3288. font-style:normal;
  3289. font-size:18px;
  3290. }
  3291. #u28729 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:5px 10px 5px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u28729_text {
  3299. border-width:0px;
  3300. white-space:nowrap;
  3301. text-transform:none;
  3302. }
  3303. #u28730_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:107px;
  3309. height:43px;
  3310. background:inherit;
  3311. background-color:rgba(255, 255, 255, 0);
  3312. border-top:0px;
  3313. border-right:0px;
  3314. border-bottom:0px;
  3315. border-radius:0px;
  3316. border-top-left-radius:0px;
  3317. border-bottom-left-radius:0px;
  3318. filter:drop-shadow(none);
  3319. transition:none;
  3320. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3321. font-weight:500;
  3322. font-style:normal;
  3323. font-size:24px;
  3324. }
  3325. #u28730 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:3194px;
  3329. top:124px;
  3330. width:107px;
  3331. height:43px;
  3332. display:flex;
  3333. transition:none;
  3334. transform-origin:50% 50%;
  3335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3336. font-weight:500;
  3337. font-style:normal;
  3338. font-size:24px;
  3339. }
  3340. #u28730 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:5px 10px 5px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u28730_text {
  3348. border-width:0px;
  3349. white-space:nowrap;
  3350. text-transform:none;
  3351. }
  3352. #u28731 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:4014px;
  3356. top:125px;
  3357. width:108px;
  3358. height:108px;
  3359. display:flex;
  3360. -webkit-transform:rotate(315deg);
  3361. -moz-transform:rotate(315deg);
  3362. -ms-transform:rotate(315deg);
  3363. transform:rotate(315deg);
  3364. transition:none;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:28px;
  3369. color:#F59A23;
  3370. }
  3371. #u28731 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 2px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u28731_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:108px;
  3384. height:108px;
  3385. }
  3386. #u28731_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. }
  3391. #u28732_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:325px;
  3397. height:60px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 0);
  3400. border-left:0px;
  3401. border-top:0px;
  3402. border-right:0px;
  3403. border-radius:0px;
  3404. border-bottom-right-radius:0px;
  3405. border-bottom-left-radius:0px;
  3406. filter:drop-shadow(none);
  3407. transition:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:14px;
  3412. line-height:30px;
  3413. }
  3414. #u28732 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:3194px;
  3418. top:179px;
  3419. width:325px;
  3420. height:60px;
  3421. display:flex;
  3422. transition:none;
  3423. transform-origin:50% 50%;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:14px;
  3428. line-height:30px;
  3429. }
  3430. #u28732 .text {
  3431. position:absolute;
  3432. align-self:flex-start;
  3433. padding:0px 0px 0px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u28732_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. }
  3442. #u28733 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:4136px;
  3446. top:77px;
  3447. width:17px;
  3448. height:17px;
  3449. display:flex;
  3450. transition:none;
  3451. }
  3452. #u28733 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u28733_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:17px;
  3465. height:17px;
  3466. }
  3467. #u28733_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u28734 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:0px;
  3479. height:0px;
  3480. }
  3481. #u28735_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:1000px;
  3487. height:611px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 1);
  3490. box-sizing:border-box;
  3491. border-width:1px;
  3492. border-style:solid;
  3493. border-color:rgba(242, 242, 242, 1);
  3494. border-radius:0px;
  3495. filter:drop-shadow(none);
  3496. transition:none;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:14px;
  3501. color:#AAAAAA;
  3502. text-align:center;
  3503. line-height:30px;
  3504. }
  3505. #u28735 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:3163px;
  3509. top:850px;
  3510. width:1000px;
  3511. height:611px;
  3512. display:flex;
  3513. transition:none;
  3514. transform-origin:50% 50%;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. color:#AAAAAA;
  3520. text-align:center;
  3521. line-height:30px;
  3522. }
  3523. #u28735 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:5px 10px 5px 10px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u28735_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u28736_div {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:73px;
  3542. height:40px;
  3543. background:inherit;
  3544. background-color:rgba(255, 255, 255, 0);
  3545. border-left:0px;
  3546. border-top:0px;
  3547. border-right:0px;
  3548. border-radius:0px;
  3549. border-bottom-right-radius:0px;
  3550. border-bottom-left-radius:0px;
  3551. filter:drop-shadow(none);
  3552. transition:none;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:18px;
  3557. }
  3558. #u28736 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:3203px;
  3562. top:866px;
  3563. width:73px;
  3564. height:40px;
  3565. display:flex;
  3566. transition:none;
  3567. transform-origin:50% 50%;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:18px;
  3572. }
  3573. #u28736 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:0px 0px 0px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u28736_text {
  3581. border-width:0px;
  3582. white-space:nowrap;
  3583. text-transform:none;
  3584. }
  3585. #u28737 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:0px;
  3591. height:0px;
  3592. }
  3593. #u28738_div {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:175px;
  3599. height:20px;
  3600. background:inherit;
  3601. background-color:rgba(255, 255, 255, 0);
  3602. border-radius:0px;
  3603. filter:drop-shadow(none);
  3604. transition:none;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. }
  3609. #u28738 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:3242px;
  3613. top:1296px;
  3614. width:175px;
  3615. height:20px;
  3616. display:flex;
  3617. transition:none;
  3618. transform-origin:50% 50%;
  3619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. }
  3623. #u28738 .text {
  3624. position:absolute;
  3625. align-self:flex-start;
  3626. padding:0px 0px 0px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u28738_text {
  3631. border-width:0px;
  3632. white-space:nowrap;
  3633. text-transform:none;
  3634. }
  3635. #u28739 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:3212px;
  3639. top:1294px;
  3640. width:22px;
  3641. height:22px;
  3642. display:flex;
  3643. transition:none;
  3644. font-family:"Microsoft YaHei", sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#FFFFFF;
  3649. }
  3650. #u28739 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:4px 4px 4px 4px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u28739_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:22px;
  3663. height:22px;
  3664. }
  3665. #u28739_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u28740_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:878px;
  3677. height:27px;
  3678. background:inherit;
  3679. background-color:rgba(255, 255, 255, 0);
  3680. border-top:0px;
  3681. border-right:0px;
  3682. border-bottom:0px;
  3683. border-radius:0px;
  3684. border-top-left-radius:0px;
  3685. border-bottom-left-radius:0px;
  3686. filter:drop-shadow(none);
  3687. transition:none;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:12px;
  3692. }
  3693. #u28740 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:3239px;
  3697. top:1316px;
  3698. width:878px;
  3699. height:27px;
  3700. display:flex;
  3701. transition:none;
  3702. transform-origin:50% 50%;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:12px;
  3707. }
  3708. #u28740 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:5px 10px 5px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u28740_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. }
  3720. #u28741 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:3196px;
  3724. top:1343px;
  3725. width:54px;
  3726. height:1px;
  3727. display:flex;
  3728. -webkit-transform:rotate(90deg);
  3729. -moz-transform:rotate(90deg);
  3730. -ms-transform:rotate(90deg);
  3731. transform:rotate(90deg);
  3732. transition:none;
  3733. }
  3734. #u28741 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 2px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u28741_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:55px;
  3747. height:2px;
  3748. }
  3749. #u28741_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u28742 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:3212px;
  3759. top:1359px;
  3760. width:22px;
  3761. height:22px;
  3762. display:flex;
  3763. transition:none;
  3764. font-family:"Microsoft YaHei", sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#FFFFFF;
  3769. }
  3770. #u28742 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:4px 4px 4px 4px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u28742_img {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:22px;
  3783. height:22px;
  3784. }
  3785. #u28742_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u28743_div {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:189px;
  3797. height:20px;
  3798. background:inherit;
  3799. background-color:rgba(255, 255, 255, 0);
  3800. border-radius:0px;
  3801. filter:drop-shadow(none);
  3802. transition:none;
  3803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3804. font-weight:400;
  3805. font-style:normal;
  3806. }
  3807. #u28743 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:3239px;
  3811. top:1359px;
  3812. width:189px;
  3813. height:20px;
  3814. display:flex;
  3815. transition:none;
  3816. transform-origin:50% 50%;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. }
  3821. #u28743 .text {
  3822. position:absolute;
  3823. align-self:flex-start;
  3824. padding:0px 0px 0px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u28743_text {
  3829. border-width:0px;
  3830. white-space:nowrap;
  3831. text-transform:none;
  3832. }
  3833. #u28744 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:0px;
  3839. height:0px;
  3840. }
  3841. #u28745_div {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:175px;
  3847. height:20px;
  3848. background:inherit;
  3849. background-color:rgba(255, 255, 255, 0);
  3850. border-radius:0px;
  3851. filter:drop-shadow(none);
  3852. transition:none;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. }
  3857. #u28745 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:3239px;
  3861. top:1175px;
  3862. width:175px;
  3863. height:20px;
  3864. display:flex;
  3865. transition:none;
  3866. transform-origin:50% 50%;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. }
  3871. #u28745 .text {
  3872. position:absolute;
  3873. align-self:center;
  3874. padding:0px 0px 0px 0px;
  3875. box-sizing:border-box;
  3876. width:100%;
  3877. }
  3878. #u28745_text {
  3879. border-width:0px;
  3880. white-space:nowrap;
  3881. text-transform:none;
  3882. }
  3883. #u28746 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:0px;
  3889. height:0px;
  3890. }
  3891. #u28747_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:878px;
  3897. height:61px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 0);
  3900. border-top:0px;
  3901. border-right:0px;
  3902. border-bottom:0px;
  3903. border-radius:0px;
  3904. border-top-left-radius:0px;
  3905. border-bottom-left-radius:0px;
  3906. filter:drop-shadow(none);
  3907. transition:none;
  3908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. }
  3913. #u28747 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:3239px;
  3917. top:1195px;
  3918. width:878px;
  3919. height:61px;
  3920. display:flex;
  3921. transition:none;
  3922. transform-origin:50% 50%;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. }
  3928. #u28747 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:5px 10px 5px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u28747_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. }
  3940. #u28748 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:3301px;
  3944. top:1239px;
  3945. width:61px;
  3946. height:41px;
  3947. display:flex;
  3948. transition:none;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. }
  3953. #u28748 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:0px 0px 0px 0px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u28748_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:61px;
  3966. height:41px;
  3967. }
  3968. #u28748_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u28749 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:3372px;
  3978. top:1239px;
  3979. width:61px;
  3980. height:41px;
  3981. display:flex;
  3982. transition:none;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. }
  3987. #u28749 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:0px 0px 0px 0px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u28749_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:61px;
  4000. height:41px;
  4001. }
  4002. #u28749_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u28750 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:3443px;
  4012. top:1239px;
  4013. width:61px;
  4014. height:41px;
  4015. display:flex;
  4016. transition:none;
  4017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. }
  4021. #u28750 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:0px 0px 0px 0px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u28750_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:61px;
  4034. height:41px;
  4035. }
  4036. #u28750_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u28751 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:3514px;
  4046. top:1239px;
  4047. width:61px;
  4048. height:41px;
  4049. display:flex;
  4050. transition:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. }
  4055. #u28751 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:0px 0px 0px 0px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u28751_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:61px;
  4068. height:41px;
  4069. }
  4070. #u28751_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u28752 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:3585px;
  4080. top:1239px;
  4081. width:61px;
  4082. height:41px;
  4083. display:flex;
  4084. transition:none;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. }
  4089. #u28752 .text {
  4090. position:absolute;
  4091. align-self:center;
  4092. padding:0px 0px 0px 0px;
  4093. box-sizing:border-box;
  4094. width:100%;
  4095. }
  4096. #u28752_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:61px;
  4102. height:41px;
  4103. }
  4104. #u28752_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u28753 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:3656px;
  4114. top:1239px;
  4115. width:61px;
  4116. height:41px;
  4117. display:flex;
  4118. transition:none;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. }
  4123. #u28753 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:0px 0px 0px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u28753_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:61px;
  4136. height:41px;
  4137. }
  4138. #u28753_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u28754 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:3212px;
  4148. top:1175px;
  4149. width:22px;
  4150. height:22px;
  4151. display:flex;
  4152. transition:none;
  4153. font-family:"Microsoft YaHei", sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:12px;
  4157. color:#FFFFFF;
  4158. }
  4159. #u28754 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:4px 4px 4px 4px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u28754_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:22px;
  4172. height:22px;
  4173. }
  4174. #u28754_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u28755 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:3181px;
  4184. top:1240px;
  4185. width:86px;
  4186. height:1px;
  4187. display:flex;
  4188. -webkit-transform:rotate(90deg);
  4189. -moz-transform:rotate(90deg);
  4190. -ms-transform:rotate(90deg);
  4191. transform:rotate(90deg);
  4192. transition:none;
  4193. }
  4194. #u28755 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 2px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u28755_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:87px;
  4207. height:2px;
  4208. }
  4209. #u28755_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u28756 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:0px;
  4221. height:0px;
  4222. }
  4223. #u28757_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:175px;
  4229. height:20px;
  4230. background:inherit;
  4231. background-color:rgba(255, 255, 255, 0);
  4232. border-radius:0px;
  4233. filter:drop-shadow(none);
  4234. transition:none;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. }
  4239. #u28757 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:3239px;
  4243. top:932px;
  4244. width:175px;
  4245. height:20px;
  4246. display:flex;
  4247. transition:none;
  4248. transform-origin:50% 50%;
  4249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. }
  4253. #u28757 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:0px 0px 0px 0px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u28757_text {
  4261. border-width:0px;
  4262. white-space:nowrap;
  4263. text-transform:none;
  4264. }
  4265. #u28758 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:0px;
  4271. height:0px;
  4272. }
  4273. #u28759_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:878px;
  4279. height:44px;
  4280. background:inherit;
  4281. background-color:rgba(255, 255, 255, 0);
  4282. border-top:0px;
  4283. border-right:0px;
  4284. border-bottom:0px;
  4285. border-radius:0px;
  4286. border-top-left-radius:0px;
  4287. border-bottom-left-radius:0px;
  4288. filter:drop-shadow(none);
  4289. transition:none;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. }
  4295. #u28759 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:3239px;
  4299. top:957px;
  4300. width:878px;
  4301. height:44px;
  4302. display:flex;
  4303. transition:none;
  4304. transform-origin:50% 50%;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. }
  4310. #u28759 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:5px 10px 5px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u28759_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. }
  4322. #u28760 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:3212px;
  4326. top:932px;
  4327. width:22px;
  4328. height:22px;
  4329. display:flex;
  4330. transition:none;
  4331. font-family:"Microsoft YaHei", sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#FFFFFF;
  4336. }
  4337. #u28760 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:4px 4px 4px 4px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u28760_img {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:22px;
  4350. height:22px;
  4351. }
  4352. #u28760_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u28761 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:3194px;
  4362. top:982px;
  4363. width:60px;
  4364. height:1px;
  4365. display:flex;
  4366. -webkit-transform:rotate(90deg);
  4367. -moz-transform:rotate(90deg);
  4368. -ms-transform:rotate(90deg);
  4369. transform:rotate(90deg);
  4370. transition:none;
  4371. }
  4372. #u28761 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u28761_img {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:61px;
  4385. height:2px;
  4386. }
  4387. #u28761_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u28762 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:0px;
  4399. height:0px;
  4400. }
  4401. #u28763_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:175px;
  4407. height:20px;
  4408. background:inherit;
  4409. background-color:rgba(255, 255, 255, 0);
  4410. border-radius:0px;
  4411. filter:drop-shadow(none);
  4412. transition:none;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. }
  4417. #u28763 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:3239px;
  4421. top:1019px;
  4422. width:175px;
  4423. height:20px;
  4424. display:flex;
  4425. transition:none;
  4426. transform-origin:50% 50%;
  4427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. }
  4431. #u28763 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:0px 0px 0px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u28763_text {
  4439. border-width:0px;
  4440. white-space:nowrap;
  4441. text-transform:none;
  4442. }
  4443. #u28764 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:0px;
  4449. height:0px;
  4450. }
  4451. #u28765_div {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:878px;
  4457. height:44px;
  4458. background:inherit;
  4459. background-color:rgba(255, 255, 255, 0);
  4460. border-top:0px;
  4461. border-right:0px;
  4462. border-bottom:0px;
  4463. border-radius:0px;
  4464. border-top-left-radius:0px;
  4465. border-bottom-left-radius:0px;
  4466. filter:drop-shadow(none);
  4467. transition:none;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:12px;
  4472. }
  4473. #u28765 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:3239px;
  4477. top:1044px;
  4478. width:878px;
  4479. height:44px;
  4480. display:flex;
  4481. transition:none;
  4482. transform-origin:50% 50%;
  4483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:12px;
  4487. }
  4488. #u28765 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:5px 10px 5px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u28765_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. }
  4500. #u28766 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:3212px;
  4504. top:1019px;
  4505. width:22px;
  4506. height:22px;
  4507. display:flex;
  4508. transition:none;
  4509. font-family:"Microsoft YaHei", sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:12px;
  4513. color:#FFFFFF;
  4514. }
  4515. #u28766 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:4px 4px 4px 4px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u28766_img {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:22px;
  4528. height:22px;
  4529. }
  4530. #u28766_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. visibility:hidden;
  4535. }
  4536. #u28767 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:3196px;
  4540. top:1067px;
  4541. width:56px;
  4542. height:1px;
  4543. display:flex;
  4544. -webkit-transform:rotate(90deg);
  4545. -moz-transform:rotate(90deg);
  4546. -ms-transform:rotate(90deg);
  4547. transform:rotate(90deg);
  4548. transition:none;
  4549. }
  4550. #u28767 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 2px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u28767_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:57px;
  4563. height:2px;
  4564. }
  4565. #u28767_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u28768 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:0px;
  4577. height:0px;
  4578. }
  4579. #u28769_div {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:175px;
  4585. height:20px;
  4586. background:inherit;
  4587. background-color:rgba(255, 255, 255, 0);
  4588. border-radius:0px;
  4589. filter:drop-shadow(none);
  4590. transition:none;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. }
  4595. #u28769 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:3239px;
  4599. top:1106px;
  4600. width:175px;
  4601. height:20px;
  4602. display:flex;
  4603. transition:none;
  4604. transform-origin:50% 50%;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. }
  4609. #u28769 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:0px 0px 0px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u28769_text {
  4617. border-width:0px;
  4618. white-space:nowrap;
  4619. text-transform:none;
  4620. }
  4621. #u28770 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:0px;
  4627. height:0px;
  4628. }
  4629. #u28771_div {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:878px;
  4635. height:27px;
  4636. background:inherit;
  4637. background-color:rgba(255, 255, 255, 0);
  4638. border-top:0px;
  4639. border-right:0px;
  4640. border-bottom:0px;
  4641. border-radius:0px;
  4642. border-top-left-radius:0px;
  4643. border-bottom-left-radius:0px;
  4644. filter:drop-shadow(none);
  4645. transition:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. }
  4651. #u28771 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:3239px;
  4655. top:1131px;
  4656. width:878px;
  4657. height:27px;
  4658. display:flex;
  4659. transition:none;
  4660. transform-origin:50% 50%;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:12px;
  4665. }
  4666. #u28771 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:5px 10px 5px 0px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u28771_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. }
  4678. #u28772 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:3212px;
  4682. top:1106px;
  4683. width:22px;
  4684. height:22px;
  4685. display:flex;
  4686. transition:none;
  4687. font-family:"Microsoft YaHei", sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#FFFFFF;
  4692. }
  4693. #u28772 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:4px 4px 4px 4px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u28772_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:22px;
  4706. height:22px;
  4707. }
  4708. #u28772_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u28773 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:3205px;
  4718. top:1145px;
  4719. width:38px;
  4720. height:1px;
  4721. display:flex;
  4722. -webkit-transform:rotate(90deg);
  4723. -moz-transform:rotate(90deg);
  4724. -ms-transform:rotate(90deg);
  4725. transform:rotate(90deg);
  4726. transition:none;
  4727. }
  4728. #u28773 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 2px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u28773_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:39px;
  4741. height:2px;
  4742. }
  4743. #u28773_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u28774 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:0px;
  4755. height:0px;
  4756. }
  4757. #u28775 {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:3277px;
  4761. top:739px;
  4762. width:120px;
  4763. height:80px;
  4764. display:flex;
  4765. transition:none;
  4766. }
  4767. #u28775 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u28775_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:120px;
  4780. height:80px;
  4781. }
  4782. #u28775_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. }
  4787. #u28776 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:3419px;
  4791. top:739px;
  4792. width:120px;
  4793. height:80px;
  4794. display:flex;
  4795. transition:none;
  4796. }
  4797. #u28776 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:2px 2px 2px 2px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u28776_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:120px;
  4810. height:80px;
  4811. }
  4812. #u28776_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. }
  4817. #u28777_div {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:320px;
  4823. height:90px;
  4824. background:inherit;
  4825. background-color:rgba(255, 255, 255, 0);
  4826. border-left:0px;
  4827. border-top:0px;
  4828. border-right:0px;
  4829. border-radius:0px;
  4830. border-bottom-right-radius:0px;
  4831. border-bottom-left-radius:0px;
  4832. filter:drop-shadow(none);
  4833. transition:none;
  4834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:14px;
  4838. line-height:30px;
  4839. }
  4840. #u28777 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:3203px;
  4844. top:564px;
  4845. width:320px;
  4846. height:90px;
  4847. display:flex;
  4848. transition:none;
  4849. transform-origin:50% 50%;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:14px;
  4854. line-height:30px;
  4855. }
  4856. #u28777 .text {
  4857. position:absolute;
  4858. align-self:flex-start;
  4859. padding:0px 0px 0px 0px;
  4860. box-sizing:border-box;
  4861. width:100%;
  4862. }
  4863. #u28777_text {
  4864. border-width:0px;
  4865. word-wrap:break-word;
  4866. text-transform:none;
  4867. }
  4868. #u28778_div {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:320px;
  4874. height:60px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 0);
  4877. border-left:0px;
  4878. border-top:0px;
  4879. border-right:0px;
  4880. border-radius:0px;
  4881. border-bottom-right-radius:0px;
  4882. border-bottom-left-radius:0px;
  4883. filter:drop-shadow(none);
  4884. transition:none;
  4885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:14px;
  4889. line-height:30px;
  4890. }
  4891. #u28778 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:3523px;
  4895. top:564px;
  4896. width:320px;
  4897. height:60px;
  4898. display:flex;
  4899. transition:none;
  4900. transform-origin:50% 50%;
  4901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:14px;
  4905. line-height:30px;
  4906. }
  4907. #u28778 .text {
  4908. position:absolute;
  4909. align-self:flex-start;
  4910. padding:0px 0px 0px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u28778_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. }
  4919. #u28779_div {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:320px;
  4925. height:60px;
  4926. background:inherit;
  4927. background-color:rgba(255, 255, 255, 0);
  4928. border-left:0px;
  4929. border-top:0px;
  4930. border-right:0px;
  4931. border-radius:0px;
  4932. border-bottom-right-radius:0px;
  4933. border-bottom-left-radius:0px;
  4934. filter:drop-shadow(none);
  4935. transition:none;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:14px;
  4940. line-height:30px;
  4941. }
  4942. #u28779 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:3843px;
  4946. top:564px;
  4947. width:320px;
  4948. height:60px;
  4949. display:flex;
  4950. transition:none;
  4951. transform-origin:50% 50%;
  4952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:14px;
  4956. line-height:30px;
  4957. }
  4958. #u28779 .text {
  4959. position:absolute;
  4960. align-self:flex-start;
  4961. padding:0px 0px 0px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u28779_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. }
  4970. #u28780_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:83px;
  4976. height:35px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 0);
  4979. border-top:0px;
  4980. border-right:0px;
  4981. border-bottom:0px;
  4982. border-radius:0px;
  4983. border-top-left-radius:0px;
  4984. border-bottom-left-radius:0px;
  4985. filter:drop-shadow(none);
  4986. transition:none;
  4987. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4988. font-weight:500;
  4989. font-style:normal;
  4990. font-size:18px;
  4991. }
  4992. #u28780 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:3203px;
  4996. top:520px;
  4997. width:83px;
  4998. height:35px;
  4999. display:flex;
  5000. transition:none;
  5001. transform-origin:50% 50%;
  5002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5003. font-weight:500;
  5004. font-style:normal;
  5005. font-size:18px;
  5006. }
  5007. #u28780 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:5px 10px 5px 0px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u28780_text {
  5015. border-width:0px;
  5016. white-space:nowrap;
  5017. text-transform:none;
  5018. }
  5019. #u28781_div {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:323px;
  5025. height:90px;
  5026. background:inherit;
  5027. background-color:rgba(255, 255, 255, 0);
  5028. border-left:0px;
  5029. border-top:0px;
  5030. border-right:0px;
  5031. border-radius:0px;
  5032. border-bottom-right-radius:0px;
  5033. border-bottom-left-radius:0px;
  5034. filter:drop-shadow(none);
  5035. transition:none;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:14px;
  5040. line-height:30px;
  5041. }
  5042. #u28781 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:3203px;
  5046. top:674px;
  5047. width:323px;
  5048. height:90px;
  5049. display:flex;
  5050. transition:none;
  5051. transform-origin:50% 50%;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. line-height:30px;
  5057. }
  5058. #u28781 .text {
  5059. position:absolute;
  5060. align-self:flex-start;
  5061. padding:0px 0px 0px 0px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u28781_text {
  5066. border-width:0px;
  5067. white-space:nowrap;
  5068. text-transform:none;
  5069. }
  5070. #u28782_div {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:320px;
  5076. height:30px;
  5077. background:inherit;
  5078. background-color:rgba(255, 255, 255, 0);
  5079. border-left:0px;
  5080. border-top:0px;
  5081. border-right:0px;
  5082. border-radius:0px;
  5083. border-bottom-right-radius:0px;
  5084. border-bottom-left-radius:0px;
  5085. filter:drop-shadow(none);
  5086. transition:none;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:14px;
  5091. line-height:30px;
  5092. }
  5093. #u28782 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:3523px;
  5097. top:674px;
  5098. width:320px;
  5099. height:30px;
  5100. display:flex;
  5101. transition:none;
  5102. transform-origin:50% 50%;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:14px;
  5107. line-height:30px;
  5108. }
  5109. #u28782 .text {
  5110. position:absolute;
  5111. align-self:flex-start;
  5112. padding:0px 0px 0px 0px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u28782_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. }
  5121. #u28783_div {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:320px;
  5127. height:30px;
  5128. background:inherit;
  5129. background-color:rgba(255, 255, 255, 0);
  5130. border-left:0px;
  5131. border-top:0px;
  5132. border-right:0px;
  5133. border-radius:0px;
  5134. border-bottom-right-radius:0px;
  5135. border-bottom-left-radius:0px;
  5136. filter:drop-shadow(none);
  5137. transition:none;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. line-height:30px;
  5143. }
  5144. #u28783 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:3843px;
  5148. top:674px;
  5149. width:320px;
  5150. height:30px;
  5151. display:flex;
  5152. transition:none;
  5153. transform-origin:50% 50%;
  5154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:14px;
  5158. line-height:30px;
  5159. }
  5160. #u28783 .text {
  5161. position:absolute;
  5162. align-self:flex-start;
  5163. padding:0px 0px 0px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u28783_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. }
  5172. #u28784 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:0px;
  5178. height:0px;
  5179. }
  5180. #u28785_div {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:1000px;
  5186. height:60px;
  5187. background:inherit;
  5188. background-color:rgba(255, 255, 255, 1);
  5189. box-sizing:border-box;
  5190. border-width:1px;
  5191. border-style:solid;
  5192. border-color:rgba(215, 215, 215, 1);
  5193. border-radius:0px;
  5194. filter:drop-shadow(none);
  5195. transition:none;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:14px;
  5200. color:#AAAAAA;
  5201. text-align:center;
  5202. line-height:30px;
  5203. }
  5204. #u28785 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:3163px;
  5208. top:1411px;
  5209. width:1000px;
  5210. height:60px;
  5211. display:flex;
  5212. transition:none;
  5213. transform-origin:50% 50%;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:14px;
  5218. color:#AAAAAA;
  5219. text-align:center;
  5220. line-height:30px;
  5221. }
  5222. #u28785 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:5px 10px 5px 10px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u28785_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u28786_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:80px;
  5241. height:30px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 1);
  5244. box-sizing:border-box;
  5245. border-width:1px;
  5246. border-style:solid;
  5247. border-color:rgba(170, 170, 170, 1);
  5248. border-radius:4px;
  5249. filter:drop-shadow(none);
  5250. transition:none;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:14px;
  5255. }
  5256. #u28786 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:4064px;
  5260. top:1426px;
  5261. width:80px;
  5262. height:30px;
  5263. display:flex;
  5264. transition:none;
  5265. transform-origin:50% 50%;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:14px;
  5270. }
  5271. #u28786 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u28786_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. }
  5283. #u28787 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:0px;
  5289. height:0px;
  5290. }
  5291. #u28788_div {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:1000px;
  5297. height:1139px;
  5298. background:inherit;
  5299. background-color:rgba(242, 242, 242, 1);
  5300. box-sizing:border-box;
  5301. border-width:1px;
  5302. border-style:solid;
  5303. border-color:rgba(242, 242, 242, 1);
  5304. border-radius:0px;
  5305. filter:drop-shadow(none);
  5306. transition:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. color:#AAAAAA;
  5312. text-align:center;
  5313. line-height:30px;
  5314. }
  5315. #u28788 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:4184px;
  5319. top:115px;
  5320. width:1000px;
  5321. height:1139px;
  5322. display:flex;
  5323. transition:none;
  5324. transform-origin:50% 50%;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:14px;
  5329. color:#AAAAAA;
  5330. text-align:center;
  5331. line-height:30px;
  5332. }
  5333. #u28788 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:5px 10px 5px 10px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u28788_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u28789_div {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:1000px;
  5352. height:580px;
  5353. background:inherit;
  5354. background-color:rgba(255, 255, 255, 1);
  5355. box-sizing:border-box;
  5356. border-width:1px;
  5357. border-style:solid;
  5358. border-color:rgba(242, 242, 242, 1);
  5359. border-radius:0px;
  5360. filter:drop-shadow(none);
  5361. transition:none;
  5362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:14px;
  5366. color:#AAAAAA;
  5367. text-align:center;
  5368. line-height:30px;
  5369. }
  5370. #u28789 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:4184px;
  5374. top:266px;
  5375. width:1000px;
  5376. height:580px;
  5377. display:flex;
  5378. transition:none;
  5379. transform-origin:50% 50%;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:14px;
  5384. color:#AAAAAA;
  5385. text-align:center;
  5386. line-height:30px;
  5387. }
  5388. #u28789 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:5px 10px 5px 10px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u28789_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. visibility:hidden;
  5400. }
  5401. #u28790_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:73px;
  5407. height:40px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border-left:0px;
  5411. border-top:0px;
  5412. border-right:0px;
  5413. border-radius:0px;
  5414. border-bottom-right-radius:0px;
  5415. border-bottom-left-radius:0px;
  5416. filter:drop-shadow(none);
  5417. transition:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:18px;
  5422. }
  5423. #u28790 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:4224px;
  5427. top:282px;
  5428. width:73px;
  5429. height:40px;
  5430. display:flex;
  5431. transition:none;
  5432. transform-origin:50% 50%;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:18px;
  5437. }
  5438. #u28790 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:0px 0px 0px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u28790_text {
  5446. border-width:0px;
  5447. white-space:nowrap;
  5448. text-transform:none;
  5449. }
  5450. #u28791_div {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:81px;
  5456. height:30px;
  5457. background:inherit;
  5458. background-color:rgba(255, 255, 255, 0);
  5459. border-top:0px;
  5460. border-right:0px;
  5461. border-bottom:0px;
  5462. border-radius:0px;
  5463. border-top-left-radius:0px;
  5464. border-bottom-left-radius:0px;
  5465. filter:drop-shadow(none);
  5466. transition:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:14px;
  5471. color:#7F7F7F;
  5472. }
  5473. #u28791 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:4224px;
  5477. top:332px;
  5478. width:81px;
  5479. height:30px;
  5480. display:flex;
  5481. transition:none;
  5482. transform-origin:50% 50%;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:14px;
  5487. color:#7F7F7F;
  5488. }
  5489. #u28791 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:5px 10px 5px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u28791_text {
  5497. border-width:0px;
  5498. white-space:nowrap;
  5499. text-transform:none;
  5500. }
  5501. #u28792_div {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:142px;
  5507. height:30px;
  5508. background:inherit;
  5509. background-color:rgba(255, 255, 255, 0);
  5510. border-top:0px;
  5511. border-right:0px;
  5512. border-bottom:0px;
  5513. border-radius:0px;
  5514. border-top-left-radius:0px;
  5515. border-bottom-left-radius:0px;
  5516. filter:drop-shadow(none);
  5517. transition:none;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:14px;
  5522. color:#1890FF;
  5523. }
  5524. #u28792 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:4305px;
  5528. top:332px;
  5529. width:142px;
  5530. height:30px;
  5531. display:flex;
  5532. transition:none;
  5533. transform-origin:50% 50%;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:14px;
  5538. color:#1890FF;
  5539. }
  5540. #u28792 .text {
  5541. position:absolute;
  5542. align-self:center;
  5543. padding:5px 10px 5px 0px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u28792_text {
  5548. border-width:0px;
  5549. white-space:nowrap;
  5550. text-transform:none;
  5551. }
  5552. #u28793_div {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:0px;
  5557. width:81px;
  5558. height:30px;
  5559. background:inherit;
  5560. background-color:rgba(255, 255, 255, 0);
  5561. border-top:0px;
  5562. border-right:0px;
  5563. border-bottom:0px;
  5564. border-radius:0px;
  5565. border-top-left-radius:0px;
  5566. border-bottom-left-radius:0px;
  5567. filter:drop-shadow(none);
  5568. transition:none;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. color:#7F7F7F;
  5574. }
  5575. #u28793 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:4544px;
  5579. top:332px;
  5580. width:81px;
  5581. height:30px;
  5582. display:flex;
  5583. transition:none;
  5584. transform-origin:50% 50%;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:14px;
  5589. color:#7F7F7F;
  5590. }
  5591. #u28793 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:5px 10px 5px 0px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u28793_text {
  5599. border-width:0px;
  5600. white-space:nowrap;
  5601. text-transform:none;
  5602. }
  5603. #u28794_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:67px;
  5609. height:30px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border-top:0px;
  5613. border-right:0px;
  5614. border-bottom:0px;
  5615. border-radius:0px;
  5616. border-top-left-radius:0px;
  5617. border-bottom-left-radius:0px;
  5618. filter:drop-shadow(none);
  5619. transition:none;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:14px;
  5624. }
  5625. #u28794 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:4625px;
  5629. top:332px;
  5630. width:67px;
  5631. height:30px;
  5632. display:flex;
  5633. transition:none;
  5634. transform-origin:50% 50%;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:14px;
  5639. }
  5640. #u28794 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:5px 10px 5px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u28794_text {
  5648. border-width:0px;
  5649. white-space:nowrap;
  5650. text-transform:none;
  5651. }
  5652. #u28795_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:81px;
  5658. height:30px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 0);
  5661. border-top:0px;
  5662. border-right:0px;
  5663. border-bottom:0px;
  5664. border-radius:0px;
  5665. border-top-left-radius:0px;
  5666. border-bottom-left-radius:0px;
  5667. filter:drop-shadow(none);
  5668. transition:none;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:14px;
  5673. color:#7F7F7F;
  5674. }
  5675. #u28795 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:4841px;
  5679. top:332px;
  5680. width:81px;
  5681. height:30px;
  5682. display:flex;
  5683. transition:none;
  5684. transform-origin:50% 50%;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#7F7F7F;
  5690. }
  5691. #u28795 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:5px 10px 5px 0px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u28795_text {
  5699. border-width:0px;
  5700. white-space:nowrap;
  5701. text-transform:none;
  5702. }
  5703. #u28796_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:53px;
  5709. height:30px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 0);
  5712. border-top:0px;
  5713. border-right:0px;
  5714. border-bottom:0px;
  5715. border-radius:0px;
  5716. border-top-left-radius:0px;
  5717. border-bottom-left-radius:0px;
  5718. filter:drop-shadow(none);
  5719. transition:none;
  5720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:14px;
  5724. }
  5725. #u28796 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:4922px;
  5729. top:332px;
  5730. width:53px;
  5731. height:30px;
  5732. display:flex;
  5733. transition:none;
  5734. transform-origin:50% 50%;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:14px;
  5739. }
  5740. #u28796 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:5px 10px 5px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u28796_text {
  5748. border-width:0px;
  5749. white-space:nowrap;
  5750. text-transform:none;
  5751. }
  5752. #u28797_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:81px;
  5758. height:30px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border-top:0px;
  5762. border-right:0px;
  5763. border-bottom:0px;
  5764. border-radius:0px;
  5765. border-top-left-radius:0px;
  5766. border-bottom-left-radius:0px;
  5767. filter:drop-shadow(none);
  5768. transition:none;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. color:#7F7F7F;
  5774. }
  5775. #u28797 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:4224px;
  5779. top:372px;
  5780. width:81px;
  5781. height:30px;
  5782. display:flex;
  5783. transition:none;
  5784. transform-origin:50% 50%;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:14px;
  5789. color:#7F7F7F;
  5790. }
  5791. #u28797 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:5px 10px 5px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u28797_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u28798_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:81px;
  5809. height:30px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 0);
  5812. border-top:0px;
  5813. border-right:0px;
  5814. border-bottom:0px;
  5815. border-radius:0px;
  5816. border-top-left-radius:0px;
  5817. border-bottom-left-radius:0px;
  5818. filter:drop-shadow(none);
  5819. transition:none;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. color:#7F7F7F;
  5825. }
  5826. #u28798 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:4544px;
  5830. top:372px;
  5831. width:81px;
  5832. height:30px;
  5833. display:flex;
  5834. transition:none;
  5835. transform-origin:50% 50%;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. color:#7F7F7F;
  5841. }
  5842. #u28798 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:5px 10px 5px 0px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u28798_text {
  5850. border-width:0px;
  5851. white-space:nowrap;
  5852. text-transform:none;
  5853. }
  5854. #u28799_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:67px;
  5860. height:30px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 0);
  5863. border-top:0px;
  5864. border-right:0px;
  5865. border-bottom:0px;
  5866. border-radius:0px;
  5867. border-top-left-radius:0px;
  5868. border-bottom-left-radius:0px;
  5869. filter:drop-shadow(none);
  5870. transition:none;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. }
  5876. #u28799 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:4625px;
  5880. top:372px;
  5881. width:67px;
  5882. height:30px;
  5883. display:flex;
  5884. transition:none;
  5885. transform-origin:50% 50%;
  5886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:14px;
  5890. }
  5891. #u28799 .text {
  5892. position:absolute;
  5893. align-self:center;
  5894. padding:5px 10px 5px 0px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u28799_text {
  5899. border-width:0px;
  5900. white-space:nowrap;
  5901. text-transform:none;
  5902. }
  5903. #u28800_div {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:67px;
  5909. height:30px;
  5910. background:inherit;
  5911. background-color:rgba(255, 255, 255, 0);
  5912. border-top:0px;
  5913. border-right:0px;
  5914. border-bottom:0px;
  5915. border-radius:0px;
  5916. border-top-left-radius:0px;
  5917. border-bottom-left-radius:0px;
  5918. filter:drop-shadow(none);
  5919. transition:none;
  5920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5921. font-weight:400;
  5922. font-style:normal;
  5923. font-size:14px;
  5924. color:#7F7F7F;
  5925. }
  5926. #u28800 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:4841px;
  5930. top:372px;
  5931. width:67px;
  5932. height:30px;
  5933. display:flex;
  5934. transition:none;
  5935. transform-origin:50% 50%;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. color:#7F7F7F;
  5941. }
  5942. #u28800 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:5px 10px 5px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u28800_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u28801_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:85px;
  5960. height:30px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 0);
  5963. border-top:0px;
  5964. border-right:0px;
  5965. border-bottom:0px;
  5966. border-radius:0px;
  5967. border-top-left-radius:0px;
  5968. border-bottom-left-radius:0px;
  5969. filter:drop-shadow(none);
  5970. transition:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. }
  5976. #u28801 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:4922px;
  5980. top:372px;
  5981. width:85px;
  5982. height:30px;
  5983. display:flex;
  5984. transition:none;
  5985. transform-origin:50% 50%;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:14px;
  5990. }
  5991. #u28801 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:5px 10px 5px 0px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u28801_text {
  5999. border-width:0px;
  6000. white-space:nowrap;
  6001. text-transform:none;
  6002. }
  6003. #u28802_div {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:183px;
  6009. height:30px;
  6010. background:inherit;
  6011. background-color:rgba(255, 255, 255, 0);
  6012. border-top:0px;
  6013. border-right:0px;
  6014. border-bottom:0px;
  6015. border-radius:0px;
  6016. border-top-left-radius:0px;
  6017. border-bottom-left-radius:0px;
  6018. filter:drop-shadow(none);
  6019. transition:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:14px;
  6024. }
  6025. #u28802 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:4305px;
  6029. top:372px;
  6030. width:183px;
  6031. height:30px;
  6032. display:flex;
  6033. transition:none;
  6034. transform-origin:50% 50%;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. }
  6040. #u28802 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:5px 10px 5px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u28802_text {
  6048. border-width:0px;
  6049. white-space:nowrap;
  6050. text-transform:none;
  6051. }
  6052. #u28803_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:81px;
  6058. height:30px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 0);
  6061. border-top:0px;
  6062. border-right:0px;
  6063. border-bottom:0px;
  6064. border-radius:0px;
  6065. border-top-left-radius:0px;
  6066. border-bottom-left-radius:0px;
  6067. filter:drop-shadow(none);
  6068. transition:none;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:14px;
  6073. color:#7F7F7F;
  6074. }
  6075. #u28803 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:4224px;
  6079. top:412px;
  6080. width:81px;
  6081. height:30px;
  6082. display:flex;
  6083. transition:none;
  6084. transform-origin:50% 50%;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:14px;
  6089. color:#7F7F7F;
  6090. }
  6091. #u28803 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:5px 10px 5px 0px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u28803_text {
  6099. border-width:0px;
  6100. white-space:nowrap;
  6101. text-transform:none;
  6102. }
  6103. #u28804_div {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:126px;
  6109. height:30px;
  6110. background:inherit;
  6111. background-color:rgba(255, 255, 255, 0);
  6112. border-top:0px;
  6113. border-right:0px;
  6114. border-bottom:0px;
  6115. border-radius:0px;
  6116. border-top-left-radius:0px;
  6117. border-bottom-left-radius:0px;
  6118. filter:drop-shadow(none);
  6119. transition:none;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:14px;
  6124. }
  6125. #u28804 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:4305px;
  6129. top:412px;
  6130. width:126px;
  6131. height:30px;
  6132. display:flex;
  6133. transition:none;
  6134. transform-origin:50% 50%;
  6135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:14px;
  6139. }
  6140. #u28804 .text {
  6141. position:absolute;
  6142. align-self:center;
  6143. padding:5px 10px 5px 0px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u28804_text {
  6148. border-width:0px;
  6149. white-space:nowrap;
  6150. text-transform:none;
  6151. }
  6152. #u28805_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:81px;
  6158. height:30px;
  6159. background:inherit;
  6160. background-color:rgba(255, 255, 255, 0);
  6161. border-top:0px;
  6162. border-right:0px;
  6163. border-bottom:0px;
  6164. border-radius:0px;
  6165. border-top-left-radius:0px;
  6166. border-bottom-left-radius:0px;
  6167. filter:drop-shadow(none);
  6168. transition:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:14px;
  6173. color:#7F7F7F;
  6174. }
  6175. #u28805 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:4224px;
  6179. top:452px;
  6180. width:81px;
  6181. height:30px;
  6182. display:flex;
  6183. transition:none;
  6184. transform-origin:50% 50%;
  6185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. color:#7F7F7F;
  6190. }
  6191. #u28805 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:5px 10px 5px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u28805_text {
  6199. border-width:0px;
  6200. white-space:nowrap;
  6201. text-transform:none;
  6202. }
  6203. #u28806_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:263px;
  6209. height:30px;
  6210. background:inherit;
  6211. background-color:rgba(255, 255, 255, 0);
  6212. border-top:0px;
  6213. border-right:0px;
  6214. border-bottom:0px;
  6215. border-radius:0px;
  6216. border-top-left-radius:0px;
  6217. border-bottom-left-radius:0px;
  6218. filter:drop-shadow(none);
  6219. transition:none;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:14px;
  6224. }
  6225. #u28806 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:4305px;
  6229. top:452px;
  6230. width:263px;
  6231. height:30px;
  6232. display:flex;
  6233. transition:none;
  6234. transform-origin:50% 50%;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. }
  6240. #u28806 .text {
  6241. position:absolute;
  6242. align-self:center;
  6243. padding:5px 10px 5px 0px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u28806_text {
  6248. border-width:0px;
  6249. white-space:nowrap;
  6250. text-transform:none;
  6251. }
  6252. #u28807 {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:4224px;
  6256. top:500px;
  6257. width:941px;
  6258. height:1px;
  6259. display:flex;
  6260. transition:none;
  6261. }
  6262. #u28807 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u28807_img {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:942px;
  6275. height:2px;
  6276. }
  6277. #u28807_text {
  6278. border-width:0px;
  6279. word-wrap:break-word;
  6280. text-transform:none;
  6281. visibility:hidden;
  6282. }
  6283. #u28808_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:1000px;
  6289. height:200px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 1);
  6292. box-sizing:border-box;
  6293. border-width:1px;
  6294. border-style:solid;
  6295. border-color:rgba(215, 215, 215, 1);
  6296. border-radius:0px;
  6297. filter:drop-shadow(none);
  6298. transition:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:#AAAAAA;
  6304. text-align:center;
  6305. line-height:30px;
  6306. }
  6307. #u28808 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:4185px;
  6311. top:55px;
  6312. width:1000px;
  6313. height:200px;
  6314. display:flex;
  6315. transition:none;
  6316. transform-origin:50% 50%;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#AAAAAA;
  6322. text-align:center;
  6323. line-height:30px;
  6324. }
  6325. #u28808 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:5px 10px 5px 10px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u28808_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u28809_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:83px;
  6344. height:35px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 0);
  6347. border-top:0px;
  6348. border-right:0px;
  6349. border-bottom:0px;
  6350. border-radius:0px;
  6351. border-top-left-radius:0px;
  6352. border-bottom-left-radius:0px;
  6353. filter:drop-shadow(none);
  6354. transition:none;
  6355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6356. font-weight:500;
  6357. font-style:normal;
  6358. font-size:18px;
  6359. }
  6360. #u28809 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:4205px;
  6364. top:73px;
  6365. width:83px;
  6366. height:35px;
  6367. display:flex;
  6368. transition:none;
  6369. transform-origin:50% 50%;
  6370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6371. font-weight:500;
  6372. font-style:normal;
  6373. font-size:18px;
  6374. }
  6375. #u28809 .text {
  6376. position:absolute;
  6377. align-self:center;
  6378. padding:5px 10px 5px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u28809_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u28810_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:107px;
  6393. height:43px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border-top:0px;
  6397. border-right:0px;
  6398. border-bottom:0px;
  6399. border-radius:0px;
  6400. border-top-left-radius:0px;
  6401. border-bottom-left-radius:0px;
  6402. filter:drop-shadow(none);
  6403. transition:none;
  6404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6405. font-weight:500;
  6406. font-style:normal;
  6407. font-size:24px;
  6408. }
  6409. #u28810 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:4215px;
  6413. top:124px;
  6414. width:107px;
  6415. height:43px;
  6416. display:flex;
  6417. transition:none;
  6418. transform-origin:50% 50%;
  6419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6420. font-weight:500;
  6421. font-style:normal;
  6422. font-size:24px;
  6423. }
  6424. #u28810 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:5px 10px 5px 0px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u28810_text {
  6432. border-width:0px;
  6433. white-space:nowrap;
  6434. text-transform:none;
  6435. }
  6436. #u28811 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:5035px;
  6440. top:125px;
  6441. width:108px;
  6442. height:108px;
  6443. display:flex;
  6444. -webkit-transform:rotate(315deg);
  6445. -moz-transform:rotate(315deg);
  6446. -ms-transform:rotate(315deg);
  6447. transform:rotate(315deg);
  6448. transition:none;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:28px;
  6453. color:#F59A23;
  6454. }
  6455. #u28811 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u28811_img {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:108px;
  6468. height:108px;
  6469. }
  6470. #u28811_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. }
  6475. #u28812_div {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:325px;
  6481. height:60px;
  6482. background:inherit;
  6483. background-color:rgba(255, 255, 255, 0);
  6484. border-left:0px;
  6485. border-top:0px;
  6486. border-right:0px;
  6487. border-radius:0px;
  6488. border-bottom-right-radius:0px;
  6489. border-bottom-left-radius:0px;
  6490. filter:drop-shadow(none);
  6491. transition:none;
  6492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:14px;
  6496. line-height:30px;
  6497. }
  6498. #u28812 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:4215px;
  6502. top:179px;
  6503. width:325px;
  6504. height:60px;
  6505. display:flex;
  6506. transition:none;
  6507. transform-origin:50% 50%;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:14px;
  6512. line-height:30px;
  6513. }
  6514. #u28812 .text {
  6515. position:absolute;
  6516. align-self:flex-start;
  6517. padding:0px 0px 0px 0px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u28812_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u28813 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:5157px;
  6530. top:77px;
  6531. width:17px;
  6532. height:17px;
  6533. display:flex;
  6534. transition:none;
  6535. }
  6536. #u28813 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:2px 2px 2px 2px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u28813_img {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:17px;
  6549. height:17px;
  6550. }
  6551. #u28813_text {
  6552. border-width:0px;
  6553. word-wrap:break-word;
  6554. text-transform:none;
  6555. visibility:hidden;
  6556. }
  6557. #u28814 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:0px;
  6563. height:0px;
  6564. }
  6565. #u28815_div {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:1000px;
  6571. height:60px;
  6572. background:inherit;
  6573. background-color:rgba(255, 255, 255, 1);
  6574. box-sizing:border-box;
  6575. border-width:1px;
  6576. border-style:solid;
  6577. border-color:rgba(215, 215, 215, 1);
  6578. border-radius:0px;
  6579. filter:drop-shadow(none);
  6580. transition:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:14px;
  6585. color:#AAAAAA;
  6586. text-align:center;
  6587. line-height:30px;
  6588. }
  6589. #u28815 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:4184px;
  6593. top:1411px;
  6594. width:1000px;
  6595. height:60px;
  6596. display:flex;
  6597. transition:none;
  6598. transform-origin:50% 50%;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:14px;
  6603. color:#AAAAAA;
  6604. text-align:center;
  6605. line-height:30px;
  6606. }
  6607. #u28815 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:5px 10px 5px 10px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u28815_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. visibility:hidden;
  6619. }
  6620. #u28816_div {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:80px;
  6626. height:30px;
  6627. background:inherit;
  6628. background-color:rgba(255, 255, 255, 1);
  6629. box-sizing:border-box;
  6630. border-width:1px;
  6631. border-style:solid;
  6632. border-color:rgba(170, 170, 170, 1);
  6633. border-radius:4px;
  6634. filter:drop-shadow(none);
  6635. transition:none;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:14px;
  6640. }
  6641. #u28816 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:5085px;
  6645. top:1426px;
  6646. width:80px;
  6647. height:30px;
  6648. display:flex;
  6649. transition:none;
  6650. transform-origin:50% 50%;
  6651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:14px;
  6655. }
  6656. #u28816 .text {
  6657. position:absolute;
  6658. align-self:center;
  6659. padding:2px 2px 2px 2px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u28816_text {
  6664. border-width:0px;
  6665. word-wrap:break-word;
  6666. text-transform:none;
  6667. }
  6668. #u28817 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u28818_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:1000px;
  6682. height:555px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(242, 242, 242, 1);
  6689. border-radius:0px;
  6690. filter:drop-shadow(none);
  6691. transition:none;
  6692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6693. font-weight:400;
  6694. font-style:normal;
  6695. font-size:14px;
  6696. color:#AAAAAA;
  6697. text-align:center;
  6698. line-height:30px;
  6699. }
  6700. #u28818 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:4184px;
  6704. top:856px;
  6705. width:1000px;
  6706. height:555px;
  6707. display:flex;
  6708. transition:none;
  6709. transform-origin:50% 50%;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:14px;
  6714. color:#AAAAAA;
  6715. text-align:center;
  6716. line-height:30px;
  6717. }
  6718. #u28818 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:5px 10px 5px 10px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u28818_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u28819_div {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:73px;
  6737. height:40px;
  6738. background:inherit;
  6739. background-color:rgba(255, 255, 255, 0);
  6740. border-left:0px;
  6741. border-top:0px;
  6742. border-right:0px;
  6743. border-radius:0px;
  6744. border-bottom-right-radius:0px;
  6745. border-bottom-left-radius:0px;
  6746. filter:drop-shadow(none);
  6747. transition:none;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:18px;
  6752. }
  6753. #u28819 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:4224px;
  6757. top:872px;
  6758. width:73px;
  6759. height:40px;
  6760. display:flex;
  6761. transition:none;
  6762. transform-origin:50% 50%;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:18px;
  6767. }
  6768. #u28819 .text {
  6769. position:absolute;
  6770. align-self:center;
  6771. padding:0px 0px 0px 0px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u28819_text {
  6776. border-width:0px;
  6777. white-space:nowrap;
  6778. text-transform:none;
  6779. }
  6780. #u28820 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:0px;
  6786. height:0px;
  6787. }
  6788. #u28821_div {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:175px;
  6794. height:20px;
  6795. background:inherit;
  6796. background-color:rgba(255, 255, 255, 0);
  6797. border-radius:0px;
  6798. filter:drop-shadow(none);
  6799. transition:none;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. }
  6804. #u28821 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:4260px;
  6808. top:938px;
  6809. width:175px;
  6810. height:20px;
  6811. display:flex;
  6812. transition:none;
  6813. transform-origin:50% 50%;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. }
  6818. #u28821 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:0px 0px 0px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u28821_text {
  6826. border-width:0px;
  6827. white-space:nowrap;
  6828. text-transform:none;
  6829. }
  6830. #u28822 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:0px;
  6836. height:0px;
  6837. }
  6838. #u28823_div {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:878px;
  6844. height:44px;
  6845. background:inherit;
  6846. background-color:rgba(255, 255, 255, 0);
  6847. border-top:0px;
  6848. border-right:0px;
  6849. border-bottom:0px;
  6850. border-radius:0px;
  6851. border-top-left-radius:0px;
  6852. border-bottom-left-radius:0px;
  6853. filter:drop-shadow(none);
  6854. transition:none;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:12px;
  6859. }
  6860. #u28823 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:4260px;
  6864. top:963px;
  6865. width:878px;
  6866. height:44px;
  6867. display:flex;
  6868. transition:none;
  6869. transform-origin:50% 50%;
  6870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:12px;
  6874. }
  6875. #u28823 .text {
  6876. position:absolute;
  6877. align-self:center;
  6878. padding:5px 10px 5px 0px;
  6879. box-sizing:border-box;
  6880. width:100%;
  6881. }
  6882. #u28823_text {
  6883. border-width:0px;
  6884. word-wrap:break-word;
  6885. text-transform:none;
  6886. }
  6887. #u28824 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:4233px;
  6891. top:938px;
  6892. width:22px;
  6893. height:22px;
  6894. display:flex;
  6895. transition:none;
  6896. font-family:"Microsoft YaHei", sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. color:#FFFFFF;
  6901. }
  6902. #u28824 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:4px 4px 4px 4px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u28824_img {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:22px;
  6915. height:22px;
  6916. }
  6917. #u28824_text {
  6918. border-width:0px;
  6919. word-wrap:break-word;
  6920. text-transform:none;
  6921. visibility:hidden;
  6922. }
  6923. #u28825 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:4215px;
  6927. top:988px;
  6928. width:60px;
  6929. height:1px;
  6930. display:flex;
  6931. -webkit-transform:rotate(90deg);
  6932. -moz-transform:rotate(90deg);
  6933. -ms-transform:rotate(90deg);
  6934. transform:rotate(90deg);
  6935. transition:none;
  6936. }
  6937. #u28825 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 2px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u28825_img {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:61px;
  6950. height:2px;
  6951. }
  6952. #u28825_text {
  6953. border-width:0px;
  6954. word-wrap:break-word;
  6955. text-transform:none;
  6956. visibility:hidden;
  6957. }
  6958. #u28826 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:0px;
  6964. height:0px;
  6965. }
  6966. #u28827_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:175px;
  6972. height:20px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 0);
  6975. border-radius:0px;
  6976. filter:drop-shadow(none);
  6977. transition:none;
  6978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. }
  6982. #u28827 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:4260px;
  6986. top:1025px;
  6987. width:175px;
  6988. height:20px;
  6989. display:flex;
  6990. transition:none;
  6991. transform-origin:50% 50%;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. }
  6996. #u28827 .text {
  6997. position:absolute;
  6998. align-self:center;
  6999. padding:0px 0px 0px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u28827_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u28828 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:0px;
  7014. height:0px;
  7015. }
  7016. #u28829_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:878px;
  7022. height:44px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 0);
  7025. border-top:0px;
  7026. border-right:0px;
  7027. border-bottom:0px;
  7028. border-radius:0px;
  7029. border-top-left-radius:0px;
  7030. border-bottom-left-radius:0px;
  7031. filter:drop-shadow(none);
  7032. transition:none;
  7033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:12px;
  7037. }
  7038. #u28829 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:4260px;
  7042. top:1050px;
  7043. width:878px;
  7044. height:44px;
  7045. display:flex;
  7046. transition:none;
  7047. transform-origin:50% 50%;
  7048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:12px;
  7052. }
  7053. #u28829 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:5px 10px 5px 0px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u28829_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. }
  7065. #u28830 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:4233px;
  7069. top:1025px;
  7070. width:22px;
  7071. height:22px;
  7072. display:flex;
  7073. transition:none;
  7074. font-family:"Microsoft YaHei", sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:12px;
  7078. color:#FFFFFF;
  7079. }
  7080. #u28830 .text {
  7081. position:absolute;
  7082. align-self:center;
  7083. padding:4px 4px 4px 4px;
  7084. box-sizing:border-box;
  7085. width:100%;
  7086. }
  7087. #u28830_img {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:22px;
  7093. height:22px;
  7094. }
  7095. #u28830_text {
  7096. border-width:0px;
  7097. word-wrap:break-word;
  7098. text-transform:none;
  7099. visibility:hidden;
  7100. }
  7101. #u28831 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:4211px;
  7105. top:1078px;
  7106. width:68px;
  7107. height:1px;
  7108. display:flex;
  7109. -webkit-transform:rotate(90deg);
  7110. -moz-transform:rotate(90deg);
  7111. -ms-transform:rotate(90deg);
  7112. transform:rotate(90deg);
  7113. transition:none;
  7114. }
  7115. #u28831 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:2px 2px 2px 2px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u28831_img {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:69px;
  7128. height:2px;
  7129. }
  7130. #u28831_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. visibility:hidden;
  7135. }
  7136. #u28832 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:4233px;
  7140. top:1112px;
  7141. width:22px;
  7142. height:22px;
  7143. display:flex;
  7144. transition:none;
  7145. font-family:"Microsoft YaHei", sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:12px;
  7149. color:#FFFFFF;
  7150. }
  7151. #u28832 .text {
  7152. position:absolute;
  7153. align-self:center;
  7154. padding:4px 4px 4px 4px;
  7155. box-sizing:border-box;
  7156. width:100%;
  7157. }
  7158. #u28832_img {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:22px;
  7164. height:22px;
  7165. }
  7166. #u28832_text {
  7167. border-width:0px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. visibility:hidden;
  7171. }
  7172. #u28833_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:189px;
  7178. height:20px;
  7179. background:inherit;
  7180. background-color:rgba(255, 255, 255, 0);
  7181. border-radius:0px;
  7182. filter:drop-shadow(none);
  7183. transition:none;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. }
  7188. #u28833 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:4260px;
  7192. top:1112px;
  7193. width:189px;
  7194. height:20px;
  7195. display:flex;
  7196. transition:none;
  7197. transform-origin:50% 50%;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. }
  7202. #u28833 .text {
  7203. position:absolute;
  7204. align-self:flex-start;
  7205. padding:0px 0px 0px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u28833_text {
  7210. border-width:0px;
  7211. white-space:nowrap;
  7212. text-transform:none;
  7213. }
  7214. #u28834 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:0px;
  7220. height:0px;
  7221. }
  7222. #u28835 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:4298px;
  7226. top:739px;
  7227. width:120px;
  7228. height:80px;
  7229. display:flex;
  7230. transition:none;
  7231. }
  7232. #u28835 .text {
  7233. position:absolute;
  7234. align-self:center;
  7235. padding:2px 2px 2px 2px;
  7236. box-sizing:border-box;
  7237. width:100%;
  7238. }
  7239. #u28835_img {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:120px;
  7245. height:80px;
  7246. }
  7247. #u28835_text {
  7248. border-width:0px;
  7249. word-wrap:break-word;
  7250. text-transform:none;
  7251. }
  7252. #u28836 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:4440px;
  7256. top:739px;
  7257. width:120px;
  7258. height:80px;
  7259. display:flex;
  7260. transition:none;
  7261. }
  7262. #u28836 .text {
  7263. position:absolute;
  7264. align-self:center;
  7265. padding:2px 2px 2px 2px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u28836_img {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:120px;
  7275. height:80px;
  7276. }
  7277. #u28836_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. }
  7282. #u28837_div {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:320px;
  7288. height:90px;
  7289. background:inherit;
  7290. background-color:rgba(255, 255, 255, 0);
  7291. border-left:0px;
  7292. border-top:0px;
  7293. border-right:0px;
  7294. border-radius:0px;
  7295. border-bottom-right-radius:0px;
  7296. border-bottom-left-radius:0px;
  7297. filter:drop-shadow(none);
  7298. transition:none;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:14px;
  7303. line-height:30px;
  7304. }
  7305. #u28837 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:4224px;
  7309. top:564px;
  7310. width:320px;
  7311. height:90px;
  7312. display:flex;
  7313. transition:none;
  7314. transform-origin:50% 50%;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. line-height:30px;
  7320. }
  7321. #u28837 .text {
  7322. position:absolute;
  7323. align-self:flex-start;
  7324. padding:0px 0px 0px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u28837_text {
  7329. border-width:0px;
  7330. word-wrap:break-word;
  7331. text-transform:none;
  7332. }
  7333. #u28838_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:320px;
  7339. height:60px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 0);
  7342. border-left:0px;
  7343. border-top:0px;
  7344. border-right:0px;
  7345. border-radius:0px;
  7346. border-bottom-right-radius:0px;
  7347. border-bottom-left-radius:0px;
  7348. filter:drop-shadow(none);
  7349. transition:none;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:14px;
  7354. line-height:30px;
  7355. }
  7356. #u28838 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:4544px;
  7360. top:564px;
  7361. width:320px;
  7362. height:60px;
  7363. display:flex;
  7364. transition:none;
  7365. transform-origin:50% 50%;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:14px;
  7370. line-height:30px;
  7371. }
  7372. #u28838 .text {
  7373. position:absolute;
  7374. align-self:flex-start;
  7375. padding:0px 0px 0px 0px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u28838_text {
  7380. border-width:0px;
  7381. word-wrap:break-word;
  7382. text-transform:none;
  7383. }
  7384. #u28839_div {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:320px;
  7390. height:60px;
  7391. background:inherit;
  7392. background-color:rgba(255, 255, 255, 0);
  7393. border-left:0px;
  7394. border-top:0px;
  7395. border-right:0px;
  7396. border-radius:0px;
  7397. border-bottom-right-radius:0px;
  7398. border-bottom-left-radius:0px;
  7399. filter:drop-shadow(none);
  7400. transition:none;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:14px;
  7405. line-height:30px;
  7406. }
  7407. #u28839 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:4864px;
  7411. top:564px;
  7412. width:320px;
  7413. height:60px;
  7414. display:flex;
  7415. transition:none;
  7416. transform-origin:50% 50%;
  7417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. font-size:14px;
  7421. line-height:30px;
  7422. }
  7423. #u28839 .text {
  7424. position:absolute;
  7425. align-self:flex-start;
  7426. padding:0px 0px 0px 0px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u28839_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. }
  7435. #u28840_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:83px;
  7441. height:35px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 0);
  7444. border-top:0px;
  7445. border-right:0px;
  7446. border-bottom:0px;
  7447. border-radius:0px;
  7448. border-top-left-radius:0px;
  7449. border-bottom-left-radius:0px;
  7450. filter:drop-shadow(none);
  7451. transition:none;
  7452. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7453. font-weight:500;
  7454. font-style:normal;
  7455. font-size:18px;
  7456. }
  7457. #u28840 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:4224px;
  7461. top:520px;
  7462. width:83px;
  7463. height:35px;
  7464. display:flex;
  7465. transition:none;
  7466. transform-origin:50% 50%;
  7467. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7468. font-weight:500;
  7469. font-style:normal;
  7470. font-size:18px;
  7471. }
  7472. #u28840 .text {
  7473. position:absolute;
  7474. align-self:center;
  7475. padding:5px 10px 5px 0px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u28840_text {
  7480. border-width:0px;
  7481. white-space:nowrap;
  7482. text-transform:none;
  7483. }
  7484. #u28841_div {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:323px;
  7490. height:90px;
  7491. background:inherit;
  7492. background-color:rgba(255, 255, 255, 0);
  7493. border-left:0px;
  7494. border-top:0px;
  7495. border-right:0px;
  7496. border-radius:0px;
  7497. border-bottom-right-radius:0px;
  7498. border-bottom-left-radius:0px;
  7499. filter:drop-shadow(none);
  7500. transition:none;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:14px;
  7505. line-height:30px;
  7506. }
  7507. #u28841 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:4224px;
  7511. top:674px;
  7512. width:323px;
  7513. height:90px;
  7514. display:flex;
  7515. transition:none;
  7516. transform-origin:50% 50%;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:14px;
  7521. line-height:30px;
  7522. }
  7523. #u28841 .text {
  7524. position:absolute;
  7525. align-self:flex-start;
  7526. padding:0px 0px 0px 0px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u28841_text {
  7531. border-width:0px;
  7532. white-space:nowrap;
  7533. text-transform:none;
  7534. }
  7535. #u28842_div {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:320px;
  7541. height:30px;
  7542. background:inherit;
  7543. background-color:rgba(255, 255, 255, 0);
  7544. border-left:0px;
  7545. border-top:0px;
  7546. border-right:0px;
  7547. border-radius:0px;
  7548. border-bottom-right-radius:0px;
  7549. border-bottom-left-radius:0px;
  7550. filter:drop-shadow(none);
  7551. transition:none;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:14px;
  7556. line-height:30px;
  7557. }
  7558. #u28842 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:4544px;
  7562. top:674px;
  7563. width:320px;
  7564. height:30px;
  7565. display:flex;
  7566. transition:none;
  7567. transform-origin:50% 50%;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. line-height:30px;
  7573. }
  7574. #u28842 .text {
  7575. position:absolute;
  7576. align-self:flex-start;
  7577. padding:0px 0px 0px 0px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u28842_text {
  7582. border-width:0px;
  7583. word-wrap:break-word;
  7584. text-transform:none;
  7585. }
  7586. #u28843_div {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:320px;
  7592. height:30px;
  7593. background:inherit;
  7594. background-color:rgba(255, 255, 255, 0);
  7595. border-left:0px;
  7596. border-top:0px;
  7597. border-right:0px;
  7598. border-radius:0px;
  7599. border-bottom-right-radius:0px;
  7600. border-bottom-left-radius:0px;
  7601. filter:drop-shadow(none);
  7602. transition:none;
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:14px;
  7607. line-height:30px;
  7608. }
  7609. #u28843 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:4864px;
  7613. top:674px;
  7614. width:320px;
  7615. height:30px;
  7616. display:flex;
  7617. transition:none;
  7618. transform-origin:50% 50%;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:14px;
  7623. line-height:30px;
  7624. }
  7625. #u28843 .text {
  7626. position:absolute;
  7627. align-self:flex-start;
  7628. padding:0px 0px 0px 0px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u28843_text {
  7633. border-width:0px;
  7634. word-wrap:break-word;
  7635. text-transform:none;
  7636. }
  7637. #u28844 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:0px;
  7643. height:0px;
  7644. }
  7645. #u28845_div {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:1000px;
  7651. height:1303px;
  7652. background:inherit;
  7653. background-color:rgba(242, 242, 242, 1);
  7654. box-sizing:border-box;
  7655. border-width:1px;
  7656. border-style:solid;
  7657. border-color:rgba(242, 242, 242, 1);
  7658. border-radius:0px;
  7659. filter:drop-shadow(none);
  7660. transition:none;
  7661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7662. font-weight:400;
  7663. font-style:normal;
  7664. font-size:14px;
  7665. color:#AAAAAA;
  7666. text-align:center;
  7667. line-height:30px;
  7668. }
  7669. #u28845 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:1121px;
  7673. top:115px;
  7674. width:1000px;
  7675. height:1303px;
  7676. display:flex;
  7677. transition:none;
  7678. transform-origin:50% 50%;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:14px;
  7683. color:#AAAAAA;
  7684. text-align:center;
  7685. line-height:30px;
  7686. }
  7687. #u28845 .text {
  7688. position:absolute;
  7689. align-self:center;
  7690. padding:5px 10px 5px 10px;
  7691. box-sizing:border-box;
  7692. width:100%;
  7693. }
  7694. #u28845_text {
  7695. border-width:0px;
  7696. word-wrap:break-word;
  7697. text-transform:none;
  7698. visibility:hidden;
  7699. }
  7700. #u28846_div {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:1000px;
  7706. height:580px;
  7707. background:inherit;
  7708. background-color:rgba(255, 255, 255, 1);
  7709. box-sizing:border-box;
  7710. border-width:1px;
  7711. border-style:solid;
  7712. border-color:rgba(242, 242, 242, 1);
  7713. border-radius:0px;
  7714. filter:drop-shadow(none);
  7715. transition:none;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:14px;
  7720. color:#AAAAAA;
  7721. text-align:center;
  7722. line-height:30px;
  7723. }
  7724. #u28846 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:1121px;
  7728. top:266px;
  7729. width:1000px;
  7730. height:580px;
  7731. display:flex;
  7732. transition:none;
  7733. transform-origin:50% 50%;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:14px;
  7738. color:#AAAAAA;
  7739. text-align:center;
  7740. line-height:30px;
  7741. }
  7742. #u28846 .text {
  7743. position:absolute;
  7744. align-self:center;
  7745. padding:5px 10px 5px 10px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u28846_text {
  7750. border-width:0px;
  7751. word-wrap:break-word;
  7752. text-transform:none;
  7753. visibility:hidden;
  7754. }
  7755. #u28847_div {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:0px;
  7759. top:0px;
  7760. width:73px;
  7761. height:40px;
  7762. background:inherit;
  7763. background-color:rgba(255, 255, 255, 0);
  7764. border-left:0px;
  7765. border-top:0px;
  7766. border-right:0px;
  7767. border-radius:0px;
  7768. border-bottom-right-radius:0px;
  7769. border-bottom-left-radius:0px;
  7770. filter:drop-shadow(none);
  7771. transition:none;
  7772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7773. font-weight:400;
  7774. font-style:normal;
  7775. font-size:18px;
  7776. }
  7777. #u28847 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:1161px;
  7781. top:282px;
  7782. width:73px;
  7783. height:40px;
  7784. display:flex;
  7785. transition:none;
  7786. transform-origin:50% 50%;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:18px;
  7791. }
  7792. #u28847 .text {
  7793. position:absolute;
  7794. align-self:center;
  7795. padding:0px 0px 0px 0px;
  7796. box-sizing:border-box;
  7797. width:100%;
  7798. }
  7799. #u28847_text {
  7800. border-width:0px;
  7801. white-space:nowrap;
  7802. text-transform:none;
  7803. }
  7804. #u28848_div {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:81px;
  7810. height:30px;
  7811. background:inherit;
  7812. background-color:rgba(255, 255, 255, 0);
  7813. border-top:0px;
  7814. border-right:0px;
  7815. border-bottom:0px;
  7816. border-radius:0px;
  7817. border-top-left-radius:0px;
  7818. border-bottom-left-radius:0px;
  7819. filter:drop-shadow(none);
  7820. transition:none;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:14px;
  7825. color:#7F7F7F;
  7826. }
  7827. #u28848 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:1161px;
  7831. top:332px;
  7832. width:81px;
  7833. height:30px;
  7834. display:flex;
  7835. transition:none;
  7836. transform-origin:50% 50%;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:14px;
  7841. color:#7F7F7F;
  7842. }
  7843. #u28848 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:5px 10px 5px 0px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u28848_text {
  7851. border-width:0px;
  7852. white-space:nowrap;
  7853. text-transform:none;
  7854. }
  7855. #u28849_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:142px;
  7861. height:30px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 0);
  7864. border-top:0px;
  7865. border-right:0px;
  7866. border-bottom:0px;
  7867. border-radius:0px;
  7868. border-top-left-radius:0px;
  7869. border-bottom-left-radius:0px;
  7870. filter:drop-shadow(none);
  7871. transition:none;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:14px;
  7876. color:#1890FF;
  7877. }
  7878. #u28849 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:1242px;
  7882. top:332px;
  7883. width:142px;
  7884. height:30px;
  7885. display:flex;
  7886. transition:none;
  7887. transform-origin:50% 50%;
  7888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:14px;
  7892. color:#1890FF;
  7893. }
  7894. #u28849 .text {
  7895. position:absolute;
  7896. align-self:center;
  7897. padding:5px 10px 5px 0px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u28849_text {
  7902. border-width:0px;
  7903. white-space:nowrap;
  7904. text-transform:none;
  7905. }
  7906. #u28850_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:81px;
  7912. height:30px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 0);
  7915. border-top:0px;
  7916. border-right:0px;
  7917. border-bottom:0px;
  7918. border-radius:0px;
  7919. border-top-left-radius:0px;
  7920. border-bottom-left-radius:0px;
  7921. filter:drop-shadow(none);
  7922. transition:none;
  7923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7924. font-weight:400;
  7925. font-style:normal;
  7926. font-size:14px;
  7927. color:#7F7F7F;
  7928. }
  7929. #u28850 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:1481px;
  7933. top:332px;
  7934. width:81px;
  7935. height:30px;
  7936. display:flex;
  7937. transition:none;
  7938. transform-origin:50% 50%;
  7939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. color:#7F7F7F;
  7944. }
  7945. #u28850 .text {
  7946. position:absolute;
  7947. align-self:center;
  7948. padding:5px 10px 5px 0px;
  7949. box-sizing:border-box;
  7950. width:100%;
  7951. }
  7952. #u28850_text {
  7953. border-width:0px;
  7954. white-space:nowrap;
  7955. text-transform:none;
  7956. }
  7957. #u28851_div {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:67px;
  7963. height:30px;
  7964. background:inherit;
  7965. background-color:rgba(255, 255, 255, 0);
  7966. border-top:0px;
  7967. border-right:0px;
  7968. border-bottom:0px;
  7969. border-radius:0px;
  7970. border-top-left-radius:0px;
  7971. border-bottom-left-radius:0px;
  7972. filter:drop-shadow(none);
  7973. transition:none;
  7974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7975. font-weight:400;
  7976. font-style:normal;
  7977. font-size:14px;
  7978. }
  7979. #u28851 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:1562px;
  7983. top:332px;
  7984. width:67px;
  7985. height:30px;
  7986. display:flex;
  7987. transition:none;
  7988. transform-origin:50% 50%;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:14px;
  7993. }
  7994. #u28851 .text {
  7995. position:absolute;
  7996. align-self:center;
  7997. padding:5px 10px 5px 0px;
  7998. box-sizing:border-box;
  7999. width:100%;
  8000. }
  8001. #u28851_text {
  8002. border-width:0px;
  8003. white-space:nowrap;
  8004. text-transform:none;
  8005. }
  8006. #u28852_div {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:81px;
  8012. height:30px;
  8013. background:inherit;
  8014. background-color:rgba(255, 255, 255, 0);
  8015. border-top:0px;
  8016. border-right:0px;
  8017. border-bottom:0px;
  8018. border-radius:0px;
  8019. border-top-left-radius:0px;
  8020. border-bottom-left-radius:0px;
  8021. filter:drop-shadow(none);
  8022. transition:none;
  8023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:14px;
  8027. color:#7F7F7F;
  8028. }
  8029. #u28852 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:1778px;
  8033. top:332px;
  8034. width:81px;
  8035. height:30px;
  8036. display:flex;
  8037. transition:none;
  8038. transform-origin:50% 50%;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:14px;
  8043. color:#7F7F7F;
  8044. }
  8045. #u28852 .text {
  8046. position:absolute;
  8047. align-self:center;
  8048. padding:5px 10px 5px 0px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u28852_text {
  8053. border-width:0px;
  8054. white-space:nowrap;
  8055. text-transform:none;
  8056. }
  8057. #u28853_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:53px;
  8063. height:30px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 0);
  8066. border-top:0px;
  8067. border-right:0px;
  8068. border-bottom:0px;
  8069. border-radius:0px;
  8070. border-top-left-radius:0px;
  8071. border-bottom-left-radius:0px;
  8072. filter:drop-shadow(none);
  8073. transition:none;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. font-size:14px;
  8078. }
  8079. #u28853 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:1859px;
  8083. top:332px;
  8084. width:53px;
  8085. height:30px;
  8086. display:flex;
  8087. transition:none;
  8088. transform-origin:50% 50%;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:14px;
  8093. }
  8094. #u28853 .text {
  8095. position:absolute;
  8096. align-self:center;
  8097. padding:5px 10px 5px 0px;
  8098. box-sizing:border-box;
  8099. width:100%;
  8100. }
  8101. #u28853_text {
  8102. border-width:0px;
  8103. white-space:nowrap;
  8104. text-transform:none;
  8105. }
  8106. #u28854_div {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:81px;
  8112. height:30px;
  8113. background:inherit;
  8114. background-color:rgba(255, 255, 255, 0);
  8115. border-top:0px;
  8116. border-right:0px;
  8117. border-bottom:0px;
  8118. border-radius:0px;
  8119. border-top-left-radius:0px;
  8120. border-bottom-left-radius:0px;
  8121. filter:drop-shadow(none);
  8122. transition:none;
  8123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8124. font-weight:400;
  8125. font-style:normal;
  8126. font-size:14px;
  8127. color:#7F7F7F;
  8128. }
  8129. #u28854 {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:1161px;
  8133. top:372px;
  8134. width:81px;
  8135. height:30px;
  8136. display:flex;
  8137. transition:none;
  8138. transform-origin:50% 50%;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:14px;
  8143. color:#7F7F7F;
  8144. }
  8145. #u28854 .text {
  8146. position:absolute;
  8147. align-self:center;
  8148. padding:5px 10px 5px 0px;
  8149. box-sizing:border-box;
  8150. width:100%;
  8151. }
  8152. #u28854_text {
  8153. border-width:0px;
  8154. white-space:nowrap;
  8155. text-transform:none;
  8156. }
  8157. #u28855_div {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:81px;
  8163. height:30px;
  8164. background:inherit;
  8165. background-color:rgba(255, 255, 255, 0);
  8166. border-top:0px;
  8167. border-right:0px;
  8168. border-bottom:0px;
  8169. border-radius:0px;
  8170. border-top-left-radius:0px;
  8171. border-bottom-left-radius:0px;
  8172. filter:drop-shadow(none);
  8173. transition:none;
  8174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:14px;
  8178. color:#7F7F7F;
  8179. }
  8180. #u28855 {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:1481px;
  8184. top:372px;
  8185. width:81px;
  8186. height:30px;
  8187. display:flex;
  8188. transition:none;
  8189. transform-origin:50% 50%;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:14px;
  8194. color:#7F7F7F;
  8195. }
  8196. #u28855 .text {
  8197. position:absolute;
  8198. align-self:center;
  8199. padding:5px 10px 5px 0px;
  8200. box-sizing:border-box;
  8201. width:100%;
  8202. }
  8203. #u28855_text {
  8204. border-width:0px;
  8205. white-space:nowrap;
  8206. text-transform:none;
  8207. }
  8208. #u28856_div {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:0px;
  8212. top:0px;
  8213. width:67px;
  8214. height:30px;
  8215. background:inherit;
  8216. background-color:rgba(255, 255, 255, 0);
  8217. border-top:0px;
  8218. border-right:0px;
  8219. border-bottom:0px;
  8220. border-radius:0px;
  8221. border-top-left-radius:0px;
  8222. border-bottom-left-radius:0px;
  8223. filter:drop-shadow(none);
  8224. transition:none;
  8225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:14px;
  8229. }
  8230. #u28856 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:1562px;
  8234. top:372px;
  8235. width:67px;
  8236. height:30px;
  8237. display:flex;
  8238. transition:none;
  8239. transform-origin:50% 50%;
  8240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8241. font-weight:400;
  8242. font-style:normal;
  8243. font-size:14px;
  8244. }
  8245. #u28856 .text {
  8246. position:absolute;
  8247. align-self:center;
  8248. padding:5px 10px 5px 0px;
  8249. box-sizing:border-box;
  8250. width:100%;
  8251. }
  8252. #u28856_text {
  8253. border-width:0px;
  8254. white-space:nowrap;
  8255. text-transform:none;
  8256. }
  8257. #u28857_div {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:0px;
  8261. top:0px;
  8262. width:67px;
  8263. height:30px;
  8264. background:inherit;
  8265. background-color:rgba(255, 255, 255, 0);
  8266. border-top:0px;
  8267. border-right:0px;
  8268. border-bottom:0px;
  8269. border-radius:0px;
  8270. border-top-left-radius:0px;
  8271. border-bottom-left-radius:0px;
  8272. filter:drop-shadow(none);
  8273. transition:none;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:14px;
  8278. color:#7F7F7F;
  8279. }
  8280. #u28857 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:1778px;
  8284. top:372px;
  8285. width:67px;
  8286. height:30px;
  8287. display:flex;
  8288. transition:none;
  8289. transform-origin:50% 50%;
  8290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8291. font-weight:400;
  8292. font-style:normal;
  8293. font-size:14px;
  8294. color:#7F7F7F;
  8295. }
  8296. #u28857 .text {
  8297. position:absolute;
  8298. align-self:center;
  8299. padding:5px 10px 5px 0px;
  8300. box-sizing:border-box;
  8301. width:100%;
  8302. }
  8303. #u28857_text {
  8304. border-width:0px;
  8305. white-space:nowrap;
  8306. text-transform:none;
  8307. }
  8308. #u28858_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:85px;
  8314. height:30px;
  8315. background:inherit;
  8316. background-color:rgba(255, 255, 255, 0);
  8317. border-top:0px;
  8318. border-right:0px;
  8319. border-bottom:0px;
  8320. border-radius:0px;
  8321. border-top-left-radius:0px;
  8322. border-bottom-left-radius:0px;
  8323. filter:drop-shadow(none);
  8324. transition:none;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:14px;
  8329. }
  8330. #u28858 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:1859px;
  8334. top:372px;
  8335. width:85px;
  8336. height:30px;
  8337. display:flex;
  8338. transition:none;
  8339. transform-origin:50% 50%;
  8340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8341. font-weight:400;
  8342. font-style:normal;
  8343. font-size:14px;
  8344. }
  8345. #u28858 .text {
  8346. position:absolute;
  8347. align-self:center;
  8348. padding:5px 10px 5px 0px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u28858_text {
  8353. border-width:0px;
  8354. white-space:nowrap;
  8355. text-transform:none;
  8356. }
  8357. #u28859_div {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:183px;
  8363. height:30px;
  8364. background:inherit;
  8365. background-color:rgba(255, 255, 255, 0);
  8366. border-top:0px;
  8367. border-right:0px;
  8368. border-bottom:0px;
  8369. border-radius:0px;
  8370. border-top-left-radius:0px;
  8371. border-bottom-left-radius:0px;
  8372. filter:drop-shadow(none);
  8373. transition:none;
  8374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8375. font-weight:400;
  8376. font-style:normal;
  8377. font-size:14px;
  8378. }
  8379. #u28859 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:1242px;
  8383. top:372px;
  8384. width:183px;
  8385. height:30px;
  8386. display:flex;
  8387. transition:none;
  8388. transform-origin:50% 50%;
  8389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8390. font-weight:400;
  8391. font-style:normal;
  8392. font-size:14px;
  8393. }
  8394. #u28859 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:5px 10px 5px 0px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u28859_text {
  8402. border-width:0px;
  8403. white-space:nowrap;
  8404. text-transform:none;
  8405. }
  8406. #u28860_div {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:81px;
  8412. height:30px;
  8413. background:inherit;
  8414. background-color:rgba(255, 255, 255, 0);
  8415. border-top:0px;
  8416. border-right:0px;
  8417. border-bottom:0px;
  8418. border-radius:0px;
  8419. border-top-left-radius:0px;
  8420. border-bottom-left-radius:0px;
  8421. filter:drop-shadow(none);
  8422. transition:none;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:14px;
  8427. color:#7F7F7F;
  8428. }
  8429. #u28860 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:1161px;
  8433. top:412px;
  8434. width:81px;
  8435. height:30px;
  8436. display:flex;
  8437. transition:none;
  8438. transform-origin:50% 50%;
  8439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:14px;
  8443. color:#7F7F7F;
  8444. }
  8445. #u28860 .text {
  8446. position:absolute;
  8447. align-self:center;
  8448. padding:5px 10px 5px 0px;
  8449. box-sizing:border-box;
  8450. width:100%;
  8451. }
  8452. #u28860_text {
  8453. border-width:0px;
  8454. white-space:nowrap;
  8455. text-transform:none;
  8456. }
  8457. #u28861_div {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:126px;
  8463. height:30px;
  8464. background:inherit;
  8465. background-color:rgba(255, 255, 255, 0);
  8466. border-top:0px;
  8467. border-right:0px;
  8468. border-bottom:0px;
  8469. border-radius:0px;
  8470. border-top-left-radius:0px;
  8471. border-bottom-left-radius:0px;
  8472. filter:drop-shadow(none);
  8473. transition:none;
  8474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8475. font-weight:400;
  8476. font-style:normal;
  8477. font-size:14px;
  8478. }
  8479. #u28861 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:1242px;
  8483. top:412px;
  8484. width:126px;
  8485. height:30px;
  8486. display:flex;
  8487. transition:none;
  8488. transform-origin:50% 50%;
  8489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:14px;
  8493. }
  8494. #u28861 .text {
  8495. position:absolute;
  8496. align-self:center;
  8497. padding:5px 10px 5px 0px;
  8498. box-sizing:border-box;
  8499. width:100%;
  8500. }
  8501. #u28861_text {
  8502. border-width:0px;
  8503. white-space:nowrap;
  8504. text-transform:none;
  8505. }
  8506. #u28862_div {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:81px;
  8512. height:30px;
  8513. background:inherit;
  8514. background-color:rgba(255, 255, 255, 0);
  8515. border-top:0px;
  8516. border-right:0px;
  8517. border-bottom:0px;
  8518. border-radius:0px;
  8519. border-top-left-radius:0px;
  8520. border-bottom-left-radius:0px;
  8521. filter:drop-shadow(none);
  8522. transition:none;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:14px;
  8527. color:#7F7F7F;
  8528. }
  8529. #u28862 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:1161px;
  8533. top:452px;
  8534. width:81px;
  8535. height:30px;
  8536. display:flex;
  8537. transition:none;
  8538. transform-origin:50% 50%;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:14px;
  8543. color:#7F7F7F;
  8544. }
  8545. #u28862 .text {
  8546. position:absolute;
  8547. align-self:center;
  8548. padding:5px 10px 5px 0px;
  8549. box-sizing:border-box;
  8550. width:100%;
  8551. }
  8552. #u28862_text {
  8553. border-width:0px;
  8554. white-space:nowrap;
  8555. text-transform:none;
  8556. }
  8557. #u28863_div {
  8558. border-width:0px;
  8559. position:absolute;
  8560. left:0px;
  8561. top:0px;
  8562. width:263px;
  8563. height:30px;
  8564. background:inherit;
  8565. background-color:rgba(255, 255, 255, 0);
  8566. border-top:0px;
  8567. border-right:0px;
  8568. border-bottom:0px;
  8569. border-radius:0px;
  8570. border-top-left-radius:0px;
  8571. border-bottom-left-radius:0px;
  8572. filter:drop-shadow(none);
  8573. transition:none;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:14px;
  8578. }
  8579. #u28863 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:1242px;
  8583. top:452px;
  8584. width:263px;
  8585. height:30px;
  8586. display:flex;
  8587. transition:none;
  8588. transform-origin:50% 50%;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:14px;
  8593. }
  8594. #u28863 .text {
  8595. position:absolute;
  8596. align-self:center;
  8597. padding:5px 10px 5px 0px;
  8598. box-sizing:border-box;
  8599. width:100%;
  8600. }
  8601. #u28863_text {
  8602. border-width:0px;
  8603. white-space:nowrap;
  8604. text-transform:none;
  8605. }
  8606. #u28864 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:1161px;
  8610. top:500px;
  8611. width:941px;
  8612. height:1px;
  8613. display:flex;
  8614. transition:none;
  8615. }
  8616. #u28864 .text {
  8617. position:absolute;
  8618. align-self:center;
  8619. padding:2px 2px 2px 2px;
  8620. box-sizing:border-box;
  8621. width:100%;
  8622. }
  8623. #u28864_img {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:0px;
  8627. top:0px;
  8628. width:942px;
  8629. height:2px;
  8630. }
  8631. #u28864_text {
  8632. border-width:0px;
  8633. word-wrap:break-word;
  8634. text-transform:none;
  8635. visibility:hidden;
  8636. }
  8637. #u28865_div {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:1000px;
  8643. height:200px;
  8644. background:inherit;
  8645. background-color:rgba(255, 255, 255, 1);
  8646. box-sizing:border-box;
  8647. border-width:1px;
  8648. border-style:solid;
  8649. border-color:rgba(215, 215, 215, 1);
  8650. border-radius:0px;
  8651. filter:drop-shadow(none);
  8652. transition:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:14px;
  8657. color:#AAAAAA;
  8658. text-align:center;
  8659. line-height:30px;
  8660. }
  8661. #u28865 {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:1122px;
  8665. top:55px;
  8666. width:1000px;
  8667. height:200px;
  8668. display:flex;
  8669. transition:none;
  8670. transform-origin:50% 50%;
  8671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8672. font-weight:400;
  8673. font-style:normal;
  8674. font-size:14px;
  8675. color:#AAAAAA;
  8676. text-align:center;
  8677. line-height:30px;
  8678. }
  8679. #u28865 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:5px 10px 5px 10px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u28865_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. visibility:hidden;
  8691. }
  8692. #u28866_div {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:0px;
  8696. top:0px;
  8697. width:83px;
  8698. height:35px;
  8699. background:inherit;
  8700. background-color:rgba(255, 255, 255, 0);
  8701. border-top:0px;
  8702. border-right:0px;
  8703. border-bottom:0px;
  8704. border-radius:0px;
  8705. border-top-left-radius:0px;
  8706. border-bottom-left-radius:0px;
  8707. filter:drop-shadow(none);
  8708. transition:none;
  8709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8710. font-weight:500;
  8711. font-style:normal;
  8712. font-size:18px;
  8713. }
  8714. #u28866 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:1142px;
  8718. top:73px;
  8719. width:83px;
  8720. height:35px;
  8721. display:flex;
  8722. transition:none;
  8723. transform-origin:50% 50%;
  8724. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8725. font-weight:500;
  8726. font-style:normal;
  8727. font-size:18px;
  8728. }
  8729. #u28866 .text {
  8730. position:absolute;
  8731. align-self:center;
  8732. padding:5px 10px 5px 0px;
  8733. box-sizing:border-box;
  8734. width:100%;
  8735. }
  8736. #u28866_text {
  8737. border-width:0px;
  8738. white-space:nowrap;
  8739. text-transform:none;
  8740. }
  8741. #u28867_div {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:0px;
  8746. width:107px;
  8747. height:43px;
  8748. background:inherit;
  8749. background-color:rgba(255, 255, 255, 0);
  8750. border-top:0px;
  8751. border-right:0px;
  8752. border-bottom:0px;
  8753. border-radius:0px;
  8754. border-top-left-radius:0px;
  8755. border-bottom-left-radius:0px;
  8756. filter:drop-shadow(none);
  8757. transition:none;
  8758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8759. font-weight:500;
  8760. font-style:normal;
  8761. font-size:24px;
  8762. }
  8763. #u28867 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:1152px;
  8767. top:124px;
  8768. width:107px;
  8769. height:43px;
  8770. display:flex;
  8771. transition:none;
  8772. transform-origin:50% 50%;
  8773. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8774. font-weight:500;
  8775. font-style:normal;
  8776. font-size:24px;
  8777. }
  8778. #u28867 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:5px 10px 5px 0px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u28867_text {
  8786. border-width:0px;
  8787. white-space:nowrap;
  8788. text-transform:none;
  8789. }
  8790. #u28868 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:1972px;
  8794. top:125px;
  8795. width:108px;
  8796. height:108px;
  8797. display:flex;
  8798. -webkit-transform:rotate(315deg);
  8799. -moz-transform:rotate(315deg);
  8800. -ms-transform:rotate(315deg);
  8801. transform:rotate(315deg);
  8802. transition:none;
  8803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8804. font-weight:400;
  8805. font-style:normal;
  8806. font-size:28px;
  8807. color:#F59A23;
  8808. }
  8809. #u28868 .text {
  8810. position:absolute;
  8811. align-self:center;
  8812. padding:2px 2px 2px 2px;
  8813. box-sizing:border-box;
  8814. width:100%;
  8815. }
  8816. #u28868_img {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:108px;
  8822. height:108px;
  8823. }
  8824. #u28868_text {
  8825. border-width:0px;
  8826. word-wrap:break-word;
  8827. text-transform:none;
  8828. }
  8829. #u28869_div {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:0px;
  8833. top:0px;
  8834. width:325px;
  8835. height:60px;
  8836. background:inherit;
  8837. background-color:rgba(255, 255, 255, 0);
  8838. border-left:0px;
  8839. border-top:0px;
  8840. border-right:0px;
  8841. border-radius:0px;
  8842. border-bottom-right-radius:0px;
  8843. border-bottom-left-radius:0px;
  8844. filter:drop-shadow(none);
  8845. transition:none;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:14px;
  8850. line-height:30px;
  8851. }
  8852. #u28869 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:1152px;
  8856. top:179px;
  8857. width:325px;
  8858. height:60px;
  8859. display:flex;
  8860. transition:none;
  8861. transform-origin:50% 50%;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-weight:400;
  8864. font-style:normal;
  8865. font-size:14px;
  8866. line-height:30px;
  8867. }
  8868. #u28869 .text {
  8869. position:absolute;
  8870. align-self:flex-start;
  8871. padding:0px 0px 0px 0px;
  8872. box-sizing:border-box;
  8873. width:100%;
  8874. }
  8875. #u28869_text {
  8876. border-width:0px;
  8877. word-wrap:break-word;
  8878. text-transform:none;
  8879. }
  8880. #u28870 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:2094px;
  8884. top:77px;
  8885. width:17px;
  8886. height:17px;
  8887. display:flex;
  8888. transition:none;
  8889. }
  8890. #u28870 .text {
  8891. position:absolute;
  8892. align-self:center;
  8893. padding:2px 2px 2px 2px;
  8894. box-sizing:border-box;
  8895. width:100%;
  8896. }
  8897. #u28870_img {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:17px;
  8903. height:17px;
  8904. }
  8905. #u28870_text {
  8906. border-width:0px;
  8907. word-wrap:break-word;
  8908. text-transform:none;
  8909. visibility:hidden;
  8910. }
  8911. #u28871 {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:0px;
  8917. height:0px;
  8918. }
  8919. #u28872_div {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:1000px;
  8925. height:60px;
  8926. background:inherit;
  8927. background-color:rgba(255, 255, 255, 1);
  8928. box-sizing:border-box;
  8929. border-width:1px;
  8930. border-style:solid;
  8931. border-color:rgba(215, 215, 215, 1);
  8932. border-radius:0px;
  8933. filter:drop-shadow(none);
  8934. transition:none;
  8935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8936. font-weight:400;
  8937. font-style:normal;
  8938. font-size:14px;
  8939. color:#AAAAAA;
  8940. text-align:center;
  8941. line-height:30px;
  8942. }
  8943. #u28872 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:1121px;
  8947. top:1418px;
  8948. width:1000px;
  8949. height:60px;
  8950. display:flex;
  8951. transition:none;
  8952. transform-origin:50% 50%;
  8953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8954. font-weight:400;
  8955. font-style:normal;
  8956. font-size:14px;
  8957. color:#AAAAAA;
  8958. text-align:center;
  8959. line-height:30px;
  8960. }
  8961. #u28872 .text {
  8962. position:absolute;
  8963. align-self:center;
  8964. padding:5px 10px 5px 10px;
  8965. box-sizing:border-box;
  8966. width:100%;
  8967. }
  8968. #u28872_text {
  8969. border-width:0px;
  8970. word-wrap:break-word;
  8971. text-transform:none;
  8972. visibility:hidden;
  8973. }
  8974. #u28873_div {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:80px;
  8980. height:30px;
  8981. background:inherit;
  8982. background-color:rgba(255, 255, 255, 1);
  8983. box-sizing:border-box;
  8984. border-width:1px;
  8985. border-style:solid;
  8986. border-color:rgba(170, 170, 170, 1);
  8987. border-radius:4px;
  8988. filter:drop-shadow(none);
  8989. transition:none;
  8990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:14px;
  8994. }
  8995. #u28873 {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:2011px;
  8999. top:1433px;
  9000. width:80px;
  9001. height:30px;
  9002. display:flex;
  9003. transition:none;
  9004. transform-origin:50% 50%;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:14px;
  9009. }
  9010. #u28873 .text {
  9011. position:absolute;
  9012. align-self:center;
  9013. padding:2px 2px 2px 2px;
  9014. box-sizing:border-box;
  9015. width:100%;
  9016. }
  9017. #u28873_text {
  9018. border-width:0px;
  9019. word-wrap:break-word;
  9020. text-transform:none;
  9021. }
  9022. #u28874 {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:0px;
  9028. height:0px;
  9029. }
  9030. #u28875_div {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:1000px;
  9036. height:561px;
  9037. background:inherit;
  9038. background-color:rgba(255, 255, 255, 1);
  9039. box-sizing:border-box;
  9040. border-width:1px;
  9041. border-style:solid;
  9042. border-color:rgba(242, 242, 242, 1);
  9043. border-radius:0px;
  9044. filter:drop-shadow(none);
  9045. transition:none;
  9046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:14px;
  9050. color:#AAAAAA;
  9051. text-align:center;
  9052. line-height:30px;
  9053. }
  9054. #u28875 {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:1121px;
  9058. top:857px;
  9059. width:1000px;
  9060. height:561px;
  9061. display:flex;
  9062. transition:none;
  9063. transform-origin:50% 50%;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. font-size:14px;
  9068. color:#AAAAAA;
  9069. text-align:center;
  9070. line-height:30px;
  9071. }
  9072. #u28875 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:5px 10px 5px 10px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u28875_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u28876_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:73px;
  9091. height:40px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border-left:0px;
  9095. border-top:0px;
  9096. border-right:0px;
  9097. border-radius:0px;
  9098. border-bottom-right-radius:0px;
  9099. border-bottom-left-radius:0px;
  9100. filter:drop-shadow(none);
  9101. transition:none;
  9102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9103. font-weight:400;
  9104. font-style:normal;
  9105. font-size:18px;
  9106. }
  9107. #u28876 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:1161px;
  9111. top:873px;
  9112. width:73px;
  9113. height:40px;
  9114. display:flex;
  9115. transition:none;
  9116. transform-origin:50% 50%;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:18px;
  9121. }
  9122. #u28876 .text {
  9123. position:absolute;
  9124. align-self:center;
  9125. padding:0px 0px 0px 0px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u28876_text {
  9130. border-width:0px;
  9131. white-space:nowrap;
  9132. text-transform:none;
  9133. }
  9134. #u28877 {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:0px;
  9140. height:0px;
  9141. }
  9142. #u28878_div {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:0px;
  9146. top:0px;
  9147. width:175px;
  9148. height:20px;
  9149. background:inherit;
  9150. background-color:rgba(255, 255, 255, 0);
  9151. border-radius:0px;
  9152. filter:drop-shadow(none);
  9153. transition:none;
  9154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9155. font-weight:400;
  9156. font-style:normal;
  9157. }
  9158. #u28878 {
  9159. border-width:0px;
  9160. position:absolute;
  9161. left:1200px;
  9162. top:1303px;
  9163. width:175px;
  9164. height:20px;
  9165. display:flex;
  9166. transition:none;
  9167. transform-origin:50% 50%;
  9168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9169. font-weight:400;
  9170. font-style:normal;
  9171. }
  9172. #u28878 .text {
  9173. position:absolute;
  9174. align-self:flex-start;
  9175. padding:0px 0px 0px 0px;
  9176. box-sizing:border-box;
  9177. width:100%;
  9178. }
  9179. #u28878_text {
  9180. border-width:0px;
  9181. white-space:nowrap;
  9182. text-transform:none;
  9183. }
  9184. #u28879 {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:1170px;
  9188. top:1301px;
  9189. width:22px;
  9190. height:22px;
  9191. display:flex;
  9192. transition:none;
  9193. font-family:"Microsoft YaHei", sans-serif;
  9194. font-weight:400;
  9195. font-style:normal;
  9196. font-size:12px;
  9197. color:#FFFFFF;
  9198. }
  9199. #u28879 .text {
  9200. position:absolute;
  9201. align-self:center;
  9202. padding:4px 4px 4px 4px;
  9203. box-sizing:border-box;
  9204. width:100%;
  9205. }
  9206. #u28879_img {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:0px;
  9210. top:0px;
  9211. width:22px;
  9212. height:22px;
  9213. }
  9214. #u28879_text {
  9215. border-width:0px;
  9216. word-wrap:break-word;
  9217. text-transform:none;
  9218. visibility:hidden;
  9219. }
  9220. #u28880_div {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:878px;
  9226. height:27px;
  9227. background:inherit;
  9228. background-color:rgba(255, 255, 255, 0);
  9229. border-top:0px;
  9230. border-right:0px;
  9231. border-bottom:0px;
  9232. border-radius:0px;
  9233. border-top-left-radius:0px;
  9234. border-bottom-left-radius:0px;
  9235. filter:drop-shadow(none);
  9236. transition:none;
  9237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:12px;
  9241. }
  9242. #u28880 {
  9243. border-width:0px;
  9244. position:absolute;
  9245. left:1197px;
  9246. top:1323px;
  9247. width:878px;
  9248. height:27px;
  9249. display:flex;
  9250. transition:none;
  9251. transform-origin:50% 50%;
  9252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9253. font-weight:400;
  9254. font-style:normal;
  9255. font-size:12px;
  9256. }
  9257. #u28880 .text {
  9258. position:absolute;
  9259. align-self:center;
  9260. padding:5px 10px 5px 0px;
  9261. box-sizing:border-box;
  9262. width:100%;
  9263. }
  9264. #u28880_text {
  9265. border-width:0px;
  9266. word-wrap:break-word;
  9267. text-transform:none;
  9268. }
  9269. #u28881 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:1149px;
  9273. top:1355px;
  9274. width:64px;
  9275. height:1px;
  9276. display:flex;
  9277. -webkit-transform:rotate(90deg);
  9278. -moz-transform:rotate(90deg);
  9279. -ms-transform:rotate(90deg);
  9280. transform:rotate(90deg);
  9281. transition:none;
  9282. }
  9283. #u28881 .text {
  9284. position:absolute;
  9285. align-self:center;
  9286. padding:2px 2px 2px 2px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u28881_img {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:65px;
  9296. height:2px;
  9297. }
  9298. #u28881_text {
  9299. border-width:0px;
  9300. word-wrap:break-word;
  9301. text-transform:none;
  9302. visibility:hidden;
  9303. }
  9304. #u28882 {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:1170px;
  9308. top:1368px;
  9309. width:22px;
  9310. height:22px;
  9311. display:flex;
  9312. transition:none;
  9313. font-family:"Microsoft YaHei", sans-serif;
  9314. font-weight:400;
  9315. font-style:normal;
  9316. font-size:12px;
  9317. color:#FFFFFF;
  9318. }
  9319. #u28882 .text {
  9320. position:absolute;
  9321. align-self:center;
  9322. padding:4px 4px 4px 4px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u28882_img {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:22px;
  9332. height:22px;
  9333. }
  9334. #u28882_text {
  9335. border-width:0px;
  9336. word-wrap:break-word;
  9337. text-transform:none;
  9338. visibility:hidden;
  9339. }
  9340. #u28883_div {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:0px;
  9344. top:0px;
  9345. width:43px;
  9346. height:20px;
  9347. background:inherit;
  9348. background-color:rgba(255, 255, 255, 0);
  9349. border-radius:0px;
  9350. filter:drop-shadow(none);
  9351. transition:none;
  9352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9353. font-weight:400;
  9354. font-style:normal;
  9355. font-size:14px;
  9356. color:#AAAAAA;
  9357. }
  9358. #u28883 {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:1197px;
  9362. top:1368px;
  9363. width:43px;
  9364. height:20px;
  9365. display:flex;
  9366. transition:none;
  9367. transform-origin:50% 50%;
  9368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9369. font-weight:400;
  9370. font-style:normal;
  9371. font-size:14px;
  9372. color:#AAAAAA;
  9373. }
  9374. #u28883 .text {
  9375. position:absolute;
  9376. align-self:center;
  9377. padding:0px 0px 0px 0px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u28883_text {
  9382. border-width:0px;
  9383. white-space:nowrap;
  9384. text-transform:none;
  9385. }
  9386. #u28884 {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:0px;
  9392. height:0px;
  9393. }
  9394. #u28885_div {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:175px;
  9400. height:20px;
  9401. background:inherit;
  9402. background-color:rgba(255, 255, 255, 0);
  9403. border-radius:0px;
  9404. filter:drop-shadow(none);
  9405. transition:none;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. }
  9410. #u28885 {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:1197px;
  9414. top:1182px;
  9415. width:175px;
  9416. height:20px;
  9417. display:flex;
  9418. transition:none;
  9419. transform-origin:50% 50%;
  9420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9421. font-weight:400;
  9422. font-style:normal;
  9423. }
  9424. #u28885 .text {
  9425. position:absolute;
  9426. align-self:center;
  9427. padding:0px 0px 0px 0px;
  9428. box-sizing:border-box;
  9429. width:100%;
  9430. }
  9431. #u28885_text {
  9432. border-width:0px;
  9433. white-space:nowrap;
  9434. text-transform:none;
  9435. }
  9436. #u28886 {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:0px;
  9442. height:0px;
  9443. }
  9444. #u28887_div {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:878px;
  9450. height:61px;
  9451. background:inherit;
  9452. background-color:rgba(255, 255, 255, 0);
  9453. border-top:0px;
  9454. border-right:0px;
  9455. border-bottom:0px;
  9456. border-radius:0px;
  9457. border-top-left-radius:0px;
  9458. border-bottom-left-radius:0px;
  9459. filter:drop-shadow(none);
  9460. transition:none;
  9461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9462. font-weight:400;
  9463. font-style:normal;
  9464. font-size:12px;
  9465. }
  9466. #u28887 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:1197px;
  9470. top:1202px;
  9471. width:878px;
  9472. height:61px;
  9473. display:flex;
  9474. transition:none;
  9475. transform-origin:50% 50%;
  9476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9477. font-weight:400;
  9478. font-style:normal;
  9479. font-size:12px;
  9480. }
  9481. #u28887 .text {
  9482. position:absolute;
  9483. align-self:center;
  9484. padding:5px 10px 5px 0px;
  9485. box-sizing:border-box;
  9486. width:100%;
  9487. }
  9488. #u28887_text {
  9489. border-width:0px;
  9490. word-wrap:break-word;
  9491. text-transform:none;
  9492. }
  9493. #u28888 {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:1259px;
  9497. top:1246px;
  9498. width:61px;
  9499. height:41px;
  9500. display:flex;
  9501. transition:none;
  9502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9503. font-weight:400;
  9504. font-style:normal;
  9505. }
  9506. #u28888 .text {
  9507. position:absolute;
  9508. align-self:center;
  9509. padding:0px 0px 0px 0px;
  9510. box-sizing:border-box;
  9511. width:100%;
  9512. }
  9513. #u28888_img {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:61px;
  9519. height:41px;
  9520. }
  9521. #u28888_text {
  9522. border-width:0px;
  9523. word-wrap:break-word;
  9524. text-transform:none;
  9525. visibility:hidden;
  9526. }
  9527. #u28889 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:1330px;
  9531. top:1246px;
  9532. width:61px;
  9533. height:41px;
  9534. display:flex;
  9535. transition:none;
  9536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9537. font-weight:400;
  9538. font-style:normal;
  9539. }
  9540. #u28889 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:0px 0px 0px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u28889_img {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:61px;
  9553. height:41px;
  9554. }
  9555. #u28889_text {
  9556. border-width:0px;
  9557. word-wrap:break-word;
  9558. text-transform:none;
  9559. visibility:hidden;
  9560. }
  9561. #u28890 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:1401px;
  9565. top:1246px;
  9566. width:61px;
  9567. height:41px;
  9568. display:flex;
  9569. transition:none;
  9570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9571. font-weight:400;
  9572. font-style:normal;
  9573. }
  9574. #u28890 .text {
  9575. position:absolute;
  9576. align-self:center;
  9577. padding:0px 0px 0px 0px;
  9578. box-sizing:border-box;
  9579. width:100%;
  9580. }
  9581. #u28890_img {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:0px;
  9585. top:0px;
  9586. width:61px;
  9587. height:41px;
  9588. }
  9589. #u28890_text {
  9590. border-width:0px;
  9591. word-wrap:break-word;
  9592. text-transform:none;
  9593. visibility:hidden;
  9594. }
  9595. #u28891 {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:1472px;
  9599. top:1246px;
  9600. width:61px;
  9601. height:41px;
  9602. display:flex;
  9603. transition:none;
  9604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9605. font-weight:400;
  9606. font-style:normal;
  9607. }
  9608. #u28891 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:0px 0px 0px 0px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u28891_img {
  9616. border-width:0px;
  9617. position:absolute;
  9618. left:0px;
  9619. top:0px;
  9620. width:61px;
  9621. height:41px;
  9622. }
  9623. #u28891_text {
  9624. border-width:0px;
  9625. word-wrap:break-word;
  9626. text-transform:none;
  9627. visibility:hidden;
  9628. }
  9629. #u28892 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:1543px;
  9633. top:1246px;
  9634. width:61px;
  9635. height:41px;
  9636. display:flex;
  9637. transition:none;
  9638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9639. font-weight:400;
  9640. font-style:normal;
  9641. }
  9642. #u28892 .text {
  9643. position:absolute;
  9644. align-self:center;
  9645. padding:0px 0px 0px 0px;
  9646. box-sizing:border-box;
  9647. width:100%;
  9648. }
  9649. #u28892_img {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:61px;
  9655. height:41px;
  9656. }
  9657. #u28892_text {
  9658. border-width:0px;
  9659. word-wrap:break-word;
  9660. text-transform:none;
  9661. visibility:hidden;
  9662. }
  9663. #u28893 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:1614px;
  9667. top:1246px;
  9668. width:61px;
  9669. height:41px;
  9670. display:flex;
  9671. transition:none;
  9672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9673. font-weight:400;
  9674. font-style:normal;
  9675. }
  9676. #u28893 .text {
  9677. position:absolute;
  9678. align-self:center;
  9679. padding:0px 0px 0px 0px;
  9680. box-sizing:border-box;
  9681. width:100%;
  9682. }
  9683. #u28893_img {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:0px;
  9687. top:0px;
  9688. width:61px;
  9689. height:41px;
  9690. }
  9691. #u28893_text {
  9692. border-width:0px;
  9693. word-wrap:break-word;
  9694. text-transform:none;
  9695. visibility:hidden;
  9696. }
  9697. #u28894 {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:1170px;
  9701. top:1182px;
  9702. width:22px;
  9703. height:22px;
  9704. display:flex;
  9705. transition:none;
  9706. font-family:"Microsoft YaHei", sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. font-size:12px;
  9710. color:#FFFFFF;
  9711. }
  9712. #u28894 .text {
  9713. position:absolute;
  9714. align-self:center;
  9715. padding:4px 4px 4px 4px;
  9716. box-sizing:border-box;
  9717. width:100%;
  9718. }
  9719. #u28894_img {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:0px;
  9723. top:0px;
  9724. width:22px;
  9725. height:22px;
  9726. }
  9727. #u28894_text {
  9728. border-width:0px;
  9729. word-wrap:break-word;
  9730. text-transform:none;
  9731. visibility:hidden;
  9732. }
  9733. #u28895 {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:1139px;
  9737. top:1247px;
  9738. width:86px;
  9739. height:1px;
  9740. display:flex;
  9741. -webkit-transform:rotate(90deg);
  9742. -moz-transform:rotate(90deg);
  9743. -ms-transform:rotate(90deg);
  9744. transform:rotate(90deg);
  9745. transition:none;
  9746. }
  9747. #u28895 .text {
  9748. position:absolute;
  9749. align-self:center;
  9750. padding:2px 2px 2px 2px;
  9751. box-sizing:border-box;
  9752. width:100%;
  9753. }
  9754. #u28895_img {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:0px;
  9758. top:0px;
  9759. width:87px;
  9760. height:2px;
  9761. }
  9762. #u28895_text {
  9763. border-width:0px;
  9764. word-wrap:break-word;
  9765. text-transform:none;
  9766. visibility:hidden;
  9767. }
  9768. #u28896 {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:0px;
  9774. height:0px;
  9775. }
  9776. #u28897_div {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:0px;
  9780. top:0px;
  9781. width:175px;
  9782. height:20px;
  9783. background:inherit;
  9784. background-color:rgba(255, 255, 255, 0);
  9785. border-radius:0px;
  9786. filter:drop-shadow(none);
  9787. transition:none;
  9788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9789. font-weight:400;
  9790. font-style:normal;
  9791. }
  9792. #u28897 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:1197px;
  9796. top:939px;
  9797. width:175px;
  9798. height:20px;
  9799. display:flex;
  9800. transition:none;
  9801. transform-origin:50% 50%;
  9802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9803. font-weight:400;
  9804. font-style:normal;
  9805. }
  9806. #u28897 .text {
  9807. position:absolute;
  9808. align-self:center;
  9809. padding:0px 0px 0px 0px;
  9810. box-sizing:border-box;
  9811. width:100%;
  9812. }
  9813. #u28897_text {
  9814. border-width:0px;
  9815. white-space:nowrap;
  9816. text-transform:none;
  9817. }
  9818. #u28898 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:0px;
  9822. top:0px;
  9823. width:0px;
  9824. height:0px;
  9825. }
  9826. #u28899_div {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:0px;
  9830. top:0px;
  9831. width:878px;
  9832. height:44px;
  9833. background:inherit;
  9834. background-color:rgba(255, 255, 255, 0);
  9835. border-top:0px;
  9836. border-right:0px;
  9837. border-bottom:0px;
  9838. border-radius:0px;
  9839. border-top-left-radius:0px;
  9840. border-bottom-left-radius:0px;
  9841. filter:drop-shadow(none);
  9842. transition:none;
  9843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9844. font-weight:400;
  9845. font-style:normal;
  9846. font-size:12px;
  9847. }
  9848. #u28899 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:1197px;
  9852. top:964px;
  9853. width:878px;
  9854. height:44px;
  9855. display:flex;
  9856. transition:none;
  9857. transform-origin:50% 50%;
  9858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9859. font-weight:400;
  9860. font-style:normal;
  9861. font-size:12px;
  9862. }
  9863. #u28899 .text {
  9864. position:absolute;
  9865. align-self:center;
  9866. padding:5px 10px 5px 0px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u28899_text {
  9871. border-width:0px;
  9872. word-wrap:break-word;
  9873. text-transform:none;
  9874. }
  9875. #u28900 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:1170px;
  9879. top:939px;
  9880. width:22px;
  9881. height:22px;
  9882. display:flex;
  9883. transition:none;
  9884. font-family:"Microsoft YaHei", sans-serif;
  9885. font-weight:400;
  9886. font-style:normal;
  9887. font-size:12px;
  9888. color:#FFFFFF;
  9889. }
  9890. #u28900 .text {
  9891. position:absolute;
  9892. align-self:center;
  9893. padding:4px 4px 4px 4px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u28900_img {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:22px;
  9903. height:22px;
  9904. }
  9905. #u28900_text {
  9906. border-width:0px;
  9907. word-wrap:break-word;
  9908. text-transform:none;
  9909. visibility:hidden;
  9910. }
  9911. #u28901 {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:1152px;
  9915. top:989px;
  9916. width:60px;
  9917. height:1px;
  9918. display:flex;
  9919. -webkit-transform:rotate(90deg);
  9920. -moz-transform:rotate(90deg);
  9921. -ms-transform:rotate(90deg);
  9922. transform:rotate(90deg);
  9923. transition:none;
  9924. }
  9925. #u28901 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 2px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u28901_img {
  9933. border-width:0px;
  9934. position:absolute;
  9935. left:0px;
  9936. top:0px;
  9937. width:61px;
  9938. height:2px;
  9939. }
  9940. #u28901_text {
  9941. border-width:0px;
  9942. word-wrap:break-word;
  9943. text-transform:none;
  9944. visibility:hidden;
  9945. }
  9946. #u28902 {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:0px;
  9952. height:0px;
  9953. }
  9954. #u28903_div {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:0px;
  9958. top:0px;
  9959. width:175px;
  9960. height:20px;
  9961. background:inherit;
  9962. background-color:rgba(255, 255, 255, 0);
  9963. border-radius:0px;
  9964. filter:drop-shadow(none);
  9965. transition:none;
  9966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9967. font-weight:400;
  9968. font-style:normal;
  9969. }
  9970. #u28903 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:1197px;
  9974. top:1026px;
  9975. width:175px;
  9976. height:20px;
  9977. display:flex;
  9978. transition:none;
  9979. transform-origin:50% 50%;
  9980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9981. font-weight:400;
  9982. font-style:normal;
  9983. }
  9984. #u28903 .text {
  9985. position:absolute;
  9986. align-self:center;
  9987. padding:0px 0px 0px 0px;
  9988. box-sizing:border-box;
  9989. width:100%;
  9990. }
  9991. #u28903_text {
  9992. border-width:0px;
  9993. white-space:nowrap;
  9994. text-transform:none;
  9995. }
  9996. #u28904 {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:0px;
  10000. top:0px;
  10001. width:0px;
  10002. height:0px;
  10003. }
  10004. #u28905_div {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:878px;
  10010. height:44px;
  10011. background:inherit;
  10012. background-color:rgba(255, 255, 255, 0);
  10013. border-top:0px;
  10014. border-right:0px;
  10015. border-bottom:0px;
  10016. border-radius:0px;
  10017. border-top-left-radius:0px;
  10018. border-bottom-left-radius:0px;
  10019. filter:drop-shadow(none);
  10020. transition:none;
  10021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10022. font-weight:400;
  10023. font-style:normal;
  10024. font-size:12px;
  10025. }
  10026. #u28905 {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:1197px;
  10030. top:1051px;
  10031. width:878px;
  10032. height:44px;
  10033. display:flex;
  10034. transition:none;
  10035. transform-origin:50% 50%;
  10036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10037. font-weight:400;
  10038. font-style:normal;
  10039. font-size:12px;
  10040. }
  10041. #u28905 .text {
  10042. position:absolute;
  10043. align-self:center;
  10044. padding:5px 10px 5px 0px;
  10045. box-sizing:border-box;
  10046. width:100%;
  10047. }
  10048. #u28905_text {
  10049. border-width:0px;
  10050. word-wrap:break-word;
  10051. text-transform:none;
  10052. }
  10053. #u28906 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:1170px;
  10057. top:1026px;
  10058. width:22px;
  10059. height:22px;
  10060. display:flex;
  10061. transition:none;
  10062. font-family:"Microsoft YaHei", sans-serif;
  10063. font-weight:400;
  10064. font-style:normal;
  10065. font-size:12px;
  10066. color:#FFFFFF;
  10067. }
  10068. #u28906 .text {
  10069. position:absolute;
  10070. align-self:center;
  10071. padding:4px 4px 4px 4px;
  10072. box-sizing:border-box;
  10073. width:100%;
  10074. }
  10075. #u28906_img {
  10076. border-width:0px;
  10077. position:absolute;
  10078. left:0px;
  10079. top:0px;
  10080. width:22px;
  10081. height:22px;
  10082. }
  10083. #u28906_text {
  10084. border-width:0px;
  10085. word-wrap:break-word;
  10086. text-transform:none;
  10087. visibility:hidden;
  10088. }
  10089. #u28907 {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:1154px;
  10093. top:1074px;
  10094. width:56px;
  10095. height:1px;
  10096. display:flex;
  10097. -webkit-transform:rotate(90deg);
  10098. -moz-transform:rotate(90deg);
  10099. -ms-transform:rotate(90deg);
  10100. transform:rotate(90deg);
  10101. transition:none;
  10102. }
  10103. #u28907 .text {
  10104. position:absolute;
  10105. align-self:center;
  10106. padding:2px 2px 2px 2px;
  10107. box-sizing:border-box;
  10108. width:100%;
  10109. }
  10110. #u28907_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:57px;
  10116. height:2px;
  10117. }
  10118. #u28907_text {
  10119. border-width:0px;
  10120. word-wrap:break-word;
  10121. text-transform:none;
  10122. visibility:hidden;
  10123. }
  10124. #u28908 {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:0px;
  10130. height:0px;
  10131. }
  10132. #u28909_div {
  10133. border-width:0px;
  10134. position:absolute;
  10135. left:0px;
  10136. top:0px;
  10137. width:175px;
  10138. height:20px;
  10139. background:inherit;
  10140. background-color:rgba(255, 255, 255, 0);
  10141. border-radius:0px;
  10142. filter:drop-shadow(none);
  10143. transition:none;
  10144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10145. font-weight:400;
  10146. font-style:normal;
  10147. }
  10148. #u28909 {
  10149. border-width:0px;
  10150. position:absolute;
  10151. left:1197px;
  10152. top:1113px;
  10153. width:175px;
  10154. height:20px;
  10155. display:flex;
  10156. transition:none;
  10157. transform-origin:50% 50%;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-weight:400;
  10160. font-style:normal;
  10161. }
  10162. #u28909 .text {
  10163. position:absolute;
  10164. align-self:center;
  10165. padding:0px 0px 0px 0px;
  10166. box-sizing:border-box;
  10167. width:100%;
  10168. }
  10169. #u28909_text {
  10170. border-width:0px;
  10171. white-space:nowrap;
  10172. text-transform:none;
  10173. }
  10174. #u28910 {
  10175. border-width:0px;
  10176. position:absolute;
  10177. left:0px;
  10178. top:0px;
  10179. width:0px;
  10180. height:0px;
  10181. }
  10182. #u28911_div {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:878px;
  10188. height:27px;
  10189. background:inherit;
  10190. background-color:rgba(255, 255, 255, 0);
  10191. border-top:0px;
  10192. border-right:0px;
  10193. border-bottom:0px;
  10194. border-radius:0px;
  10195. border-top-left-radius:0px;
  10196. border-bottom-left-radius:0px;
  10197. filter:drop-shadow(none);
  10198. transition:none;
  10199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10200. font-weight:400;
  10201. font-style:normal;
  10202. font-size:12px;
  10203. }
  10204. #u28911 {
  10205. border-width:0px;
  10206. position:absolute;
  10207. left:1197px;
  10208. top:1138px;
  10209. width:878px;
  10210. height:27px;
  10211. display:flex;
  10212. transition:none;
  10213. transform-origin:50% 50%;
  10214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10215. font-weight:400;
  10216. font-style:normal;
  10217. font-size:12px;
  10218. }
  10219. #u28911 .text {
  10220. position:absolute;
  10221. align-self:center;
  10222. padding:5px 10px 5px 0px;
  10223. box-sizing:border-box;
  10224. width:100%;
  10225. }
  10226. #u28911_text {
  10227. border-width:0px;
  10228. word-wrap:break-word;
  10229. text-transform:none;
  10230. }
  10231. #u28912 {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:1170px;
  10235. top:1113px;
  10236. width:22px;
  10237. height:22px;
  10238. display:flex;
  10239. transition:none;
  10240. font-family:"Microsoft YaHei", sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:12px;
  10244. color:#FFFFFF;
  10245. }
  10246. #u28912 .text {
  10247. position:absolute;
  10248. align-self:center;
  10249. padding:4px 4px 4px 4px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u28912_img {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:0px;
  10257. top:0px;
  10258. width:22px;
  10259. height:22px;
  10260. }
  10261. #u28912_text {
  10262. border-width:0px;
  10263. word-wrap:break-word;
  10264. text-transform:none;
  10265. visibility:hidden;
  10266. }
  10267. #u28913 {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:1163px;
  10271. top:1152px;
  10272. width:38px;
  10273. height:1px;
  10274. display:flex;
  10275. -webkit-transform:rotate(90deg);
  10276. -moz-transform:rotate(90deg);
  10277. -ms-transform:rotate(90deg);
  10278. transform:rotate(90deg);
  10279. transition:none;
  10280. }
  10281. #u28913 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:2px 2px 2px 2px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u28913_img {
  10289. border-width:0px;
  10290. position:absolute;
  10291. left:0px;
  10292. top:0px;
  10293. width:39px;
  10294. height:2px;
  10295. }
  10296. #u28913_text {
  10297. border-width:0px;
  10298. word-wrap:break-word;
  10299. text-transform:none;
  10300. visibility:hidden;
  10301. }
  10302. #u28914 {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:0px;
  10308. height:0px;
  10309. }
  10310. #u28915 {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:1235px;
  10314. top:740px;
  10315. width:120px;
  10316. height:80px;
  10317. display:flex;
  10318. transition:none;
  10319. }
  10320. #u28915 .text {
  10321. position:absolute;
  10322. align-self:center;
  10323. padding:2px 2px 2px 2px;
  10324. box-sizing:border-box;
  10325. width:100%;
  10326. }
  10327. #u28915_img {
  10328. border-width:0px;
  10329. position:absolute;
  10330. left:0px;
  10331. top:0px;
  10332. width:120px;
  10333. height:80px;
  10334. }
  10335. #u28915_text {
  10336. border-width:0px;
  10337. word-wrap:break-word;
  10338. text-transform:none;
  10339. }
  10340. #u28916 {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:1377px;
  10344. top:740px;
  10345. width:120px;
  10346. height:80px;
  10347. display:flex;
  10348. transition:none;
  10349. }
  10350. #u28916 .text {
  10351. position:absolute;
  10352. align-self:center;
  10353. padding:2px 2px 2px 2px;
  10354. box-sizing:border-box;
  10355. width:100%;
  10356. }
  10357. #u28916_img {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:0px;
  10361. top:0px;
  10362. width:120px;
  10363. height:80px;
  10364. }
  10365. #u28916_text {
  10366. border-width:0px;
  10367. word-wrap:break-word;
  10368. text-transform:none;
  10369. }
  10370. #u28917_div {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:320px;
  10376. height:90px;
  10377. background:inherit;
  10378. background-color:rgba(255, 255, 255, 0);
  10379. border-left:0px;
  10380. border-top:0px;
  10381. border-right:0px;
  10382. border-radius:0px;
  10383. border-bottom-right-radius:0px;
  10384. border-bottom-left-radius:0px;
  10385. filter:drop-shadow(none);
  10386. transition:none;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. font-size:14px;
  10391. line-height:30px;
  10392. }
  10393. #u28917 {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:1161px;
  10397. top:565px;
  10398. width:320px;
  10399. height:90px;
  10400. display:flex;
  10401. transition:none;
  10402. transform-origin:50% 50%;
  10403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10404. font-weight:400;
  10405. font-style:normal;
  10406. font-size:14px;
  10407. line-height:30px;
  10408. }
  10409. #u28917 .text {
  10410. position:absolute;
  10411. align-self:flex-start;
  10412. padding:0px 0px 0px 0px;
  10413. box-sizing:border-box;
  10414. width:100%;
  10415. }
  10416. #u28917_text {
  10417. border-width:0px;
  10418. word-wrap:break-word;
  10419. text-transform:none;
  10420. }
  10421. #u28918_div {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:0px;
  10425. top:0px;
  10426. width:320px;
  10427. height:60px;
  10428. background:inherit;
  10429. background-color:rgba(255, 255, 255, 0);
  10430. border-left:0px;
  10431. border-top:0px;
  10432. border-right:0px;
  10433. border-radius:0px;
  10434. border-bottom-right-radius:0px;
  10435. border-bottom-left-radius:0px;
  10436. filter:drop-shadow(none);
  10437. transition:none;
  10438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10439. font-weight:400;
  10440. font-style:normal;
  10441. font-size:14px;
  10442. line-height:30px;
  10443. }
  10444. #u28918 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:1481px;
  10448. top:565px;
  10449. width:320px;
  10450. height:60px;
  10451. display:flex;
  10452. transition:none;
  10453. transform-origin:50% 50%;
  10454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10455. font-weight:400;
  10456. font-style:normal;
  10457. font-size:14px;
  10458. line-height:30px;
  10459. }
  10460. #u28918 .text {
  10461. position:absolute;
  10462. align-self:flex-start;
  10463. padding:0px 0px 0px 0px;
  10464. box-sizing:border-box;
  10465. width:100%;
  10466. }
  10467. #u28918_text {
  10468. border-width:0px;
  10469. word-wrap:break-word;
  10470. text-transform:none;
  10471. }
  10472. #u28919_div {
  10473. border-width:0px;
  10474. position:absolute;
  10475. left:0px;
  10476. top:0px;
  10477. width:320px;
  10478. height:60px;
  10479. background:inherit;
  10480. background-color:rgba(255, 255, 255, 0);
  10481. border-left:0px;
  10482. border-top:0px;
  10483. border-right:0px;
  10484. border-radius:0px;
  10485. border-bottom-right-radius:0px;
  10486. border-bottom-left-radius:0px;
  10487. filter:drop-shadow(none);
  10488. transition:none;
  10489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10490. font-weight:400;
  10491. font-style:normal;
  10492. font-size:14px;
  10493. line-height:30px;
  10494. }
  10495. #u28919 {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:1801px;
  10499. top:565px;
  10500. width:320px;
  10501. height:60px;
  10502. display:flex;
  10503. transition:none;
  10504. transform-origin:50% 50%;
  10505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10506. font-weight:400;
  10507. font-style:normal;
  10508. font-size:14px;
  10509. line-height:30px;
  10510. }
  10511. #u28919 .text {
  10512. position:absolute;
  10513. align-self:flex-start;
  10514. padding:0px 0px 0px 0px;
  10515. box-sizing:border-box;
  10516. width:100%;
  10517. }
  10518. #u28919_text {
  10519. border-width:0px;
  10520. word-wrap:break-word;
  10521. text-transform:none;
  10522. }
  10523. #u28920_div {
  10524. border-width:0px;
  10525. position:absolute;
  10526. left:0px;
  10527. top:0px;
  10528. width:83px;
  10529. height:35px;
  10530. background:inherit;
  10531. background-color:rgba(255, 255, 255, 0);
  10532. border-top:0px;
  10533. border-right:0px;
  10534. border-bottom:0px;
  10535. border-radius:0px;
  10536. border-top-left-radius:0px;
  10537. border-bottom-left-radius:0px;
  10538. filter:drop-shadow(none);
  10539. transition:none;
  10540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10541. font-weight:500;
  10542. font-style:normal;
  10543. font-size:18px;
  10544. }
  10545. #u28920 {
  10546. border-width:0px;
  10547. position:absolute;
  10548. left:1161px;
  10549. top:521px;
  10550. width:83px;
  10551. height:35px;
  10552. display:flex;
  10553. transition:none;
  10554. transform-origin:50% 50%;
  10555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10556. font-weight:500;
  10557. font-style:normal;
  10558. font-size:18px;
  10559. }
  10560. #u28920 .text {
  10561. position:absolute;
  10562. align-self:center;
  10563. padding:5px 10px 5px 0px;
  10564. box-sizing:border-box;
  10565. width:100%;
  10566. }
  10567. #u28920_text {
  10568. border-width:0px;
  10569. white-space:nowrap;
  10570. text-transform:none;
  10571. }
  10572. #u28921_div {
  10573. border-width:0px;
  10574. position:absolute;
  10575. left:0px;
  10576. top:0px;
  10577. width:323px;
  10578. height:90px;
  10579. background:inherit;
  10580. background-color:rgba(255, 255, 255, 0);
  10581. border-left:0px;
  10582. border-top:0px;
  10583. border-right:0px;
  10584. border-radius:0px;
  10585. border-bottom-right-radius:0px;
  10586. border-bottom-left-radius:0px;
  10587. filter:drop-shadow(none);
  10588. transition:none;
  10589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10590. font-weight:400;
  10591. font-style:normal;
  10592. font-size:14px;
  10593. line-height:30px;
  10594. }
  10595. #u28921 {
  10596. border-width:0px;
  10597. position:absolute;
  10598. left:1161px;
  10599. top:675px;
  10600. width:323px;
  10601. height:90px;
  10602. display:flex;
  10603. transition:none;
  10604. transform-origin:50% 50%;
  10605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:14px;
  10609. line-height:30px;
  10610. }
  10611. #u28921 .text {
  10612. position:absolute;
  10613. align-self:flex-start;
  10614. padding:0px 0px 0px 0px;
  10615. box-sizing:border-box;
  10616. width:100%;
  10617. }
  10618. #u28921_text {
  10619. border-width:0px;
  10620. white-space:nowrap;
  10621. text-transform:none;
  10622. }
  10623. #u28922_div {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:0px;
  10627. top:0px;
  10628. width:320px;
  10629. height:30px;
  10630. background:inherit;
  10631. background-color:rgba(255, 255, 255, 0);
  10632. border-left:0px;
  10633. border-top:0px;
  10634. border-right:0px;
  10635. border-radius:0px;
  10636. border-bottom-right-radius:0px;
  10637. border-bottom-left-radius:0px;
  10638. filter:drop-shadow(none);
  10639. transition:none;
  10640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10641. font-weight:400;
  10642. font-style:normal;
  10643. font-size:14px;
  10644. line-height:30px;
  10645. }
  10646. #u28922 {
  10647. border-width:0px;
  10648. position:absolute;
  10649. left:1481px;
  10650. top:675px;
  10651. width:320px;
  10652. height:30px;
  10653. display:flex;
  10654. transition:none;
  10655. transform-origin:50% 50%;
  10656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10657. font-weight:400;
  10658. font-style:normal;
  10659. font-size:14px;
  10660. line-height:30px;
  10661. }
  10662. #u28922 .text {
  10663. position:absolute;
  10664. align-self:flex-start;
  10665. padding:0px 0px 0px 0px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u28922_text {
  10670. border-width:0px;
  10671. word-wrap:break-word;
  10672. text-transform:none;
  10673. }
  10674. #u28923_div {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:0px;
  10679. width:320px;
  10680. height:30px;
  10681. background:inherit;
  10682. background-color:rgba(255, 255, 255, 0);
  10683. border-left:0px;
  10684. border-top:0px;
  10685. border-right:0px;
  10686. border-radius:0px;
  10687. border-bottom-right-radius:0px;
  10688. border-bottom-left-radius:0px;
  10689. filter:drop-shadow(none);
  10690. transition:none;
  10691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:14px;
  10695. line-height:30px;
  10696. }
  10697. #u28923 {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:1801px;
  10701. top:675px;
  10702. width:320px;
  10703. height:30px;
  10704. display:flex;
  10705. transition:none;
  10706. transform-origin:50% 50%;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. font-size:14px;
  10711. line-height:30px;
  10712. }
  10713. #u28923 .text {
  10714. position:absolute;
  10715. align-self:flex-start;
  10716. padding:0px 0px 0px 0px;
  10717. box-sizing:border-box;
  10718. width:100%;
  10719. }
  10720. #u28923_text {
  10721. border-width:0px;
  10722. word-wrap:break-word;
  10723. text-transform:none;
  10724. }
  10725. #u28924 {
  10726. border-width:0px;
  10727. position:absolute;
  10728. left:0px;
  10729. top:0px;
  10730. width:0px;
  10731. height:0px;
  10732. }
  10733. #u28925_div {
  10734. border-width:0px;
  10735. position:absolute;
  10736. left:0px;
  10737. top:0px;
  10738. width:1000px;
  10739. height:1303px;
  10740. background:inherit;
  10741. background-color:rgba(242, 242, 242, 1);
  10742. box-sizing:border-box;
  10743. border-width:1px;
  10744. border-style:solid;
  10745. border-color:rgba(242, 242, 242, 1);
  10746. border-radius:0px;
  10747. filter:drop-shadow(none);
  10748. transition:none;
  10749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10750. font-weight:400;
  10751. font-style:normal;
  10752. font-size:14px;
  10753. color:#AAAAAA;
  10754. text-align:center;
  10755. line-height:30px;
  10756. }
  10757. #u28925 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:2142px;
  10761. top:115px;
  10762. width:1000px;
  10763. height:1303px;
  10764. display:flex;
  10765. transition:none;
  10766. transform-origin:50% 50%;
  10767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10768. font-weight:400;
  10769. font-style:normal;
  10770. font-size:14px;
  10771. color:#AAAAAA;
  10772. text-align:center;
  10773. line-height:30px;
  10774. }
  10775. #u28925 .text {
  10776. position:absolute;
  10777. align-self:center;
  10778. padding:5px 10px 5px 10px;
  10779. box-sizing:border-box;
  10780. width:100%;
  10781. }
  10782. #u28925_text {
  10783. border-width:0px;
  10784. word-wrap:break-word;
  10785. text-transform:none;
  10786. visibility:hidden;
  10787. }
  10788. #u28926_div {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:0px;
  10792. top:0px;
  10793. width:1000px;
  10794. height:580px;
  10795. background:inherit;
  10796. background-color:rgba(255, 255, 255, 1);
  10797. box-sizing:border-box;
  10798. border-width:1px;
  10799. border-style:solid;
  10800. border-color:rgba(242, 242, 242, 1);
  10801. border-radius:0px;
  10802. filter:drop-shadow(none);
  10803. transition:none;
  10804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10805. font-weight:400;
  10806. font-style:normal;
  10807. font-size:14px;
  10808. color:#AAAAAA;
  10809. text-align:center;
  10810. line-height:30px;
  10811. }
  10812. #u28926 {
  10813. border-width:0px;
  10814. position:absolute;
  10815. left:2142px;
  10816. top:266px;
  10817. width:1000px;
  10818. height:580px;
  10819. display:flex;
  10820. transition:none;
  10821. transform-origin:50% 50%;
  10822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10823. font-weight:400;
  10824. font-style:normal;
  10825. font-size:14px;
  10826. color:#AAAAAA;
  10827. text-align:center;
  10828. line-height:30px;
  10829. }
  10830. #u28926 .text {
  10831. position:absolute;
  10832. align-self:center;
  10833. padding:5px 10px 5px 10px;
  10834. box-sizing:border-box;
  10835. width:100%;
  10836. }
  10837. #u28926_text {
  10838. border-width:0px;
  10839. word-wrap:break-word;
  10840. text-transform:none;
  10841. visibility:hidden;
  10842. }
  10843. #u28927_div {
  10844. border-width:0px;
  10845. position:absolute;
  10846. left:0px;
  10847. top:0px;
  10848. width:73px;
  10849. height:40px;
  10850. background:inherit;
  10851. background-color:rgba(255, 255, 255, 0);
  10852. border-left:0px;
  10853. border-top:0px;
  10854. border-right:0px;
  10855. border-radius:0px;
  10856. border-bottom-right-radius:0px;
  10857. border-bottom-left-radius:0px;
  10858. filter:drop-shadow(none);
  10859. transition:none;
  10860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10861. font-weight:400;
  10862. font-style:normal;
  10863. font-size:18px;
  10864. }
  10865. #u28927 {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:2182px;
  10869. top:282px;
  10870. width:73px;
  10871. height:40px;
  10872. display:flex;
  10873. transition:none;
  10874. transform-origin:50% 50%;
  10875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10876. font-weight:400;
  10877. font-style:normal;
  10878. font-size:18px;
  10879. }
  10880. #u28927 .text {
  10881. position:absolute;
  10882. align-self:center;
  10883. padding:0px 0px 0px 0px;
  10884. box-sizing:border-box;
  10885. width:100%;
  10886. }
  10887. #u28927_text {
  10888. border-width:0px;
  10889. white-space:nowrap;
  10890. text-transform:none;
  10891. }
  10892. #u28928_div {
  10893. border-width:0px;
  10894. position:absolute;
  10895. left:0px;
  10896. top:0px;
  10897. width:81px;
  10898. height:30px;
  10899. background:inherit;
  10900. background-color:rgba(255, 255, 255, 0);
  10901. border-top:0px;
  10902. border-right:0px;
  10903. border-bottom:0px;
  10904. border-radius:0px;
  10905. border-top-left-radius:0px;
  10906. border-bottom-left-radius:0px;
  10907. filter:drop-shadow(none);
  10908. transition:none;
  10909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10910. font-weight:400;
  10911. font-style:normal;
  10912. font-size:14px;
  10913. color:#7F7F7F;
  10914. }
  10915. #u28928 {
  10916. border-width:0px;
  10917. position:absolute;
  10918. left:2182px;
  10919. top:332px;
  10920. width:81px;
  10921. height:30px;
  10922. display:flex;
  10923. transition:none;
  10924. transform-origin:50% 50%;
  10925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10926. font-weight:400;
  10927. font-style:normal;
  10928. font-size:14px;
  10929. color:#7F7F7F;
  10930. }
  10931. #u28928 .text {
  10932. position:absolute;
  10933. align-self:center;
  10934. padding:5px 10px 5px 0px;
  10935. box-sizing:border-box;
  10936. width:100%;
  10937. }
  10938. #u28928_text {
  10939. border-width:0px;
  10940. white-space:nowrap;
  10941. text-transform:none;
  10942. }
  10943. #u28929_div {
  10944. border-width:0px;
  10945. position:absolute;
  10946. left:0px;
  10947. top:0px;
  10948. width:142px;
  10949. height:30px;
  10950. background:inherit;
  10951. background-color:rgba(255, 255, 255, 0);
  10952. border-top:0px;
  10953. border-right:0px;
  10954. border-bottom:0px;
  10955. border-radius:0px;
  10956. border-top-left-radius:0px;
  10957. border-bottom-left-radius:0px;
  10958. filter:drop-shadow(none);
  10959. transition:none;
  10960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10961. font-weight:400;
  10962. font-style:normal;
  10963. font-size:14px;
  10964. color:#1890FF;
  10965. }
  10966. #u28929 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:2263px;
  10970. top:332px;
  10971. width:142px;
  10972. height:30px;
  10973. display:flex;
  10974. transition:none;
  10975. transform-origin:50% 50%;
  10976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10977. font-weight:400;
  10978. font-style:normal;
  10979. font-size:14px;
  10980. color:#1890FF;
  10981. }
  10982. #u28929 .text {
  10983. position:absolute;
  10984. align-self:center;
  10985. padding:5px 10px 5px 0px;
  10986. box-sizing:border-box;
  10987. width:100%;
  10988. }
  10989. #u28929_text {
  10990. border-width:0px;
  10991. white-space:nowrap;
  10992. text-transform:none;
  10993. }
  10994. #u28930_div {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:81px;
  11000. height:30px;
  11001. background:inherit;
  11002. background-color:rgba(255, 255, 255, 0);
  11003. border-top:0px;
  11004. border-right:0px;
  11005. border-bottom:0px;
  11006. border-radius:0px;
  11007. border-top-left-radius:0px;
  11008. border-bottom-left-radius:0px;
  11009. filter:drop-shadow(none);
  11010. transition:none;
  11011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11012. font-weight:400;
  11013. font-style:normal;
  11014. font-size:14px;
  11015. color:#7F7F7F;
  11016. }
  11017. #u28930 {
  11018. border-width:0px;
  11019. position:absolute;
  11020. left:2502px;
  11021. top:332px;
  11022. width:81px;
  11023. height:30px;
  11024. display:flex;
  11025. transition:none;
  11026. transform-origin:50% 50%;
  11027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11028. font-weight:400;
  11029. font-style:normal;
  11030. font-size:14px;
  11031. color:#7F7F7F;
  11032. }
  11033. #u28930 .text {
  11034. position:absolute;
  11035. align-self:center;
  11036. padding:5px 10px 5px 0px;
  11037. box-sizing:border-box;
  11038. width:100%;
  11039. }
  11040. #u28930_text {
  11041. border-width:0px;
  11042. white-space:nowrap;
  11043. text-transform:none;
  11044. }
  11045. #u28931_div {
  11046. border-width:0px;
  11047. position:absolute;
  11048. left:0px;
  11049. top:0px;
  11050. width:67px;
  11051. height:30px;
  11052. background:inherit;
  11053. background-color:rgba(255, 255, 255, 0);
  11054. border-top:0px;
  11055. border-right:0px;
  11056. border-bottom:0px;
  11057. border-radius:0px;
  11058. border-top-left-radius:0px;
  11059. border-bottom-left-radius:0px;
  11060. filter:drop-shadow(none);
  11061. transition:none;
  11062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11063. font-weight:400;
  11064. font-style:normal;
  11065. font-size:14px;
  11066. }
  11067. #u28931 {
  11068. border-width:0px;
  11069. position:absolute;
  11070. left:2583px;
  11071. top:332px;
  11072. width:67px;
  11073. height:30px;
  11074. display:flex;
  11075. transition:none;
  11076. transform-origin:50% 50%;
  11077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11078. font-weight:400;
  11079. font-style:normal;
  11080. font-size:14px;
  11081. }
  11082. #u28931 .text {
  11083. position:absolute;
  11084. align-self:center;
  11085. padding:5px 10px 5px 0px;
  11086. box-sizing:border-box;
  11087. width:100%;
  11088. }
  11089. #u28931_text {
  11090. border-width:0px;
  11091. white-space:nowrap;
  11092. text-transform:none;
  11093. }
  11094. #u28932_div {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:0px;
  11098. top:0px;
  11099. width:81px;
  11100. height:30px;
  11101. background:inherit;
  11102. background-color:rgba(255, 255, 255, 0);
  11103. border-top:0px;
  11104. border-right:0px;
  11105. border-bottom:0px;
  11106. border-radius:0px;
  11107. border-top-left-radius:0px;
  11108. border-bottom-left-radius:0px;
  11109. filter:drop-shadow(none);
  11110. transition:none;
  11111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11112. font-weight:400;
  11113. font-style:normal;
  11114. font-size:14px;
  11115. color:#7F7F7F;
  11116. }
  11117. #u28932 {
  11118. border-width:0px;
  11119. position:absolute;
  11120. left:2799px;
  11121. top:332px;
  11122. width:81px;
  11123. height:30px;
  11124. display:flex;
  11125. transition:none;
  11126. transform-origin:50% 50%;
  11127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:14px;
  11131. color:#7F7F7F;
  11132. }
  11133. #u28932 .text {
  11134. position:absolute;
  11135. align-self:center;
  11136. padding:5px 10px 5px 0px;
  11137. box-sizing:border-box;
  11138. width:100%;
  11139. }
  11140. #u28932_text {
  11141. border-width:0px;
  11142. white-space:nowrap;
  11143. text-transform:none;
  11144. }
  11145. #u28933_div {
  11146. border-width:0px;
  11147. position:absolute;
  11148. left:0px;
  11149. top:0px;
  11150. width:53px;
  11151. height:30px;
  11152. background:inherit;
  11153. background-color:rgba(255, 255, 255, 0);
  11154. border-top:0px;
  11155. border-right:0px;
  11156. border-bottom:0px;
  11157. border-radius:0px;
  11158. border-top-left-radius:0px;
  11159. border-bottom-left-radius:0px;
  11160. filter:drop-shadow(none);
  11161. transition:none;
  11162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11163. font-weight:400;
  11164. font-style:normal;
  11165. font-size:14px;
  11166. }
  11167. #u28933 {
  11168. border-width:0px;
  11169. position:absolute;
  11170. left:2880px;
  11171. top:332px;
  11172. width:53px;
  11173. height:30px;
  11174. display:flex;
  11175. transition:none;
  11176. transform-origin:50% 50%;
  11177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11178. font-weight:400;
  11179. font-style:normal;
  11180. font-size:14px;
  11181. }
  11182. #u28933 .text {
  11183. position:absolute;
  11184. align-self:center;
  11185. padding:5px 10px 5px 0px;
  11186. box-sizing:border-box;
  11187. width:100%;
  11188. }
  11189. #u28933_text {
  11190. border-width:0px;
  11191. white-space:nowrap;
  11192. text-transform:none;
  11193. }
  11194. #u28934_div {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:0px;
  11198. top:0px;
  11199. width:81px;
  11200. height:30px;
  11201. background:inherit;
  11202. background-color:rgba(255, 255, 255, 0);
  11203. border-top:0px;
  11204. border-right:0px;
  11205. border-bottom:0px;
  11206. border-radius:0px;
  11207. border-top-left-radius:0px;
  11208. border-bottom-left-radius:0px;
  11209. filter:drop-shadow(none);
  11210. transition:none;
  11211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11212. font-weight:400;
  11213. font-style:normal;
  11214. font-size:14px;
  11215. color:#7F7F7F;
  11216. }
  11217. #u28934 {
  11218. border-width:0px;
  11219. position:absolute;
  11220. left:2182px;
  11221. top:372px;
  11222. width:81px;
  11223. height:30px;
  11224. display:flex;
  11225. transition:none;
  11226. transform-origin:50% 50%;
  11227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11228. font-weight:400;
  11229. font-style:normal;
  11230. font-size:14px;
  11231. color:#7F7F7F;
  11232. }
  11233. #u28934 .text {
  11234. position:absolute;
  11235. align-self:center;
  11236. padding:5px 10px 5px 0px;
  11237. box-sizing:border-box;
  11238. width:100%;
  11239. }
  11240. #u28934_text {
  11241. border-width:0px;
  11242. white-space:nowrap;
  11243. text-transform:none;
  11244. }
  11245. #u28935_div {
  11246. border-width:0px;
  11247. position:absolute;
  11248. left:0px;
  11249. top:0px;
  11250. width:81px;
  11251. height:30px;
  11252. background:inherit;
  11253. background-color:rgba(255, 255, 255, 0);
  11254. border-top:0px;
  11255. border-right:0px;
  11256. border-bottom:0px;
  11257. border-radius:0px;
  11258. border-top-left-radius:0px;
  11259. border-bottom-left-radius:0px;
  11260. filter:drop-shadow(none);
  11261. transition:none;
  11262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11263. font-weight:400;
  11264. font-style:normal;
  11265. font-size:14px;
  11266. color:#7F7F7F;
  11267. }
  11268. #u28935 {
  11269. border-width:0px;
  11270. position:absolute;
  11271. left:2502px;
  11272. top:372px;
  11273. width:81px;
  11274. height:30px;
  11275. display:flex;
  11276. transition:none;
  11277. transform-origin:50% 50%;
  11278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11279. font-weight:400;
  11280. font-style:normal;
  11281. font-size:14px;
  11282. color:#7F7F7F;
  11283. }
  11284. #u28935 .text {
  11285. position:absolute;
  11286. align-self:center;
  11287. padding:5px 10px 5px 0px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u28935_text {
  11292. border-width:0px;
  11293. white-space:nowrap;
  11294. text-transform:none;
  11295. }
  11296. #u28936_div {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:67px;
  11302. height:30px;
  11303. background:inherit;
  11304. background-color:rgba(255, 255, 255, 0);
  11305. border-top:0px;
  11306. border-right:0px;
  11307. border-bottom:0px;
  11308. border-radius:0px;
  11309. border-top-left-radius:0px;
  11310. border-bottom-left-radius:0px;
  11311. filter:drop-shadow(none);
  11312. transition:none;
  11313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11314. font-weight:400;
  11315. font-style:normal;
  11316. font-size:14px;
  11317. }
  11318. #u28936 {
  11319. border-width:0px;
  11320. position:absolute;
  11321. left:2583px;
  11322. top:372px;
  11323. width:67px;
  11324. height:30px;
  11325. display:flex;
  11326. transition:none;
  11327. transform-origin:50% 50%;
  11328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11329. font-weight:400;
  11330. font-style:normal;
  11331. font-size:14px;
  11332. }
  11333. #u28936 .text {
  11334. position:absolute;
  11335. align-self:center;
  11336. padding:5px 10px 5px 0px;
  11337. box-sizing:border-box;
  11338. width:100%;
  11339. }
  11340. #u28936_text {
  11341. border-width:0px;
  11342. white-space:nowrap;
  11343. text-transform:none;
  11344. }
  11345. #u28937_div {
  11346. border-width:0px;
  11347. position:absolute;
  11348. left:0px;
  11349. top:0px;
  11350. width:67px;
  11351. height:30px;
  11352. background:inherit;
  11353. background-color:rgba(255, 255, 255, 0);
  11354. border-top:0px;
  11355. border-right:0px;
  11356. border-bottom:0px;
  11357. border-radius:0px;
  11358. border-top-left-radius:0px;
  11359. border-bottom-left-radius:0px;
  11360. filter:drop-shadow(none);
  11361. transition:none;
  11362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11363. font-weight:400;
  11364. font-style:normal;
  11365. font-size:14px;
  11366. color:#7F7F7F;
  11367. }
  11368. #u28937 {
  11369. border-width:0px;
  11370. position:absolute;
  11371. left:2799px;
  11372. top:372px;
  11373. width:67px;
  11374. height:30px;
  11375. display:flex;
  11376. transition:none;
  11377. transform-origin:50% 50%;
  11378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11379. font-weight:400;
  11380. font-style:normal;
  11381. font-size:14px;
  11382. color:#7F7F7F;
  11383. }
  11384. #u28937 .text {
  11385. position:absolute;
  11386. align-self:center;
  11387. padding:5px 10px 5px 0px;
  11388. box-sizing:border-box;
  11389. width:100%;
  11390. }
  11391. #u28937_text {
  11392. border-width:0px;
  11393. white-space:nowrap;
  11394. text-transform:none;
  11395. }
  11396. #u28938_div {
  11397. border-width:0px;
  11398. position:absolute;
  11399. left:0px;
  11400. top:0px;
  11401. width:85px;
  11402. height:30px;
  11403. background:inherit;
  11404. background-color:rgba(255, 255, 255, 0);
  11405. border-top:0px;
  11406. border-right:0px;
  11407. border-bottom:0px;
  11408. border-radius:0px;
  11409. border-top-left-radius:0px;
  11410. border-bottom-left-radius:0px;
  11411. filter:drop-shadow(none);
  11412. transition:none;
  11413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11414. font-weight:400;
  11415. font-style:normal;
  11416. font-size:14px;
  11417. }
  11418. #u28938 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:2880px;
  11422. top:372px;
  11423. width:85px;
  11424. height:30px;
  11425. display:flex;
  11426. transition:none;
  11427. transform-origin:50% 50%;
  11428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11429. font-weight:400;
  11430. font-style:normal;
  11431. font-size:14px;
  11432. }
  11433. #u28938 .text {
  11434. position:absolute;
  11435. align-self:center;
  11436. padding:5px 10px 5px 0px;
  11437. box-sizing:border-box;
  11438. width:100%;
  11439. }
  11440. #u28938_text {
  11441. border-width:0px;
  11442. white-space:nowrap;
  11443. text-transform:none;
  11444. }
  11445. #u28939_div {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:183px;
  11451. height:30px;
  11452. background:inherit;
  11453. background-color:rgba(255, 255, 255, 0);
  11454. border-top:0px;
  11455. border-right:0px;
  11456. border-bottom:0px;
  11457. border-radius:0px;
  11458. border-top-left-radius:0px;
  11459. border-bottom-left-radius:0px;
  11460. filter:drop-shadow(none);
  11461. transition:none;
  11462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11463. font-weight:400;
  11464. font-style:normal;
  11465. font-size:14px;
  11466. }
  11467. #u28939 {
  11468. border-width:0px;
  11469. position:absolute;
  11470. left:2263px;
  11471. top:372px;
  11472. width:183px;
  11473. height:30px;
  11474. display:flex;
  11475. transition:none;
  11476. transform-origin:50% 50%;
  11477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11478. font-weight:400;
  11479. font-style:normal;
  11480. font-size:14px;
  11481. }
  11482. #u28939 .text {
  11483. position:absolute;
  11484. align-self:center;
  11485. padding:5px 10px 5px 0px;
  11486. box-sizing:border-box;
  11487. width:100%;
  11488. }
  11489. #u28939_text {
  11490. border-width:0px;
  11491. white-space:nowrap;
  11492. text-transform:none;
  11493. }
  11494. #u28940_div {
  11495. border-width:0px;
  11496. position:absolute;
  11497. left:0px;
  11498. top:0px;
  11499. width:81px;
  11500. height:30px;
  11501. background:inherit;
  11502. background-color:rgba(255, 255, 255, 0);
  11503. border-top:0px;
  11504. border-right:0px;
  11505. border-bottom:0px;
  11506. border-radius:0px;
  11507. border-top-left-radius:0px;
  11508. border-bottom-left-radius:0px;
  11509. filter:drop-shadow(none);
  11510. transition:none;
  11511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11512. font-weight:400;
  11513. font-style:normal;
  11514. font-size:14px;
  11515. color:#7F7F7F;
  11516. }
  11517. #u28940 {
  11518. border-width:0px;
  11519. position:absolute;
  11520. left:2182px;
  11521. top:412px;
  11522. width:81px;
  11523. height:30px;
  11524. display:flex;
  11525. transition:none;
  11526. transform-origin:50% 50%;
  11527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11528. font-weight:400;
  11529. font-style:normal;
  11530. font-size:14px;
  11531. color:#7F7F7F;
  11532. }
  11533. #u28940 .text {
  11534. position:absolute;
  11535. align-self:center;
  11536. padding:5px 10px 5px 0px;
  11537. box-sizing:border-box;
  11538. width:100%;
  11539. }
  11540. #u28940_text {
  11541. border-width:0px;
  11542. white-space:nowrap;
  11543. text-transform:none;
  11544. }
  11545. #u28941_div {
  11546. border-width:0px;
  11547. position:absolute;
  11548. left:0px;
  11549. top:0px;
  11550. width:126px;
  11551. height:30px;
  11552. background:inherit;
  11553. background-color:rgba(255, 255, 255, 0);
  11554. border-top:0px;
  11555. border-right:0px;
  11556. border-bottom:0px;
  11557. border-radius:0px;
  11558. border-top-left-radius:0px;
  11559. border-bottom-left-radius:0px;
  11560. filter:drop-shadow(none);
  11561. transition:none;
  11562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11563. font-weight:400;
  11564. font-style:normal;
  11565. font-size:14px;
  11566. }
  11567. #u28941 {
  11568. border-width:0px;
  11569. position:absolute;
  11570. left:2263px;
  11571. top:412px;
  11572. width:126px;
  11573. height:30px;
  11574. display:flex;
  11575. transition:none;
  11576. transform-origin:50% 50%;
  11577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11578. font-weight:400;
  11579. font-style:normal;
  11580. font-size:14px;
  11581. }
  11582. #u28941 .text {
  11583. position:absolute;
  11584. align-self:center;
  11585. padding:5px 10px 5px 0px;
  11586. box-sizing:border-box;
  11587. width:100%;
  11588. }
  11589. #u28941_text {
  11590. border-width:0px;
  11591. white-space:nowrap;
  11592. text-transform:none;
  11593. }
  11594. #u28942_div {
  11595. border-width:0px;
  11596. position:absolute;
  11597. left:0px;
  11598. top:0px;
  11599. width:81px;
  11600. height:30px;
  11601. background:inherit;
  11602. background-color:rgba(255, 255, 255, 0);
  11603. border-top:0px;
  11604. border-right:0px;
  11605. border-bottom:0px;
  11606. border-radius:0px;
  11607. border-top-left-radius:0px;
  11608. border-bottom-left-radius:0px;
  11609. filter:drop-shadow(none);
  11610. transition:none;
  11611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11612. font-weight:400;
  11613. font-style:normal;
  11614. font-size:14px;
  11615. color:#7F7F7F;
  11616. }
  11617. #u28942 {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:2182px;
  11621. top:452px;
  11622. width:81px;
  11623. height:30px;
  11624. display:flex;
  11625. transition:none;
  11626. transform-origin:50% 50%;
  11627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11628. font-weight:400;
  11629. font-style:normal;
  11630. font-size:14px;
  11631. color:#7F7F7F;
  11632. }
  11633. #u28942 .text {
  11634. position:absolute;
  11635. align-self:center;
  11636. padding:5px 10px 5px 0px;
  11637. box-sizing:border-box;
  11638. width:100%;
  11639. }
  11640. #u28942_text {
  11641. border-width:0px;
  11642. white-space:nowrap;
  11643. text-transform:none;
  11644. }
  11645. #u28943_div {
  11646. border-width:0px;
  11647. position:absolute;
  11648. left:0px;
  11649. top:0px;
  11650. width:263px;
  11651. height:30px;
  11652. background:inherit;
  11653. background-color:rgba(255, 255, 255, 0);
  11654. border-top:0px;
  11655. border-right:0px;
  11656. border-bottom:0px;
  11657. border-radius:0px;
  11658. border-top-left-radius:0px;
  11659. border-bottom-left-radius:0px;
  11660. filter:drop-shadow(none);
  11661. transition:none;
  11662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11663. font-weight:400;
  11664. font-style:normal;
  11665. font-size:14px;
  11666. }
  11667. #u28943 {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:2263px;
  11671. top:452px;
  11672. width:263px;
  11673. height:30px;
  11674. display:flex;
  11675. transition:none;
  11676. transform-origin:50% 50%;
  11677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11678. font-weight:400;
  11679. font-style:normal;
  11680. font-size:14px;
  11681. }
  11682. #u28943 .text {
  11683. position:absolute;
  11684. align-self:center;
  11685. padding:5px 10px 5px 0px;
  11686. box-sizing:border-box;
  11687. width:100%;
  11688. }
  11689. #u28943_text {
  11690. border-width:0px;
  11691. white-space:nowrap;
  11692. text-transform:none;
  11693. }
  11694. #u28944 {
  11695. border-width:0px;
  11696. position:absolute;
  11697. left:2182px;
  11698. top:500px;
  11699. width:941px;
  11700. height:1px;
  11701. display:flex;
  11702. transition:none;
  11703. }
  11704. #u28944 .text {
  11705. position:absolute;
  11706. align-self:center;
  11707. padding:2px 2px 2px 2px;
  11708. box-sizing:border-box;
  11709. width:100%;
  11710. }
  11711. #u28944_img {
  11712. border-width:0px;
  11713. position:absolute;
  11714. left:0px;
  11715. top:0px;
  11716. width:942px;
  11717. height:2px;
  11718. }
  11719. #u28944_text {
  11720. border-width:0px;
  11721. word-wrap:break-word;
  11722. text-transform:none;
  11723. visibility:hidden;
  11724. }
  11725. #u28945_div {
  11726. border-width:0px;
  11727. position:absolute;
  11728. left:0px;
  11729. top:0px;
  11730. width:1000px;
  11731. height:200px;
  11732. background:inherit;
  11733. background-color:rgba(255, 255, 255, 1);
  11734. box-sizing:border-box;
  11735. border-width:1px;
  11736. border-style:solid;
  11737. border-color:rgba(215, 215, 215, 1);
  11738. border-radius:0px;
  11739. filter:drop-shadow(none);
  11740. transition:none;
  11741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11742. font-weight:400;
  11743. font-style:normal;
  11744. font-size:14px;
  11745. color:#AAAAAA;
  11746. text-align:center;
  11747. line-height:30px;
  11748. }
  11749. #u28945 {
  11750. border-width:0px;
  11751. position:absolute;
  11752. left:2143px;
  11753. top:55px;
  11754. width:1000px;
  11755. height:200px;
  11756. display:flex;
  11757. transition:none;
  11758. transform-origin:50% 50%;
  11759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11760. font-weight:400;
  11761. font-style:normal;
  11762. font-size:14px;
  11763. color:#AAAAAA;
  11764. text-align:center;
  11765. line-height:30px;
  11766. }
  11767. #u28945 .text {
  11768. position:absolute;
  11769. align-self:center;
  11770. padding:5px 10px 5px 10px;
  11771. box-sizing:border-box;
  11772. width:100%;
  11773. }
  11774. #u28945_text {
  11775. border-width:0px;
  11776. word-wrap:break-word;
  11777. text-transform:none;
  11778. visibility:hidden;
  11779. }
  11780. #u28946_div {
  11781. border-width:0px;
  11782. position:absolute;
  11783. left:0px;
  11784. top:0px;
  11785. width:83px;
  11786. height:35px;
  11787. background:inherit;
  11788. background-color:rgba(255, 255, 255, 0);
  11789. border-top:0px;
  11790. border-right:0px;
  11791. border-bottom:0px;
  11792. border-radius:0px;
  11793. border-top-left-radius:0px;
  11794. border-bottom-left-radius:0px;
  11795. filter:drop-shadow(none);
  11796. transition:none;
  11797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11798. font-weight:500;
  11799. font-style:normal;
  11800. font-size:18px;
  11801. }
  11802. #u28946 {
  11803. border-width:0px;
  11804. position:absolute;
  11805. left:2163px;
  11806. top:73px;
  11807. width:83px;
  11808. height:35px;
  11809. display:flex;
  11810. transition:none;
  11811. transform-origin:50% 50%;
  11812. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11813. font-weight:500;
  11814. font-style:normal;
  11815. font-size:18px;
  11816. }
  11817. #u28946 .text {
  11818. position:absolute;
  11819. align-self:center;
  11820. padding:5px 10px 5px 0px;
  11821. box-sizing:border-box;
  11822. width:100%;
  11823. }
  11824. #u28946_text {
  11825. border-width:0px;
  11826. white-space:nowrap;
  11827. text-transform:none;
  11828. }
  11829. #u28947_div {
  11830. border-width:0px;
  11831. position:absolute;
  11832. left:0px;
  11833. top:0px;
  11834. width:107px;
  11835. height:43px;
  11836. background:inherit;
  11837. background-color:rgba(255, 255, 255, 0);
  11838. border-top:0px;
  11839. border-right:0px;
  11840. border-bottom:0px;
  11841. border-radius:0px;
  11842. border-top-left-radius:0px;
  11843. border-bottom-left-radius:0px;
  11844. filter:drop-shadow(none);
  11845. transition:none;
  11846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11847. font-weight:500;
  11848. font-style:normal;
  11849. font-size:24px;
  11850. }
  11851. #u28947 {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:2173px;
  11855. top:124px;
  11856. width:107px;
  11857. height:43px;
  11858. display:flex;
  11859. transition:none;
  11860. transform-origin:50% 50%;
  11861. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11862. font-weight:500;
  11863. font-style:normal;
  11864. font-size:24px;
  11865. }
  11866. #u28947 .text {
  11867. position:absolute;
  11868. align-self:center;
  11869. padding:5px 10px 5px 0px;
  11870. box-sizing:border-box;
  11871. width:100%;
  11872. }
  11873. #u28947_text {
  11874. border-width:0px;
  11875. white-space:nowrap;
  11876. text-transform:none;
  11877. }
  11878. #u28948 {
  11879. border-width:0px;
  11880. position:absolute;
  11881. left:2993px;
  11882. top:125px;
  11883. width:108px;
  11884. height:108px;
  11885. display:flex;
  11886. -webkit-transform:rotate(315deg);
  11887. -moz-transform:rotate(315deg);
  11888. -ms-transform:rotate(315deg);
  11889. transform:rotate(315deg);
  11890. transition:none;
  11891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11892. font-weight:400;
  11893. font-style:normal;
  11894. font-size:28px;
  11895. color:#F59A23;
  11896. }
  11897. #u28948 .text {
  11898. position:absolute;
  11899. align-self:center;
  11900. padding:2px 2px 2px 2px;
  11901. box-sizing:border-box;
  11902. width:100%;
  11903. }
  11904. #u28948_img {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:0px;
  11908. top:0px;
  11909. width:108px;
  11910. height:108px;
  11911. }
  11912. #u28948_text {
  11913. border-width:0px;
  11914. word-wrap:break-word;
  11915. text-transform:none;
  11916. }
  11917. #u28949_div {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:325px;
  11923. height:60px;
  11924. background:inherit;
  11925. background-color:rgba(255, 255, 255, 0);
  11926. border-left:0px;
  11927. border-top:0px;
  11928. border-right:0px;
  11929. border-radius:0px;
  11930. border-bottom-right-radius:0px;
  11931. border-bottom-left-radius:0px;
  11932. filter:drop-shadow(none);
  11933. transition:none;
  11934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11935. font-weight:400;
  11936. font-style:normal;
  11937. font-size:14px;
  11938. line-height:30px;
  11939. }
  11940. #u28949 {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:2173px;
  11944. top:179px;
  11945. width:325px;
  11946. height:60px;
  11947. display:flex;
  11948. transition:none;
  11949. transform-origin:50% 50%;
  11950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11951. font-weight:400;
  11952. font-style:normal;
  11953. font-size:14px;
  11954. line-height:30px;
  11955. }
  11956. #u28949 .text {
  11957. position:absolute;
  11958. align-self:flex-start;
  11959. padding:0px 0px 0px 0px;
  11960. box-sizing:border-box;
  11961. width:100%;
  11962. }
  11963. #u28949_text {
  11964. border-width:0px;
  11965. word-wrap:break-word;
  11966. text-transform:none;
  11967. }
  11968. #u28950 {
  11969. border-width:0px;
  11970. position:absolute;
  11971. left:3115px;
  11972. top:77px;
  11973. width:17px;
  11974. height:17px;
  11975. display:flex;
  11976. transition:none;
  11977. }
  11978. #u28950 .text {
  11979. position:absolute;
  11980. align-self:center;
  11981. padding:2px 2px 2px 2px;
  11982. box-sizing:border-box;
  11983. width:100%;
  11984. }
  11985. #u28950_img {
  11986. border-width:0px;
  11987. position:absolute;
  11988. left:0px;
  11989. top:0px;
  11990. width:17px;
  11991. height:17px;
  11992. }
  11993. #u28950_text {
  11994. border-width:0px;
  11995. word-wrap:break-word;
  11996. text-transform:none;
  11997. visibility:hidden;
  11998. }
  11999. #u28951 {
  12000. border-width:0px;
  12001. position:absolute;
  12002. left:0px;
  12003. top:0px;
  12004. width:0px;
  12005. height:0px;
  12006. }
  12007. #u28952_div {
  12008. border-width:0px;
  12009. position:absolute;
  12010. left:0px;
  12011. top:0px;
  12012. width:1000px;
  12013. height:60px;
  12014. background:inherit;
  12015. background-color:rgba(255, 255, 255, 1);
  12016. box-sizing:border-box;
  12017. border-width:1px;
  12018. border-style:solid;
  12019. border-color:rgba(215, 215, 215, 1);
  12020. border-radius:0px;
  12021. filter:drop-shadow(none);
  12022. transition:none;
  12023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12024. font-weight:400;
  12025. font-style:normal;
  12026. font-size:14px;
  12027. color:#AAAAAA;
  12028. text-align:center;
  12029. line-height:30px;
  12030. }
  12031. #u28952 {
  12032. border-width:0px;
  12033. position:absolute;
  12034. left:2142px;
  12035. top:1418px;
  12036. width:1000px;
  12037. height:60px;
  12038. display:flex;
  12039. transition:none;
  12040. transform-origin:50% 50%;
  12041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12042. font-weight:400;
  12043. font-style:normal;
  12044. font-size:14px;
  12045. color:#AAAAAA;
  12046. text-align:center;
  12047. line-height:30px;
  12048. }
  12049. #u28952 .text {
  12050. position:absolute;
  12051. align-self:center;
  12052. padding:5px 10px 5px 10px;
  12053. box-sizing:border-box;
  12054. width:100%;
  12055. }
  12056. #u28952_text {
  12057. border-width:0px;
  12058. word-wrap:break-word;
  12059. text-transform:none;
  12060. visibility:hidden;
  12061. }
  12062. #u28953_div {
  12063. border-width:0px;
  12064. position:absolute;
  12065. left:0px;
  12066. top:0px;
  12067. width:80px;
  12068. height:30px;
  12069. background:inherit;
  12070. background-color:rgba(255, 255, 255, 1);
  12071. box-sizing:border-box;
  12072. border-width:1px;
  12073. border-style:solid;
  12074. border-color:rgba(170, 170, 170, 1);
  12075. border-radius:4px;
  12076. filter:drop-shadow(none);
  12077. transition:none;
  12078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12079. font-weight:400;
  12080. font-style:normal;
  12081. font-size:14px;
  12082. }
  12083. #u28953 {
  12084. border-width:0px;
  12085. position:absolute;
  12086. left:3032px;
  12087. top:1433px;
  12088. width:80px;
  12089. height:30px;
  12090. display:flex;
  12091. transition:none;
  12092. transform-origin:50% 50%;
  12093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12094. font-weight:400;
  12095. font-style:normal;
  12096. font-size:14px;
  12097. }
  12098. #u28953 .text {
  12099. position:absolute;
  12100. align-self:center;
  12101. padding:2px 2px 2px 2px;
  12102. box-sizing:border-box;
  12103. width:100%;
  12104. }
  12105. #u28953_text {
  12106. border-width:0px;
  12107. word-wrap:break-word;
  12108. text-transform:none;
  12109. }
  12110. #u28954 {
  12111. border-width:0px;
  12112. position:absolute;
  12113. left:0px;
  12114. top:0px;
  12115. width:0px;
  12116. height:0px;
  12117. }
  12118. #u28955_div {
  12119. border-width:0px;
  12120. position:absolute;
  12121. left:0px;
  12122. top:0px;
  12123. width:1000px;
  12124. height:562px;
  12125. background:inherit;
  12126. background-color:rgba(255, 255, 255, 1);
  12127. box-sizing:border-box;
  12128. border-width:1px;
  12129. border-style:solid;
  12130. border-color:rgba(242, 242, 242, 1);
  12131. border-radius:0px;
  12132. filter:drop-shadow(none);
  12133. transition:none;
  12134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12135. font-weight:400;
  12136. font-style:normal;
  12137. font-size:14px;
  12138. color:#AAAAAA;
  12139. text-align:center;
  12140. line-height:30px;
  12141. }
  12142. #u28955 {
  12143. border-width:0px;
  12144. position:absolute;
  12145. left:2142px;
  12146. top:856px;
  12147. width:1000px;
  12148. height:562px;
  12149. display:flex;
  12150. transition:none;
  12151. transform-origin:50% 50%;
  12152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12153. font-weight:400;
  12154. font-style:normal;
  12155. font-size:14px;
  12156. color:#AAAAAA;
  12157. text-align:center;
  12158. line-height:30px;
  12159. }
  12160. #u28955 .text {
  12161. position:absolute;
  12162. align-self:center;
  12163. padding:5px 10px 5px 10px;
  12164. box-sizing:border-box;
  12165. width:100%;
  12166. }
  12167. #u28955_text {
  12168. border-width:0px;
  12169. word-wrap:break-word;
  12170. text-transform:none;
  12171. visibility:hidden;
  12172. }
  12173. #u28956_div {
  12174. border-width:0px;
  12175. position:absolute;
  12176. left:0px;
  12177. top:0px;
  12178. width:73px;
  12179. height:40px;
  12180. background:inherit;
  12181. background-color:rgba(255, 255, 255, 0);
  12182. border-left:0px;
  12183. border-top:0px;
  12184. border-right:0px;
  12185. border-radius:0px;
  12186. border-bottom-right-radius:0px;
  12187. border-bottom-left-radius:0px;
  12188. filter:drop-shadow(none);
  12189. transition:none;
  12190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12191. font-weight:400;
  12192. font-style:normal;
  12193. font-size:18px;
  12194. }
  12195. #u28956 {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:2182px;
  12199. top:872px;
  12200. width:73px;
  12201. height:40px;
  12202. display:flex;
  12203. transition:none;
  12204. transform-origin:50% 50%;
  12205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12206. font-weight:400;
  12207. font-style:normal;
  12208. font-size:18px;
  12209. }
  12210. #u28956 .text {
  12211. position:absolute;
  12212. align-self:center;
  12213. padding:0px 0px 0px 0px;
  12214. box-sizing:border-box;
  12215. width:100%;
  12216. }
  12217. #u28956_text {
  12218. border-width:0px;
  12219. white-space:nowrap;
  12220. text-transform:none;
  12221. }
  12222. #u28957 {
  12223. border-width:0px;
  12224. position:absolute;
  12225. left:0px;
  12226. top:0px;
  12227. width:0px;
  12228. height:0px;
  12229. }
  12230. #u28958_div {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:0px;
  12234. top:0px;
  12235. width:175px;
  12236. height:20px;
  12237. background:inherit;
  12238. background-color:rgba(255, 255, 255, 0);
  12239. border-radius:0px;
  12240. filter:drop-shadow(none);
  12241. transition:none;
  12242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12243. font-weight:400;
  12244. font-style:normal;
  12245. }
  12246. #u28958 {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:2218px;
  12250. top:1181px;
  12251. width:175px;
  12252. height:20px;
  12253. display:flex;
  12254. transition:none;
  12255. transform-origin:50% 50%;
  12256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12257. font-weight:400;
  12258. font-style:normal;
  12259. }
  12260. #u28958 .text {
  12261. position:absolute;
  12262. align-self:center;
  12263. padding:0px 0px 0px 0px;
  12264. box-sizing:border-box;
  12265. width:100%;
  12266. }
  12267. #u28958_text {
  12268. border-width:0px;
  12269. white-space:nowrap;
  12270. text-transform:none;
  12271. }
  12272. #u28959 {
  12273. border-width:0px;
  12274. position:absolute;
  12275. left:0px;
  12276. top:0px;
  12277. width:0px;
  12278. height:0px;
  12279. }
  12280. #u28960_div {
  12281. border-width:0px;
  12282. position:absolute;
  12283. left:0px;
  12284. top:0px;
  12285. width:878px;
  12286. height:61px;
  12287. background:inherit;
  12288. background-color:rgba(255, 255, 255, 0);
  12289. border-top:0px;
  12290. border-right:0px;
  12291. border-bottom:0px;
  12292. border-radius:0px;
  12293. border-top-left-radius:0px;
  12294. border-bottom-left-radius:0px;
  12295. filter:drop-shadow(none);
  12296. transition:none;
  12297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12298. font-weight:400;
  12299. font-style:normal;
  12300. font-size:12px;
  12301. }
  12302. #u28960 {
  12303. border-width:0px;
  12304. position:absolute;
  12305. left:2218px;
  12306. top:1201px;
  12307. width:878px;
  12308. height:61px;
  12309. display:flex;
  12310. transition:none;
  12311. transform-origin:50% 50%;
  12312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12313. font-weight:400;
  12314. font-style:normal;
  12315. font-size:12px;
  12316. }
  12317. #u28960 .text {
  12318. position:absolute;
  12319. align-self:center;
  12320. padding:5px 10px 5px 0px;
  12321. box-sizing:border-box;
  12322. width:100%;
  12323. }
  12324. #u28960_text {
  12325. border-width:0px;
  12326. word-wrap:break-word;
  12327. text-transform:none;
  12328. }
  12329. #u28961 {
  12330. border-width:0px;
  12331. position:absolute;
  12332. left:2280px;
  12333. top:1245px;
  12334. width:61px;
  12335. height:41px;
  12336. display:flex;
  12337. transition:none;
  12338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12339. font-weight:400;
  12340. font-style:normal;
  12341. }
  12342. #u28961 .text {
  12343. position:absolute;
  12344. align-self:center;
  12345. padding:0px 0px 0px 0px;
  12346. box-sizing:border-box;
  12347. width:100%;
  12348. }
  12349. #u28961_img {
  12350. border-width:0px;
  12351. position:absolute;
  12352. left:0px;
  12353. top:0px;
  12354. width:61px;
  12355. height:41px;
  12356. }
  12357. #u28961_text {
  12358. border-width:0px;
  12359. word-wrap:break-word;
  12360. text-transform:none;
  12361. visibility:hidden;
  12362. }
  12363. #u28962 {
  12364. border-width:0px;
  12365. position:absolute;
  12366. left:2351px;
  12367. top:1245px;
  12368. width:61px;
  12369. height:41px;
  12370. display:flex;
  12371. transition:none;
  12372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12373. font-weight:400;
  12374. font-style:normal;
  12375. }
  12376. #u28962 .text {
  12377. position:absolute;
  12378. align-self:center;
  12379. padding:0px 0px 0px 0px;
  12380. box-sizing:border-box;
  12381. width:100%;
  12382. }
  12383. #u28962_img {
  12384. border-width:0px;
  12385. position:absolute;
  12386. left:0px;
  12387. top:0px;
  12388. width:61px;
  12389. height:41px;
  12390. }
  12391. #u28962_text {
  12392. border-width:0px;
  12393. word-wrap:break-word;
  12394. text-transform:none;
  12395. visibility:hidden;
  12396. }
  12397. #u28963 {
  12398. border-width:0px;
  12399. position:absolute;
  12400. left:2422px;
  12401. top:1245px;
  12402. width:61px;
  12403. height:41px;
  12404. display:flex;
  12405. transition:none;
  12406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12407. font-weight:400;
  12408. font-style:normal;
  12409. }
  12410. #u28963 .text {
  12411. position:absolute;
  12412. align-self:center;
  12413. padding:0px 0px 0px 0px;
  12414. box-sizing:border-box;
  12415. width:100%;
  12416. }
  12417. #u28963_img {
  12418. border-width:0px;
  12419. position:absolute;
  12420. left:0px;
  12421. top:0px;
  12422. width:61px;
  12423. height:41px;
  12424. }
  12425. #u28963_text {
  12426. border-width:0px;
  12427. word-wrap:break-word;
  12428. text-transform:none;
  12429. visibility:hidden;
  12430. }
  12431. #u28964 {
  12432. border-width:0px;
  12433. position:absolute;
  12434. left:2493px;
  12435. top:1245px;
  12436. width:61px;
  12437. height:41px;
  12438. display:flex;
  12439. transition:none;
  12440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12441. font-weight:400;
  12442. font-style:normal;
  12443. }
  12444. #u28964 .text {
  12445. position:absolute;
  12446. align-self:center;
  12447. padding:0px 0px 0px 0px;
  12448. box-sizing:border-box;
  12449. width:100%;
  12450. }
  12451. #u28964_img {
  12452. border-width:0px;
  12453. position:absolute;
  12454. left:0px;
  12455. top:0px;
  12456. width:61px;
  12457. height:41px;
  12458. }
  12459. #u28964_text {
  12460. border-width:0px;
  12461. word-wrap:break-word;
  12462. text-transform:none;
  12463. visibility:hidden;
  12464. }
  12465. #u28965 {
  12466. border-width:0px;
  12467. position:absolute;
  12468. left:2564px;
  12469. top:1245px;
  12470. width:61px;
  12471. height:41px;
  12472. display:flex;
  12473. transition:none;
  12474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12475. font-weight:400;
  12476. font-style:normal;
  12477. }
  12478. #u28965 .text {
  12479. position:absolute;
  12480. align-self:center;
  12481. padding:0px 0px 0px 0px;
  12482. box-sizing:border-box;
  12483. width:100%;
  12484. }
  12485. #u28965_img {
  12486. border-width:0px;
  12487. position:absolute;
  12488. left:0px;
  12489. top:0px;
  12490. width:61px;
  12491. height:41px;
  12492. }
  12493. #u28965_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. visibility:hidden;
  12498. }
  12499. #u28966 {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:2635px;
  12503. top:1245px;
  12504. width:61px;
  12505. height:41px;
  12506. display:flex;
  12507. transition:none;
  12508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12509. font-weight:400;
  12510. font-style:normal;
  12511. }
  12512. #u28966 .text {
  12513. position:absolute;
  12514. align-self:center;
  12515. padding:0px 0px 0px 0px;
  12516. box-sizing:border-box;
  12517. width:100%;
  12518. }
  12519. #u28966_img {
  12520. border-width:0px;
  12521. position:absolute;
  12522. left:0px;
  12523. top:0px;
  12524. width:61px;
  12525. height:41px;
  12526. }
  12527. #u28966_text {
  12528. border-width:0px;
  12529. word-wrap:break-word;
  12530. text-transform:none;
  12531. visibility:hidden;
  12532. }
  12533. #u28967 {
  12534. border-width:0px;
  12535. position:absolute;
  12536. left:2191px;
  12537. top:1181px;
  12538. width:22px;
  12539. height:22px;
  12540. display:flex;
  12541. transition:none;
  12542. font-family:"Microsoft YaHei", sans-serif;
  12543. font-weight:400;
  12544. font-style:normal;
  12545. font-size:12px;
  12546. color:#FFFFFF;
  12547. }
  12548. #u28967 .text {
  12549. position:absolute;
  12550. align-self:center;
  12551. padding:4px 4px 4px 4px;
  12552. box-sizing:border-box;
  12553. width:100%;
  12554. }
  12555. #u28967_img {
  12556. border-width:0px;
  12557. position:absolute;
  12558. left:0px;
  12559. top:0px;
  12560. width:22px;
  12561. height:22px;
  12562. }
  12563. #u28967_text {
  12564. border-width:0px;
  12565. word-wrap:break-word;
  12566. text-transform:none;
  12567. visibility:hidden;
  12568. }
  12569. #u28968 {
  12570. border-width:0px;
  12571. position:absolute;
  12572. left:2149px;
  12573. top:1256px;
  12574. width:108px;
  12575. height:1px;
  12576. display:flex;
  12577. -webkit-transform:rotate(90deg);
  12578. -moz-transform:rotate(90deg);
  12579. -ms-transform:rotate(90deg);
  12580. transform:rotate(90deg);
  12581. transition:none;
  12582. }
  12583. #u28968 .text {
  12584. position:absolute;
  12585. align-self:center;
  12586. padding:2px 2px 2px 2px;
  12587. box-sizing:border-box;
  12588. width:100%;
  12589. }
  12590. #u28968_img {
  12591. border-width:0px;
  12592. position:absolute;
  12593. left:0px;
  12594. top:0px;
  12595. width:109px;
  12596. height:2px;
  12597. }
  12598. #u28968_text {
  12599. border-width:0px;
  12600. word-wrap:break-word;
  12601. text-transform:none;
  12602. visibility:hidden;
  12603. }
  12604. #u28969 {
  12605. border-width:0px;
  12606. position:absolute;
  12607. left:2191px;
  12608. top:1310px;
  12609. width:22px;
  12610. height:22px;
  12611. display:flex;
  12612. transition:none;
  12613. font-family:"Microsoft YaHei", sans-serif;
  12614. font-weight:400;
  12615. font-style:normal;
  12616. font-size:12px;
  12617. color:#FFFFFF;
  12618. }
  12619. #u28969 .text {
  12620. position:absolute;
  12621. align-self:center;
  12622. padding:4px 4px 4px 4px;
  12623. box-sizing:border-box;
  12624. width:100%;
  12625. }
  12626. #u28969_img {
  12627. border-width:0px;
  12628. position:absolute;
  12629. left:0px;
  12630. top:0px;
  12631. width:22px;
  12632. height:22px;
  12633. }
  12634. #u28969_text {
  12635. border-width:0px;
  12636. word-wrap:break-word;
  12637. text-transform:none;
  12638. visibility:hidden;
  12639. }
  12640. #u28970_div {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:0px;
  12644. top:0px;
  12645. width:43px;
  12646. height:20px;
  12647. background:inherit;
  12648. background-color:rgba(255, 255, 255, 0);
  12649. border-radius:0px;
  12650. filter:drop-shadow(none);
  12651. transition:none;
  12652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:14px;
  12656. color:#AAAAAA;
  12657. }
  12658. #u28970 {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:2218px;
  12662. top:1310px;
  12663. width:43px;
  12664. height:20px;
  12665. display:flex;
  12666. transition:none;
  12667. transform-origin:50% 50%;
  12668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12669. font-weight:400;
  12670. font-style:normal;
  12671. font-size:14px;
  12672. color:#AAAAAA;
  12673. }
  12674. #u28970 .text {
  12675. position:absolute;
  12676. align-self:center;
  12677. padding:0px 0px 0px 0px;
  12678. box-sizing:border-box;
  12679. width:100%;
  12680. }
  12681. #u28970_text {
  12682. border-width:0px;
  12683. white-space:nowrap;
  12684. text-transform:none;
  12685. }
  12686. #u28971 {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:0px;
  12690. top:0px;
  12691. width:0px;
  12692. height:0px;
  12693. }
  12694. #u28972_div {
  12695. border-width:0px;
  12696. position:absolute;
  12697. left:0px;
  12698. top:0px;
  12699. width:175px;
  12700. height:20px;
  12701. background:inherit;
  12702. background-color:rgba(255, 255, 255, 0);
  12703. border-radius:0px;
  12704. filter:drop-shadow(none);
  12705. transition:none;
  12706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12707. font-weight:400;
  12708. font-style:normal;
  12709. }
  12710. #u28972 {
  12711. border-width:0px;
  12712. position:absolute;
  12713. left:2218px;
  12714. top:938px;
  12715. width:175px;
  12716. height:20px;
  12717. display:flex;
  12718. transition:none;
  12719. transform-origin:50% 50%;
  12720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12721. font-weight:400;
  12722. font-style:normal;
  12723. }
  12724. #u28972 .text {
  12725. position:absolute;
  12726. align-self:center;
  12727. padding:0px 0px 0px 0px;
  12728. box-sizing:border-box;
  12729. width:100%;
  12730. }
  12731. #u28972_text {
  12732. border-width:0px;
  12733. white-space:nowrap;
  12734. text-transform:none;
  12735. }
  12736. #u28973 {
  12737. border-width:0px;
  12738. position:absolute;
  12739. left:0px;
  12740. top:0px;
  12741. width:0px;
  12742. height:0px;
  12743. }
  12744. #u28974_div {
  12745. border-width:0px;
  12746. position:absolute;
  12747. left:0px;
  12748. top:0px;
  12749. width:878px;
  12750. height:44px;
  12751. background:inherit;
  12752. background-color:rgba(255, 255, 255, 0);
  12753. border-top:0px;
  12754. border-right:0px;
  12755. border-bottom:0px;
  12756. border-radius:0px;
  12757. border-top-left-radius:0px;
  12758. border-bottom-left-radius:0px;
  12759. filter:drop-shadow(none);
  12760. transition:none;
  12761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12762. font-weight:400;
  12763. font-style:normal;
  12764. font-size:12px;
  12765. }
  12766. #u28974 {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:2218px;
  12770. top:963px;
  12771. width:878px;
  12772. height:44px;
  12773. display:flex;
  12774. transition:none;
  12775. transform-origin:50% 50%;
  12776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12777. font-weight:400;
  12778. font-style:normal;
  12779. font-size:12px;
  12780. }
  12781. #u28974 .text {
  12782. position:absolute;
  12783. align-self:center;
  12784. padding:5px 10px 5px 0px;
  12785. box-sizing:border-box;
  12786. width:100%;
  12787. }
  12788. #u28974_text {
  12789. border-width:0px;
  12790. word-wrap:break-word;
  12791. text-transform:none;
  12792. }
  12793. #u28975 {
  12794. border-width:0px;
  12795. position:absolute;
  12796. left:2191px;
  12797. top:938px;
  12798. width:22px;
  12799. height:22px;
  12800. display:flex;
  12801. transition:none;
  12802. font-family:"Microsoft YaHei", sans-serif;
  12803. font-weight:400;
  12804. font-style:normal;
  12805. font-size:12px;
  12806. color:#FFFFFF;
  12807. }
  12808. #u28975 .text {
  12809. position:absolute;
  12810. align-self:center;
  12811. padding:4px 4px 4px 4px;
  12812. box-sizing:border-box;
  12813. width:100%;
  12814. }
  12815. #u28975_img {
  12816. border-width:0px;
  12817. position:absolute;
  12818. left:0px;
  12819. top:0px;
  12820. width:22px;
  12821. height:22px;
  12822. }
  12823. #u28975_text {
  12824. border-width:0px;
  12825. word-wrap:break-word;
  12826. text-transform:none;
  12827. visibility:hidden;
  12828. }
  12829. #u28976 {
  12830. border-width:0px;
  12831. position:absolute;
  12832. left:2173px;
  12833. top:988px;
  12834. width:60px;
  12835. height:1px;
  12836. display:flex;
  12837. -webkit-transform:rotate(90deg);
  12838. -moz-transform:rotate(90deg);
  12839. -ms-transform:rotate(90deg);
  12840. transform:rotate(90deg);
  12841. transition:none;
  12842. }
  12843. #u28976 .text {
  12844. position:absolute;
  12845. align-self:center;
  12846. padding:2px 2px 2px 2px;
  12847. box-sizing:border-box;
  12848. width:100%;
  12849. }
  12850. #u28976_img {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:0px;
  12854. top:0px;
  12855. width:61px;
  12856. height:2px;
  12857. }
  12858. #u28976_text {
  12859. border-width:0px;
  12860. word-wrap:break-word;
  12861. text-transform:none;
  12862. visibility:hidden;
  12863. }
  12864. #u28977 {
  12865. border-width:0px;
  12866. position:absolute;
  12867. left:0px;
  12868. top:0px;
  12869. width:0px;
  12870. height:0px;
  12871. }
  12872. #u28978_div {
  12873. border-width:0px;
  12874. position:absolute;
  12875. left:0px;
  12876. top:0px;
  12877. width:175px;
  12878. height:20px;
  12879. background:inherit;
  12880. background-color:rgba(255, 255, 255, 0);
  12881. border-radius:0px;
  12882. filter:drop-shadow(none);
  12883. transition:none;
  12884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12885. font-weight:400;
  12886. font-style:normal;
  12887. }
  12888. #u28978 {
  12889. border-width:0px;
  12890. position:absolute;
  12891. left:2218px;
  12892. top:1025px;
  12893. width:175px;
  12894. height:20px;
  12895. display:flex;
  12896. transition:none;
  12897. transform-origin:50% 50%;
  12898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12899. font-weight:400;
  12900. font-style:normal;
  12901. }
  12902. #u28978 .text {
  12903. position:absolute;
  12904. align-self:center;
  12905. padding:0px 0px 0px 0px;
  12906. box-sizing:border-box;
  12907. width:100%;
  12908. }
  12909. #u28978_text {
  12910. border-width:0px;
  12911. white-space:nowrap;
  12912. text-transform:none;
  12913. }
  12914. #u28979 {
  12915. border-width:0px;
  12916. position:absolute;
  12917. left:0px;
  12918. top:0px;
  12919. width:0px;
  12920. height:0px;
  12921. }
  12922. #u28980_div {
  12923. border-width:0px;
  12924. position:absolute;
  12925. left:0px;
  12926. top:0px;
  12927. width:878px;
  12928. height:44px;
  12929. background:inherit;
  12930. background-color:rgba(255, 255, 255, 0);
  12931. border-top:0px;
  12932. border-right:0px;
  12933. border-bottom:0px;
  12934. border-radius:0px;
  12935. border-top-left-radius:0px;
  12936. border-bottom-left-radius:0px;
  12937. filter:drop-shadow(none);
  12938. transition:none;
  12939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12940. font-weight:400;
  12941. font-style:normal;
  12942. font-size:12px;
  12943. }
  12944. #u28980 {
  12945. border-width:0px;
  12946. position:absolute;
  12947. left:2218px;
  12948. top:1050px;
  12949. width:878px;
  12950. height:44px;
  12951. display:flex;
  12952. transition:none;
  12953. transform-origin:50% 50%;
  12954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12955. font-weight:400;
  12956. font-style:normal;
  12957. font-size:12px;
  12958. }
  12959. #u28980 .text {
  12960. position:absolute;
  12961. align-self:center;
  12962. padding:5px 10px 5px 0px;
  12963. box-sizing:border-box;
  12964. width:100%;
  12965. }
  12966. #u28980_text {
  12967. border-width:0px;
  12968. word-wrap:break-word;
  12969. text-transform:none;
  12970. }
  12971. #u28981 {
  12972. border-width:0px;
  12973. position:absolute;
  12974. left:2191px;
  12975. top:1025px;
  12976. width:22px;
  12977. height:22px;
  12978. display:flex;
  12979. transition:none;
  12980. font-family:"Microsoft YaHei", sans-serif;
  12981. font-weight:400;
  12982. font-style:normal;
  12983. font-size:12px;
  12984. color:#FFFFFF;
  12985. }
  12986. #u28981 .text {
  12987. position:absolute;
  12988. align-self:center;
  12989. padding:4px 4px 4px 4px;
  12990. box-sizing:border-box;
  12991. width:100%;
  12992. }
  12993. #u28981_img {
  12994. border-width:0px;
  12995. position:absolute;
  12996. left:0px;
  12997. top:0px;
  12998. width:22px;
  12999. height:22px;
  13000. }
  13001. #u28981_text {
  13002. border-width:0px;
  13003. word-wrap:break-word;
  13004. text-transform:none;
  13005. visibility:hidden;
  13006. }
  13007. #u28982 {
  13008. border-width:0px;
  13009. position:absolute;
  13010. left:2175px;
  13011. top:1073px;
  13012. width:56px;
  13013. height:1px;
  13014. display:flex;
  13015. -webkit-transform:rotate(90deg);
  13016. -moz-transform:rotate(90deg);
  13017. -ms-transform:rotate(90deg);
  13018. transform:rotate(90deg);
  13019. transition:none;
  13020. }
  13021. #u28982 .text {
  13022. position:absolute;
  13023. align-self:center;
  13024. padding:2px 2px 2px 2px;
  13025. box-sizing:border-box;
  13026. width:100%;
  13027. }
  13028. #u28982_img {
  13029. border-width:0px;
  13030. position:absolute;
  13031. left:0px;
  13032. top:0px;
  13033. width:57px;
  13034. height:2px;
  13035. }
  13036. #u28982_text {
  13037. border-width:0px;
  13038. word-wrap:break-word;
  13039. text-transform:none;
  13040. visibility:hidden;
  13041. }
  13042. #u28983 {
  13043. border-width:0px;
  13044. position:absolute;
  13045. left:0px;
  13046. top:0px;
  13047. width:0px;
  13048. height:0px;
  13049. }
  13050. #u28984_div {
  13051. border-width:0px;
  13052. position:absolute;
  13053. left:0px;
  13054. top:0px;
  13055. width:175px;
  13056. height:20px;
  13057. background:inherit;
  13058. background-color:rgba(255, 255, 255, 0);
  13059. border-radius:0px;
  13060. filter:drop-shadow(none);
  13061. transition:none;
  13062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13063. font-weight:400;
  13064. font-style:normal;
  13065. }
  13066. #u28984 {
  13067. border-width:0px;
  13068. position:absolute;
  13069. left:2218px;
  13070. top:1112px;
  13071. width:175px;
  13072. height:20px;
  13073. display:flex;
  13074. transition:none;
  13075. transform-origin:50% 50%;
  13076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13077. font-weight:400;
  13078. font-style:normal;
  13079. }
  13080. #u28984 .text {
  13081. position:absolute;
  13082. align-self:center;
  13083. padding:0px 0px 0px 0px;
  13084. box-sizing:border-box;
  13085. width:100%;
  13086. }
  13087. #u28984_text {
  13088. border-width:0px;
  13089. white-space:nowrap;
  13090. text-transform:none;
  13091. }
  13092. #u28985 {
  13093. border-width:0px;
  13094. position:absolute;
  13095. left:0px;
  13096. top:0px;
  13097. width:0px;
  13098. height:0px;
  13099. }
  13100. #u28986_div {
  13101. border-width:0px;
  13102. position:absolute;
  13103. left:0px;
  13104. top:0px;
  13105. width:878px;
  13106. height:27px;
  13107. background:inherit;
  13108. background-color:rgba(255, 255, 255, 0);
  13109. border-top:0px;
  13110. border-right:0px;
  13111. border-bottom:0px;
  13112. border-radius:0px;
  13113. border-top-left-radius:0px;
  13114. border-bottom-left-radius:0px;
  13115. filter:drop-shadow(none);
  13116. transition:none;
  13117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13118. font-weight:400;
  13119. font-style:normal;
  13120. font-size:12px;
  13121. }
  13122. #u28986 {
  13123. border-width:0px;
  13124. position:absolute;
  13125. left:2218px;
  13126. top:1137px;
  13127. width:878px;
  13128. height:27px;
  13129. display:flex;
  13130. transition:none;
  13131. transform-origin:50% 50%;
  13132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13133. font-weight:400;
  13134. font-style:normal;
  13135. font-size:12px;
  13136. }
  13137. #u28986 .text {
  13138. position:absolute;
  13139. align-self:center;
  13140. padding:5px 10px 5px 0px;
  13141. box-sizing:border-box;
  13142. width:100%;
  13143. }
  13144. #u28986_text {
  13145. border-width:0px;
  13146. word-wrap:break-word;
  13147. text-transform:none;
  13148. }
  13149. #u28987 {
  13150. border-width:0px;
  13151. position:absolute;
  13152. left:2191px;
  13153. top:1112px;
  13154. width:22px;
  13155. height:22px;
  13156. display:flex;
  13157. transition:none;
  13158. font-family:"Microsoft YaHei", sans-serif;
  13159. font-weight:400;
  13160. font-style:normal;
  13161. font-size:12px;
  13162. color:#FFFFFF;
  13163. }
  13164. #u28987 .text {
  13165. position:absolute;
  13166. align-self:center;
  13167. padding:4px 4px 4px 4px;
  13168. box-sizing:border-box;
  13169. width:100%;
  13170. }
  13171. #u28987_img {
  13172. border-width:0px;
  13173. position:absolute;
  13174. left:0px;
  13175. top:0px;
  13176. width:22px;
  13177. height:22px;
  13178. }
  13179. #u28987_text {
  13180. border-width:0px;
  13181. word-wrap:break-word;
  13182. text-transform:none;
  13183. visibility:hidden;
  13184. }
  13185. #u28988 {
  13186. border-width:0px;
  13187. position:absolute;
  13188. left:2184px;
  13189. top:1151px;
  13190. width:38px;
  13191. height:1px;
  13192. display:flex;
  13193. -webkit-transform:rotate(90deg);
  13194. -moz-transform:rotate(90deg);
  13195. -ms-transform:rotate(90deg);
  13196. transform:rotate(90deg);
  13197. transition:none;
  13198. }
  13199. #u28988 .text {
  13200. position:absolute;
  13201. align-self:center;
  13202. padding:2px 2px 2px 2px;
  13203. box-sizing:border-box;
  13204. width:100%;
  13205. }
  13206. #u28988_img {
  13207. border-width:0px;
  13208. position:absolute;
  13209. left:0px;
  13210. top:0px;
  13211. width:39px;
  13212. height:2px;
  13213. }
  13214. #u28988_text {
  13215. border-width:0px;
  13216. word-wrap:break-word;
  13217. text-transform:none;
  13218. visibility:hidden;
  13219. }
  13220. #u28989 {
  13221. border-width:0px;
  13222. position:absolute;
  13223. left:0px;
  13224. top:0px;
  13225. width:0px;
  13226. height:0px;
  13227. }
  13228. #u28990 {
  13229. border-width:0px;
  13230. position:absolute;
  13231. left:2256px;
  13232. top:739px;
  13233. width:120px;
  13234. height:80px;
  13235. display:flex;
  13236. transition:none;
  13237. }
  13238. #u28990 .text {
  13239. position:absolute;
  13240. align-self:center;
  13241. padding:2px 2px 2px 2px;
  13242. box-sizing:border-box;
  13243. width:100%;
  13244. }
  13245. #u28990_img {
  13246. border-width:0px;
  13247. position:absolute;
  13248. left:0px;
  13249. top:0px;
  13250. width:120px;
  13251. height:80px;
  13252. }
  13253. #u28990_text {
  13254. border-width:0px;
  13255. word-wrap:break-word;
  13256. text-transform:none;
  13257. }
  13258. #u28991 {
  13259. border-width:0px;
  13260. position:absolute;
  13261. left:2398px;
  13262. top:739px;
  13263. width:120px;
  13264. height:80px;
  13265. display:flex;
  13266. transition:none;
  13267. }
  13268. #u28991 .text {
  13269. position:absolute;
  13270. align-self:center;
  13271. padding:2px 2px 2px 2px;
  13272. box-sizing:border-box;
  13273. width:100%;
  13274. }
  13275. #u28991_img {
  13276. border-width:0px;
  13277. position:absolute;
  13278. left:0px;
  13279. top:0px;
  13280. width:120px;
  13281. height:80px;
  13282. }
  13283. #u28991_text {
  13284. border-width:0px;
  13285. word-wrap:break-word;
  13286. text-transform:none;
  13287. }
  13288. #u28992_div {
  13289. border-width:0px;
  13290. position:absolute;
  13291. left:0px;
  13292. top:0px;
  13293. width:320px;
  13294. height:90px;
  13295. background:inherit;
  13296. background-color:rgba(255, 255, 255, 0);
  13297. border-left:0px;
  13298. border-top:0px;
  13299. border-right:0px;
  13300. border-radius:0px;
  13301. border-bottom-right-radius:0px;
  13302. border-bottom-left-radius:0px;
  13303. filter:drop-shadow(none);
  13304. transition:none;
  13305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13306. font-weight:400;
  13307. font-style:normal;
  13308. font-size:14px;
  13309. line-height:30px;
  13310. }
  13311. #u28992 {
  13312. border-width:0px;
  13313. position:absolute;
  13314. left:2182px;
  13315. top:564px;
  13316. width:320px;
  13317. height:90px;
  13318. display:flex;
  13319. transition:none;
  13320. transform-origin:50% 50%;
  13321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13322. font-weight:400;
  13323. font-style:normal;
  13324. font-size:14px;
  13325. line-height:30px;
  13326. }
  13327. #u28992 .text {
  13328. position:absolute;
  13329. align-self:flex-start;
  13330. padding:0px 0px 0px 0px;
  13331. box-sizing:border-box;
  13332. width:100%;
  13333. }
  13334. #u28992_text {
  13335. border-width:0px;
  13336. word-wrap:break-word;
  13337. text-transform:none;
  13338. }
  13339. #u28993_div {
  13340. border-width:0px;
  13341. position:absolute;
  13342. left:0px;
  13343. top:0px;
  13344. width:320px;
  13345. height:60px;
  13346. background:inherit;
  13347. background-color:rgba(255, 255, 255, 0);
  13348. border-left:0px;
  13349. border-top:0px;
  13350. border-right:0px;
  13351. border-radius:0px;
  13352. border-bottom-right-radius:0px;
  13353. border-bottom-left-radius:0px;
  13354. filter:drop-shadow(none);
  13355. transition:none;
  13356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13357. font-weight:400;
  13358. font-style:normal;
  13359. font-size:14px;
  13360. line-height:30px;
  13361. }
  13362. #u28993 {
  13363. border-width:0px;
  13364. position:absolute;
  13365. left:2502px;
  13366. top:564px;
  13367. width:320px;
  13368. height:60px;
  13369. display:flex;
  13370. transition:none;
  13371. transform-origin:50% 50%;
  13372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13373. font-weight:400;
  13374. font-style:normal;
  13375. font-size:14px;
  13376. line-height:30px;
  13377. }
  13378. #u28993 .text {
  13379. position:absolute;
  13380. align-self:flex-start;
  13381. padding:0px 0px 0px 0px;
  13382. box-sizing:border-box;
  13383. width:100%;
  13384. }
  13385. #u28993_text {
  13386. border-width:0px;
  13387. word-wrap:break-word;
  13388. text-transform:none;
  13389. }
  13390. #u28994_div {
  13391. border-width:0px;
  13392. position:absolute;
  13393. left:0px;
  13394. top:0px;
  13395. width:320px;
  13396. height:60px;
  13397. background:inherit;
  13398. background-color:rgba(255, 255, 255, 0);
  13399. border-left:0px;
  13400. border-top:0px;
  13401. border-right:0px;
  13402. border-radius:0px;
  13403. border-bottom-right-radius:0px;
  13404. border-bottom-left-radius:0px;
  13405. filter:drop-shadow(none);
  13406. transition:none;
  13407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13408. font-weight:400;
  13409. font-style:normal;
  13410. font-size:14px;
  13411. line-height:30px;
  13412. }
  13413. #u28994 {
  13414. border-width:0px;
  13415. position:absolute;
  13416. left:2822px;
  13417. top:564px;
  13418. width:320px;
  13419. height:60px;
  13420. display:flex;
  13421. transition:none;
  13422. transform-origin:50% 50%;
  13423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13424. font-weight:400;
  13425. font-style:normal;
  13426. font-size:14px;
  13427. line-height:30px;
  13428. }
  13429. #u28994 .text {
  13430. position:absolute;
  13431. align-self:flex-start;
  13432. padding:0px 0px 0px 0px;
  13433. box-sizing:border-box;
  13434. width:100%;
  13435. }
  13436. #u28994_text {
  13437. border-width:0px;
  13438. word-wrap:break-word;
  13439. text-transform:none;
  13440. }
  13441. #u28995_div {
  13442. border-width:0px;
  13443. position:absolute;
  13444. left:0px;
  13445. top:0px;
  13446. width:83px;
  13447. height:35px;
  13448. background:inherit;
  13449. background-color:rgba(255, 255, 255, 0);
  13450. border-top:0px;
  13451. border-right:0px;
  13452. border-bottom:0px;
  13453. border-radius:0px;
  13454. border-top-left-radius:0px;
  13455. border-bottom-left-radius:0px;
  13456. filter:drop-shadow(none);
  13457. transition:none;
  13458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13459. font-weight:500;
  13460. font-style:normal;
  13461. font-size:18px;
  13462. }
  13463. #u28995 {
  13464. border-width:0px;
  13465. position:absolute;
  13466. left:2182px;
  13467. top:520px;
  13468. width:83px;
  13469. height:35px;
  13470. display:flex;
  13471. transition:none;
  13472. transform-origin:50% 50%;
  13473. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13474. font-weight:500;
  13475. font-style:normal;
  13476. font-size:18px;
  13477. }
  13478. #u28995 .text {
  13479. position:absolute;
  13480. align-self:center;
  13481. padding:5px 10px 5px 0px;
  13482. box-sizing:border-box;
  13483. width:100%;
  13484. }
  13485. #u28995_text {
  13486. border-width:0px;
  13487. white-space:nowrap;
  13488. text-transform:none;
  13489. }
  13490. #u28996_div {
  13491. border-width:0px;
  13492. position:absolute;
  13493. left:0px;
  13494. top:0px;
  13495. width:323px;
  13496. height:90px;
  13497. background:inherit;
  13498. background-color:rgba(255, 255, 255, 0);
  13499. border-left:0px;
  13500. border-top:0px;
  13501. border-right:0px;
  13502. border-radius:0px;
  13503. border-bottom-right-radius:0px;
  13504. border-bottom-left-radius:0px;
  13505. filter:drop-shadow(none);
  13506. transition:none;
  13507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13508. font-weight:400;
  13509. font-style:normal;
  13510. font-size:14px;
  13511. line-height:30px;
  13512. }
  13513. #u28996 {
  13514. border-width:0px;
  13515. position:absolute;
  13516. left:2182px;
  13517. top:674px;
  13518. width:323px;
  13519. height:90px;
  13520. display:flex;
  13521. transition:none;
  13522. transform-origin:50% 50%;
  13523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13524. font-weight:400;
  13525. font-style:normal;
  13526. font-size:14px;
  13527. line-height:30px;
  13528. }
  13529. #u28996 .text {
  13530. position:absolute;
  13531. align-self:flex-start;
  13532. padding:0px 0px 0px 0px;
  13533. box-sizing:border-box;
  13534. width:100%;
  13535. }
  13536. #u28996_text {
  13537. border-width:0px;
  13538. white-space:nowrap;
  13539. text-transform:none;
  13540. }
  13541. #u28997_div {
  13542. border-width:0px;
  13543. position:absolute;
  13544. left:0px;
  13545. top:0px;
  13546. width:320px;
  13547. height:30px;
  13548. background:inherit;
  13549. background-color:rgba(255, 255, 255, 0);
  13550. border-left:0px;
  13551. border-top:0px;
  13552. border-right:0px;
  13553. border-radius:0px;
  13554. border-bottom-right-radius:0px;
  13555. border-bottom-left-radius:0px;
  13556. filter:drop-shadow(none);
  13557. transition:none;
  13558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13559. font-weight:400;
  13560. font-style:normal;
  13561. font-size:14px;
  13562. line-height:30px;
  13563. }
  13564. #u28997 {
  13565. border-width:0px;
  13566. position:absolute;
  13567. left:2502px;
  13568. top:674px;
  13569. width:320px;
  13570. height:30px;
  13571. display:flex;
  13572. transition:none;
  13573. transform-origin:50% 50%;
  13574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13575. font-weight:400;
  13576. font-style:normal;
  13577. font-size:14px;
  13578. line-height:30px;
  13579. }
  13580. #u28997 .text {
  13581. position:absolute;
  13582. align-self:flex-start;
  13583. padding:0px 0px 0px 0px;
  13584. box-sizing:border-box;
  13585. width:100%;
  13586. }
  13587. #u28997_text {
  13588. border-width:0px;
  13589. word-wrap:break-word;
  13590. text-transform:none;
  13591. }
  13592. #u28998_div {
  13593. border-width:0px;
  13594. position:absolute;
  13595. left:0px;
  13596. top:0px;
  13597. width:320px;
  13598. height:30px;
  13599. background:inherit;
  13600. background-color:rgba(255, 255, 255, 0);
  13601. border-left:0px;
  13602. border-top:0px;
  13603. border-right:0px;
  13604. border-radius:0px;
  13605. border-bottom-right-radius:0px;
  13606. border-bottom-left-radius:0px;
  13607. filter:drop-shadow(none);
  13608. transition:none;
  13609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13610. font-weight:400;
  13611. font-style:normal;
  13612. font-size:14px;
  13613. line-height:30px;
  13614. }
  13615. #u28998 {
  13616. border-width:0px;
  13617. position:absolute;
  13618. left:2822px;
  13619. top:674px;
  13620. width:320px;
  13621. height:30px;
  13622. display:flex;
  13623. transition:none;
  13624. transform-origin:50% 50%;
  13625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13626. font-weight:400;
  13627. font-style:normal;
  13628. font-size:14px;
  13629. line-height:30px;
  13630. }
  13631. #u28998 .text {
  13632. position:absolute;
  13633. align-self:flex-start;
  13634. padding:0px 0px 0px 0px;
  13635. box-sizing:border-box;
  13636. width:100%;
  13637. }
  13638. #u28998_text {
  13639. border-width:0px;
  13640. word-wrap:break-word;
  13641. text-transform:none;
  13642. }