styles.css 119 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-91px;
  6. width:4128px;
  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. #u128989 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u128990_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  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(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u128990 {
  53. border-width:0px;
  54. position:absolute;
  55. left:91px;
  56. top:49px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u128990 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u128990_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u128991_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:200px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow: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. #u128991 {
  107. border-width:0px;
  108. position:absolute;
  109. left:91px;
  110. top:49px;
  111. width:1000px;
  112. height:200px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u128991 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u128991_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u128992_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u128992 {
  160. border-width:0px;
  161. position:absolute;
  162. left:111px;
  163. top:67px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u128992 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u128992_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u128993 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u128994_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u128994 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1051px;
  221. top:49px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u128994 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u128994_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u128995_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u128995 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1039px;
  255. top:65px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u128995 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u128995_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u128996_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:275px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u128996 {
  299. border-width:0px;
  300. position:absolute;
  301. left:121px;
  302. top:118px;
  303. width:275px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u128996 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u128996_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u128997_div {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:325px;
  329. height:60px;
  330. background:inherit;
  331. background-color:rgba(255, 255, 255, 0);
  332. border:none;
  333. border-left:0px;
  334. border-top:0px;
  335. border-right:0px;
  336. border-radius:0px;
  337. border-bottom-right-radius:0px;
  338. border-bottom-left-radius:0px;
  339. -moz-box-shadow:none;
  340. -webkit-box-shadow:none;
  341. box-shadow:none;
  342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  343. font-weight:400;
  344. font-style:normal;
  345. font-size:14px;
  346. line-height:30px;
  347. }
  348. #u128997 {
  349. border-width:0px;
  350. position:absolute;
  351. left:121px;
  352. top:171px;
  353. width:325px;
  354. height:60px;
  355. display:flex;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. line-height:30px;
  361. }
  362. #u128997 .text {
  363. position:absolute;
  364. align-self:flex-start;
  365. padding:0px 0px 0px 0px;
  366. box-sizing:border-box;
  367. width:100%;
  368. }
  369. #u128997_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u128998_div {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:97px;
  380. height:25px;
  381. background:inherit;
  382. background-color:rgba(255, 255, 255, 0);
  383. border:none;
  384. border-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  389. font-weight:400;
  390. font-style:normal;
  391. font-size:12px;
  392. color:#B8741A;
  393. line-height:25px;
  394. }
  395. #u128998 {
  396. border-width:0px;
  397. position:absolute;
  398. left:800px;
  399. top:206px;
  400. width:97px;
  401. height:25px;
  402. display:flex;
  403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  404. font-weight:400;
  405. font-style:normal;
  406. font-size:12px;
  407. color:#B8741A;
  408. line-height:25px;
  409. }
  410. #u128998 .text {
  411. position:absolute;
  412. align-self:flex-start;
  413. padding:0px 0px 0px 0px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u128998_text {
  418. border-width:0px;
  419. white-space:nowrap;
  420. text-transform:none;
  421. }
  422. #u128999_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:1000px;
  428. height:336px;
  429. background:inherit;
  430. background-color:rgba(255, 255, 255, 1);
  431. box-sizing:border-box;
  432. border-width:1px;
  433. border-style:solid;
  434. border-color:rgba(215, 215, 215, 1);
  435. border-radius:0px;
  436. -moz-box-shadow:none;
  437. -webkit-box-shadow:none;
  438. box-shadow:none;
  439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  440. font-weight:400;
  441. font-style:normal;
  442. font-size:14px;
  443. color:#AAAAAA;
  444. text-align:center;
  445. line-height:30px;
  446. }
  447. #u128999 {
  448. border-width:0px;
  449. position:absolute;
  450. left:91px;
  451. top:259px;
  452. width:1000px;
  453. height:336px;
  454. display:flex;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. font-size:14px;
  459. color:#AAAAAA;
  460. text-align:center;
  461. line-height:30px;
  462. }
  463. #u128999 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:5px 10px 5px 10px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u128999_text {
  471. border-width:0px;
  472. word-wrap:break-word;
  473. text-transform:none;
  474. visibility:hidden;
  475. }
  476. #u129000_div {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:320px;
  482. height:30px;
  483. background:inherit;
  484. background-color:rgba(255, 255, 255, 0);
  485. border:none;
  486. border-left:0px;
  487. border-top:0px;
  488. border-right:0px;
  489. border-radius:0px;
  490. border-bottom-right-radius:0px;
  491. border-bottom-left-radius:0px;
  492. -moz-box-shadow:none;
  493. -webkit-box-shadow:none;
  494. box-shadow:none;
  495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  496. font-weight:400;
  497. font-style:normal;
  498. font-size:14px;
  499. line-height:30px;
  500. }
  501. #u129000 {
  502. border-width:0px;
  503. position:absolute;
  504. left:121px;
  505. top:292px;
  506. width:320px;
  507. height:30px;
  508. display:flex;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:14px;
  513. line-height:30px;
  514. }
  515. #u129000 .text {
  516. position:absolute;
  517. align-self:flex-start;
  518. padding:0px 0px 0px 0px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u129000_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. }
  527. #u129001 {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:0px;
  533. height:0px;
  534. }
  535. #u129002_div {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:1000px;
  541. height:645px;
  542. background:inherit;
  543. background-color:rgba(255, 255, 255, 1);
  544. box-sizing:border-box;
  545. border-width:1px;
  546. border-style:solid;
  547. border-color:rgba(215, 215, 215, 1);
  548. border-radius:0px;
  549. -moz-box-shadow:none;
  550. -webkit-box-shadow:none;
  551. box-shadow:none;
  552. }
  553. #u129002 {
  554. border-width:0px;
  555. position:absolute;
  556. left:91px;
  557. top:605px;
  558. width:1000px;
  559. height:645px;
  560. display:flex;
  561. }
  562. #u129002 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:2px 2px 2px 2px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u129002_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. visibility:hidden;
  574. }
  575. #u129003_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:103px;
  581. height:24px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border:none;
  585. border-top:0px;
  586. border-right:0px;
  587. border-bottom:0px;
  588. border-radius:0px;
  589. border-top-left-radius:0px;
  590. border-bottom-left-radius:0px;
  591. -moz-box-shadow:none;
  592. -webkit-box-shadow:none;
  593. box-shadow:none;
  594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  595. font-weight:400;
  596. font-style:normal;
  597. font-size:10px;
  598. color:#AAAAAA;
  599. }
  600. #u129003 {
  601. border-width:0px;
  602. position:absolute;
  603. left:346px;
  604. top:678px;
  605. width:103px;
  606. height:24px;
  607. display:flex;
  608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  609. font-weight:400;
  610. font-style:normal;
  611. font-size:10px;
  612. color:#AAAAAA;
  613. }
  614. #u129003 .text {
  615. position:absolute;
  616. align-self:flex-start;
  617. padding:5px 0px 5px 0px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u129003_text {
  622. border-width:0px;
  623. white-space:nowrap;
  624. text-transform:none;
  625. }
  626. #u129004 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u129005_div {
  635. border-width:0px;
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:43px;
  640. height:30px;
  641. background:inherit;
  642. background-color:rgba(255, 255, 255, 0);
  643. border:none;
  644. border-top:0px;
  645. border-right:0px;
  646. border-bottom:0px;
  647. border-radius:0px;
  648. border-top-left-radius:0px;
  649. border-bottom-left-radius:0px;
  650. -moz-box-shadow:none;
  651. -webkit-box-shadow:none;
  652. box-shadow:none;
  653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:14px;
  657. }
  658. #u129005 {
  659. border-width:0px;
  660. position:absolute;
  661. left:179px;
  662. top:680px;
  663. width:43px;
  664. height:30px;
  665. display:flex;
  666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  667. font-weight:400;
  668. font-style:normal;
  669. font-size:14px;
  670. }
  671. #u129005 .text {
  672. position:absolute;
  673. align-self:flex-start;
  674. padding:0px 0px 0px 0px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u129005_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u129006_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:12px;
  689. height:16px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-top:0px;
  694. border-right:0px;
  695. border-bottom:0px;
  696. border-radius:0px;
  697. border-top-left-radius:0px;
  698. border-bottom-left-radius:0px;
  699. -moz-box-shadow:none;
  700. -webkit-box-shadow:none;
  701. box-shadow:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:11px;
  706. color:#AAAAAA;
  707. }
  708. #u129006 {
  709. border-width:0px;
  710. position:absolute;
  711. left:179px;
  712. top:708px;
  713. width:12px;
  714. height:16px;
  715. display:flex;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:11px;
  720. color:#AAAAAA;
  721. }
  722. #u129006 .text {
  723. position:absolute;
  724. align-self:flex-start;
  725. padding:0px 0px 0px 0px;
  726. box-sizing:border-box;
  727. width:100%;
  728. }
  729. #u129006_text {
  730. border-width:0px;
  731. white-space:nowrap;
  732. text-transform:none;
  733. }
  734. #u129007_div {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:43px;
  740. height:20px;
  741. background:inherit;
  742. background-color:rgba(255, 255, 255, 0);
  743. border:none;
  744. border-top:0px;
  745. border-right:0px;
  746. border-bottom:0px;
  747. border-radius:0px;
  748. border-top-left-radius:0px;
  749. border-bottom-left-radius:0px;
  750. -moz-box-shadow:none;
  751. -webkit-box-shadow:none;
  752. box-shadow:none;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. }
  758. #u129007 {
  759. border-width:0px;
  760. position:absolute;
  761. left:179px;
  762. top:750px;
  763. width:43px;
  764. height:20px;
  765. display:flex;
  766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  767. font-weight:400;
  768. font-style:normal;
  769. font-size:14px;
  770. }
  771. #u129007 .text {
  772. position:absolute;
  773. align-self:flex-start;
  774. padding:0px 0px 0px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u129007_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u129008_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:91px;
  789. height:16px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border:none;
  793. border-top:0px;
  794. border-right:0px;
  795. border-bottom:0px;
  796. border-radius:0px;
  797. border-top-left-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:11px;
  806. color:#AAAAAA;
  807. }
  808. #u129008 {
  809. border-width:0px;
  810. position:absolute;
  811. left:179px;
  812. top:778px;
  813. width:91px;
  814. height:16px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. font-size:11px;
  820. color:#AAAAAA;
  821. }
  822. #u129008 .text {
  823. position:absolute;
  824. align-self:flex-start;
  825. padding:0px 0px 0px 0px;
  826. box-sizing:border-box;
  827. width:100%;
  828. }
  829. #u129008_text {
  830. border-width:0px;
  831. white-space:nowrap;
  832. text-transform:none;
  833. }
  834. #u129009_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:37px;
  840. height:35px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-top:0px;
  845. border-right:0px;
  846. border-bottom:0px;
  847. border-radius:0px;
  848. border-top-left-radius:0px;
  849. border-bottom-left-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  854. font-weight:500;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u129009 {
  859. border-width:0px;
  860. position:absolute;
  861. left:117px;
  862. top:623px;
  863. width:37px;
  864. height:35px;
  865. display:flex;
  866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  867. font-weight:500;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u129009 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:5px 0px 5px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u129009_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u129010 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u129011_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:2px;
  897. height:32px;
  898. }
  899. #u129011 {
  900. border-width:0px;
  901. position:absolute;
  902. left:156px;
  903. top:714px;
  904. width:1px;
  905. height:31px;
  906. display:flex;
  907. }
  908. #u129011 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u129011_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u129012 {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:0px;
  927. height:0px;
  928. }
  929. #u129013_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:30px;
  935. height:30px;
  936. background:inherit;
  937. background-color:rgba(24, 144, 255, 1);
  938. border:none;
  939. border-radius:4px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:10px;
  947. color:#FFFFFF;
  948. }
  949. #u129013 {
  950. border-width:0px;
  951. position:absolute;
  952. left:141px;
  953. top:750px;
  954. width:30px;
  955. height:30px;
  956. display:flex;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:10px;
  961. color:#FFFFFF;
  962. }
  963. #u129013 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u129013_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. }
  975. #u129014 {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:0px;
  981. height:0px;
  982. }
  983. #u129015_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:9px;
  989. height:9px;
  990. }
  991. #u129015 {
  992. border-width:0px;
  993. position:absolute;
  994. left:163px;
  995. top:772px;
  996. width:9px;
  997. height:9px;
  998. display:flex;
  999. }
  1000. #u129015 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u129015_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u129016_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:5px;
  1019. height:1px;
  1020. }
  1021. #u129016 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:165px;
  1025. top:776px;
  1026. width:5px;
  1027. height:1px;
  1028. display:flex;
  1029. }
  1030. #u129016 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u129016_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u129017 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:0px;
  1049. height:0px;
  1050. }
  1051. #u129018_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:30px;
  1057. height:30px;
  1058. background:inherit;
  1059. background-color:rgba(24, 144, 255, 1);
  1060. border:none;
  1061. border-radius:4px;
  1062. -moz-box-shadow:none;
  1063. -webkit-box-shadow:none;
  1064. box-shadow:none;
  1065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1066. font-weight:400;
  1067. font-style:normal;
  1068. font-size:12px;
  1069. color:#FFFFFF;
  1070. }
  1071. #u129018 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:141px;
  1075. top:680px;
  1076. width:30px;
  1077. height:30px;
  1078. display:flex;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. font-size:12px;
  1083. color:#FFFFFF;
  1084. }
  1085. #u129018 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u129018_text {
  1093. border-width:0px;
  1094. word-wrap:break-word;
  1095. text-transform:none;
  1096. }
  1097. #u129019 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:0px;
  1103. height:0px;
  1104. }
  1105. #u129020_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:9px;
  1111. height:9px;
  1112. }
  1113. #u129020 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:163px;
  1117. top:702px;
  1118. width:9px;
  1119. height:9px;
  1120. display:flex;
  1121. }
  1122. #u129020 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u129020_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u129021_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:5px;
  1141. height:4px;
  1142. }
  1143. #u129021 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:165px;
  1147. top:705px;
  1148. width:5px;
  1149. height:4px;
  1150. display:flex;
  1151. }
  1152. #u129021 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u129021_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u129022_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:320px;
  1171. height:30px;
  1172. background:inherit;
  1173. background-color:rgba(255, 255, 255, 0);
  1174. border:none;
  1175. border-left:0px;
  1176. border-top:0px;
  1177. border-right:0px;
  1178. border-radius:0px;
  1179. border-bottom-right-radius:0px;
  1180. border-bottom-left-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:14px;
  1188. line-height:30px;
  1189. }
  1190. #u129022 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:441px;
  1194. top:292px;
  1195. width:320px;
  1196. height:30px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. line-height:30px;
  1203. }
  1204. #u129022 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u129022_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. }
  1216. #u129023_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:320px;
  1222. height:30px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 0);
  1225. border:none;
  1226. border-left:0px;
  1227. border-top:0px;
  1228. border-right:0px;
  1229. border-radius:0px;
  1230. border-bottom-right-radius:0px;
  1231. border-bottom-left-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. line-height:30px;
  1240. }
  1241. #u129023 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:761px;
  1245. top:292px;
  1246. width:320px;
  1247. height:30px;
  1248. display:flex;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:14px;
  1253. line-height:30px;
  1254. }
  1255. #u129023 .text {
  1256. position:absolute;
  1257. align-self:flex-start;
  1258. padding:0px 0px 0px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u129023_text {
  1263. border-width:0px;
  1264. word-wrap:break-word;
  1265. text-transform:none;
  1266. }
  1267. #u129024_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:320px;
  1273. height:30px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-left:0px;
  1278. border-top:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-bottom-right-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1287. font-weight:500;
  1288. font-style:normal;
  1289. font-size:18px;
  1290. line-height:30px;
  1291. }
  1292. #u129024 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:121px;
  1296. top:336px;
  1297. width:320px;
  1298. height:30px;
  1299. display:flex;
  1300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1301. font-weight:500;
  1302. font-style:normal;
  1303. font-size:18px;
  1304. line-height:30px;
  1305. }
  1306. #u129024 .text {
  1307. position:absolute;
  1308. align-self:flex-start;
  1309. padding:0px 0px 0px 0px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u129024_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. }
  1318. #u129025_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:108px;
  1324. height:108px;
  1325. }
  1326. #u129025 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:941px;
  1330. top:119px;
  1331. width:108px;
  1332. height:108px;
  1333. display:flex;
  1334. -webkit-transform:rotate(315deg);
  1335. -moz-transform:rotate(315deg);
  1336. -ms-transform:rotate(315deg);
  1337. transform:rotate(315deg);
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:28px;
  1342. color:#F59A23;
  1343. }
  1344. #u129025 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:2px 2px 2px 2px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u129025_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u129026 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:0px;
  1362. height:0px;
  1363. }
  1364. #u129027_div {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:1000px;
  1370. height:60px;
  1371. background:inherit;
  1372. background-color:rgba(255, 255, 255, 1);
  1373. box-sizing:border-box;
  1374. border-width:1px;
  1375. border-style:solid;
  1376. border-color:rgba(215, 215, 215, 1);
  1377. border-radius:0px;
  1378. -moz-box-shadow:none;
  1379. -webkit-box-shadow:none;
  1380. box-shadow:none;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:14px;
  1385. color:#AAAAAA;
  1386. text-align:center;
  1387. line-height:30px;
  1388. }
  1389. #u129027 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:91px;
  1393. top:1190px;
  1394. width:1000px;
  1395. height:60px;
  1396. display:flex;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:14px;
  1401. color:#AAAAAA;
  1402. text-align:center;
  1403. line-height:30px;
  1404. }
  1405. #u129027 .text {
  1406. position:absolute;
  1407. align-self:center;
  1408. padding:5px 10px 5px 10px;
  1409. box-sizing:border-box;
  1410. width:100%;
  1411. }
  1412. #u129027_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. visibility:hidden;
  1417. }
  1418. #u129028_div {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:80px;
  1424. height:30px;
  1425. background:inherit;
  1426. background-color:rgba(255, 255, 255, 1);
  1427. box-sizing:border-box;
  1428. border-width:1px;
  1429. border-style:solid;
  1430. border-color:rgba(170, 170, 170, 1);
  1431. border-radius:4px;
  1432. -moz-box-shadow:none;
  1433. -webkit-box-shadow:none;
  1434. box-shadow:none;
  1435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1436. font-weight:400;
  1437. font-style:normal;
  1438. font-size:14px;
  1439. }
  1440. #u129028 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:985px;
  1444. top:1205px;
  1445. width:80px;
  1446. height:30px;
  1447. display:flex;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:14px;
  1452. }
  1453. #u129028 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 2px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u129028_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. }
  1465. #u129029_div {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:950px;
  1471. height:193px;
  1472. background:inherit;
  1473. background-color:rgba(242, 242, 242, 1);
  1474. border:none;
  1475. border-radius:10px;
  1476. -moz-box-shadow:none;
  1477. -webkit-box-shadow:none;
  1478. box-shadow:none;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. color:#AAAAAA;
  1484. text-align:center;
  1485. line-height:30px;
  1486. }
  1487. #u129029 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:121px;
  1491. top:376px;
  1492. width:950px;
  1493. height:193px;
  1494. display:flex;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. color:#AAAAAA;
  1500. text-align:center;
  1501. line-height:30px;
  1502. }
  1503. #u129029 .text {
  1504. position:absolute;
  1505. align-self:center;
  1506. padding:5px 10px 5px 10px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u129029_text {
  1511. border-width:0px;
  1512. word-wrap:break-word;
  1513. text-transform:none;
  1514. visibility:hidden;
  1515. }
  1516. #u129030_div {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:320px;
  1522. height:30px;
  1523. background:inherit;
  1524. background-color:rgba(255, 255, 255, 0);
  1525. border:none;
  1526. border-left:0px;
  1527. border-top:0px;
  1528. border-right:0px;
  1529. border-radius:0px;
  1530. border-bottom-right-radius:0px;
  1531. border-bottom-left-radius:0px;
  1532. -moz-box-shadow:none;
  1533. -webkit-box-shadow:none;
  1534. box-shadow:none;
  1535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1536. font-weight:400;
  1537. font-style:normal;
  1538. font-size:14px;
  1539. color:#7F7F7F;
  1540. line-height:30px;
  1541. }
  1542. #u129030 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:168px;
  1546. top:397px;
  1547. width:320px;
  1548. height:30px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. font-size:14px;
  1554. color:#7F7F7F;
  1555. line-height:30px;
  1556. }
  1557. #u129030 .text {
  1558. position:absolute;
  1559. align-self:flex-start;
  1560. padding:0px 0px 0px 0px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u129030_text {
  1565. border-width:0px;
  1566. word-wrap:break-word;
  1567. text-transform:none;
  1568. }
  1569. #u129031 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:0px;
  1575. height:0px;
  1576. }
  1577. #u129032_div {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:1000px;
  1583. height:1201px;
  1584. background:inherit;
  1585. background-color:rgba(242, 242, 242, 1);
  1586. box-sizing:border-box;
  1587. border-width:1px;
  1588. border-style:solid;
  1589. border-color:rgba(215, 215, 215, 1);
  1590. border-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:14px;
  1598. color:#AAAAAA;
  1599. text-align:center;
  1600. line-height:30px;
  1601. }
  1602. #u129032 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:1149px;
  1606. top:49px;
  1607. width:1000px;
  1608. height:1201px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. color:#AAAAAA;
  1615. text-align:center;
  1616. line-height:30px;
  1617. }
  1618. #u129032 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:5px 10px 5px 10px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u129032_text {
  1626. border-width:0px;
  1627. word-wrap:break-word;
  1628. text-transform:none;
  1629. visibility:hidden;
  1630. }
  1631. #u129033_div {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:1000px;
  1637. height:200px;
  1638. background:inherit;
  1639. background-color:rgba(255, 255, 255, 1);
  1640. box-sizing:border-box;
  1641. border-width:1px;
  1642. border-style:solid;
  1643. border-color:rgba(215, 215, 215, 1);
  1644. border-radius:0px;
  1645. -moz-box-shadow:none;
  1646. -webkit-box-shadow:none;
  1647. box-shadow:none;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. font-size:14px;
  1652. color:#AAAAAA;
  1653. text-align:center;
  1654. line-height:30px;
  1655. }
  1656. #u129033 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:1149px;
  1660. top:49px;
  1661. width:1000px;
  1662. height:200px;
  1663. display:flex;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-weight:400;
  1666. font-style:normal;
  1667. font-size:14px;
  1668. color:#AAAAAA;
  1669. text-align:center;
  1670. line-height:30px;
  1671. }
  1672. #u129033 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:5px 10px 5px 10px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u129033_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u129034_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:83px;
  1691. height:35px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 0);
  1694. border:none;
  1695. border-top:0px;
  1696. border-right:0px;
  1697. border-bottom:0px;
  1698. border-radius:0px;
  1699. border-top-left-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1705. font-weight:500;
  1706. font-style:normal;
  1707. font-size:18px;
  1708. }
  1709. #u129034 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:1169px;
  1713. top:67px;
  1714. width:83px;
  1715. height:35px;
  1716. display:flex;
  1717. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1718. font-weight:500;
  1719. font-style:normal;
  1720. font-size:18px;
  1721. }
  1722. #u129034 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:5px 10px 5px 0px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u129034_text {
  1730. border-width:0px;
  1731. white-space:nowrap;
  1732. text-transform:none;
  1733. }
  1734. #u129035_div {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:275px;
  1740. height:43px;
  1741. background:inherit;
  1742. background-color:rgba(255, 255, 255, 0);
  1743. border:none;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-bottom:0px;
  1747. border-radius:0px;
  1748. border-top-left-radius:0px;
  1749. border-bottom-left-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1754. font-weight:500;
  1755. font-style:normal;
  1756. font-size:24px;
  1757. }
  1758. #u129035 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:1179px;
  1762. top:118px;
  1763. width:275px;
  1764. height:43px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1767. font-weight:500;
  1768. font-style:normal;
  1769. font-size:24px;
  1770. }
  1771. #u129035 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:5px 10px 5px 0px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u129035_text {
  1779. border-width:0px;
  1780. white-space:nowrap;
  1781. text-transform:none;
  1782. }
  1783. #u129036_div {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:325px;
  1789. height:60px;
  1790. background:inherit;
  1791. background-color:rgba(255, 255, 255, 0);
  1792. border:none;
  1793. border-left:0px;
  1794. border-top:0px;
  1795. border-right:0px;
  1796. border-radius:0px;
  1797. border-bottom-right-radius:0px;
  1798. border-bottom-left-radius:0px;
  1799. -moz-box-shadow:none;
  1800. -webkit-box-shadow:none;
  1801. box-shadow:none;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:14px;
  1806. line-height:30px;
  1807. }
  1808. #u129036 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:1179px;
  1812. top:171px;
  1813. width:325px;
  1814. height:60px;
  1815. display:flex;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:14px;
  1820. line-height:30px;
  1821. }
  1822. #u129036 .text {
  1823. position:absolute;
  1824. align-self:flex-start;
  1825. padding:0px 0px 0px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u129036_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u129037_div {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:1000px;
  1840. height:336px;
  1841. background:inherit;
  1842. background-color:rgba(255, 255, 255, 1);
  1843. box-sizing:border-box;
  1844. border-width:1px;
  1845. border-style:solid;
  1846. border-color:rgba(215, 215, 215, 1);
  1847. border-radius:0px;
  1848. -moz-box-shadow:none;
  1849. -webkit-box-shadow:none;
  1850. box-shadow:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#AAAAAA;
  1856. text-align:center;
  1857. line-height:30px;
  1858. }
  1859. #u129037 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:1149px;
  1863. top:259px;
  1864. width:1000px;
  1865. height:336px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:14px;
  1871. color:#AAAAAA;
  1872. text-align:center;
  1873. line-height:30px;
  1874. }
  1875. #u129037 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:5px 10px 5px 10px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u129037_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }
  1888. #u129038_div {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:320px;
  1894. height:30px;
  1895. background:inherit;
  1896. background-color:rgba(255, 255, 255, 0);
  1897. border:none;
  1898. border-left:0px;
  1899. border-top:0px;
  1900. border-right:0px;
  1901. border-radius:0px;
  1902. border-bottom-right-radius:0px;
  1903. border-bottom-left-radius:0px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:14px;
  1911. line-height:30px;
  1912. }
  1913. #u129038 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:1179px;
  1917. top:292px;
  1918. width:320px;
  1919. height:30px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:14px;
  1925. line-height:30px;
  1926. }
  1927. #u129038 .text {
  1928. position:absolute;
  1929. align-self:flex-start;
  1930. padding:0px 0px 0px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u129038_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u129039_div {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:320px;
  1945. height:30px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 0);
  1948. border:none;
  1949. border-left:0px;
  1950. border-top:0px;
  1951. border-right:0px;
  1952. border-radius:0px;
  1953. border-bottom-right-radius:0px;
  1954. border-bottom-left-radius:0px;
  1955. -moz-box-shadow:none;
  1956. -webkit-box-shadow:none;
  1957. box-shadow:none;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:14px;
  1962. line-height:30px;
  1963. }
  1964. #u129039 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:1499px;
  1968. top:292px;
  1969. width:320px;
  1970. height:30px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:14px;
  1976. line-height:30px;
  1977. }
  1978. #u129039 .text {
  1979. position:absolute;
  1980. align-self:flex-start;
  1981. padding:0px 0px 0px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u129039_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. }
  1990. #u129040_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:320px;
  1996. height:30px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 0);
  1999. border:none;
  2000. border-left:0px;
  2001. border-top:0px;
  2002. border-right:0px;
  2003. border-radius:0px;
  2004. border-bottom-right-radius:0px;
  2005. border-bottom-left-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:14px;
  2013. line-height:30px;
  2014. }
  2015. #u129040 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:1819px;
  2019. top:292px;
  2020. width:320px;
  2021. height:30px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. line-height:30px;
  2028. }
  2029. #u129040 .text {
  2030. position:absolute;
  2031. align-self:flex-start;
  2032. padding:0px 0px 0px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u129040_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u129041_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:320px;
  2047. height:30px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 0);
  2050. border:none;
  2051. border-left:0px;
  2052. border-top:0px;
  2053. border-right:0px;
  2054. border-radius:0px;
  2055. border-bottom-right-radius:0px;
  2056. border-bottom-left-radius:0px;
  2057. -moz-box-shadow:none;
  2058. -webkit-box-shadow:none;
  2059. box-shadow:none;
  2060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2061. font-weight:500;
  2062. font-style:normal;
  2063. font-size:18px;
  2064. line-height:30px;
  2065. }
  2066. #u129041 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:1179px;
  2070. top:336px;
  2071. width:320px;
  2072. height:30px;
  2073. display:flex;
  2074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2075. font-weight:500;
  2076. font-style:normal;
  2077. font-size:18px;
  2078. line-height:30px;
  2079. }
  2080. #u129041 .text {
  2081. position:absolute;
  2082. align-self:flex-start;
  2083. padding:0px 0px 0px 0px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u129041_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. }
  2092. #u129042_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:950px;
  2098. height:193px;
  2099. background:inherit;
  2100. background-color:rgba(242, 242, 242, 1);
  2101. border:none;
  2102. border-radius:10px;
  2103. -moz-box-shadow:none;
  2104. -webkit-box-shadow:none;
  2105. box-shadow:none;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#AAAAAA;
  2111. text-align:center;
  2112. line-height:30px;
  2113. }
  2114. #u129042 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:1179px;
  2118. top:376px;
  2119. width:950px;
  2120. height:193px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:14px;
  2126. color:#AAAAAA;
  2127. text-align:center;
  2128. line-height:30px;
  2129. }
  2130. #u129042 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:5px 10px 5px 10px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u129042_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u129043_div {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:320px;
  2149. height:30px;
  2150. background:inherit;
  2151. background-color:rgba(255, 255, 255, 0);
  2152. border:none;
  2153. border-left:0px;
  2154. border-top:0px;
  2155. border-right:0px;
  2156. border-radius:0px;
  2157. border-bottom-right-radius:0px;
  2158. border-bottom-left-radius:0px;
  2159. -moz-box-shadow:none;
  2160. -webkit-box-shadow:none;
  2161. box-shadow:none;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:14px;
  2166. color:#7F7F7F;
  2167. line-height:30px;
  2168. }
  2169. #u129043 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:1226px;
  2173. top:397px;
  2174. width:320px;
  2175. height:30px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. color:#7F7F7F;
  2182. line-height:30px;
  2183. }
  2184. #u129043 .text {
  2185. position:absolute;
  2186. align-self:flex-start;
  2187. padding:0px 0px 0px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u129043_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. }
  2196. #u129044 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:0px;
  2202. height:0px;
  2203. }
  2204. #u129045_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:40px;
  2210. height:40px;
  2211. background:inherit;
  2212. background-color:rgba(255, 255, 255, 0);
  2213. border:none;
  2214. border-top:0px;
  2215. border-right:0px;
  2216. border-bottom:0px;
  2217. border-radius:0px;
  2218. border-top-left-radius:0px;
  2219. border-bottom-left-radius:0px;
  2220. -moz-box-shadow:none;
  2221. -webkit-box-shadow:none;
  2222. box-shadow:none;
  2223. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2224. font-weight:500;
  2225. font-style:normal;
  2226. font-size:14px;
  2227. text-align:center;
  2228. }
  2229. #u129045 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:2109px;
  2233. top:49px;
  2234. width:40px;
  2235. height:40px;
  2236. display:flex;
  2237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2238. font-weight:500;
  2239. font-style:normal;
  2240. font-size:14px;
  2241. text-align:center;
  2242. }
  2243. #u129045 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:5px 10px 5px 0px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u129045_text {
  2251. border-width:0px;
  2252. word-wrap:break-word;
  2253. text-transform:none;
  2254. }
  2255. #u129046_img {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:13px;
  2261. height:13px;
  2262. }
  2263. #u129046 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:2097px;
  2267. top:65px;
  2268. width:13px;
  2269. height:13px;
  2270. display:flex;
  2271. font-size:14px;
  2272. }
  2273. #u129046 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u129046_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u129047 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:0px;
  2292. height:0px;
  2293. }
  2294. #u129048_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:1000px;
  2300. height:645px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 1);
  2303. box-sizing:border-box;
  2304. border-width:1px;
  2305. border-style:solid;
  2306. border-color:rgba(215, 215, 215, 1);
  2307. border-radius:0px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. }
  2312. #u129048 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:1149px;
  2316. top:605px;
  2317. width:1000px;
  2318. height:645px;
  2319. display:flex;
  2320. }
  2321. #u129048 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 2px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u129048_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u129049_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:103px;
  2340. height:24px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 0);
  2343. border:none;
  2344. border-top:0px;
  2345. border-right:0px;
  2346. border-bottom:0px;
  2347. border-radius:0px;
  2348. border-top-left-radius:0px;
  2349. border-bottom-left-radius:0px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:10px;
  2357. color:#AAAAAA;
  2358. }
  2359. #u129049 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:1404px;
  2363. top:678px;
  2364. width:103px;
  2365. height:24px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:10px;
  2371. color:#AAAAAA;
  2372. }
  2373. #u129049 .text {
  2374. position:absolute;
  2375. align-self:flex-start;
  2376. padding:5px 0px 5px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u129049_text {
  2381. border-width:0px;
  2382. white-space:nowrap;
  2383. text-transform:none;
  2384. }
  2385. #u129050 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:0px;
  2391. height:0px;
  2392. }
  2393. #u129051_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:43px;
  2399. height:30px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 0);
  2402. border:none;
  2403. border-top:0px;
  2404. border-right:0px;
  2405. border-bottom:0px;
  2406. border-radius:0px;
  2407. border-top-left-radius:0px;
  2408. border-bottom-left-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. }
  2417. #u129051 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1237px;
  2421. top:680px;
  2422. width:43px;
  2423. height:30px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. }
  2430. #u129051 .text {
  2431. position:absolute;
  2432. align-self:flex-start;
  2433. padding:0px 0px 0px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u129051_text {
  2438. border-width:0px;
  2439. white-space:nowrap;
  2440. text-transform:none;
  2441. }
  2442. #u129052_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:23px;
  2448. height:16px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 0);
  2451. border:none;
  2452. border-top:0px;
  2453. border-right:0px;
  2454. border-bottom:0px;
  2455. border-radius:0px;
  2456. border-top-left-radius:0px;
  2457. border-bottom-left-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:11px;
  2465. color:#AAAAAA;
  2466. }
  2467. #u129052 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:1237px;
  2471. top:708px;
  2472. width:23px;
  2473. height:16px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:11px;
  2479. color:#AAAAAA;
  2480. }
  2481. #u129052 .text {
  2482. position:absolute;
  2483. align-self:flex-start;
  2484. padding:0px 0px 0px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u129052_text {
  2489. border-width:0px;
  2490. white-space:nowrap;
  2491. text-transform:none;
  2492. }
  2493. #u129053_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:43px;
  2499. height:20px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 0);
  2502. border:none;
  2503. border-top:0px;
  2504. border-right:0px;
  2505. border-bottom:0px;
  2506. border-radius:0px;
  2507. border-top-left-radius:0px;
  2508. border-bottom-left-radius:0px;
  2509. -moz-box-shadow:none;
  2510. -webkit-box-shadow:none;
  2511. box-shadow:none;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. }
  2517. #u129053 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:1237px;
  2521. top:750px;
  2522. width:43px;
  2523. height:20px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:14px;
  2529. }
  2530. #u129053 .text {
  2531. position:absolute;
  2532. align-self:flex-start;
  2533. padding:0px 0px 0px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u129053_text {
  2538. border-width:0px;
  2539. white-space:nowrap;
  2540. text-transform:none;
  2541. }
  2542. #u129054_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:63px;
  2548. height:16px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-top:0px;
  2553. border-right:0px;
  2554. border-bottom:0px;
  2555. border-radius:0px;
  2556. border-top-left-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:11px;
  2565. color:#AAAAAA;
  2566. }
  2567. #u129054 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:1237px;
  2571. top:778px;
  2572. width:63px;
  2573. height:16px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:11px;
  2579. color:#AAAAAA;
  2580. }
  2581. #u129054 .text {
  2582. position:absolute;
  2583. align-self:flex-start;
  2584. padding:0px 0px 0px 0px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u129054_text {
  2589. border-width:0px;
  2590. white-space:nowrap;
  2591. text-transform:none;
  2592. }
  2593. #u129055_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:37px;
  2599. height:35px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-top:0px;
  2604. border-right:0px;
  2605. border-bottom:0px;
  2606. border-radius:0px;
  2607. border-top-left-radius:0px;
  2608. border-bottom-left-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2613. font-weight:500;
  2614. font-style:normal;
  2615. font-size:18px;
  2616. }
  2617. #u129055 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:1175px;
  2621. top:623px;
  2622. width:37px;
  2623. height:35px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2626. font-weight:500;
  2627. font-style:normal;
  2628. font-size:18px;
  2629. }
  2630. #u129055 .text {
  2631. position:absolute;
  2632. align-self:flex-start;
  2633. padding:5px 0px 5px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u129055_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u129056 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:0px;
  2648. height:0px;
  2649. }
  2650. #u129057_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:2px;
  2656. height:32px;
  2657. }
  2658. #u129057 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:1214px;
  2662. top:714px;
  2663. width:1px;
  2664. height:31px;
  2665. display:flex;
  2666. }
  2667. #u129057 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u129057_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u129058 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:0px;
  2686. height:0px;
  2687. }
  2688. #u129059_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:30px;
  2694. height:30px;
  2695. background:inherit;
  2696. background-color:rgba(24, 144, 255, 1);
  2697. border:none;
  2698. border-radius:4px;
  2699. -moz-box-shadow:none;
  2700. -webkit-box-shadow:none;
  2701. box-shadow:none;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:10px;
  2706. color:#FFFFFF;
  2707. }
  2708. #u129059 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:1199px;
  2712. top:750px;
  2713. width:30px;
  2714. height:30px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:10px;
  2720. color:#FFFFFF;
  2721. }
  2722. #u129059 .text {
  2723. position:absolute;
  2724. align-self:center;
  2725. padding:2px 2px 2px 2px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u129059_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. }
  2734. #u129060 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:0px;
  2740. height:0px;
  2741. }
  2742. #u129061_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:9px;
  2748. height:9px;
  2749. }
  2750. #u129061 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:1220px;
  2754. top:772px;
  2755. width:9px;
  2756. height:9px;
  2757. display:flex;
  2758. }
  2759. #u129061 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 2px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u129061_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u129062_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:5px;
  2778. height:4px;
  2779. }
  2780. #u129062 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:1222px;
  2784. top:775px;
  2785. width:5px;
  2786. height:4px;
  2787. display:flex;
  2788. }
  2789. #u129062 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u129062_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u129063 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:0px;
  2808. height:0px;
  2809. }
  2810. #u129064_div {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:30px;
  2816. height:30px;
  2817. background:inherit;
  2818. background-color:rgba(24, 144, 255, 1);
  2819. border:none;
  2820. border-radius:4px;
  2821. -moz-box-shadow:none;
  2822. -webkit-box-shadow:none;
  2823. box-shadow:none;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. color:#FFFFFF;
  2829. }
  2830. #u129064 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1199px;
  2834. top:680px;
  2835. width:30px;
  2836. height:30px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#FFFFFF;
  2843. }
  2844. #u129064 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 2px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u129064_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u129065 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:0px;
  2862. height:0px;
  2863. }
  2864. #u129066_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:9px;
  2870. height:9px;
  2871. }
  2872. #u129066 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:1221px;
  2876. top:702px;
  2877. width:9px;
  2878. height:9px;
  2879. display:flex;
  2880. }
  2881. #u129066 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u129066_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u129067_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:5px;
  2900. height:4px;
  2901. }
  2902. #u129067 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:1223px;
  2906. top:705px;
  2907. width:5px;
  2908. height:4px;
  2909. display:flex;
  2910. }
  2911. #u129067 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:2px 2px 2px 2px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u129067_text {
  2919. border-width:0px;
  2920. word-wrap:break-word;
  2921. text-transform:none;
  2922. visibility:hidden;
  2923. }
  2924. #u129068_div {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:103px;
  2930. height:24px;
  2931. background:inherit;
  2932. background-color:rgba(255, 255, 255, 0);
  2933. border:none;
  2934. border-top:0px;
  2935. border-right:0px;
  2936. border-bottom:0px;
  2937. border-radius:0px;
  2938. border-top-left-radius:0px;
  2939. border-bottom-left-radius:0px;
  2940. -moz-box-shadow:none;
  2941. -webkit-box-shadow:none;
  2942. box-shadow:none;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:10px;
  2947. color:#AAAAAA;
  2948. }
  2949. #u129068 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1404px;
  2953. top:748px;
  2954. width:103px;
  2955. height:24px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:10px;
  2961. color:#AAAAAA;
  2962. }
  2963. #u129068 .text {
  2964. position:absolute;
  2965. align-self:flex-start;
  2966. padding:5px 0px 5px 0px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u129068_text {
  2971. border-width:0px;
  2972. white-space:nowrap;
  2973. text-transform:none;
  2974. }
  2975. #u129069_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:108px;
  2981. height:108px;
  2982. }
  2983. #u129069 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:1993px;
  2987. top:119px;
  2988. width:108px;
  2989. height:108px;
  2990. display:flex;
  2991. -webkit-transform:rotate(315deg);
  2992. -moz-transform:rotate(315deg);
  2993. -ms-transform:rotate(315deg);
  2994. transform:rotate(315deg);
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:28px;
  2999. color:#00BFBF;
  3000. }
  3001. #u129069 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 2px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u129069_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. }
  3013. #u129070 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:0px;
  3019. height:0px;
  3020. }
  3021. #u129071_div {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:1000px;
  3027. height:60px;
  3028. background:inherit;
  3029. background-color:rgba(255, 255, 255, 1);
  3030. box-sizing:border-box;
  3031. border-width:1px;
  3032. border-style:solid;
  3033. border-color:rgba(215, 215, 215, 1);
  3034. border-radius:0px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. color:#AAAAAA;
  3043. text-align:center;
  3044. line-height:30px;
  3045. }
  3046. #u129071 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:1149px;
  3050. top:1190px;
  3051. width:1000px;
  3052. height:60px;
  3053. display:flex;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:14px;
  3058. color:#AAAAAA;
  3059. text-align:center;
  3060. line-height:30px;
  3061. }
  3062. #u129071 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:5px 10px 5px 10px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u129071_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. visibility:hidden;
  3074. }
  3075. #u129072_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:80px;
  3081. height:30px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 1);
  3084. box-sizing:border-box;
  3085. border-width:1px;
  3086. border-style:solid;
  3087. border-color:rgba(170, 170, 170, 1);
  3088. border-radius:4px;
  3089. -moz-box-shadow:none;
  3090. -webkit-box-shadow:none;
  3091. box-shadow:none;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:14px;
  3096. }
  3097. #u129072 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:2043px;
  3101. top:1205px;
  3102. width:80px;
  3103. height:30px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. }
  3110. #u129072 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 2px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u129072_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. }
  3122. #u129073 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:0px;
  3128. height:0px;
  3129. }
  3130. #u129074_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:1000px;
  3136. height:1201px;
  3137. background:inherit;
  3138. background-color:rgba(242, 242, 242, 1);
  3139. box-sizing:border-box;
  3140. border-width:1px;
  3141. border-style:solid;
  3142. border-color:rgba(215, 215, 215, 1);
  3143. border-radius:0px;
  3144. -moz-box-shadow:none;
  3145. -webkit-box-shadow:none;
  3146. box-shadow:none;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:14px;
  3151. color:#AAAAAA;
  3152. text-align:center;
  3153. line-height:30px;
  3154. }
  3155. #u129074 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:2189px;
  3159. top:49px;
  3160. width:1000px;
  3161. height:1201px;
  3162. display:flex;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:14px;
  3167. color:#AAAAAA;
  3168. text-align:center;
  3169. line-height:30px;
  3170. }
  3171. #u129074 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:5px 10px 5px 10px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u129074_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u129075_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:1000px;
  3190. height:200px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 1);
  3193. box-sizing:border-box;
  3194. border-width:1px;
  3195. border-style:solid;
  3196. border-color:rgba(215, 215, 215, 1);
  3197. border-radius:0px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:14px;
  3205. color:#AAAAAA;
  3206. text-align:center;
  3207. line-height:30px;
  3208. }
  3209. #u129075 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:2189px;
  3213. top:49px;
  3214. width:1000px;
  3215. height:200px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:14px;
  3221. color:#AAAAAA;
  3222. text-align:center;
  3223. line-height:30px;
  3224. }
  3225. #u129075 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:5px 10px 5px 10px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u129075_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u129076_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:83px;
  3244. height:35px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-top:0px;
  3249. border-right:0px;
  3250. border-bottom:0px;
  3251. border-radius:0px;
  3252. border-top-left-radius:0px;
  3253. border-bottom-left-radius:0px;
  3254. -moz-box-shadow:none;
  3255. -webkit-box-shadow:none;
  3256. box-shadow:none;
  3257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3258. font-weight:500;
  3259. font-style:normal;
  3260. font-size:18px;
  3261. }
  3262. #u129076 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:2209px;
  3266. top:67px;
  3267. width:83px;
  3268. height:35px;
  3269. display:flex;
  3270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3271. font-weight:500;
  3272. font-style:normal;
  3273. font-size:18px;
  3274. }
  3275. #u129076 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:5px 10px 5px 0px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u129076_text {
  3283. border-width:0px;
  3284. white-space:nowrap;
  3285. text-transform:none;
  3286. }
  3287. #u129077_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:275px;
  3293. height:43px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-top:0px;
  3298. border-right:0px;
  3299. border-bottom:0px;
  3300. border-radius:0px;
  3301. border-top-left-radius:0px;
  3302. border-bottom-left-radius:0px;
  3303. -moz-box-shadow:none;
  3304. -webkit-box-shadow:none;
  3305. box-shadow:none;
  3306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3307. font-weight:500;
  3308. font-style:normal;
  3309. font-size:24px;
  3310. }
  3311. #u129077 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:2219px;
  3315. top:118px;
  3316. width:275px;
  3317. height:43px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3320. font-weight:500;
  3321. font-style:normal;
  3322. font-size:24px;
  3323. }
  3324. #u129077 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:5px 10px 5px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u129077_text {
  3332. border-width:0px;
  3333. white-space:nowrap;
  3334. text-transform:none;
  3335. }
  3336. #u129078_div {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:325px;
  3342. height:60px;
  3343. background:inherit;
  3344. background-color:rgba(255, 255, 255, 0);
  3345. border:none;
  3346. border-left:0px;
  3347. border-top:0px;
  3348. border-right:0px;
  3349. border-radius:0px;
  3350. border-bottom-right-radius:0px;
  3351. border-bottom-left-radius:0px;
  3352. -moz-box-shadow:none;
  3353. -webkit-box-shadow:none;
  3354. box-shadow:none;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. line-height:30px;
  3360. }
  3361. #u129078 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:2219px;
  3365. top:171px;
  3366. width:325px;
  3367. height:60px;
  3368. display:flex;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:14px;
  3373. line-height:30px;
  3374. }
  3375. #u129078 .text {
  3376. position:absolute;
  3377. align-self:flex-start;
  3378. padding:0px 0px 0px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u129078_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. }
  3387. #u129079_div {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:1000px;
  3393. height:336px;
  3394. background:inherit;
  3395. background-color:rgba(255, 255, 255, 1);
  3396. box-sizing:border-box;
  3397. border-width:1px;
  3398. border-style:solid;
  3399. border-color:rgba(215, 215, 215, 1);
  3400. border-radius:0px;
  3401. -moz-box-shadow:none;
  3402. -webkit-box-shadow:none;
  3403. box-shadow:none;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:14px;
  3408. color:#AAAAAA;
  3409. text-align:center;
  3410. line-height:30px;
  3411. }
  3412. #u129079 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:2189px;
  3416. top:259px;
  3417. width:1000px;
  3418. height:336px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:14px;
  3424. color:#AAAAAA;
  3425. text-align:center;
  3426. line-height:30px;
  3427. }
  3428. #u129079 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:5px 10px 5px 10px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u129079_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u129080_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:320px;
  3447. height:30px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 0);
  3450. border:none;
  3451. border-left:0px;
  3452. border-top:0px;
  3453. border-right:0px;
  3454. border-radius:0px;
  3455. border-bottom-right-radius:0px;
  3456. border-bottom-left-radius:0px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:14px;
  3464. line-height:30px;
  3465. }
  3466. #u129080 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:2219px;
  3470. top:292px;
  3471. width:320px;
  3472. height:30px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. line-height:30px;
  3479. }
  3480. #u129080 .text {
  3481. position:absolute;
  3482. align-self:flex-start;
  3483. padding:0px 0px 0px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u129080_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. }
  3492. #u129081_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:320px;
  3498. height:30px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border:none;
  3502. border-left:0px;
  3503. border-top:0px;
  3504. border-right:0px;
  3505. border-radius:0px;
  3506. border-bottom-right-radius:0px;
  3507. border-bottom-left-radius:0px;
  3508. -moz-box-shadow:none;
  3509. -webkit-box-shadow:none;
  3510. box-shadow:none;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:14px;
  3515. line-height:30px;
  3516. }
  3517. #u129081 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:2539px;
  3521. top:292px;
  3522. width:320px;
  3523. height:30px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:14px;
  3529. line-height:30px;
  3530. }
  3531. #u129081 .text {
  3532. position:absolute;
  3533. align-self:flex-start;
  3534. padding:0px 0px 0px 0px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u129081_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. }
  3543. #u129082_div {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:320px;
  3549. height:30px;
  3550. background:inherit;
  3551. background-color:rgba(255, 255, 255, 0);
  3552. border:none;
  3553. border-left:0px;
  3554. border-top:0px;
  3555. border-right:0px;
  3556. border-radius:0px;
  3557. border-bottom-right-radius:0px;
  3558. border-bottom-left-radius:0px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:14px;
  3566. line-height:30px;
  3567. }
  3568. #u129082 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:2859px;
  3572. top:292px;
  3573. width:320px;
  3574. height:30px;
  3575. display:flex;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. line-height:30px;
  3581. }
  3582. #u129082 .text {
  3583. position:absolute;
  3584. align-self:flex-start;
  3585. padding:0px 0px 0px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u129082_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. }
  3594. #u129083_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:320px;
  3600. height:30px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 0);
  3603. border:none;
  3604. border-left:0px;
  3605. border-top:0px;
  3606. border-right:0px;
  3607. border-radius:0px;
  3608. border-bottom-right-radius:0px;
  3609. border-bottom-left-radius:0px;
  3610. -moz-box-shadow:none;
  3611. -webkit-box-shadow:none;
  3612. box-shadow:none;
  3613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3614. font-weight:500;
  3615. font-style:normal;
  3616. font-size:18px;
  3617. line-height:30px;
  3618. }
  3619. #u129083 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:2219px;
  3623. top:336px;
  3624. width:320px;
  3625. height:30px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3628. font-weight:500;
  3629. font-style:normal;
  3630. font-size:18px;
  3631. line-height:30px;
  3632. }
  3633. #u129083 .text {
  3634. position:absolute;
  3635. align-self:flex-start;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u129083_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. }
  3645. #u129084_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:950px;
  3651. height:193px;
  3652. background:inherit;
  3653. background-color:rgba(242, 242, 242, 1);
  3654. border:none;
  3655. border-radius:10px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. color:#AAAAAA;
  3664. text-align:center;
  3665. line-height:30px;
  3666. }
  3667. #u129084 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:2219px;
  3671. top:376px;
  3672. width:950px;
  3673. height:193px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:14px;
  3679. color:#AAAAAA;
  3680. text-align:center;
  3681. line-height:30px;
  3682. }
  3683. #u129084 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:5px 10px 5px 10px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u129084_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u129085_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:320px;
  3702. height:30px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 0);
  3705. border:none;
  3706. border-left:0px;
  3707. border-top:0px;
  3708. border-right:0px;
  3709. border-radius:0px;
  3710. border-bottom-right-radius:0px;
  3711. border-bottom-left-radius:0px;
  3712. -moz-box-shadow:none;
  3713. -webkit-box-shadow:none;
  3714. box-shadow:none;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:14px;
  3719. color:#7F7F7F;
  3720. line-height:30px;
  3721. }
  3722. #u129085 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:2266px;
  3726. top:397px;
  3727. width:320px;
  3728. height:30px;
  3729. display:flex;
  3730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3731. font-weight:400;
  3732. font-style:normal;
  3733. font-size:14px;
  3734. color:#7F7F7F;
  3735. line-height:30px;
  3736. }
  3737. #u129085 .text {
  3738. position:absolute;
  3739. align-self:flex-start;
  3740. padding:0px 0px 0px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u129085_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u129086 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:0px;
  3755. height:0px;
  3756. }
  3757. #u129087_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:40px;
  3763. height:40px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 0);
  3766. border:none;
  3767. border-top:0px;
  3768. border-right:0px;
  3769. border-bottom:0px;
  3770. border-radius:0px;
  3771. border-top-left-radius:0px;
  3772. border-bottom-left-radius:0px;
  3773. -moz-box-shadow:none;
  3774. -webkit-box-shadow:none;
  3775. box-shadow:none;
  3776. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3777. font-weight:500;
  3778. font-style:normal;
  3779. font-size:14px;
  3780. text-align:center;
  3781. }
  3782. #u129087 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:3149px;
  3786. top:49px;
  3787. width:40px;
  3788. height:40px;
  3789. display:flex;
  3790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3791. font-weight:500;
  3792. font-style:normal;
  3793. font-size:14px;
  3794. text-align:center;
  3795. }
  3796. #u129087 .text {
  3797. position:absolute;
  3798. align-self:center;
  3799. padding:5px 10px 5px 0px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u129087_text {
  3804. border-width:0px;
  3805. word-wrap:break-word;
  3806. text-transform:none;
  3807. }
  3808. #u129088_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:13px;
  3814. height:13px;
  3815. }
  3816. #u129088 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:3137px;
  3820. top:65px;
  3821. width:13px;
  3822. height:13px;
  3823. display:flex;
  3824. font-size:14px;
  3825. }
  3826. #u129088 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u129088_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u129089 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:0px;
  3845. height:0px;
  3846. }
  3847. #u129090_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:1000px;
  3853. height:645px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 1);
  3856. box-sizing:border-box;
  3857. border-width:1px;
  3858. border-style:solid;
  3859. border-color:rgba(215, 215, 215, 1);
  3860. border-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. }
  3865. #u129090 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:2189px;
  3869. top:605px;
  3870. width:1000px;
  3871. height:645px;
  3872. display:flex;
  3873. }
  3874. #u129090 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u129090_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u129091_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:103px;
  3893. height:24px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 0);
  3896. border:none;
  3897. border-top:0px;
  3898. border-right:0px;
  3899. border-bottom:0px;
  3900. border-radius:0px;
  3901. border-top-left-radius:0px;
  3902. border-bottom-left-radius:0px;
  3903. -moz-box-shadow:none;
  3904. -webkit-box-shadow:none;
  3905. box-shadow:none;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:10px;
  3910. color:#AAAAAA;
  3911. }
  3912. #u129091 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:2444px;
  3916. top:678px;
  3917. width:103px;
  3918. height:24px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:10px;
  3924. color:#AAAAAA;
  3925. }
  3926. #u129091 .text {
  3927. position:absolute;
  3928. align-self:flex-start;
  3929. padding:5px 0px 5px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u129091_text {
  3934. border-width:0px;
  3935. white-space:nowrap;
  3936. text-transform:none;
  3937. }
  3938. #u129092 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:0px;
  3944. height:0px;
  3945. }
  3946. #u129093_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:43px;
  3952. height:30px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 0);
  3955. border:none;
  3956. border-top:0px;
  3957. border-right:0px;
  3958. border-bottom:0px;
  3959. border-radius:0px;
  3960. border-top-left-radius:0px;
  3961. border-bottom-left-radius:0px;
  3962. -moz-box-shadow:none;
  3963. -webkit-box-shadow:none;
  3964. box-shadow:none;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. }
  3970. #u129093 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:2277px;
  3974. top:680px;
  3975. width:43px;
  3976. height:30px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:14px;
  3982. }
  3983. #u129093 .text {
  3984. position:absolute;
  3985. align-self:flex-start;
  3986. padding:0px 0px 0px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u129093_text {
  3991. border-width:0px;
  3992. white-space:nowrap;
  3993. text-transform:none;
  3994. }
  3995. #u129094_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:23px;
  4001. height:16px;
  4002. background:inherit;
  4003. background-color:rgba(255, 255, 255, 0);
  4004. border:none;
  4005. border-top:0px;
  4006. border-right:0px;
  4007. border-bottom:0px;
  4008. border-radius:0px;
  4009. border-top-left-radius:0px;
  4010. border-bottom-left-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:11px;
  4018. color:#AAAAAA;
  4019. }
  4020. #u129094 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:2277px;
  4024. top:708px;
  4025. width:23px;
  4026. height:16px;
  4027. display:flex;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:11px;
  4032. color:#AAAAAA;
  4033. }
  4034. #u129094 .text {
  4035. position:absolute;
  4036. align-self:flex-start;
  4037. padding:0px 0px 0px 0px;
  4038. box-sizing:border-box;
  4039. width:100%;
  4040. }
  4041. #u129094_text {
  4042. border-width:0px;
  4043. white-space:nowrap;
  4044. text-transform:none;
  4045. }
  4046. #u129095_div {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:43px;
  4052. height:20px;
  4053. background:inherit;
  4054. background-color:rgba(255, 255, 255, 0);
  4055. border:none;
  4056. border-top:0px;
  4057. border-right:0px;
  4058. border-bottom:0px;
  4059. border-radius:0px;
  4060. border-top-left-radius:0px;
  4061. border-bottom-left-radius:0px;
  4062. -moz-box-shadow:none;
  4063. -webkit-box-shadow:none;
  4064. box-shadow:none;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:14px;
  4069. }
  4070. #u129095 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:2277px;
  4074. top:750px;
  4075. width:43px;
  4076. height:20px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. }
  4083. #u129095 .text {
  4084. position:absolute;
  4085. align-self:flex-start;
  4086. padding:0px 0px 0px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u129095_text {
  4091. border-width:0px;
  4092. white-space:nowrap;
  4093. text-transform:none;
  4094. }
  4095. #u129096_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:63px;
  4101. height:16px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 0);
  4104. border:none;
  4105. border-top:0px;
  4106. border-right:0px;
  4107. border-bottom:0px;
  4108. border-radius:0px;
  4109. border-top-left-radius:0px;
  4110. border-bottom-left-radius:0px;
  4111. -moz-box-shadow:none;
  4112. -webkit-box-shadow:none;
  4113. box-shadow:none;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:11px;
  4118. color:#AAAAAA;
  4119. }
  4120. #u129096 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:2277px;
  4124. top:778px;
  4125. width:63px;
  4126. height:16px;
  4127. display:flex;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:11px;
  4132. color:#AAAAAA;
  4133. }
  4134. #u129096 .text {
  4135. position:absolute;
  4136. align-self:flex-start;
  4137. padding:0px 0px 0px 0px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u129096_text {
  4142. border-width:0px;
  4143. white-space:nowrap;
  4144. text-transform:none;
  4145. }
  4146. #u129097_div {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:37px;
  4152. height:35px;
  4153. background:inherit;
  4154. background-color:rgba(255, 255, 255, 0);
  4155. border:none;
  4156. border-top:0px;
  4157. border-right:0px;
  4158. border-bottom:0px;
  4159. border-radius:0px;
  4160. border-top-left-radius:0px;
  4161. border-bottom-left-radius:0px;
  4162. -moz-box-shadow:none;
  4163. -webkit-box-shadow:none;
  4164. box-shadow:none;
  4165. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4166. font-weight:500;
  4167. font-style:normal;
  4168. font-size:18px;
  4169. }
  4170. #u129097 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:2215px;
  4174. top:623px;
  4175. width:37px;
  4176. height:35px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4179. font-weight:500;
  4180. font-style:normal;
  4181. font-size:18px;
  4182. }
  4183. #u129097 .text {
  4184. position:absolute;
  4185. align-self:flex-start;
  4186. padding:5px 0px 5px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u129097_text {
  4191. border-width:0px;
  4192. white-space:nowrap;
  4193. text-transform:none;
  4194. }
  4195. #u129098 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:0px;
  4201. height:0px;
  4202. }
  4203. #u129099_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:2px;
  4209. height:32px;
  4210. }
  4211. #u129099 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:2254px;
  4215. top:714px;
  4216. width:1px;
  4217. height:31px;
  4218. display:flex;
  4219. }
  4220. #u129099 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 2px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u129099_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u129100 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:0px;
  4239. height:0px;
  4240. }
  4241. #u129101_div {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:30px;
  4247. height:30px;
  4248. background:inherit;
  4249. background-color:rgba(24, 144, 255, 1);
  4250. border:none;
  4251. border-radius:4px;
  4252. -moz-box-shadow:none;
  4253. -webkit-box-shadow:none;
  4254. box-shadow:none;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:10px;
  4259. color:#FFFFFF;
  4260. }
  4261. #u129101 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:2239px;
  4265. top:750px;
  4266. width:30px;
  4267. height:30px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:10px;
  4273. color:#FFFFFF;
  4274. }
  4275. #u129101 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u129101_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. }
  4287. #u129102 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:0px;
  4293. height:0px;
  4294. }
  4295. #u129103_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:9px;
  4301. height:9px;
  4302. }
  4303. #u129103 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:2260px;
  4307. top:772px;
  4308. width:9px;
  4309. height:9px;
  4310. display:flex;
  4311. }
  4312. #u129103 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u129103_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u129104_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:3px;
  4331. height:3px;
  4332. }
  4333. #u129104 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:2263px;
  4337. top:775px;
  4338. width:3px;
  4339. height:3px;
  4340. display:flex;
  4341. }
  4342. #u129104 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 2px 2px 2px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u129104_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. visibility:hidden;
  4354. }
  4355. #u129105 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:0px;
  4361. height:0px;
  4362. }
  4363. #u129106_div {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:30px;
  4369. height:30px;
  4370. background:inherit;
  4371. background-color:rgba(24, 144, 255, 1);
  4372. border:none;
  4373. border-radius:4px;
  4374. -moz-box-shadow:none;
  4375. -webkit-box-shadow:none;
  4376. box-shadow:none;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:12px;
  4381. color:#FFFFFF;
  4382. }
  4383. #u129106 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:2239px;
  4387. top:680px;
  4388. width:30px;
  4389. height:30px;
  4390. display:flex;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:12px;
  4395. color:#FFFFFF;
  4396. }
  4397. #u129106 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u129106_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. }
  4409. #u129107 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:0px;
  4415. height:0px;
  4416. }
  4417. #u129108_img {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:9px;
  4423. height:9px;
  4424. }
  4425. #u129108 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:2261px;
  4429. top:702px;
  4430. width:9px;
  4431. height:9px;
  4432. display:flex;
  4433. }
  4434. #u129108 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 2px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u129108_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u129109_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:5px;
  4453. height:4px;
  4454. }
  4455. #u129109 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:2263px;
  4459. top:705px;
  4460. width:5px;
  4461. height:4px;
  4462. display:flex;
  4463. }
  4464. #u129109 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 2px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u129109_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. visibility:hidden;
  4476. }
  4477. #u129110_div {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:103px;
  4483. height:24px;
  4484. background:inherit;
  4485. background-color:rgba(255, 255, 255, 0);
  4486. border:none;
  4487. border-top:0px;
  4488. border-right:0px;
  4489. border-bottom:0px;
  4490. border-radius:0px;
  4491. border-top-left-radius:0px;
  4492. border-bottom-left-radius:0px;
  4493. -moz-box-shadow:none;
  4494. -webkit-box-shadow:none;
  4495. box-shadow:none;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:10px;
  4500. color:#AAAAAA;
  4501. }
  4502. #u129110 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:2444px;
  4506. top:748px;
  4507. width:103px;
  4508. height:24px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:10px;
  4514. color:#AAAAAA;
  4515. }
  4516. #u129110 .text {
  4517. position:absolute;
  4518. align-self:flex-start;
  4519. padding:5px 0px 5px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u129110_text {
  4524. border-width:0px;
  4525. white-space:nowrap;
  4526. text-transform:none;
  4527. }
  4528. #u129111_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:108px;
  4534. height:108px;
  4535. }
  4536. #u129111 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:3033px;
  4540. top:119px;
  4541. width:108px;
  4542. height:108px;
  4543. display:flex;
  4544. -webkit-transform:rotate(315deg);
  4545. -moz-transform:rotate(315deg);
  4546. -ms-transform:rotate(315deg);
  4547. transform:rotate(315deg);
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:28px;
  4552. color:#D9001B;
  4553. }
  4554. #u129111 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 2px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u129111_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. }
  4566. #u129112 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:0px;
  4572. height:0px;
  4573. }
  4574. #u129113_div {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:1000px;
  4580. height:60px;
  4581. background:inherit;
  4582. background-color:rgba(255, 255, 255, 1);
  4583. box-sizing:border-box;
  4584. border-width:1px;
  4585. border-style:solid;
  4586. border-color:rgba(215, 215, 215, 1);
  4587. border-radius:0px;
  4588. -moz-box-shadow:none;
  4589. -webkit-box-shadow:none;
  4590. box-shadow:none;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. font-size:14px;
  4595. color:#AAAAAA;
  4596. text-align:center;
  4597. line-height:30px;
  4598. }
  4599. #u129113 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:2189px;
  4603. top:1190px;
  4604. width:1000px;
  4605. height:60px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:14px;
  4611. color:#AAAAAA;
  4612. text-align:center;
  4613. line-height:30px;
  4614. }
  4615. #u129113 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:5px 10px 5px 10px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u129113_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u129114_div {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:80px;
  4634. height:30px;
  4635. background:inherit;
  4636. background-color:rgba(255, 255, 255, 1);
  4637. box-sizing:border-box;
  4638. border-width:1px;
  4639. border-style:solid;
  4640. border-color:rgba(170, 170, 170, 1);
  4641. border-radius:4px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. }
  4650. #u129114 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:3083px;
  4654. top:1205px;
  4655. width:80px;
  4656. height:30px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:14px;
  4662. }
  4663. #u129114 .text {
  4664. position:absolute;
  4665. align-self:center;
  4666. padding:2px 2px 2px 2px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u129114_text {
  4671. border-width:0px;
  4672. word-wrap:break-word;
  4673. text-transform:none;
  4674. }
  4675. #u129115 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:0px;
  4681. height:0px;
  4682. }
  4683. #u129116_div {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:1000px;
  4689. height:1201px;
  4690. background:inherit;
  4691. background-color:rgba(242, 242, 242, 1);
  4692. box-sizing:border-box;
  4693. border-width:1px;
  4694. border-style:solid;
  4695. border-color:rgba(215, 215, 215, 1);
  4696. border-radius:0px;
  4697. -moz-box-shadow:none;
  4698. -webkit-box-shadow:none;
  4699. box-shadow:none;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:14px;
  4704. color:#AAAAAA;
  4705. text-align:center;
  4706. line-height:30px;
  4707. }
  4708. #u129116 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:3219px;
  4712. top:49px;
  4713. width:1000px;
  4714. height:1201px;
  4715. display:flex;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. color:#AAAAAA;
  4721. text-align:center;
  4722. line-height:30px;
  4723. }
  4724. #u129116 .text {
  4725. position:absolute;
  4726. align-self:center;
  4727. padding:5px 10px 5px 10px;
  4728. box-sizing:border-box;
  4729. width:100%;
  4730. }
  4731. #u129116_text {
  4732. border-width:0px;
  4733. word-wrap:break-word;
  4734. text-transform:none;
  4735. visibility:hidden;
  4736. }
  4737. #u129117_div {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:1000px;
  4743. height:200px;
  4744. background:inherit;
  4745. background-color:rgba(255, 255, 255, 1);
  4746. box-sizing:border-box;
  4747. border-width:1px;
  4748. border-style:solid;
  4749. border-color:rgba(215, 215, 215, 1);
  4750. border-radius:0px;
  4751. -moz-box-shadow:none;
  4752. -webkit-box-shadow:none;
  4753. box-shadow:none;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:14px;
  4758. color:#AAAAAA;
  4759. text-align:center;
  4760. line-height:30px;
  4761. }
  4762. #u129117 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:3219px;
  4766. top:49px;
  4767. width:1000px;
  4768. height:200px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. color:#AAAAAA;
  4775. text-align:center;
  4776. line-height:30px;
  4777. }
  4778. #u129117 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:5px 10px 5px 10px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u129117_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u129118_div {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:83px;
  4797. height:35px;
  4798. background:inherit;
  4799. background-color:rgba(255, 255, 255, 0);
  4800. border:none;
  4801. border-top:0px;
  4802. border-right:0px;
  4803. border-bottom:0px;
  4804. border-radius:0px;
  4805. border-top-left-radius:0px;
  4806. border-bottom-left-radius:0px;
  4807. -moz-box-shadow:none;
  4808. -webkit-box-shadow:none;
  4809. box-shadow:none;
  4810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4811. font-weight:500;
  4812. font-style:normal;
  4813. font-size:18px;
  4814. }
  4815. #u129118 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:3239px;
  4819. top:67px;
  4820. width:83px;
  4821. height:35px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4824. font-weight:500;
  4825. font-style:normal;
  4826. font-size:18px;
  4827. }
  4828. #u129118 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:5px 10px 5px 0px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u129118_text {
  4836. border-width:0px;
  4837. white-space:nowrap;
  4838. text-transform:none;
  4839. }
  4840. #u129119_div {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:275px;
  4846. height:43px;
  4847. background:inherit;
  4848. background-color:rgba(255, 255, 255, 0);
  4849. border:none;
  4850. border-top:0px;
  4851. border-right:0px;
  4852. border-bottom:0px;
  4853. border-radius:0px;
  4854. border-top-left-radius:0px;
  4855. border-bottom-left-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4860. font-weight:500;
  4861. font-style:normal;
  4862. font-size:24px;
  4863. }
  4864. #u129119 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:3249px;
  4868. top:118px;
  4869. width:275px;
  4870. height:43px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4873. font-weight:500;
  4874. font-style:normal;
  4875. font-size:24px;
  4876. }
  4877. #u129119 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:5px 10px 5px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u129119_text {
  4885. border-width:0px;
  4886. white-space:nowrap;
  4887. text-transform:none;
  4888. }
  4889. #u129120_div {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:325px;
  4895. height:60px;
  4896. background:inherit;
  4897. background-color:rgba(255, 255, 255, 0);
  4898. border:none;
  4899. border-left:0px;
  4900. border-top:0px;
  4901. border-right:0px;
  4902. border-radius:0px;
  4903. border-bottom-right-radius:0px;
  4904. border-bottom-left-radius:0px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:14px;
  4912. line-height:30px;
  4913. }
  4914. #u129120 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:3249px;
  4918. top:171px;
  4919. width:325px;
  4920. height:60px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. line-height:30px;
  4927. }
  4928. #u129120 .text {
  4929. position:absolute;
  4930. align-self:flex-start;
  4931. padding:0px 0px 0px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u129120_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. }
  4940. #u129121_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:1000px;
  4946. height:336px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 1);
  4949. box-sizing:border-box;
  4950. border-width:1px;
  4951. border-style:solid;
  4952. border-color:rgba(215, 215, 215, 1);
  4953. border-radius:0px;
  4954. -moz-box-shadow:none;
  4955. -webkit-box-shadow:none;
  4956. box-shadow:none;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:14px;
  4961. color:#AAAAAA;
  4962. text-align:center;
  4963. line-height:30px;
  4964. }
  4965. #u129121 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:3219px;
  4969. top:259px;
  4970. width:1000px;
  4971. height:336px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:14px;
  4977. color:#AAAAAA;
  4978. text-align:center;
  4979. line-height:30px;
  4980. }
  4981. #u129121 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:5px 10px 5px 10px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u129121_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. visibility:hidden;
  4993. }
  4994. #u129122_div {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:320px;
  5000. height:30px;
  5001. background:inherit;
  5002. background-color:rgba(255, 255, 255, 0);
  5003. border:none;
  5004. border-left:0px;
  5005. border-top:0px;
  5006. border-right:0px;
  5007. border-radius:0px;
  5008. border-bottom-right-radius:0px;
  5009. border-bottom-left-radius:0px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. line-height:30px;
  5018. }
  5019. #u129122 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:3249px;
  5023. top:292px;
  5024. width:320px;
  5025. height:30px;
  5026. display:flex;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:14px;
  5031. line-height:30px;
  5032. }
  5033. #u129122 .text {
  5034. position:absolute;
  5035. align-self:flex-start;
  5036. padding:0px 0px 0px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u129122_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. }
  5045. #u129123_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:320px;
  5051. height:30px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 0);
  5054. border:none;
  5055. border-left:0px;
  5056. border-top:0px;
  5057. border-right:0px;
  5058. border-radius:0px;
  5059. border-bottom-right-radius:0px;
  5060. border-bottom-left-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:14px;
  5068. line-height:30px;
  5069. }
  5070. #u129123 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:3569px;
  5074. top:292px;
  5075. width:320px;
  5076. height:30px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. line-height:30px;
  5083. }
  5084. #u129123 .text {
  5085. position:absolute;
  5086. align-self:flex-start;
  5087. padding:0px 0px 0px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u129123_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. }
  5096. #u129124_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:320px;
  5102. height:30px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border:none;
  5106. border-left:0px;
  5107. border-top:0px;
  5108. border-right:0px;
  5109. border-radius:0px;
  5110. border-bottom-right-radius:0px;
  5111. border-bottom-left-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:14px;
  5119. line-height:30px;
  5120. }
  5121. #u129124 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:3889px;
  5125. top:292px;
  5126. width:320px;
  5127. height:30px;
  5128. display:flex;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:14px;
  5133. line-height:30px;
  5134. }
  5135. #u129124 .text {
  5136. position:absolute;
  5137. align-self:flex-start;
  5138. padding:0px 0px 0px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u129124_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. }
  5147. #u129125_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:320px;
  5153. height:30px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 0);
  5156. border:none;
  5157. border-left:0px;
  5158. border-top:0px;
  5159. border-right:0px;
  5160. border-radius:0px;
  5161. border-bottom-right-radius:0px;
  5162. border-bottom-left-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5167. font-weight:500;
  5168. font-style:normal;
  5169. font-size:18px;
  5170. line-height:30px;
  5171. }
  5172. #u129125 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:3249px;
  5176. top:336px;
  5177. width:320px;
  5178. height:30px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5181. font-weight:500;
  5182. font-style:normal;
  5183. font-size:18px;
  5184. line-height:30px;
  5185. }
  5186. #u129125 .text {
  5187. position:absolute;
  5188. align-self:flex-start;
  5189. padding:0px 0px 0px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u129125_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. }
  5198. #u129126_div {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:950px;
  5204. height:193px;
  5205. background:inherit;
  5206. background-color:rgba(242, 242, 242, 1);
  5207. border:none;
  5208. border-radius:10px;
  5209. -moz-box-shadow:none;
  5210. -webkit-box-shadow:none;
  5211. box-shadow:none;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:14px;
  5216. color:#AAAAAA;
  5217. text-align:center;
  5218. line-height:30px;
  5219. }
  5220. #u129126 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:3249px;
  5224. top:376px;
  5225. width:950px;
  5226. height:193px;
  5227. display:flex;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:14px;
  5232. color:#AAAAAA;
  5233. text-align:center;
  5234. line-height:30px;
  5235. }
  5236. #u129126 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:5px 10px 5px 10px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u129126_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u129127_div {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:320px;
  5255. height:30px;
  5256. background:inherit;
  5257. background-color:rgba(255, 255, 255, 0);
  5258. border:none;
  5259. border-left:0px;
  5260. border-top:0px;
  5261. border-right:0px;
  5262. border-radius:0px;
  5263. border-bottom-right-radius:0px;
  5264. border-bottom-left-radius:0px;
  5265. -moz-box-shadow:none;
  5266. -webkit-box-shadow:none;
  5267. box-shadow:none;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. color:#7F7F7F;
  5273. line-height:30px;
  5274. }
  5275. #u129127 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:3296px;
  5279. top:397px;
  5280. width:320px;
  5281. height:30px;
  5282. display:flex;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:14px;
  5287. color:#7F7F7F;
  5288. line-height:30px;
  5289. }
  5290. #u129127 .text {
  5291. position:absolute;
  5292. align-self:flex-start;
  5293. padding:0px 0px 0px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u129127_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. }
  5302. #u129128 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:0px;
  5308. height:0px;
  5309. }
  5310. #u129129_div {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:40px;
  5316. height:40px;
  5317. background:inherit;
  5318. background-color:rgba(255, 255, 255, 0);
  5319. border:none;
  5320. border-top:0px;
  5321. border-right:0px;
  5322. border-bottom:0px;
  5323. border-radius:0px;
  5324. border-top-left-radius:0px;
  5325. border-bottom-left-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5330. font-weight:500;
  5331. font-style:normal;
  5332. font-size:14px;
  5333. text-align:center;
  5334. }
  5335. #u129129 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:4179px;
  5339. top:49px;
  5340. width:40px;
  5341. height:40px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5344. font-weight:500;
  5345. font-style:normal;
  5346. font-size:14px;
  5347. text-align:center;
  5348. }
  5349. #u129129 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:5px 10px 5px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u129129_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. }
  5361. #u129130_img {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:13px;
  5367. height:13px;
  5368. }
  5369. #u129130 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:4167px;
  5373. top:65px;
  5374. width:13px;
  5375. height:13px;
  5376. display:flex;
  5377. font-size:14px;
  5378. }
  5379. #u129130 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u129130_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u129131 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:0px;
  5398. height:0px;
  5399. }
  5400. #u129132_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:1000px;
  5406. height:645px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 1);
  5409. box-sizing:border-box;
  5410. border-width:1px;
  5411. border-style:solid;
  5412. border-color:rgba(215, 215, 215, 1);
  5413. border-radius:0px;
  5414. -moz-box-shadow:none;
  5415. -webkit-box-shadow:none;
  5416. box-shadow:none;
  5417. }
  5418. #u129132 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:3219px;
  5422. top:605px;
  5423. width:1000px;
  5424. height:645px;
  5425. display:flex;
  5426. }
  5427. #u129132 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u129132_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u129133_div {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:103px;
  5446. height:24px;
  5447. background:inherit;
  5448. background-color:rgba(255, 255, 255, 0);
  5449. border:none;
  5450. border-top:0px;
  5451. border-right:0px;
  5452. border-bottom:0px;
  5453. border-radius:0px;
  5454. border-top-left-radius:0px;
  5455. border-bottom-left-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:10px;
  5463. color:#AAAAAA;
  5464. }
  5465. #u129133 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:3474px;
  5469. top:678px;
  5470. width:103px;
  5471. height:24px;
  5472. display:flex;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:10px;
  5477. color:#AAAAAA;
  5478. }
  5479. #u129133 .text {
  5480. position:absolute;
  5481. align-self:flex-start;
  5482. padding:5px 0px 5px 0px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u129133_text {
  5487. border-width:0px;
  5488. white-space:nowrap;
  5489. text-transform:none;
  5490. }
  5491. #u129134 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:0px;
  5497. height:0px;
  5498. }
  5499. #u129135_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:43px;
  5505. height:30px;
  5506. background:inherit;
  5507. background-color:rgba(255, 255, 255, 0);
  5508. border:none;
  5509. border-top:0px;
  5510. border-right:0px;
  5511. border-bottom:0px;
  5512. border-radius:0px;
  5513. border-top-left-radius:0px;
  5514. border-bottom-left-radius:0px;
  5515. -moz-box-shadow:none;
  5516. -webkit-box-shadow:none;
  5517. box-shadow:none;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:14px;
  5522. }
  5523. #u129135 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:3307px;
  5527. top:680px;
  5528. width:43px;
  5529. height:30px;
  5530. display:flex;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:14px;
  5535. }
  5536. #u129135 .text {
  5537. position:absolute;
  5538. align-self:flex-start;
  5539. padding:0px 0px 0px 0px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u129135_text {
  5544. border-width:0px;
  5545. white-space:nowrap;
  5546. text-transform:none;
  5547. }
  5548. #u129136_div {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:23px;
  5554. height:16px;
  5555. background:inherit;
  5556. background-color:rgba(255, 255, 255, 0);
  5557. border:none;
  5558. border-top:0px;
  5559. border-right:0px;
  5560. border-bottom:0px;
  5561. border-radius:0px;
  5562. border-top-left-radius:0px;
  5563. border-bottom-left-radius:0px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:11px;
  5571. color:#AAAAAA;
  5572. }
  5573. #u129136 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:3307px;
  5577. top:708px;
  5578. width:23px;
  5579. height:16px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:11px;
  5585. color:#AAAAAA;
  5586. }
  5587. #u129136 .text {
  5588. position:absolute;
  5589. align-self:flex-start;
  5590. padding:0px 0px 0px 0px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u129136_text {
  5595. border-width:0px;
  5596. white-space:nowrap;
  5597. text-transform:none;
  5598. }
  5599. #u129137_div {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:43px;
  5605. height:20px;
  5606. background:inherit;
  5607. background-color:rgba(255, 255, 255, 0);
  5608. border:none;
  5609. border-top:0px;
  5610. border-right:0px;
  5611. border-bottom:0px;
  5612. border-radius:0px;
  5613. border-top-left-radius:0px;
  5614. border-bottom-left-radius:0px;
  5615. -moz-box-shadow:none;
  5616. -webkit-box-shadow:none;
  5617. box-shadow:none;
  5618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:14px;
  5622. }
  5623. #u129137 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:3307px;
  5627. top:750px;
  5628. width:43px;
  5629. height:20px;
  5630. display:flex;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. }
  5636. #u129137 .text {
  5637. position:absolute;
  5638. align-self:flex-start;
  5639. padding:0px 0px 0px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u129137_text {
  5644. border-width:0px;
  5645. white-space:nowrap;
  5646. text-transform:none;
  5647. }
  5648. #u129138_div {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:75px;
  5654. height:16px;
  5655. background:inherit;
  5656. background-color:rgba(255, 255, 255, 0);
  5657. border:none;
  5658. border-top:0px;
  5659. border-right:0px;
  5660. border-bottom:0px;
  5661. border-radius:0px;
  5662. border-top-left-radius:0px;
  5663. border-bottom-left-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:11px;
  5671. color:#AAAAAA;
  5672. }
  5673. #u129138 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:3307px;
  5677. top:778px;
  5678. width:75px;
  5679. height:16px;
  5680. display:flex;
  5681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:11px;
  5685. color:#AAAAAA;
  5686. }
  5687. #u129138 .text {
  5688. position:absolute;
  5689. align-self:flex-start;
  5690. padding:0px 0px 0px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u129138_text {
  5695. border-width:0px;
  5696. white-space:nowrap;
  5697. text-transform:none;
  5698. }
  5699. #u129139_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:37px;
  5705. height:35px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 0);
  5708. border:none;
  5709. border-top:0px;
  5710. border-right:0px;
  5711. border-bottom:0px;
  5712. border-radius:0px;
  5713. border-top-left-radius:0px;
  5714. border-bottom-left-radius:0px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5719. font-weight:500;
  5720. font-style:normal;
  5721. font-size:18px;
  5722. }
  5723. #u129139 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:3245px;
  5727. top:623px;
  5728. width:37px;
  5729. height:35px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5732. font-weight:500;
  5733. font-style:normal;
  5734. font-size:18px;
  5735. }
  5736. #u129139 .text {
  5737. position:absolute;
  5738. align-self:flex-start;
  5739. padding:5px 0px 5px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u129139_text {
  5744. border-width:0px;
  5745. white-space:nowrap;
  5746. text-transform:none;
  5747. }
  5748. #u129140 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:0px;
  5754. height:0px;
  5755. }
  5756. #u129141_img {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:2px;
  5762. height:32px;
  5763. }
  5764. #u129141 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:3284px;
  5768. top:714px;
  5769. width:1px;
  5770. height:31px;
  5771. display:flex;
  5772. }
  5773. #u129141 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:2px 2px 2px 2px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u129141_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. visibility:hidden;
  5785. }
  5786. #u129142 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:0px;
  5792. height:0px;
  5793. }
  5794. #u129143_div {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:30px;
  5800. height:30px;
  5801. background:inherit;
  5802. background-color:rgba(24, 144, 255, 1);
  5803. border:none;
  5804. border-radius:4px;
  5805. -moz-box-shadow:none;
  5806. -webkit-box-shadow:none;
  5807. box-shadow:none;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:10px;
  5812. color:#FFFFFF;
  5813. }
  5814. #u129143 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:3269px;
  5818. top:750px;
  5819. width:30px;
  5820. height:30px;
  5821. display:flex;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:10px;
  5826. color:#FFFFFF;
  5827. }
  5828. #u129143 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 2px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u129143_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. }
  5840. #u129144 {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:0px;
  5846. height:0px;
  5847. }
  5848. #u129145_div {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:30px;
  5854. height:30px;
  5855. background:inherit;
  5856. background-color:rgba(24, 144, 255, 1);
  5857. border:none;
  5858. border-radius:4px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#FFFFFF;
  5867. }
  5868. #u129145 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:3269px;
  5872. top:680px;
  5873. width:30px;
  5874. height:30px;
  5875. display:flex;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#FFFFFF;
  5881. }
  5882. #u129145 .text {
  5883. position:absolute;
  5884. align-self:center;
  5885. padding:2px 2px 2px 2px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u129145_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. }
  5894. #u129146 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:0px;
  5900. height:0px;
  5901. }
  5902. #u129147_img {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:9px;
  5908. height:9px;
  5909. }
  5910. #u129147 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:3291px;
  5914. top:702px;
  5915. width:9px;
  5916. height:9px;
  5917. display:flex;
  5918. }
  5919. #u129147 .text {
  5920. position:absolute;
  5921. align-self:center;
  5922. padding:2px 2px 2px 2px;
  5923. box-sizing:border-box;
  5924. width:100%;
  5925. }
  5926. #u129147_text {
  5927. border-width:0px;
  5928. word-wrap:break-word;
  5929. text-transform:none;
  5930. visibility:hidden;
  5931. }
  5932. #u129148_img {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:5px;
  5938. height:4px;
  5939. }
  5940. #u129148 {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:3293px;
  5944. top:705px;
  5945. width:5px;
  5946. height:4px;
  5947. display:flex;
  5948. }
  5949. #u129148 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u129148_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u129149_img {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:2px;
  5968. height:32px;
  5969. }
  5970. #u129149 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:3284px;
  5974. top:790px;
  5975. width:1px;
  5976. height:31px;
  5977. display:flex;
  5978. }
  5979. #u129149 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u129149_text {
  5987. border-width:0px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u129150 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. }
  6000. #u129151_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:30px;
  6006. height:30px;
  6007. background:inherit;
  6008. background-color:rgba(24, 144, 255, 1);
  6009. border:none;
  6010. border-radius:4px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:10px;
  6018. color:#FFFFFF;
  6019. }
  6020. #u129151 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:3269px;
  6024. top:826px;
  6025. width:30px;
  6026. height:30px;
  6027. display:flex;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:10px;
  6032. color:#FFFFFF;
  6033. }
  6034. #u129151 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:2px 2px 2px 2px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u129151_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. }
  6046. #u129152_div {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:103px;
  6052. height:24px;
  6053. background:inherit;
  6054. background-color:rgba(255, 255, 255, 0);
  6055. border:none;
  6056. border-top:0px;
  6057. border-right:0px;
  6058. border-bottom:0px;
  6059. border-radius:0px;
  6060. border-top-left-radius:0px;
  6061. border-bottom-left-radius:0px;
  6062. -moz-box-shadow:none;
  6063. -webkit-box-shadow:none;
  6064. box-shadow:none;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:10px;
  6069. color:#AAAAAA;
  6070. }
  6071. #u129152 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:3474px;
  6075. top:748px;
  6076. width:103px;
  6077. height:24px;
  6078. display:flex;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:10px;
  6083. color:#AAAAAA;
  6084. }
  6085. #u129152 .text {
  6086. position:absolute;
  6087. align-self:flex-start;
  6088. padding:5px 0px 5px 0px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u129152_text {
  6093. border-width:0px;
  6094. white-space:nowrap;
  6095. text-transform:none;
  6096. }
  6097. #u129153_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:78px;
  6103. height:16px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 0);
  6106. border:none;
  6107. border-top:0px;
  6108. border-right:0px;
  6109. border-bottom:0px;
  6110. border-radius:0px;
  6111. border-top-left-radius:0px;
  6112. border-bottom-left-radius:0px;
  6113. -moz-box-shadow:none;
  6114. -webkit-box-shadow:none;
  6115. box-shadow:none;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:11px;
  6120. color:#AAAAAA;
  6121. }
  6122. #u129153 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:3307px;
  6126. top:826px;
  6127. width:78px;
  6128. height:16px;
  6129. display:flex;
  6130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:11px;
  6134. color:#AAAAAA;
  6135. }
  6136. #u129153 .text {
  6137. position:absolute;
  6138. align-self:flex-start;
  6139. padding:0px 0px 0px 0px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u129153_text {
  6144. border-width:0px;
  6145. white-space:nowrap;
  6146. text-transform:none;
  6147. }
  6148. #u129154_div {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:103px;
  6154. height:24px;
  6155. background:inherit;
  6156. background-color:rgba(255, 255, 255, 0);
  6157. border:none;
  6158. border-top:0px;
  6159. border-right:0px;
  6160. border-bottom:0px;
  6161. border-radius:0px;
  6162. border-top-left-radius:0px;
  6163. border-bottom-left-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:10px;
  6171. color:#AAAAAA;
  6172. }
  6173. #u129154 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:3474px;
  6177. top:822px;
  6178. width:103px;
  6179. height:24px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:10px;
  6185. color:#AAAAAA;
  6186. }
  6187. #u129154 .text {
  6188. position:absolute;
  6189. align-self:flex-start;
  6190. padding:5px 0px 5px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u129154_text {
  6195. border-width:0px;
  6196. white-space:nowrap;
  6197. text-transform:none;
  6198. }
  6199. #u129155_img {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:108px;
  6205. height:108px;
  6206. }
  6207. #u129155 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:4063px;
  6211. top:119px;
  6212. width:108px;
  6213. height:108px;
  6214. display:flex;
  6215. -webkit-transform:rotate(315deg);
  6216. -moz-transform:rotate(315deg);
  6217. -ms-transform:rotate(315deg);
  6218. transform:rotate(315deg);
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:28px;
  6223. }
  6224. #u129155 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:2px 2px 2px 2px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u129155_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. }
  6236. #u129156 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:0px;
  6242. height:0px;
  6243. }
  6244. #u129157_div {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:1000px;
  6250. height:60px;
  6251. background:inherit;
  6252. background-color:rgba(255, 255, 255, 1);
  6253. box-sizing:border-box;
  6254. border-width:1px;
  6255. border-style:solid;
  6256. border-color:rgba(215, 215, 215, 1);
  6257. border-radius:0px;
  6258. -moz-box-shadow:none;
  6259. -webkit-box-shadow:none;
  6260. box-shadow:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:14px;
  6265. color:#AAAAAA;
  6266. text-align:center;
  6267. line-height:30px;
  6268. }
  6269. #u129157 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:3219px;
  6273. top:1190px;
  6274. width:1000px;
  6275. height:60px;
  6276. display:flex;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:14px;
  6281. color:#AAAAAA;
  6282. text-align:center;
  6283. line-height:30px;
  6284. }
  6285. #u129157 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:5px 10px 5px 10px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u129157_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u129158_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:80px;
  6304. height:30px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 1);
  6307. box-sizing:border-box;
  6308. border-width:1px;
  6309. border-style:solid;
  6310. border-color:rgba(170, 170, 170, 1);
  6311. border-radius:4px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:14px;
  6319. }
  6320. #u129158 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:4113px;
  6324. top:1205px;
  6325. width:80px;
  6326. height:30px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:14px;
  6332. }
  6333. #u129158 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 2px 2px 2px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u129158_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. }