styles.css 151 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1814px;
  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. #u128533_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u128533 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u128533 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u128533_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u128534_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u128534 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u128534 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u128534_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u128535 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u128536_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u128536 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u128536 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u128536_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u128537 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u128538_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u128538 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u128538 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u128538_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u128539_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u128539 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u128539 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u128539_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u128540 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u128541_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u128541 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u128541 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u128541_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u128542_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u128542 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u128542 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u128542_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u128543_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u128543 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u128543 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u128543_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u128544_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u128544 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u128544 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u128544_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u128545_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u128545 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u128545 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u128545_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u128546_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u128546 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u128546 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u128546_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u128547 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u128548_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u128548 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u128548 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u128548_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u128549_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u128549 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u128549 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u128549_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u128550 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u128551_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u128551 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u128551 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u128551_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u128552_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u128552 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u128552 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u128552_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u128553_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u128553 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u128553 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u128553_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u128554 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u128555_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u128555 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u128555 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u128555_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u128556_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u128556 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u128556 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u128556_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u128557 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u128558_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u128558 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u128558 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u128558_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u128559_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u128559 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u128559 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u128559_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u128560_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u128560 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u128560 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u128560_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u128561_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u128561 {
  845. border-width:0px;
  846. position:absolute;
  847. left:188px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u128561 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u128561_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u128562 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u128563_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u128563 {
  887. border-width:0px;
  888. position:absolute;
  889. left:46px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u128563 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u128563_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u128564 {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:0px;
  914. height:0px;
  915. }
  916. #u128565_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:358px;
  922. height:120px;
  923. background:inherit;
  924. background-color:rgba(255, 255, 255, 1);
  925. border:none;
  926. border-radius:4px;
  927. -moz-box-shadow:none;
  928. -webkit-box-shadow:none;
  929. box-shadow:none;
  930. }
  931. #u128565 {
  932. border-width:0px;
  933. position:absolute;
  934. left:38px;
  935. top:115px;
  936. width:358px;
  937. height:120px;
  938. display:flex;
  939. }
  940. #u128565 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u128565_text {
  948. border-width:0px;
  949. word-wrap:break-word;
  950. text-transform:none;
  951. visibility:hidden;
  952. }
  953. #u128566_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:48px;
  959. height:50px;
  960. background:inherit;
  961. background-color:rgba(24, 144, 255, 1);
  962. border:none;
  963. border-radius:4px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. color:#FFFFFF;
  971. }
  972. #u128566 {
  973. border-width:0px;
  974. position:absolute;
  975. left:54px;
  976. top:135px;
  977. width:48px;
  978. height:50px;
  979. display:flex;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. color:#FFFFFF;
  984. }
  985. #u128566 .text {
  986. position:absolute;
  987. align-self:center;
  988. padding:2px 2px 2px 2px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u128566_text {
  993. border-width:0px;
  994. word-wrap:break-word;
  995. text-transform:none;
  996. }
  997. #u128567_div {
  998. border-width:0px;
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:235px;
  1003. height:30px;
  1004. background:inherit;
  1005. background-color:rgba(255, 255, 255, 0);
  1006. border:none;
  1007. border-left:0px;
  1008. border-top:0px;
  1009. border-right:0px;
  1010. border-radius:0px;
  1011. border-bottom-right-radius:0px;
  1012. border-bottom-left-radius:0px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:18px;
  1020. line-height:30px;
  1021. }
  1022. #u128567 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:116px;
  1026. top:135px;
  1027. width:235px;
  1028. height:30px;
  1029. display:flex;
  1030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. font-size:18px;
  1034. line-height:30px;
  1035. }
  1036. #u128567 .text {
  1037. position:absolute;
  1038. align-self:flex-start;
  1039. padding:0px 0px 0px 0px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u128567_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u128568_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:81px;
  1054. height:17px;
  1055. }
  1056. #u128568 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:116px;
  1060. top:203px;
  1061. width:81px;
  1062. height:17px;
  1063. display:flex;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. font-size:12px;
  1068. color:#AAAAAA;
  1069. }
  1070. #u128568 .text {
  1071. position:absolute;
  1072. align-self:center;
  1073. padding:0px 0px 0px 0px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u128568_text {
  1078. border-width:0px;
  1079. white-space:nowrap;
  1080. text-transform:none;
  1081. }
  1082. #u128569 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:0px;
  1088. height:0px;
  1089. }
  1090. #u128570_div {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:60px;
  1096. height:20px;
  1097. background:inherit;
  1098. background-color:rgba(255, 255, 255, 1);
  1099. box-sizing:border-box;
  1100. border-width:1px;
  1101. border-style:solid;
  1102. border-color:rgba(215, 215, 215, 1);
  1103. border-radius:2px;
  1104. -moz-box-shadow:none;
  1105. -webkit-box-shadow:none;
  1106. box-shadow:none;
  1107. }
  1108. #u128570 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:116px;
  1112. top:170px;
  1113. width:60px;
  1114. height:20px;
  1115. display:flex;
  1116. }
  1117. #u128570 .text {
  1118. position:absolute;
  1119. align-self:center;
  1120. padding:2px 2px 2px 2px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u128570_text {
  1125. border-width:0px;
  1126. word-wrap:break-word;
  1127. text-transform:none;
  1128. visibility:hidden;
  1129. }
  1130. #u128571 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:0px;
  1134. top:0px;
  1135. width:0px;
  1136. height:0px;
  1137. }
  1138. #u128572_div {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:37px;
  1144. height:17px;
  1145. background:inherit;
  1146. background-color:rgba(255, 255, 255, 0);
  1147. border:none;
  1148. border-left:0px;
  1149. border-top:0px;
  1150. border-right:0px;
  1151. border-radius:0px;
  1152. border-bottom-right-radius:0px;
  1153. border-bottom-left-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:12px;
  1161. color:#7F7F7F;
  1162. }
  1163. #u128572 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:135px;
  1167. top:172px;
  1168. width:37px;
  1169. height:17px;
  1170. display:flex;
  1171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:12px;
  1175. color:#7F7F7F;
  1176. }
  1177. #u128572 .text {
  1178. position:absolute;
  1179. align-self:flex-start;
  1180. padding:0px 0px 0px 0px;
  1181. box-sizing:border-box;
  1182. width:100%;
  1183. }
  1184. #u128572_text {
  1185. border-width:0px;
  1186. white-space:nowrap;
  1187. text-transform:none;
  1188. }
  1189. #u128573 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:0px;
  1195. height:0px;
  1196. }
  1197. #u128574_img {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:12px;
  1203. height:12px;
  1204. }
  1205. #u128574 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:120px;
  1209. top:174px;
  1210. width:12px;
  1211. height:12px;
  1212. display:flex;
  1213. }
  1214. #u128574 .text {
  1215. position:absolute;
  1216. align-self:center;
  1217. padding:2px 2px 2px 2px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u128574_text {
  1222. border-width:0px;
  1223. word-wrap:break-word;
  1224. text-transform:none;
  1225. visibility:hidden;
  1226. }
  1227. #u128575_img {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:0px;
  1231. top:0px;
  1232. width:6px;
  1233. height:4px;
  1234. }
  1235. #u128575 {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:123px;
  1239. top:178px;
  1240. width:6px;
  1241. height:4px;
  1242. display:flex;
  1243. }
  1244. #u128575 .text {
  1245. position:absolute;
  1246. align-self:center;
  1247. padding:2px 2px 2px 2px;
  1248. box-sizing:border-box;
  1249. width:100%;
  1250. }
  1251. #u128575_text {
  1252. border-width:0px;
  1253. word-wrap:break-word;
  1254. text-transform:none;
  1255. visibility:hidden;
  1256. }
  1257. #u128576_img {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:0px;
  1261. top:0px;
  1262. width:61px;
  1263. height:17px;
  1264. }
  1265. #u128576 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:335px;
  1269. top:115px;
  1270. width:61px;
  1271. height:17px;
  1272. display:flex;
  1273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1274. font-weight:400;
  1275. font-style:normal;
  1276. font-size:12px;
  1277. color:#FFFFFF;
  1278. }
  1279. #u128576 .text {
  1280. position:absolute;
  1281. align-self:center;
  1282. padding:0px 0px 0px 0px;
  1283. box-sizing:border-box;
  1284. width:100%;
  1285. }
  1286. #u128576_text {
  1287. border-width:0px;
  1288. white-space:nowrap;
  1289. text-transform:none;
  1290. }
  1291. #u128577 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:0px;
  1295. top:0px;
  1296. width:0px;
  1297. height:0px;
  1298. }
  1299. #u128578_div {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:358px;
  1305. height:120px;
  1306. background:inherit;
  1307. background-color:rgba(255, 255, 255, 1);
  1308. border:none;
  1309. border-radius:4px;
  1310. -moz-box-shadow:none;
  1311. -webkit-box-shadow:none;
  1312. box-shadow:none;
  1313. }
  1314. #u128578 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:38px;
  1318. top:245px;
  1319. width:358px;
  1320. height:120px;
  1321. display:flex;
  1322. }
  1323. #u128578 .text {
  1324. position:absolute;
  1325. align-self:center;
  1326. padding:2px 2px 2px 2px;
  1327. box-sizing:border-box;
  1328. width:100%;
  1329. }
  1330. #u128578_text {
  1331. border-width:0px;
  1332. word-wrap:break-word;
  1333. text-transform:none;
  1334. visibility:hidden;
  1335. }
  1336. #u128579_div {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:48px;
  1342. height:50px;
  1343. background:inherit;
  1344. background-color:rgba(24, 144, 255, 1);
  1345. border:none;
  1346. border-radius:4px;
  1347. -moz-box-shadow:none;
  1348. -webkit-box-shadow:none;
  1349. box-shadow:none;
  1350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. color:#FFFFFF;
  1354. }
  1355. #u128579 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:54px;
  1359. top:265px;
  1360. width:48px;
  1361. height:50px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. color:#FFFFFF;
  1367. }
  1368. #u128579 .text {
  1369. position:absolute;
  1370. align-self:center;
  1371. padding:2px 2px 2px 2px;
  1372. box-sizing:border-box;
  1373. width:100%;
  1374. }
  1375. #u128579_text {
  1376. border-width:0px;
  1377. word-wrap:break-word;
  1378. text-transform:none;
  1379. }
  1380. #u128580_div {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:199px;
  1386. height:30px;
  1387. background:inherit;
  1388. background-color:rgba(255, 255, 255, 0);
  1389. border:none;
  1390. border-left:0px;
  1391. border-top:0px;
  1392. border-right:0px;
  1393. border-radius:0px;
  1394. border-bottom-right-radius:0px;
  1395. border-bottom-left-radius:0px;
  1396. -moz-box-shadow:none;
  1397. -webkit-box-shadow:none;
  1398. box-shadow:none;
  1399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1400. font-weight:400;
  1401. font-style:normal;
  1402. font-size:18px;
  1403. line-height:30px;
  1404. }
  1405. #u128580 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:116px;
  1409. top:265px;
  1410. width:199px;
  1411. height:30px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:18px;
  1417. line-height:30px;
  1418. }
  1419. #u128580 .text {
  1420. position:absolute;
  1421. align-self:flex-start;
  1422. padding:0px 0px 0px 0px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u128580_text {
  1427. border-width:0px;
  1428. white-space:nowrap;
  1429. text-transform:none;
  1430. }
  1431. #u128581_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:25px;
  1437. height:17px;
  1438. }
  1439. #u128581 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:116px;
  1443. top:333px;
  1444. width:25px;
  1445. height:17px;
  1446. display:flex;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:12px;
  1451. color:#AAAAAA;
  1452. }
  1453. #u128581 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:0px 0px 0px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u128581_text {
  1461. border-width:0px;
  1462. white-space:nowrap;
  1463. text-transform:none;
  1464. }
  1465. #u128582 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. height:0px;
  1472. }
  1473. #u128583_div {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:60px;
  1479. height:20px;
  1480. background:inherit;
  1481. background-color:rgba(255, 255, 255, 1);
  1482. box-sizing:border-box;
  1483. border-width:1px;
  1484. border-style:solid;
  1485. border-color:rgba(215, 215, 215, 1);
  1486. border-radius:2px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u128583 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:116px;
  1495. top:300px;
  1496. width:60px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u128583 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 2px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u128583_text {
  1508. border-width:0px;
  1509. word-wrap:break-word;
  1510. text-transform:none;
  1511. visibility:hidden;
  1512. }
  1513. #u128584 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:0px;
  1517. top:0px;
  1518. width:0px;
  1519. height:0px;
  1520. }
  1521. #u128585_div {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:37px;
  1527. height:17px;
  1528. background:inherit;
  1529. background-color:rgba(255, 255, 255, 0);
  1530. border:none;
  1531. border-left:0px;
  1532. border-top:0px;
  1533. border-right:0px;
  1534. border-radius:0px;
  1535. border-bottom-right-radius:0px;
  1536. border-bottom-left-radius:0px;
  1537. -moz-box-shadow:none;
  1538. -webkit-box-shadow:none;
  1539. box-shadow:none;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:12px;
  1544. color:#7F7F7F;
  1545. }
  1546. #u128585 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:135px;
  1550. top:302px;
  1551. width:37px;
  1552. height:17px;
  1553. display:flex;
  1554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1555. font-weight:400;
  1556. font-style:normal;
  1557. font-size:12px;
  1558. color:#7F7F7F;
  1559. }
  1560. #u128585 .text {
  1561. position:absolute;
  1562. align-self:flex-start;
  1563. padding:0px 0px 0px 0px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u128585_text {
  1568. border-width:0px;
  1569. white-space:nowrap;
  1570. text-transform:none;
  1571. }
  1572. #u128586 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:0px;
  1578. height:0px;
  1579. }
  1580. #u128587_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:12px;
  1586. height:12px;
  1587. }
  1588. #u128587 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:120px;
  1592. top:304px;
  1593. width:12px;
  1594. height:12px;
  1595. display:flex;
  1596. }
  1597. #u128587 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:2px 2px 2px 2px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u128587_text {
  1605. border-width:0px;
  1606. word-wrap:break-word;
  1607. text-transform:none;
  1608. visibility:hidden;
  1609. }
  1610. #u128588_img {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:6px;
  1616. height:4px;
  1617. }
  1618. #u128588 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:123px;
  1622. top:308px;
  1623. width:6px;
  1624. height:4px;
  1625. display:flex;
  1626. }
  1627. #u128588 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 2px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u128588_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u128589_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:85px;
  1646. height:17px;
  1647. }
  1648. #u128589 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:311px;
  1652. top:245px;
  1653. width:85px;
  1654. height:17px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#FFFFFF;
  1661. }
  1662. #u128589 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:0px 0px 0px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u128589_text {
  1670. border-width:0px;
  1671. white-space:nowrap;
  1672. text-transform:none;
  1673. }
  1674. #u128590 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:0px;
  1680. height:0px;
  1681. }
  1682. #u128591_div {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:358px;
  1688. height:120px;
  1689. background:inherit;
  1690. background-color:rgba(255, 255, 255, 1);
  1691. border:none;
  1692. border-radius:4px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. }
  1697. #u128591 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:38px;
  1701. top:375px;
  1702. width:358px;
  1703. height:120px;
  1704. display:flex;
  1705. }
  1706. #u128591 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u128591_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u128592_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:48px;
  1725. height:50px;
  1726. background:inherit;
  1727. background-color:rgba(24, 144, 255, 1);
  1728. border:none;
  1729. border-radius:4px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. color:#FFFFFF;
  1737. }
  1738. #u128592 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:54px;
  1742. top:395px;
  1743. width:48px;
  1744. height:50px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. color:#FFFFFF;
  1750. }
  1751. #u128592 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u128592_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u128593_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:127px;
  1769. height:30px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 0);
  1772. border:none;
  1773. border-left:0px;
  1774. border-top:0px;
  1775. border-right:0px;
  1776. border-radius:0px;
  1777. border-bottom-right-radius:0px;
  1778. border-bottom-left-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:18px;
  1786. line-height:30px;
  1787. }
  1788. #u128593 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:116px;
  1792. top:395px;
  1793. width:127px;
  1794. height:30px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:18px;
  1800. line-height:30px;
  1801. }
  1802. #u128593 .text {
  1803. position:absolute;
  1804. align-self:flex-start;
  1805. padding:0px 0px 0px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u128593_text {
  1810. border-width:0px;
  1811. white-space:nowrap;
  1812. text-transform:none;
  1813. }
  1814. #u128594_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:25px;
  1820. height:17px;
  1821. }
  1822. #u128594 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:116px;
  1826. top:463px;
  1827. width:25px;
  1828. height:17px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#AAAAAA;
  1835. }
  1836. #u128594 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:0px 0px 0px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u128594_text {
  1844. border-width:0px;
  1845. white-space:nowrap;
  1846. text-transform:none;
  1847. }
  1848. #u128595 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:0px;
  1854. height:0px;
  1855. }
  1856. #u128596_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:60px;
  1862. height:20px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 1);
  1865. box-sizing:border-box;
  1866. border-width:1px;
  1867. border-style:solid;
  1868. border-color:rgba(215, 215, 215, 1);
  1869. border-radius:2px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. }
  1874. #u128596 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:116px;
  1878. top:425px;
  1879. width:60px;
  1880. height:20px;
  1881. display:flex;
  1882. }
  1883. #u128596 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u128596_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u128597 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:0px;
  1902. height:0px;
  1903. }
  1904. #u128598_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:37px;
  1910. height:17px;
  1911. background:inherit;
  1912. background-color:rgba(255, 255, 255, 0);
  1913. border:none;
  1914. border-left:0px;
  1915. border-top:0px;
  1916. border-right:0px;
  1917. border-radius:0px;
  1918. border-bottom-right-radius:0px;
  1919. border-bottom-left-radius:0px;
  1920. -moz-box-shadow:none;
  1921. -webkit-box-shadow:none;
  1922. box-shadow:none;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. color:#7F7F7F;
  1928. }
  1929. #u128598 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:135px;
  1933. top:427px;
  1934. width:37px;
  1935. height:17px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#7F7F7F;
  1942. }
  1943. #u128598 .text {
  1944. position:absolute;
  1945. align-self:flex-start;
  1946. padding:0px 0px 0px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u128598_text {
  1951. border-width:0px;
  1952. white-space:nowrap;
  1953. text-transform:none;
  1954. }
  1955. #u128599 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:0px;
  1961. height:0px;
  1962. }
  1963. #u128600_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:12px;
  1969. height:12px;
  1970. }
  1971. #u128600 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:120px;
  1975. top:429px;
  1976. width:12px;
  1977. height:12px;
  1978. display:flex;
  1979. }
  1980. #u128600 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u128600_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. visibility:hidden;
  1992. }
  1993. #u128601_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:6px;
  1999. height:4px;
  2000. }
  2001. #u128601 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:123px;
  2005. top:433px;
  2006. width:6px;
  2007. height:4px;
  2008. display:flex;
  2009. }
  2010. #u128601 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 2px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u128601_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. visibility:hidden;
  2022. }
  2023. #u128602_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:85px;
  2029. height:17px;
  2030. }
  2031. #u128602 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:311px;
  2035. top:375px;
  2036. width:85px;
  2037. height:17px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u128602 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:0px 0px 0px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u128602_text {
  2053. border-width:0px;
  2054. white-space:nowrap;
  2055. text-transform:none;
  2056. }
  2057. #u128604_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:433px;
  2063. height:865px;
  2064. }
  2065. #u128604 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:453px;
  2069. top:0px;
  2070. width:433px;
  2071. height:865px;
  2072. display:flex;
  2073. }
  2074. #u128604 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 2px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u128604_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. visibility:hidden;
  2086. }
  2087. #u128605_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:375px;
  2093. height:40px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 1);
  2096. box-sizing:border-box;
  2097. border-width:1px;
  2098. border-style:solid;
  2099. border-color:rgba(215, 215, 215, 1);
  2100. border-left:0px;
  2101. border-top:0px;
  2102. border-right:0px;
  2103. border-radius:0px;
  2104. border-bottom-right-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. }
  2110. #u128605 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:482px;
  2114. top:67px;
  2115. width:375px;
  2116. height:40px;
  2117. display:flex;
  2118. }
  2119. #u128605 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 2px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u128605_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. visibility:hidden;
  2131. }
  2132. #u128606 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:0px;
  2138. height:0px;
  2139. }
  2140. #u128607_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:88px;
  2146. height:32px;
  2147. background:inherit;
  2148. background-color:rgba(255, 255, 255, 1);
  2149. box-sizing:border-box;
  2150. border-width:1px;
  2151. border-style:solid;
  2152. border-color:rgba(242, 242, 242, 1);
  2153. border-radius:33px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. }
  2158. #u128607 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:762px;
  2162. top:71px;
  2163. width:88px;
  2164. height:32px;
  2165. display:flex;
  2166. }
  2167. #u128607 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u128607_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u128608 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:0px;
  2186. height:0px;
  2187. }
  2188. #u128609_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:18px;
  2194. height:18px;
  2195. }
  2196. #u128609 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:825px;
  2200. top:78px;
  2201. width:18px;
  2202. height:18px;
  2203. display:flex;
  2204. }
  2205. #u128609 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u128609_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u128610_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:6px;
  2224. height:6px;
  2225. }
  2226. #u128610 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:831px;
  2230. top:84px;
  2231. width:6px;
  2232. height:6px;
  2233. display:flex;
  2234. }
  2235. #u128610 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 2px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u128610_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u128611 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:0px;
  2254. height:0px;
  2255. }
  2256. #u128612_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:5px;
  2262. height:5px;
  2263. }
  2264. #u128612 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:776px;
  2268. top:85px;
  2269. width:5px;
  2270. height:5px;
  2271. display:flex;
  2272. }
  2273. #u128612 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u128612_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u128613_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:5px;
  2292. height:5px;
  2293. }
  2294. #u128613 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:792px;
  2298. top:85px;
  2299. width:5px;
  2300. height:5px;
  2301. display:flex;
  2302. }
  2303. #u128613 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u128613_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u128614_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:7px;
  2322. height:7px;
  2323. }
  2324. #u128614 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:783px;
  2328. top:84px;
  2329. width:7px;
  2330. height:7px;
  2331. display:flex;
  2332. }
  2333. #u128614 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u128614_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u128615_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:19px;
  2352. height:2px;
  2353. }
  2354. #u128615 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:800px;
  2358. top:87px;
  2359. width:18px;
  2360. height:1px;
  2361. display:flex;
  2362. -webkit-transform:rotate(90deg);
  2363. -moz-transform:rotate(90deg);
  2364. -ms-transform:rotate(90deg);
  2365. transform:rotate(90deg);
  2366. }
  2367. #u128615 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:2px 2px 2px 2px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u128615_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u128616_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:375px;
  2386. height:44px;
  2387. }
  2388. #u128616 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:482px;
  2392. top:24px;
  2393. width:375px;
  2394. height:44px;
  2395. display:flex;
  2396. }
  2397. #u128616 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u128616_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u128617_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:375px;
  2416. height:50px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 1);
  2419. box-sizing:border-box;
  2420. border-width:1px;
  2421. border-style:solid;
  2422. border-color:rgba(242, 242, 242, 1);
  2423. border-radius:26px;
  2424. border-top-left-radius:0px;
  2425. border-top-right-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. }
  2430. #u128617 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:482px;
  2434. top:788px;
  2435. width:375px;
  2436. height:50px;
  2437. display:flex;
  2438. }
  2439. #u128617 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 2px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u128617_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u128618 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:0px;
  2458. height:0px;
  2459. }
  2460. #u128619_img {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:24px;
  2466. height:24px;
  2467. }
  2468. #u128619 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:522px;
  2472. top:792px;
  2473. width:24px;
  2474. height:24px;
  2475. display:flex;
  2476. font-size:8px;
  2477. }
  2478. #u128619 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 2px 2px 2px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u128619_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. }
  2490. #u128620_div {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:25px;
  2496. height:17px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 0);
  2499. border:none;
  2500. border-radius:0px;
  2501. -moz-box-shadow:none;
  2502. -webkit-box-shadow:none;
  2503. box-shadow:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. }
  2509. #u128620 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:522px;
  2513. top:817px;
  2514. width:25px;
  2515. height:17px;
  2516. display:flex;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. }
  2522. #u128620 .text {
  2523. position:absolute;
  2524. align-self:flex-start;
  2525. padding:0px 0px 0px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u128620_text {
  2530. border-width:0px;
  2531. white-space:nowrap;
  2532. text-transform:none;
  2533. }
  2534. #u128621 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:0px;
  2540. height:0px;
  2541. }
  2542. #u128622_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:24px;
  2548. height:24px;
  2549. }
  2550. #u128622 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:792px;
  2554. top:794px;
  2555. width:24px;
  2556. height:24px;
  2557. display:flex;
  2558. font-size:8px;
  2559. }
  2560. #u128622 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u128622_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. }
  2572. #u128623_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:25px;
  2578. height:17px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. }
  2591. #u128623 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:792px;
  2595. top:819px;
  2596. width:25px;
  2597. height:17px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. }
  2604. #u128623 .text {
  2605. position:absolute;
  2606. align-self:flex-start;
  2607. padding:0px 0px 0px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u128623_text {
  2612. border-width:0px;
  2613. white-space:nowrap;
  2614. text-transform:none;
  2615. }
  2616. #u128624_div {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:375px;
  2622. height:681px;
  2623. background:inherit;
  2624. background-color:rgba(242, 242, 242, 0.462745098039216);
  2625. border:none;
  2626. border-radius:0px;
  2627. -moz-box-shadow:none;
  2628. -webkit-box-shadow:none;
  2629. box-shadow:none;
  2630. }
  2631. #u128624 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:482px;
  2635. top:107px;
  2636. width:375px;
  2637. height:681px;
  2638. display:flex;
  2639. }
  2640. #u128624 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u128624_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u128625 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:0px;
  2659. height:0px;
  2660. }
  2661. #u128626_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:24px;
  2667. height:24px;
  2668. }
  2669. #u128626 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:704px;
  2673. top:792px;
  2674. width:24px;
  2675. height:24px;
  2676. display:flex;
  2677. font-size:8px;
  2678. }
  2679. #u128626 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 2px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u128626_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. }
  2691. #u128627_div {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:37px;
  2697. height:17px;
  2698. background:inherit;
  2699. background-color:rgba(255, 255, 255, 0);
  2700. border:none;
  2701. border-radius:0px;
  2702. -moz-box-shadow:none;
  2703. -webkit-box-shadow:none;
  2704. box-shadow:none;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. }
  2710. #u128627 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:698px;
  2714. top:817px;
  2715. width:37px;
  2716. height:17px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:12px;
  2722. }
  2723. #u128627 .text {
  2724. position:absolute;
  2725. align-self:flex-start;
  2726. padding:0px 0px 0px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u128627_text {
  2731. border-width:0px;
  2732. white-space:nowrap;
  2733. text-transform:none;
  2734. }
  2735. #u128628 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:0px;
  2741. height:0px;
  2742. }
  2743. #u128629_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:24px;
  2749. height:24px;
  2750. }
  2751. #u128629 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:610px;
  2755. top:792px;
  2756. width:24px;
  2757. height:24px;
  2758. display:flex;
  2759. font-size:8px;
  2760. }
  2761. #u128629 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u128629_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. }
  2773. #u128630_div {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:37px;
  2779. height:17px;
  2780. background:inherit;
  2781. background-color:rgba(255, 255, 255, 0);
  2782. border:none;
  2783. border-radius:0px;
  2784. -moz-box-shadow:none;
  2785. -webkit-box-shadow:none;
  2786. box-shadow:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. }
  2792. #u128630 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:604px;
  2796. top:817px;
  2797. width:37px;
  2798. height:17px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:12px;
  2804. }
  2805. #u128630 .text {
  2806. position:absolute;
  2807. align-self:flex-start;
  2808. padding:0px 0px 0px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u128630_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u128631_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:375px;
  2823. height:735px;
  2824. background:inherit;
  2825. background-color:rgba(242, 242, 242, 1);
  2826. border:none;
  2827. border-top:0px;
  2828. border-radius:25px;
  2829. border-top-left-radius:0px;
  2830. border-top-right-radius:0px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. }
  2835. #u128631 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:482px;
  2839. top:105px;
  2840. width:375px;
  2841. height:735px;
  2842. display:flex;
  2843. }
  2844. #u128631 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 2px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u128631_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u128632_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:57px;
  2863. height:30px;
  2864. background:inherit;
  2865. background-color:rgba(255, 255, 255, 0);
  2866. border:none;
  2867. border-left:0px;
  2868. border-top:0px;
  2869. border-right:0px;
  2870. border-radius:0px;
  2871. border-bottom-right-radius:0px;
  2872. border-bottom-left-radius:0px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2877. font-weight:500;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. line-height:30px;
  2881. }
  2882. #u128632 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:641px;
  2886. top:73px;
  2887. width:57px;
  2888. height:30px;
  2889. display:flex;
  2890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2891. font-weight:500;
  2892. font-style:normal;
  2893. font-size:14px;
  2894. line-height:30px;
  2895. }
  2896. #u128632 .text {
  2897. position:absolute;
  2898. align-self:flex-start;
  2899. padding:0px 0px 0px 0px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u128632_text {
  2904. border-width:0px;
  2905. white-space:nowrap;
  2906. text-transform:none;
  2907. }
  2908. #u128633 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:0px;
  2914. height:0px;
  2915. }
  2916. #u128634_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:11px;
  2922. height:18px;
  2923. }
  2924. #u128634 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:499px;
  2928. top:79px;
  2929. width:11px;
  2930. height:18px;
  2931. display:flex;
  2932. }
  2933. #u128634 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u128634_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u128635 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:0px;
  2952. height:0px;
  2953. }
  2954. #u128636_div {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:375px;
  2960. height:120px;
  2961. background:inherit;
  2962. background-color:rgba(255, 255, 255, 1);
  2963. border:none;
  2964. border-radius:0px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. }
  2969. #u128636 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:482px;
  2973. top:115px;
  2974. width:375px;
  2975. height:120px;
  2976. display:flex;
  2977. }
  2978. #u128636 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u128636_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u128637_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:48px;
  2997. height:50px;
  2998. background:inherit;
  2999. background-color:rgba(24, 144, 255, 1);
  3000. border:none;
  3001. border-radius:4px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. color:#FFFFFF;
  3009. }
  3010. #u128637 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:497px;
  3014. top:135px;
  3015. width:48px;
  3016. height:50px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. color:#FFFFFF;
  3022. }
  3023. #u128637 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u128637_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u128638_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:235px;
  3041. height:30px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-left:0px;
  3046. border-top:0px;
  3047. border-right:0px;
  3048. border-radius:0px;
  3049. border-bottom-right-radius:0px;
  3050. border-bottom-left-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:18px;
  3058. line-height:30px;
  3059. }
  3060. #u128638 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:559px;
  3064. top:135px;
  3065. width:235px;
  3066. height:30px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:18px;
  3072. line-height:30px;
  3073. }
  3074. #u128638 .text {
  3075. position:absolute;
  3076. align-self:flex-start;
  3077. padding:0px 0px 0px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u128638_text {
  3082. border-width:0px;
  3083. white-space:nowrap;
  3084. text-transform:none;
  3085. }
  3086. #u128639_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:85px;
  3092. height:17px;
  3093. }
  3094. #u128639 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:559px;
  3098. top:203px;
  3099. width:85px;
  3100. height:17px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. }
  3107. #u128639 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:0px 0px 0px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u128639_text {
  3115. border-width:0px;
  3116. white-space:nowrap;
  3117. text-transform:none;
  3118. }
  3119. #u128640 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:0px;
  3125. height:0px;
  3126. }
  3127. #u128641_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:60px;
  3133. height:20px;
  3134. background:inherit;
  3135. background-color:rgba(255, 255, 255, 1);
  3136. box-sizing:border-box;
  3137. border-width:1px;
  3138. border-style:solid;
  3139. border-color:rgba(215, 215, 215, 1);
  3140. border-radius:2px;
  3141. -moz-box-shadow:none;
  3142. -webkit-box-shadow:none;
  3143. box-shadow:none;
  3144. }
  3145. #u128641 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:559px;
  3149. top:170px;
  3150. width:60px;
  3151. height:20px;
  3152. display:flex;
  3153. }
  3154. #u128641 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u128641_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u128642 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:0px;
  3173. height:0px;
  3174. }
  3175. #u128643_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:37px;
  3181. height:17px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-left:0px;
  3186. border-top:0px;
  3187. border-right:0px;
  3188. border-radius:0px;
  3189. border-bottom-right-radius:0px;
  3190. border-bottom-left-radius:0px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#7F7F7F;
  3199. }
  3200. #u128643 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:578px;
  3204. top:172px;
  3205. width:37px;
  3206. height:17px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:12px;
  3212. color:#7F7F7F;
  3213. }
  3214. #u128643 .text {
  3215. position:absolute;
  3216. align-self:flex-start;
  3217. padding:0px 0px 0px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u128643_text {
  3222. border-width:0px;
  3223. white-space:nowrap;
  3224. text-transform:none;
  3225. }
  3226. #u128644 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:0px;
  3232. height:0px;
  3233. }
  3234. #u128645_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:12px;
  3240. height:12px;
  3241. }
  3242. #u128645 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:563px;
  3246. top:174px;
  3247. width:12px;
  3248. height:12px;
  3249. display:flex;
  3250. }
  3251. #u128645 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 2px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u128645_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. visibility:hidden;
  3263. }
  3264. #u128646_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:6px;
  3270. height:4px;
  3271. }
  3272. #u128646 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:566px;
  3276. top:178px;
  3277. width:6px;
  3278. height:4px;
  3279. display:flex;
  3280. }
  3281. #u128646 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u128646_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u128647_img {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:61px;
  3300. height:17px;
  3301. }
  3302. #u128647 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:796px;
  3306. top:115px;
  3307. width:61px;
  3308. height:17px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. color:#FFFFFF;
  3315. }
  3316. #u128647 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:0px 0px 0px 0px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u128647_text {
  3324. border-width:0px;
  3325. white-space:nowrap;
  3326. text-transform:none;
  3327. }
  3328. #u128648_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:97px;
  3334. height:17px;
  3335. }
  3336. #u128648 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:499px;
  3340. top:255px;
  3341. width:97px;
  3342. height:17px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. color:#AAAAAA;
  3349. }
  3350. #u128648 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:0px 0px 0px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u128648_text {
  3358. border-width:0px;
  3359. white-space:nowrap;
  3360. text-transform:none;
  3361. }
  3362. #u128649 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:0px;
  3368. height:0px;
  3369. }
  3370. #u128650_div {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:375px;
  3376. height:50px;
  3377. background:inherit;
  3378. background-color:rgba(255, 255, 255, 1);
  3379. border:none;
  3380. border-left:0px;
  3381. border-top:0px;
  3382. border-right:0px;
  3383. border-radius:0px;
  3384. border-bottom-right-radius:0px;
  3385. border-bottom-left-radius:0px;
  3386. -moz-box-shadow:none;
  3387. -webkit-box-shadow:none;
  3388. box-shadow:none;
  3389. }
  3390. #u128650 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:482px;
  3394. top:280px;
  3395. width:375px;
  3396. height:50px;
  3397. display:flex;
  3398. }
  3399. #u128650 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 2px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u128650_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u128651_div {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:29px;
  3418. height:30px;
  3419. background:inherit;
  3420. background-color:rgba(255, 255, 255, 0);
  3421. border:none;
  3422. border-left:0px;
  3423. border-top:0px;
  3424. border-right:0px;
  3425. border-radius:0px;
  3426. border-bottom-right-radius:0px;
  3427. border-bottom-left-radius:0px;
  3428. -moz-box-shadow:none;
  3429. -webkit-box-shadow:none;
  3430. box-shadow:none;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:14px;
  3435. line-height:30px;
  3436. }
  3437. #u128651 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:502px;
  3441. top:291px;
  3442. width:29px;
  3443. height:30px;
  3444. display:flex;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:14px;
  3449. line-height:30px;
  3450. }
  3451. #u128651 .text {
  3452. position:absolute;
  3453. align-self:flex-start;
  3454. padding:0px 0px 0px 0px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u128651_text {
  3459. border-width:0px;
  3460. white-space:nowrap;
  3461. text-transform:none;
  3462. }
  3463. #u128652_input {
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:205px;
  3468. height:25px;
  3469. padding:2px 2px 2px 2px;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:14px;
  3474. letter-spacing:normal;
  3475. color:#D7D7D7;
  3476. vertical-align:none;
  3477. text-align:right;
  3478. text-transform:none;
  3479. background-color:transparent;
  3480. border-color:transparent;
  3481. }
  3482. #u128652_input.disabled {
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:205px;
  3487. height:25px;
  3488. padding:2px 2px 2px 2px;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. letter-spacing:normal;
  3494. color:#D7D7D7;
  3495. vertical-align:none;
  3496. text-align:right;
  3497. text-transform:none;
  3498. background-color:transparent;
  3499. border-color:transparent;
  3500. }
  3501. #u128652_div {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:205px;
  3507. height:25px;
  3508. background:inherit;
  3509. background-color:rgba(255, 255, 255, 1);
  3510. border:none;
  3511. border-radius:0px;
  3512. -moz-box-shadow:none;
  3513. -webkit-box-shadow:none;
  3514. box-shadow:none;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. color:#D7D7D7;
  3520. text-align:right;
  3521. }
  3522. #u128652 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:632px;
  3526. top:293px;
  3527. width:205px;
  3528. height:25px;
  3529. display:flex;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:14px;
  3534. color:#D7D7D7;
  3535. text-align:right;
  3536. }
  3537. #u128652 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 2px 2px 2px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u128652_div.disabled {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:205px;
  3550. height:25px;
  3551. background:inherit;
  3552. background-color:rgba(240, 240, 240, 1);
  3553. border:none;
  3554. border-radius:0px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:14px;
  3562. color:#D7D7D7;
  3563. text-align:right;
  3564. }
  3565. #u128652.disabled {
  3566. }
  3567. #u128653 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:0px;
  3573. height:0px;
  3574. }
  3575. #u128654_div {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:375px;
  3581. height:50px;
  3582. background:inherit;
  3583. background-color:rgba(255, 255, 255, 1);
  3584. border:none;
  3585. border-left:0px;
  3586. border-top:0px;
  3587. border-right:0px;
  3588. border-radius:0px;
  3589. border-bottom-right-radius:0px;
  3590. border-bottom-left-radius:0px;
  3591. -moz-box-shadow:none;
  3592. -webkit-box-shadow:none;
  3593. box-shadow:none;
  3594. }
  3595. #u128654 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:482px;
  3599. top:331px;
  3600. width:375px;
  3601. height:50px;
  3602. display:flex;
  3603. }
  3604. #u128654 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u128654_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. visibility:hidden;
  3616. }
  3617. #u128655_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:29px;
  3623. height:30px;
  3624. background:inherit;
  3625. background-color:rgba(255, 255, 255, 0);
  3626. border:none;
  3627. border-left:0px;
  3628. border-top:0px;
  3629. border-right:0px;
  3630. border-radius:0px;
  3631. border-bottom-right-radius:0px;
  3632. border-bottom-left-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:14px;
  3640. line-height:30px;
  3641. }
  3642. #u128655 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:502px;
  3646. top:342px;
  3647. width:29px;
  3648. height:30px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:14px;
  3654. line-height:30px;
  3655. }
  3656. #u128655 .text {
  3657. position:absolute;
  3658. align-self:flex-start;
  3659. padding:0px 0px 0px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u128655_text {
  3664. border-width:0px;
  3665. white-space:nowrap;
  3666. text-transform:none;
  3667. }
  3668. #u128656_input {
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:205px;
  3673. height:25px;
  3674. padding:2px 2px 2px 2px;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:14px;
  3679. letter-spacing:normal;
  3680. color:#D7D7D7;
  3681. vertical-align:none;
  3682. text-align:right;
  3683. text-transform:none;
  3684. background-color:transparent;
  3685. border-color:transparent;
  3686. }
  3687. #u128656_input.disabled {
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:205px;
  3692. height:25px;
  3693. padding:2px 2px 2px 2px;
  3694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:14px;
  3698. letter-spacing:normal;
  3699. color:#D7D7D7;
  3700. vertical-align:none;
  3701. text-align:right;
  3702. text-transform:none;
  3703. background-color:transparent;
  3704. border-color:transparent;
  3705. }
  3706. #u128656_div {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:205px;
  3712. height:25px;
  3713. background:inherit;
  3714. background-color:rgba(255, 255, 255, 1);
  3715. border:none;
  3716. border-radius:0px;
  3717. -moz-box-shadow:none;
  3718. -webkit-box-shadow:none;
  3719. box-shadow:none;
  3720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:14px;
  3724. color:#D7D7D7;
  3725. text-align:right;
  3726. }
  3727. #u128656 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:632px;
  3731. top:344px;
  3732. width:205px;
  3733. height:25px;
  3734. display:flex;
  3735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3736. font-weight:400;
  3737. font-style:normal;
  3738. font-size:14px;
  3739. color:#D7D7D7;
  3740. text-align:right;
  3741. }
  3742. #u128656 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u128656_div.disabled {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:205px;
  3755. height:25px;
  3756. background:inherit;
  3757. background-color:rgba(240, 240, 240, 1);
  3758. border:none;
  3759. border-radius:0px;
  3760. -moz-box-shadow:none;
  3761. -webkit-box-shadow:none;
  3762. box-shadow:none;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:14px;
  3767. color:#D7D7D7;
  3768. text-align:right;
  3769. }
  3770. #u128656.disabled {
  3771. }
  3772. #u128657 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:0px;
  3778. height:0px;
  3779. }
  3780. #u128658_div {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:375px;
  3786. height:50px;
  3787. background:inherit;
  3788. background-color:rgba(255, 255, 255, 1);
  3789. border:none;
  3790. border-left:0px;
  3791. border-top:0px;
  3792. border-right:0px;
  3793. border-radius:0px;
  3794. border-bottom-right-radius:0px;
  3795. border-bottom-left-radius:0px;
  3796. -moz-box-shadow:none;
  3797. -webkit-box-shadow:none;
  3798. box-shadow:none;
  3799. }
  3800. #u128658 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:482px;
  3804. top:382px;
  3805. width:375px;
  3806. height:50px;
  3807. display:flex;
  3808. }
  3809. #u128658 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u128658_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u128659_div {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:29px;
  3828. height:30px;
  3829. background:inherit;
  3830. background-color:rgba(255, 255, 255, 0);
  3831. border:none;
  3832. border-left:0px;
  3833. border-top:0px;
  3834. border-right:0px;
  3835. border-radius:0px;
  3836. border-bottom-right-radius:0px;
  3837. border-bottom-left-radius:0px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:14px;
  3845. line-height:30px;
  3846. }
  3847. #u128659 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:502px;
  3851. top:393px;
  3852. width:29px;
  3853. height:30px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:14px;
  3859. line-height:30px;
  3860. }
  3861. #u128659 .text {
  3862. position:absolute;
  3863. align-self:flex-start;
  3864. padding:0px 0px 0px 0px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u128659_text {
  3869. border-width:0px;
  3870. white-space:nowrap;
  3871. text-transform:none;
  3872. }
  3873. #u128660_input {
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:205px;
  3878. height:25px;
  3879. padding:2px 2px 2px 2px;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:14px;
  3884. letter-spacing:normal;
  3885. color:#D7D7D7;
  3886. vertical-align:none;
  3887. text-align:right;
  3888. text-transform:none;
  3889. background-color:transparent;
  3890. border-color:transparent;
  3891. }
  3892. #u128660_input.disabled {
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:205px;
  3897. height:25px;
  3898. padding:2px 2px 2px 2px;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:14px;
  3903. letter-spacing:normal;
  3904. color:#D7D7D7;
  3905. vertical-align:none;
  3906. text-align:right;
  3907. text-transform:none;
  3908. background-color:transparent;
  3909. border-color:transparent;
  3910. }
  3911. #u128660_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:205px;
  3917. height:25px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 1);
  3920. border:none;
  3921. border-radius:0px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:14px;
  3929. color:#D7D7D7;
  3930. text-align:right;
  3931. }
  3932. #u128660 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:632px;
  3936. top:395px;
  3937. width:205px;
  3938. height:25px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:14px;
  3944. color:#D7D7D7;
  3945. text-align:right;
  3946. }
  3947. #u128660 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 2px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u128660_div.disabled {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:205px;
  3960. height:25px;
  3961. background:inherit;
  3962. background-color:rgba(240, 240, 240, 1);
  3963. border:none;
  3964. border-radius:0px;
  3965. -moz-box-shadow:none;
  3966. -webkit-box-shadow:none;
  3967. box-shadow:none;
  3968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3969. font-weight:400;
  3970. font-style:normal;
  3971. font-size:14px;
  3972. color:#D7D7D7;
  3973. text-align:right;
  3974. }
  3975. #u128660.disabled {
  3976. }
  3977. #u128661 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:0px;
  3983. height:0px;
  3984. }
  3985. #u128662_div {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:375px;
  3991. height:50px;
  3992. background:inherit;
  3993. background-color:rgba(255, 255, 255, 1);
  3994. border:none;
  3995. border-left:0px;
  3996. border-top:0px;
  3997. border-right:0px;
  3998. border-radius:0px;
  3999. border-bottom-right-radius:0px;
  4000. border-bottom-left-radius:0px;
  4001. -moz-box-shadow:none;
  4002. -webkit-box-shadow:none;
  4003. box-shadow:none;
  4004. }
  4005. #u128662 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:482px;
  4009. top:433px;
  4010. width:375px;
  4011. height:50px;
  4012. display:flex;
  4013. }
  4014. #u128662 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u128662_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u128663_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:57px;
  4033. height:30px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 0);
  4036. border:none;
  4037. border-left:0px;
  4038. border-top:0px;
  4039. border-right:0px;
  4040. border-radius:0px;
  4041. border-bottom-right-radius:0px;
  4042. border-bottom-left-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. line-height:30px;
  4051. }
  4052. #u128663 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:502px;
  4056. top:444px;
  4057. width:57px;
  4058. height:30px;
  4059. display:flex;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:14px;
  4064. line-height:30px;
  4065. }
  4066. #u128663 .text {
  4067. position:absolute;
  4068. align-self:flex-start;
  4069. padding:0px 0px 0px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u128663_text {
  4074. border-width:0px;
  4075. white-space:nowrap;
  4076. text-transform:none;
  4077. }
  4078. #u128664_input {
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:205px;
  4083. height:25px;
  4084. padding:2px 2px 2px 2px;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:14px;
  4089. letter-spacing:normal;
  4090. color:#D7D7D7;
  4091. vertical-align:none;
  4092. text-align:right;
  4093. text-transform:none;
  4094. background-color:transparent;
  4095. border-color:transparent;
  4096. }
  4097. #u128664_input.disabled {
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:205px;
  4102. height:25px;
  4103. padding:2px 2px 2px 2px;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:14px;
  4108. letter-spacing:normal;
  4109. color:#D7D7D7;
  4110. vertical-align:none;
  4111. text-align:right;
  4112. text-transform:none;
  4113. background-color:transparent;
  4114. border-color:transparent;
  4115. }
  4116. #u128664_div {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:205px;
  4122. height:25px;
  4123. background:inherit;
  4124. background-color:rgba(255, 255, 255, 1);
  4125. border:none;
  4126. border-radius:0px;
  4127. -moz-box-shadow:none;
  4128. -webkit-box-shadow:none;
  4129. box-shadow:none;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:14px;
  4134. color:#D7D7D7;
  4135. text-align:right;
  4136. }
  4137. #u128664 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:632px;
  4141. top:446px;
  4142. width:205px;
  4143. height:25px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:14px;
  4149. color:#D7D7D7;
  4150. text-align:right;
  4151. }
  4152. #u128664 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 2px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u128664_div.disabled {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:205px;
  4165. height:25px;
  4166. background:inherit;
  4167. background-color:rgba(240, 240, 240, 1);
  4168. border:none;
  4169. border-radius:0px;
  4170. -moz-box-shadow:none;
  4171. -webkit-box-shadow:none;
  4172. box-shadow:none;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:14px;
  4177. color:#D7D7D7;
  4178. text-align:right;
  4179. }
  4180. #u128664.disabled {
  4181. }
  4182. #u128665 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:0px;
  4188. height:0px;
  4189. }
  4190. #u128666_div {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:375px;
  4196. height:50px;
  4197. background:inherit;
  4198. background-color:rgba(255, 255, 255, 1);
  4199. border:none;
  4200. border-left:0px;
  4201. border-top:0px;
  4202. border-right:0px;
  4203. border-radius:0px;
  4204. border-bottom-right-radius:0px;
  4205. border-bottom-left-radius:0px;
  4206. -moz-box-shadow:none;
  4207. -webkit-box-shadow:none;
  4208. box-shadow:none;
  4209. }
  4210. #u128666 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:482px;
  4214. top:480px;
  4215. width:375px;
  4216. height:50px;
  4217. display:flex;
  4218. }
  4219. #u128666 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 2px 2px 2px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u128666_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u128667_div {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:29px;
  4238. height:30px;
  4239. background:inherit;
  4240. background-color:rgba(255, 255, 255, 0);
  4241. border:none;
  4242. border-left:0px;
  4243. border-top:0px;
  4244. border-right:0px;
  4245. border-radius:0px;
  4246. border-bottom-right-radius:0px;
  4247. border-bottom-left-radius:0px;
  4248. -moz-box-shadow:none;
  4249. -webkit-box-shadow:none;
  4250. box-shadow:none;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:14px;
  4255. line-height:30px;
  4256. }
  4257. #u128667 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:502px;
  4261. top:491px;
  4262. width:29px;
  4263. height:30px;
  4264. display:flex;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. line-height:30px;
  4270. }
  4271. #u128667 .text {
  4272. position:absolute;
  4273. align-self:flex-start;
  4274. padding:0px 0px 0px 0px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u128667_text {
  4279. border-width:0px;
  4280. white-space:nowrap;
  4281. text-transform:none;
  4282. }
  4283. #u128668_input {
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:205px;
  4288. height:25px;
  4289. padding:2px 2px 2px 2px;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. letter-spacing:normal;
  4295. color:#D7D7D7;
  4296. vertical-align:none;
  4297. text-align:right;
  4298. text-transform:none;
  4299. background-color:transparent;
  4300. border-color:transparent;
  4301. }
  4302. #u128668_input.disabled {
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:205px;
  4307. height:25px;
  4308. padding:2px 2px 2px 2px;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:14px;
  4313. letter-spacing:normal;
  4314. color:#D7D7D7;
  4315. vertical-align:none;
  4316. text-align:right;
  4317. text-transform:none;
  4318. background-color:transparent;
  4319. border-color:transparent;
  4320. }
  4321. #u128668_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:205px;
  4327. height:25px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 1);
  4330. border:none;
  4331. border-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:14px;
  4339. color:#D7D7D7;
  4340. text-align:right;
  4341. }
  4342. #u128668 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:632px;
  4346. top:493px;
  4347. width:205px;
  4348. height:25px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:14px;
  4354. color:#D7D7D7;
  4355. text-align:right;
  4356. }
  4357. #u128668 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u128668_div.disabled {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:205px;
  4370. height:25px;
  4371. background:inherit;
  4372. background-color:rgba(240, 240, 240, 1);
  4373. border:none;
  4374. border-radius:0px;
  4375. -moz-box-shadow:none;
  4376. -webkit-box-shadow:none;
  4377. box-shadow:none;
  4378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. color:#D7D7D7;
  4383. text-align:right;
  4384. }
  4385. #u128668.disabled {
  4386. }
  4387. #u128669_div {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:375px;
  4393. height:50px;
  4394. background:inherit;
  4395. background-color:rgba(255, 255, 255, 1);
  4396. border:none;
  4397. border-left:0px;
  4398. border-top:0px;
  4399. border-right:0px;
  4400. border-radius:0px;
  4401. border-bottom-right-radius:0px;
  4402. border-bottom-left-radius:0px;
  4403. -moz-box-shadow:none;
  4404. -webkit-box-shadow:none;
  4405. box-shadow:none;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:14px;
  4410. line-height:30px;
  4411. }
  4412. #u128669 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:482px;
  4416. top:540px;
  4417. width:375px;
  4418. height:50px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:14px;
  4424. line-height:30px;
  4425. }
  4426. #u128669 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 2px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u128669_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. }
  4438. #u128670 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:0px;
  4444. height:0px;
  4445. }
  4446. #u128671_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:300px;
  4452. height:229px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 1);
  4455. border:none;
  4456. border-radius:10px;
  4457. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4458. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4459. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4460. }
  4461. #u128671 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:520px;
  4465. top:604px;
  4466. width:300px;
  4467. height:229px;
  4468. display:flex;
  4469. }
  4470. #u128671 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 2px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u128671_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u128672_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:120px;
  4489. height:30px;
  4490. background:inherit;
  4491. background-color:rgba(255, 255, 255, 0);
  4492. border:none;
  4493. border-left:0px;
  4494. border-top:0px;
  4495. border-right:0px;
  4496. border-radius:0px;
  4497. border-bottom-right-radius:0px;
  4498. border-bottom-left-radius:0px;
  4499. -moz-box-shadow:none;
  4500. -webkit-box-shadow:none;
  4501. box-shadow:none;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:18px;
  4506. text-align:center;
  4507. line-height:30px;
  4508. }
  4509. #u128672 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:610px;
  4513. top:622px;
  4514. width:120px;
  4515. height:30px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:18px;
  4521. text-align:center;
  4522. line-height:30px;
  4523. }
  4524. #u128672 .text {
  4525. position:absolute;
  4526. align-self:flex-start;
  4527. padding:0px 0px 0px 0px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u128672_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. }
  4536. #u128673_div {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:260px;
  4542. height:104px;
  4543. background:inherit;
  4544. background-color:rgba(255, 255, 255, 0);
  4545. border:none;
  4546. border-left:0px;
  4547. border-top:0px;
  4548. border-right:0px;
  4549. border-radius:0px;
  4550. border-bottom-right-radius:0px;
  4551. border-bottom-left-radius:0px;
  4552. -moz-box-shadow:none;
  4553. -webkit-box-shadow:none;
  4554. box-shadow:none;
  4555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:14px;
  4559. line-height:26px;
  4560. }
  4561. #u128673 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:543px;
  4565. top:662px;
  4566. width:260px;
  4567. height:104px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. line-height:26px;
  4574. }
  4575. #u128673 .text {
  4576. position:absolute;
  4577. align-self:flex-start;
  4578. padding:0px 0px 0px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u128673_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. }
  4587. #u128674_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:301px;
  4593. height:2px;
  4594. }
  4595. #u128674 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:520px;
  4599. top:784px;
  4600. width:300px;
  4601. height:1px;
  4602. display:flex;
  4603. }
  4604. #u128674 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u128674_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u128675_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:41px;
  4623. height:30px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 0);
  4626. border:none;
  4627. border-left:0px;
  4628. border-top:0px;
  4629. border-right:0px;
  4630. border-radius:0px;
  4631. border-bottom-right-radius:0px;
  4632. border-bottom-left-radius:0px;
  4633. -moz-box-shadow:none;
  4634. -webkit-box-shadow:none;
  4635. box-shadow:none;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:18px;
  4640. color:#1890FF;
  4641. text-align:center;
  4642. line-height:30px;
  4643. }
  4644. #u128675 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:736px;
  4648. top:794px;
  4649. width:41px;
  4650. height:30px;
  4651. display:flex;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:18px;
  4656. color:#1890FF;
  4657. text-align:center;
  4658. line-height:30px;
  4659. }
  4660. #u128675 .text {
  4661. position:absolute;
  4662. align-self:flex-start;
  4663. padding:0px 0px 0px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u128675_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. }
  4672. #u128676_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:41px;
  4678. height:30px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 0);
  4681. border:none;
  4682. border-left:0px;
  4683. border-top:0px;
  4684. border-right:0px;
  4685. border-radius:0px;
  4686. border-bottom-right-radius:0px;
  4687. border-bottom-left-radius:0px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:18px;
  4695. color:#1890FF;
  4696. text-align:center;
  4697. line-height:30px;
  4698. }
  4699. #u128676 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:566px;
  4703. top:794px;
  4704. width:41px;
  4705. height:30px;
  4706. display:flex;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:18px;
  4711. color:#1890FF;
  4712. text-align:center;
  4713. line-height:30px;
  4714. }
  4715. #u128676 .text {
  4716. position:absolute;
  4717. align-self:flex-start;
  4718. padding:0px 0px 0px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u128676_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. }
  4727. #u128677_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:2px;
  4733. height:49px;
  4734. }
  4735. #u128677 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:669px;
  4739. top:785px;
  4740. width:1px;
  4741. height:48px;
  4742. display:flex;
  4743. }
  4744. #u128677 .text {
  4745. position:absolute;
  4746. align-self:center;
  4747. padding:2px 2px 2px 2px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u128677_text {
  4752. border-width:0px;
  4753. word-wrap:break-word;
  4754. text-transform:none;
  4755. visibility:hidden;
  4756. }
  4757. #u128678 {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:670px;
  4761. top:590px;
  4762. width:0px;
  4763. height:0px;
  4764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:12px;
  4768. color:#D9001B;
  4769. }
  4770. #u128678_seg0 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:-5px;
  4774. top:0px;
  4775. width:10px;
  4776. height:19px;
  4777. }
  4778. #u128678_seg1 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:-9px;
  4782. top:-6px;
  4783. width:18px;
  4784. height:18px;
  4785. }
  4786. #u128678_seg2 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:-16px;
  4790. top:-3px;
  4791. width:32px;
  4792. height:32px;
  4793. }
  4794. #u128678_text {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:-50px;
  4798. top:-1px;
  4799. width:100px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u128680_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:433px;
  4810. height:865px;
  4811. }
  4812. #u128680 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:915px;
  4816. top:0px;
  4817. width:433px;
  4818. height:865px;
  4819. display:flex;
  4820. }
  4821. #u128680 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u128680_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u128681_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:375px;
  4840. height:40px;
  4841. background:inherit;
  4842. background-color:rgba(255, 255, 255, 1);
  4843. box-sizing:border-box;
  4844. border-width:1px;
  4845. border-style:solid;
  4846. border-color:rgba(215, 215, 215, 1);
  4847. border-left:0px;
  4848. border-top:0px;
  4849. border-right:0px;
  4850. border-radius:0px;
  4851. border-bottom-right-radius:0px;
  4852. border-bottom-left-radius:0px;
  4853. -moz-box-shadow:none;
  4854. -webkit-box-shadow:none;
  4855. box-shadow:none;
  4856. }
  4857. #u128681 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:944px;
  4861. top:67px;
  4862. width:375px;
  4863. height:40px;
  4864. display:flex;
  4865. }
  4866. #u128681 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 2px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u128681_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. visibility:hidden;
  4878. }
  4879. #u128682 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:0px;
  4885. height:0px;
  4886. }
  4887. #u128683_div {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:88px;
  4893. height:32px;
  4894. background:inherit;
  4895. background-color:rgba(255, 255, 255, 1);
  4896. box-sizing:border-box;
  4897. border-width:1px;
  4898. border-style:solid;
  4899. border-color:rgba(242, 242, 242, 1);
  4900. border-radius:33px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. }
  4905. #u128683 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:1224px;
  4909. top:71px;
  4910. width:88px;
  4911. height:32px;
  4912. display:flex;
  4913. }
  4914. #u128683 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 2px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u128683_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u128684 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:0px;
  4933. height:0px;
  4934. }
  4935. #u128685_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:18px;
  4941. height:18px;
  4942. }
  4943. #u128685 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1287px;
  4947. top:78px;
  4948. width:18px;
  4949. height:18px;
  4950. display:flex;
  4951. }
  4952. #u128685 .text {
  4953. position:absolute;
  4954. align-self:center;
  4955. padding:2px 2px 2px 2px;
  4956. box-sizing:border-box;
  4957. width:100%;
  4958. }
  4959. #u128685_text {
  4960. border-width:0px;
  4961. word-wrap:break-word;
  4962. text-transform:none;
  4963. visibility:hidden;
  4964. }
  4965. #u128686_img {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:6px;
  4971. height:6px;
  4972. }
  4973. #u128686 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:1293px;
  4977. top:84px;
  4978. width:6px;
  4979. height:6px;
  4980. display:flex;
  4981. }
  4982. #u128686 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 2px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u128686_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u128687 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:0px;
  5001. height:0px;
  5002. }
  5003. #u128688_img {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:5px;
  5009. height:5px;
  5010. }
  5011. #u128688 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:1238px;
  5015. top:85px;
  5016. width:5px;
  5017. height:5px;
  5018. display:flex;
  5019. }
  5020. #u128688 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 2px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u128688_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u128689_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:5px;
  5039. height:5px;
  5040. }
  5041. #u128689 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1254px;
  5045. top:85px;
  5046. width:5px;
  5047. height:5px;
  5048. display:flex;
  5049. }
  5050. #u128689 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u128689_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. visibility:hidden;
  5062. }
  5063. #u128690_img {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:7px;
  5069. height:7px;
  5070. }
  5071. #u128690 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:1245px;
  5075. top:84px;
  5076. width:7px;
  5077. height:7px;
  5078. display:flex;
  5079. }
  5080. #u128690 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 2px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u128690_text {
  5088. border-width:0px;
  5089. word-wrap:break-word;
  5090. text-transform:none;
  5091. visibility:hidden;
  5092. }
  5093. #u128691_img {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:19px;
  5099. height:2px;
  5100. }
  5101. #u128691 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1262px;
  5105. top:87px;
  5106. width:18px;
  5107. height:1px;
  5108. display:flex;
  5109. -webkit-transform:rotate(90deg);
  5110. -moz-transform:rotate(90deg);
  5111. -ms-transform:rotate(90deg);
  5112. transform:rotate(90deg);
  5113. }
  5114. #u128691 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 2px 2px 2px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u128691_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. visibility:hidden;
  5126. }
  5127. #u128692_img {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:375px;
  5133. height:44px;
  5134. }
  5135. #u128692 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:944px;
  5139. top:24px;
  5140. width:375px;
  5141. height:44px;
  5142. display:flex;
  5143. }
  5144. #u128692 .text {
  5145. position:absolute;
  5146. align-self:center;
  5147. padding:2px 2px 2px 2px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u128692_text {
  5152. border-width:0px;
  5153. word-wrap:break-word;
  5154. text-transform:none;
  5155. visibility:hidden;
  5156. }
  5157. #u128693_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:375px;
  5163. height:50px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 255, 1);
  5166. box-sizing:border-box;
  5167. border-width:1px;
  5168. border-style:solid;
  5169. border-color:rgba(242, 242, 242, 1);
  5170. border-radius:26px;
  5171. border-top-left-radius:0px;
  5172. border-top-right-radius:0px;
  5173. -moz-box-shadow:none;
  5174. -webkit-box-shadow:none;
  5175. box-shadow:none;
  5176. }
  5177. #u128693 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:944px;
  5181. top:788px;
  5182. width:375px;
  5183. height:50px;
  5184. display:flex;
  5185. }
  5186. #u128693 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 2px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u128693_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u128694 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:0px;
  5205. height:0px;
  5206. }
  5207. #u128695_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:24px;
  5213. height:24px;
  5214. }
  5215. #u128695 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:984px;
  5219. top:792px;
  5220. width:24px;
  5221. height:24px;
  5222. display:flex;
  5223. font-size:8px;
  5224. }
  5225. #u128695 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:2px 2px 2px 2px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u128695_text {
  5233. border-width:0px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. }
  5237. #u128696_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:25px;
  5243. height:17px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-radius:0px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. }
  5256. #u128696 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:984px;
  5260. top:817px;
  5261. width:25px;
  5262. height:17px;
  5263. display:flex;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. }
  5269. #u128696 .text {
  5270. position:absolute;
  5271. align-self:flex-start;
  5272. padding:0px 0px 0px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u128696_text {
  5277. border-width:0px;
  5278. white-space:nowrap;
  5279. text-transform:none;
  5280. }
  5281. #u128697 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:0px;
  5287. height:0px;
  5288. }
  5289. #u128698_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:24px;
  5295. height:24px;
  5296. }
  5297. #u128698 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:1254px;
  5301. top:794px;
  5302. width:24px;
  5303. height:24px;
  5304. display:flex;
  5305. font-size:8px;
  5306. }
  5307. #u128698 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 2px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u128698_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. }
  5319. #u128699_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:25px;
  5325. height:17px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 0);
  5328. border:none;
  5329. border-radius:0px;
  5330. -moz-box-shadow:none;
  5331. -webkit-box-shadow:none;
  5332. box-shadow:none;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. }
  5338. #u128699 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:1254px;
  5342. top:819px;
  5343. width:25px;
  5344. height:17px;
  5345. display:flex;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. }
  5351. #u128699 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:0px 0px 0px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u128699_text {
  5359. border-width:0px;
  5360. white-space:nowrap;
  5361. text-transform:none;
  5362. }
  5363. #u128700_div {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:375px;
  5369. height:681px;
  5370. background:inherit;
  5371. background-color:rgba(242, 242, 242, 0.462745098039216);
  5372. border:none;
  5373. border-radius:0px;
  5374. -moz-box-shadow:none;
  5375. -webkit-box-shadow:none;
  5376. box-shadow:none;
  5377. }
  5378. #u128700 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:944px;
  5382. top:107px;
  5383. width:375px;
  5384. height:681px;
  5385. display:flex;
  5386. }
  5387. #u128700 .text {
  5388. position:absolute;
  5389. align-self:center;
  5390. padding:2px 2px 2px 2px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u128700_text {
  5395. border-width:0px;
  5396. word-wrap:break-word;
  5397. text-transform:none;
  5398. visibility:hidden;
  5399. }
  5400. #u128701 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:0px;
  5406. height:0px;
  5407. }
  5408. #u128702_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:24px;
  5414. height:24px;
  5415. }
  5416. #u128702 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:1166px;
  5420. top:792px;
  5421. width:24px;
  5422. height:24px;
  5423. display:flex;
  5424. font-size:8px;
  5425. }
  5426. #u128702 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:2px 2px 2px 2px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u128702_text {
  5434. border-width:0px;
  5435. word-wrap:break-word;
  5436. text-transform:none;
  5437. }
  5438. #u128703_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:37px;
  5444. height:17px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 0);
  5447. border:none;
  5448. border-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. }
  5457. #u128703 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:1160px;
  5461. top:817px;
  5462. width:37px;
  5463. height:17px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:12px;
  5469. }
  5470. #u128703 .text {
  5471. position:absolute;
  5472. align-self:flex-start;
  5473. padding:0px 0px 0px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u128703_text {
  5478. border-width:0px;
  5479. white-space:nowrap;
  5480. text-transform:none;
  5481. }
  5482. #u128704 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:0px;
  5488. height:0px;
  5489. }
  5490. #u128705_img {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:24px;
  5496. height:24px;
  5497. }
  5498. #u128705 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:1072px;
  5502. top:792px;
  5503. width:24px;
  5504. height:24px;
  5505. display:flex;
  5506. font-size:8px;
  5507. }
  5508. #u128705 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 2px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u128705_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. }
  5520. #u128706_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:37px;
  5526. height:17px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. }
  5539. #u128706 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1066px;
  5543. top:817px;
  5544. width:37px;
  5545. height:17px;
  5546. display:flex;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. }
  5552. #u128706 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u128706_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u128707_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:375px;
  5570. height:735px;
  5571. background:inherit;
  5572. background-color:rgba(242, 242, 242, 1);
  5573. border:none;
  5574. border-top:0px;
  5575. border-radius:25px;
  5576. border-top-left-radius:0px;
  5577. border-top-right-radius:0px;
  5578. -moz-box-shadow:none;
  5579. -webkit-box-shadow:none;
  5580. box-shadow:none;
  5581. }
  5582. #u128707 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:944px;
  5586. top:105px;
  5587. width:375px;
  5588. height:735px;
  5589. display:flex;
  5590. }
  5591. #u128707 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u128707_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u128708_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:57px;
  5610. height:30px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 0);
  5613. border:none;
  5614. border-left:0px;
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-radius:0px;
  5618. border-bottom-right-radius:0px;
  5619. border-bottom-left-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5624. font-weight:500;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. line-height:30px;
  5628. }
  5629. #u128708 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:1103px;
  5633. top:73px;
  5634. width:57px;
  5635. height:30px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5638. font-weight:500;
  5639. font-style:normal;
  5640. font-size:14px;
  5641. line-height:30px;
  5642. }
  5643. #u128708 .text {
  5644. position:absolute;
  5645. align-self:flex-start;
  5646. padding:0px 0px 0px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u128708_text {
  5651. border-width:0px;
  5652. white-space:nowrap;
  5653. text-transform:none;
  5654. }
  5655. #u128709 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:0px;
  5661. height:0px;
  5662. }
  5663. #u128710_img {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:11px;
  5669. height:18px;
  5670. }
  5671. #u128710 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:961px;
  5675. top:79px;
  5676. width:11px;
  5677. height:18px;
  5678. display:flex;
  5679. }
  5680. #u128710 .text {
  5681. position:absolute;
  5682. align-self:center;
  5683. padding:2px 2px 2px 2px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u128710_text {
  5688. border-width:0px;
  5689. word-wrap:break-word;
  5690. text-transform:none;
  5691. visibility:hidden;
  5692. }
  5693. #u128711 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:0px;
  5699. height:0px;
  5700. }
  5701. #u128712_div {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:375px;
  5707. height:120px;
  5708. background:inherit;
  5709. background-color:rgba(255, 255, 255, 1);
  5710. border:none;
  5711. border-radius:0px;
  5712. -moz-box-shadow:none;
  5713. -webkit-box-shadow:none;
  5714. box-shadow:none;
  5715. }
  5716. #u128712 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:944px;
  5720. top:115px;
  5721. width:375px;
  5722. height:120px;
  5723. display:flex;
  5724. }
  5725. #u128712 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 2px 2px 2px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u128712_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u128713_div {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:48px;
  5744. height:50px;
  5745. background:inherit;
  5746. background-color:rgba(24, 144, 255, 1);
  5747. border:none;
  5748. border-radius:4px;
  5749. -moz-box-shadow:none;
  5750. -webkit-box-shadow:none;
  5751. box-shadow:none;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. color:#FFFFFF;
  5756. }
  5757. #u128713 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:959px;
  5761. top:135px;
  5762. width:48px;
  5763. height:50px;
  5764. display:flex;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. color:#FFFFFF;
  5769. }
  5770. #u128713 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 2px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u128713_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. }
  5782. #u128714_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:199px;
  5788. height:30px;
  5789. background:inherit;
  5790. background-color:rgba(255, 255, 255, 0);
  5791. border:none;
  5792. border-left:0px;
  5793. border-top:0px;
  5794. border-right:0px;
  5795. border-radius:0px;
  5796. border-bottom-right-radius:0px;
  5797. border-bottom-left-radius:0px;
  5798. -moz-box-shadow:none;
  5799. -webkit-box-shadow:none;
  5800. box-shadow:none;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:18px;
  5805. line-height:30px;
  5806. }
  5807. #u128714 {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:1021px;
  5811. top:135px;
  5812. width:199px;
  5813. height:30px;
  5814. display:flex;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:18px;
  5819. line-height:30px;
  5820. }
  5821. #u128714 .text {
  5822. position:absolute;
  5823. align-self:flex-start;
  5824. padding:0px 0px 0px 0px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u128714_text {
  5829. border-width:0px;
  5830. white-space:nowrap;
  5831. text-transform:none;
  5832. }
  5833. #u128715_img {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:85px;
  5839. height:17px;
  5840. }
  5841. #u128715 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1021px;
  5845. top:203px;
  5846. width:85px;
  5847. height:17px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:12px;
  5853. }
  5854. #u128715 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:0px 0px 0px 0px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u128715_text {
  5862. border-width:0px;
  5863. white-space:nowrap;
  5864. text-transform:none;
  5865. }
  5866. #u128716 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:0px;
  5872. height:0px;
  5873. }
  5874. #u128717_div {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:60px;
  5880. height:20px;
  5881. background:inherit;
  5882. background-color:rgba(255, 255, 255, 1);
  5883. box-sizing:border-box;
  5884. border-width:1px;
  5885. border-style:solid;
  5886. border-color:rgba(215, 215, 215, 1);
  5887. border-radius:2px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. }
  5892. #u128717 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:1021px;
  5896. top:170px;
  5897. width:60px;
  5898. height:20px;
  5899. display:flex;
  5900. }
  5901. #u128717 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u128717_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u128718 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:0px;
  5920. height:0px;
  5921. }
  5922. #u128719_div {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:37px;
  5928. height:17px;
  5929. background:inherit;
  5930. background-color:rgba(255, 255, 255, 0);
  5931. border:none;
  5932. border-left:0px;
  5933. border-top:0px;
  5934. border-right:0px;
  5935. border-radius:0px;
  5936. border-bottom-right-radius:0px;
  5937. border-bottom-left-radius:0px;
  5938. -moz-box-shadow:none;
  5939. -webkit-box-shadow:none;
  5940. box-shadow:none;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:12px;
  5945. color:#7F7F7F;
  5946. }
  5947. #u128719 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:1040px;
  5951. top:172px;
  5952. width:37px;
  5953. height:17px;
  5954. display:flex;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:12px;
  5959. color:#7F7F7F;
  5960. }
  5961. #u128719 .text {
  5962. position:absolute;
  5963. align-self:flex-start;
  5964. padding:0px 0px 0px 0px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u128719_text {
  5969. border-width:0px;
  5970. white-space:nowrap;
  5971. text-transform:none;
  5972. }
  5973. #u128720 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:0px;
  5979. height:0px;
  5980. }
  5981. #u128721_img {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:12px;
  5987. height:12px;
  5988. }
  5989. #u128721 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1025px;
  5993. top:174px;
  5994. width:12px;
  5995. height:12px;
  5996. display:flex;
  5997. }
  5998. #u128721 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u128721_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u128722_img {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:6px;
  6017. height:4px;
  6018. }
  6019. #u128722 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:1028px;
  6023. top:178px;
  6024. width:6px;
  6025. height:4px;
  6026. display:flex;
  6027. }
  6028. #u128722 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u128722_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u128723_img {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:97px;
  6047. height:17px;
  6048. }
  6049. #u128723 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:961px;
  6053. top:255px;
  6054. width:97px;
  6055. height:17px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#AAAAAA;
  6062. }
  6063. #u128723 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:0px 0px 0px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u128723_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u128724 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:0px;
  6081. height:0px;
  6082. }
  6083. #u128725_div {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:375px;
  6089. height:50px;
  6090. background:inherit;
  6091. background-color:rgba(255, 255, 255, 1);
  6092. border:none;
  6093. border-left:0px;
  6094. border-top:0px;
  6095. border-right:0px;
  6096. border-radius:0px;
  6097. border-bottom-right-radius:0px;
  6098. border-bottom-left-radius:0px;
  6099. -moz-box-shadow:none;
  6100. -webkit-box-shadow:none;
  6101. box-shadow:none;
  6102. }
  6103. #u128725 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:944px;
  6107. top:280px;
  6108. width:375px;
  6109. height:50px;
  6110. display:flex;
  6111. }
  6112. #u128725 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u128725_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u128726_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:29px;
  6131. height:30px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border:none;
  6135. border-left:0px;
  6136. border-top:0px;
  6137. border-right:0px;
  6138. border-radius:0px;
  6139. border-bottom-right-radius:0px;
  6140. border-bottom-left-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:14px;
  6148. line-height:30px;
  6149. }
  6150. #u128726 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:964px;
  6154. top:291px;
  6155. width:29px;
  6156. height:30px;
  6157. display:flex;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:14px;
  6162. line-height:30px;
  6163. }
  6164. #u128726 .text {
  6165. position:absolute;
  6166. align-self:flex-start;
  6167. padding:0px 0px 0px 0px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u128726_text {
  6172. border-width:0px;
  6173. white-space:nowrap;
  6174. text-transform:none;
  6175. }
  6176. #u128727_input {
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:205px;
  6181. height:25px;
  6182. padding:2px 2px 2px 2px;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:14px;
  6187. letter-spacing:normal;
  6188. color:#D7D7D7;
  6189. vertical-align:none;
  6190. text-align:right;
  6191. text-transform:none;
  6192. background-color:transparent;
  6193. border-color:transparent;
  6194. }
  6195. #u128727_input.disabled {
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:205px;
  6200. height:25px;
  6201. padding:2px 2px 2px 2px;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:14px;
  6206. letter-spacing:normal;
  6207. color:#D7D7D7;
  6208. vertical-align:none;
  6209. text-align:right;
  6210. text-transform:none;
  6211. background-color:transparent;
  6212. border-color:transparent;
  6213. }
  6214. #u128727_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:205px;
  6220. height:25px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 1);
  6223. border:none;
  6224. border-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. color:#D7D7D7;
  6233. text-align:right;
  6234. }
  6235. #u128727 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1094px;
  6239. top:293px;
  6240. width:205px;
  6241. height:25px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:14px;
  6247. color:#D7D7D7;
  6248. text-align:right;
  6249. }
  6250. #u128727 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 2px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u128727_div.disabled {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:205px;
  6263. height:25px;
  6264. background:inherit;
  6265. background-color:rgba(240, 240, 240, 1);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. color:#D7D7D7;
  6276. text-align:right;
  6277. }
  6278. #u128727.disabled {
  6279. }
  6280. #u128728 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:0px;
  6286. height:0px;
  6287. }
  6288. #u128729_div {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:375px;
  6294. height:50px;
  6295. background:inherit;
  6296. background-color:rgba(255, 255, 255, 1);
  6297. border:none;
  6298. border-left:0px;
  6299. border-top:0px;
  6300. border-right:0px;
  6301. border-radius:0px;
  6302. border-bottom-right-radius:0px;
  6303. border-bottom-left-radius:0px;
  6304. -moz-box-shadow:none;
  6305. -webkit-box-shadow:none;
  6306. box-shadow:none;
  6307. }
  6308. #u128729 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:944px;
  6312. top:331px;
  6313. width:375px;
  6314. height:50px;
  6315. display:flex;
  6316. }
  6317. #u128729 .text {
  6318. position:absolute;
  6319. align-self:center;
  6320. padding:2px 2px 2px 2px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u128729_text {
  6325. border-width:0px;
  6326. word-wrap:break-word;
  6327. text-transform:none;
  6328. visibility:hidden;
  6329. }
  6330. #u128730_div {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:29px;
  6336. height:30px;
  6337. background:inherit;
  6338. background-color:rgba(255, 255, 255, 0);
  6339. border:none;
  6340. border-left:0px;
  6341. border-top:0px;
  6342. border-right:0px;
  6343. border-radius:0px;
  6344. border-bottom-right-radius:0px;
  6345. border-bottom-left-radius:0px;
  6346. -moz-box-shadow:none;
  6347. -webkit-box-shadow:none;
  6348. box-shadow:none;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. line-height:30px;
  6354. }
  6355. #u128730 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:964px;
  6359. top:342px;
  6360. width:29px;
  6361. height:30px;
  6362. display:flex;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:14px;
  6367. line-height:30px;
  6368. }
  6369. #u128730 .text {
  6370. position:absolute;
  6371. align-self:flex-start;
  6372. padding:0px 0px 0px 0px;
  6373. box-sizing:border-box;
  6374. width:100%;
  6375. }
  6376. #u128730_text {
  6377. border-width:0px;
  6378. white-space:nowrap;
  6379. text-transform:none;
  6380. }
  6381. #u128731_input {
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:205px;
  6386. height:25px;
  6387. padding:2px 2px 2px 2px;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. letter-spacing:normal;
  6393. color:#D7D7D7;
  6394. vertical-align:none;
  6395. text-align:right;
  6396. text-transform:none;
  6397. background-color:transparent;
  6398. border-color:transparent;
  6399. }
  6400. #u128731_input.disabled {
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:205px;
  6405. height:25px;
  6406. padding:2px 2px 2px 2px;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. letter-spacing:normal;
  6412. color:#D7D7D7;
  6413. vertical-align:none;
  6414. text-align:right;
  6415. text-transform:none;
  6416. background-color:transparent;
  6417. border-color:transparent;
  6418. }
  6419. #u128731_div {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:205px;
  6425. height:25px;
  6426. background:inherit;
  6427. background-color:rgba(255, 255, 255, 1);
  6428. border:none;
  6429. border-radius:0px;
  6430. -moz-box-shadow:none;
  6431. -webkit-box-shadow:none;
  6432. box-shadow:none;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#D7D7D7;
  6438. text-align:right;
  6439. }
  6440. #u128731 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:1094px;
  6444. top:344px;
  6445. width:205px;
  6446. height:25px;
  6447. display:flex;
  6448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:14px;
  6452. color:#D7D7D7;
  6453. text-align:right;
  6454. }
  6455. #u128731 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u128731_div.disabled {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:205px;
  6468. height:25px;
  6469. background:inherit;
  6470. background-color:rgba(240, 240, 240, 1);
  6471. border:none;
  6472. border-radius:0px;
  6473. -moz-box-shadow:none;
  6474. -webkit-box-shadow:none;
  6475. box-shadow:none;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:14px;
  6480. color:#D7D7D7;
  6481. text-align:right;
  6482. }
  6483. #u128731.disabled {
  6484. }
  6485. #u128732_div {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:375px;
  6491. height:50px;
  6492. background:inherit;
  6493. background-color:rgba(255, 255, 255, 1);
  6494. border:none;
  6495. border-left:0px;
  6496. border-top:0px;
  6497. border-right:0px;
  6498. border-radius:0px;
  6499. border-bottom-right-radius:0px;
  6500. border-bottom-left-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:14px;
  6508. line-height:30px;
  6509. }
  6510. #u128732 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:944px;
  6514. top:391px;
  6515. width:375px;
  6516. height:50px;
  6517. display:flex;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:14px;
  6522. line-height:30px;
  6523. }
  6524. #u128732 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 2px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u128732_text {
  6532. border-width:0px;
  6533. word-wrap:break-word;
  6534. text-transform:none;
  6535. }
  6536. #u128733 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:0px;
  6542. height:0px;
  6543. }
  6544. #u128734_div {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:300px;
  6550. height:200px;
  6551. background:inherit;
  6552. background-color:rgba(255, 255, 255, 1);
  6553. border:none;
  6554. border-radius:10px;
  6555. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6556. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6557. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6558. }
  6559. #u128734 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:982px;
  6563. top:464px;
  6564. width:300px;
  6565. height:200px;
  6566. display:flex;
  6567. }
  6568. #u128734 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 2px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u128734_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. visibility:hidden;
  6580. }
  6581. #u128735_div {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:127px;
  6587. height:30px;
  6588. background:inherit;
  6589. background-color:rgba(255, 255, 255, 0);
  6590. border:none;
  6591. border-left:0px;
  6592. border-top:0px;
  6593. border-right:0px;
  6594. border-radius:0px;
  6595. border-bottom-right-radius:0px;
  6596. border-bottom-left-radius:0px;
  6597. -moz-box-shadow:none;
  6598. -webkit-box-shadow:none;
  6599. box-shadow:none;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:18px;
  6604. text-align:center;
  6605. line-height:30px;
  6606. }
  6607. #u128735 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:1069px;
  6611. top:482px;
  6612. width:127px;
  6613. height:30px;
  6614. display:flex;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:18px;
  6619. text-align:center;
  6620. line-height:30px;
  6621. }
  6622. #u128735 .text {
  6623. position:absolute;
  6624. align-self:flex-start;
  6625. padding:0px 0px 0px 0px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u128735_text {
  6630. border-width:0px;
  6631. white-space:nowrap;
  6632. text-transform:none;
  6633. }
  6634. #u128736_div {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:260px;
  6640. height:78px;
  6641. background:inherit;
  6642. background-color:rgba(255, 255, 255, 0);
  6643. border:none;
  6644. border-left:0px;
  6645. border-top:0px;
  6646. border-right:0px;
  6647. border-radius:0px;
  6648. border-bottom-right-radius:0px;
  6649. border-bottom-left-radius:0px;
  6650. -moz-box-shadow:none;
  6651. -webkit-box-shadow:none;
  6652. box-shadow:none;
  6653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:14px;
  6657. line-height:26px;
  6658. }
  6659. #u128736 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:1005px;
  6663. top:522px;
  6664. width:260px;
  6665. height:78px;
  6666. display:flex;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:14px;
  6671. line-height:26px;
  6672. }
  6673. #u128736 .text {
  6674. position:absolute;
  6675. align-self:flex-start;
  6676. padding:0px 0px 0px 0px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u128736_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. }
  6685. #u128737_img {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:301px;
  6691. height:2px;
  6692. }
  6693. #u128737 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:982px;
  6697. top:614px;
  6698. width:300px;
  6699. height:1px;
  6700. display:flex;
  6701. }
  6702. #u128737 .text {
  6703. position:absolute;
  6704. align-self:center;
  6705. padding:2px 2px 2px 2px;
  6706. box-sizing:border-box;
  6707. width:100%;
  6708. }
  6709. #u128737_text {
  6710. border-width:0px;
  6711. word-wrap:break-word;
  6712. text-transform:none;
  6713. visibility:hidden;
  6714. }
  6715. #u128738_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:41px;
  6721. height:30px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 0);
  6724. border:none;
  6725. border-left:0px;
  6726. border-top:0px;
  6727. border-right:0px;
  6728. border-radius:0px;
  6729. border-bottom-right-radius:0px;
  6730. border-bottom-left-radius:0px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:18px;
  6738. color:#1890FF;
  6739. text-align:center;
  6740. line-height:30px;
  6741. }
  6742. #u128738 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:1198px;
  6746. top:624px;
  6747. width:41px;
  6748. height:30px;
  6749. display:flex;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:18px;
  6754. color:#1890FF;
  6755. text-align:center;
  6756. line-height:30px;
  6757. }
  6758. #u128738 .text {
  6759. position:absolute;
  6760. align-self:flex-start;
  6761. padding:0px 0px 0px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u128738_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. }
  6770. #u128739_div {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:41px;
  6776. height:30px;
  6777. background:inherit;
  6778. background-color:rgba(255, 255, 255, 0);
  6779. border:none;
  6780. border-left:0px;
  6781. border-top:0px;
  6782. border-right:0px;
  6783. border-radius:0px;
  6784. border-bottom-right-radius:0px;
  6785. border-bottom-left-radius:0px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:18px;
  6793. color:#1890FF;
  6794. text-align:center;
  6795. line-height:30px;
  6796. }
  6797. #u128739 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:1028px;
  6801. top:624px;
  6802. width:41px;
  6803. height:30px;
  6804. display:flex;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:18px;
  6809. color:#1890FF;
  6810. text-align:center;
  6811. line-height:30px;
  6812. }
  6813. #u128739 .text {
  6814. position:absolute;
  6815. align-self:flex-start;
  6816. padding:0px 0px 0px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u128739_text {
  6821. border-width:0px;
  6822. word-wrap:break-word;
  6823. text-transform:none;
  6824. }
  6825. #u128740_img {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:2px;
  6831. height:49px;
  6832. }
  6833. #u128740 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:1131px;
  6837. top:615px;
  6838. width:1px;
  6839. height:48px;
  6840. display:flex;
  6841. }
  6842. #u128740 .text {
  6843. position:absolute;
  6844. align-self:center;
  6845. padding:2px 2px 2px 2px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u128740_text {
  6850. border-width:0px;
  6851. word-wrap:break-word;
  6852. text-transform:none;
  6853. visibility:hidden;
  6854. }
  6855. #u128741 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:1132px;
  6859. top:441px;
  6860. width:0px;
  6861. height:0px;
  6862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6863. font-weight:400;
  6864. font-style:normal;
  6865. font-size:12px;
  6866. color:#D9001B;
  6867. }
  6868. #u128741_seg0 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:-5px;
  6872. top:0px;
  6873. width:10px;
  6874. height:28px;
  6875. }
  6876. #u128741_seg1 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:-9px;
  6880. top:-6px;
  6881. width:18px;
  6882. height:18px;
  6883. }
  6884. #u128741_seg2 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:-16px;
  6888. top:6px;
  6889. width:32px;
  6890. height:32px;
  6891. }
  6892. #u128741_text {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:-50px;
  6896. top:4px;
  6897. width:100px;
  6898. word-wrap:break-word;
  6899. text-transform:none;
  6900. visibility:hidden;
  6901. }
  6902. #u128743_img {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:0px;
  6906. top:0px;
  6907. width:433px;
  6908. height:865px;
  6909. }
  6910. #u128743 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1381px;
  6914. top:0px;
  6915. width:433px;
  6916. height:865px;
  6917. display:flex;
  6918. }
  6919. #u128743 .text {
  6920. position:absolute;
  6921. align-self:center;
  6922. padding:2px 2px 2px 2px;
  6923. box-sizing:border-box;
  6924. width:100%;
  6925. }
  6926. #u128743_text {
  6927. border-width:0px;
  6928. word-wrap:break-word;
  6929. text-transform:none;
  6930. visibility:hidden;
  6931. }
  6932. #u128744_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:375px;
  6938. height:40px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 1);
  6941. box-sizing:border-box;
  6942. border-width:1px;
  6943. border-style:solid;
  6944. border-color:rgba(215, 215, 215, 1);
  6945. border-left:0px;
  6946. border-top:0px;
  6947. border-right:0px;
  6948. border-radius:0px;
  6949. border-bottom-right-radius:0px;
  6950. border-bottom-left-radius:0px;
  6951. -moz-box-shadow:none;
  6952. -webkit-box-shadow:none;
  6953. box-shadow:none;
  6954. }
  6955. #u128744 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:1410px;
  6959. top:67px;
  6960. width:375px;
  6961. height:40px;
  6962. display:flex;
  6963. }
  6964. #u128744 .text {
  6965. position:absolute;
  6966. align-self:center;
  6967. padding:2px 2px 2px 2px;
  6968. box-sizing:border-box;
  6969. width:100%;
  6970. }
  6971. #u128744_text {
  6972. border-width:0px;
  6973. word-wrap:break-word;
  6974. text-transform:none;
  6975. visibility:hidden;
  6976. }
  6977. #u128745 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:0px;
  6983. height:0px;
  6984. }
  6985. #u128746_div {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:88px;
  6991. height:32px;
  6992. background:inherit;
  6993. background-color:rgba(255, 255, 255, 1);
  6994. box-sizing:border-box;
  6995. border-width:1px;
  6996. border-style:solid;
  6997. border-color:rgba(242, 242, 242, 1);
  6998. border-radius:33px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. }
  7003. #u128746 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:1690px;
  7007. top:71px;
  7008. width:88px;
  7009. height:32px;
  7010. display:flex;
  7011. }
  7012. #u128746 .text {
  7013. position:absolute;
  7014. align-self:center;
  7015. padding:2px 2px 2px 2px;
  7016. box-sizing:border-box;
  7017. width:100%;
  7018. }
  7019. #u128746_text {
  7020. border-width:0px;
  7021. word-wrap:break-word;
  7022. text-transform:none;
  7023. visibility:hidden;
  7024. }
  7025. #u128747 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:0px;
  7031. height:0px;
  7032. }
  7033. #u128748_img {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:18px;
  7039. height:18px;
  7040. }
  7041. #u128748 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:1753px;
  7045. top:78px;
  7046. width:18px;
  7047. height:18px;
  7048. display:flex;
  7049. }
  7050. #u128748 .text {
  7051. position:absolute;
  7052. align-self:center;
  7053. padding:2px 2px 2px 2px;
  7054. box-sizing:border-box;
  7055. width:100%;
  7056. }
  7057. #u128748_text {
  7058. border-width:0px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. visibility:hidden;
  7062. }
  7063. #u128749_img {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:6px;
  7069. height:6px;
  7070. }
  7071. #u128749 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:1759px;
  7075. top:84px;
  7076. width:6px;
  7077. height:6px;
  7078. display:flex;
  7079. }
  7080. #u128749 .text {
  7081. position:absolute;
  7082. align-self:center;
  7083. padding:2px 2px 2px 2px;
  7084. box-sizing:border-box;
  7085. width:100%;
  7086. }
  7087. #u128749_text {
  7088. border-width:0px;
  7089. word-wrap:break-word;
  7090. text-transform:none;
  7091. visibility:hidden;
  7092. }
  7093. #u128750 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:0px;
  7099. height:0px;
  7100. }
  7101. #u128751_img {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:5px;
  7107. height:5px;
  7108. }
  7109. #u128751 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:1704px;
  7113. top:85px;
  7114. width:5px;
  7115. height:5px;
  7116. display:flex;
  7117. }
  7118. #u128751 .text {
  7119. position:absolute;
  7120. align-self:center;
  7121. padding:2px 2px 2px 2px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u128751_text {
  7126. border-width:0px;
  7127. word-wrap:break-word;
  7128. text-transform:none;
  7129. visibility:hidden;
  7130. }
  7131. #u128752_img {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:5px;
  7137. height:5px;
  7138. }
  7139. #u128752 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1720px;
  7143. top:85px;
  7144. width:5px;
  7145. height:5px;
  7146. display:flex;
  7147. }
  7148. #u128752 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u128752_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u128753_img {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:7px;
  7167. height:7px;
  7168. }
  7169. #u128753 {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:1711px;
  7173. top:84px;
  7174. width:7px;
  7175. height:7px;
  7176. display:flex;
  7177. }
  7178. #u128753 .text {
  7179. position:absolute;
  7180. align-self:center;
  7181. padding:2px 2px 2px 2px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u128753_text {
  7186. border-width:0px;
  7187. word-wrap:break-word;
  7188. text-transform:none;
  7189. visibility:hidden;
  7190. }
  7191. #u128754_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:19px;
  7197. height:2px;
  7198. }
  7199. #u128754 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:1728px;
  7203. top:87px;
  7204. width:18px;
  7205. height:1px;
  7206. display:flex;
  7207. -webkit-transform:rotate(90deg);
  7208. -moz-transform:rotate(90deg);
  7209. -ms-transform:rotate(90deg);
  7210. transform:rotate(90deg);
  7211. }
  7212. #u128754 .text {
  7213. position:absolute;
  7214. align-self:center;
  7215. padding:2px 2px 2px 2px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u128754_text {
  7220. border-width:0px;
  7221. word-wrap:break-word;
  7222. text-transform:none;
  7223. visibility:hidden;
  7224. }
  7225. #u128755_img {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:375px;
  7231. height:44px;
  7232. }
  7233. #u128755 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:1410px;
  7237. top:24px;
  7238. width:375px;
  7239. height:44px;
  7240. display:flex;
  7241. }
  7242. #u128755 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:2px 2px 2px 2px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u128755_text {
  7250. border-width:0px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. visibility:hidden;
  7254. }
  7255. #u128756_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:375px;
  7261. height:50px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 1);
  7264. box-sizing:border-box;
  7265. border-width:1px;
  7266. border-style:solid;
  7267. border-color:rgba(242, 242, 242, 1);
  7268. border-radius:26px;
  7269. border-top-left-radius:0px;
  7270. border-top-right-radius:0px;
  7271. -moz-box-shadow:none;
  7272. -webkit-box-shadow:none;
  7273. box-shadow:none;
  7274. }
  7275. #u128756 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:1410px;
  7279. top:788px;
  7280. width:375px;
  7281. height:50px;
  7282. display:flex;
  7283. }
  7284. #u128756 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:2px 2px 2px 2px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u128756_text {
  7292. border-width:0px;
  7293. word-wrap:break-word;
  7294. text-transform:none;
  7295. visibility:hidden;
  7296. }
  7297. #u128757 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:0px;
  7301. top:0px;
  7302. width:0px;
  7303. height:0px;
  7304. }
  7305. #u128758_img {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:24px;
  7311. height:24px;
  7312. }
  7313. #u128758 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:1450px;
  7317. top:792px;
  7318. width:24px;
  7319. height:24px;
  7320. display:flex;
  7321. font-size:8px;
  7322. }
  7323. #u128758 .text {
  7324. position:absolute;
  7325. align-self:center;
  7326. padding:2px 2px 2px 2px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u128758_text {
  7331. border-width:0px;
  7332. word-wrap:break-word;
  7333. text-transform:none;
  7334. }
  7335. #u128759_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:25px;
  7341. height:17px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 255, 0);
  7344. border:none;
  7345. border-radius:0px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:12px;
  7353. }
  7354. #u128759 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:1450px;
  7358. top:817px;
  7359. width:25px;
  7360. height:17px;
  7361. display:flex;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:12px;
  7366. }
  7367. #u128759 .text {
  7368. position:absolute;
  7369. align-self:flex-start;
  7370. padding:0px 0px 0px 0px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u128759_text {
  7375. border-width:0px;
  7376. white-space:nowrap;
  7377. text-transform:none;
  7378. }
  7379. #u128760 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:0px;
  7385. height:0px;
  7386. }
  7387. #u128761_img {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:24px;
  7393. height:24px;
  7394. }
  7395. #u128761 {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:1720px;
  7399. top:794px;
  7400. width:24px;
  7401. height:24px;
  7402. display:flex;
  7403. font-size:8px;
  7404. }
  7405. #u128761 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u128761_text {
  7413. border-width:0px;
  7414. word-wrap:break-word;
  7415. text-transform:none;
  7416. }
  7417. #u128762_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:25px;
  7423. height:17px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 0);
  7426. border:none;
  7427. border-radius:0px;
  7428. -moz-box-shadow:none;
  7429. -webkit-box-shadow:none;
  7430. box-shadow:none;
  7431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7432. font-weight:400;
  7433. font-style:normal;
  7434. font-size:12px;
  7435. }
  7436. #u128762 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:1720px;
  7440. top:819px;
  7441. width:25px;
  7442. height:17px;
  7443. display:flex;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. }
  7449. #u128762 .text {
  7450. position:absolute;
  7451. align-self:flex-start;
  7452. padding:0px 0px 0px 0px;
  7453. box-sizing:border-box;
  7454. width:100%;
  7455. }
  7456. #u128762_text {
  7457. border-width:0px;
  7458. white-space:nowrap;
  7459. text-transform:none;
  7460. }
  7461. #u128763_div {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:375px;
  7467. height:681px;
  7468. background:inherit;
  7469. background-color:rgba(242, 242, 242, 0.462745098039216);
  7470. border:none;
  7471. border-radius:0px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. }
  7476. #u128763 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:1410px;
  7480. top:107px;
  7481. width:375px;
  7482. height:681px;
  7483. display:flex;
  7484. }
  7485. #u128763 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:2px 2px 2px 2px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u128763_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. visibility:hidden;
  7497. }
  7498. #u128764 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:0px;
  7504. height:0px;
  7505. }
  7506. #u128765_img {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:24px;
  7512. height:24px;
  7513. }
  7514. #u128765 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:1632px;
  7518. top:792px;
  7519. width:24px;
  7520. height:24px;
  7521. display:flex;
  7522. font-size:8px;
  7523. }
  7524. #u128765 .text {
  7525. position:absolute;
  7526. align-self:center;
  7527. padding:2px 2px 2px 2px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u128765_text {
  7532. border-width:0px;
  7533. word-wrap:break-word;
  7534. text-transform:none;
  7535. }
  7536. #u128766_div {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:37px;
  7542. height:17px;
  7543. background:inherit;
  7544. background-color:rgba(255, 255, 255, 0);
  7545. border:none;
  7546. border-radius:0px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7551. font-weight:400;
  7552. font-style:normal;
  7553. font-size:12px;
  7554. }
  7555. #u128766 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:1626px;
  7559. top:817px;
  7560. width:37px;
  7561. height:17px;
  7562. display:flex;
  7563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. font-size:12px;
  7567. }
  7568. #u128766 .text {
  7569. position:absolute;
  7570. align-self:flex-start;
  7571. padding:0px 0px 0px 0px;
  7572. box-sizing:border-box;
  7573. width:100%;
  7574. }
  7575. #u128766_text {
  7576. border-width:0px;
  7577. white-space:nowrap;
  7578. text-transform:none;
  7579. }
  7580. #u128767 {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:0px;
  7586. height:0px;
  7587. }
  7588. #u128768_img {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:24px;
  7594. height:24px;
  7595. }
  7596. #u128768 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:1538px;
  7600. top:792px;
  7601. width:24px;
  7602. height:24px;
  7603. display:flex;
  7604. font-size:8px;
  7605. }
  7606. #u128768 .text {
  7607. position:absolute;
  7608. align-self:center;
  7609. padding:2px 2px 2px 2px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u128768_text {
  7614. border-width:0px;
  7615. word-wrap:break-word;
  7616. text-transform:none;
  7617. }
  7618. #u128769_div {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:37px;
  7624. height:17px;
  7625. background:inherit;
  7626. background-color:rgba(255, 255, 255, 0);
  7627. border:none;
  7628. border-radius:0px;
  7629. -moz-box-shadow:none;
  7630. -webkit-box-shadow:none;
  7631. box-shadow:none;
  7632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7633. font-weight:400;
  7634. font-style:normal;
  7635. font-size:12px;
  7636. }
  7637. #u128769 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1532px;
  7641. top:817px;
  7642. width:37px;
  7643. height:17px;
  7644. display:flex;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:12px;
  7649. }
  7650. #u128769 .text {
  7651. position:absolute;
  7652. align-self:flex-start;
  7653. padding:0px 0px 0px 0px;
  7654. box-sizing:border-box;
  7655. width:100%;
  7656. }
  7657. #u128769_text {
  7658. border-width:0px;
  7659. white-space:nowrap;
  7660. text-transform:none;
  7661. }
  7662. #u128770_div {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:375px;
  7668. height:735px;
  7669. background:inherit;
  7670. background-color:rgba(242, 242, 242, 1);
  7671. border:none;
  7672. border-top:0px;
  7673. border-radius:25px;
  7674. border-top-left-radius:0px;
  7675. border-top-right-radius:0px;
  7676. -moz-box-shadow:none;
  7677. -webkit-box-shadow:none;
  7678. box-shadow:none;
  7679. }
  7680. #u128770 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:1410px;
  7684. top:105px;
  7685. width:375px;
  7686. height:735px;
  7687. display:flex;
  7688. }
  7689. #u128770 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u128770_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. visibility:hidden;
  7701. }
  7702. #u128771_div {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:57px;
  7708. height:30px;
  7709. background:inherit;
  7710. background-color:rgba(255, 255, 255, 0);
  7711. border:none;
  7712. border-left:0px;
  7713. border-top:0px;
  7714. border-right:0px;
  7715. border-radius:0px;
  7716. border-bottom-right-radius:0px;
  7717. border-bottom-left-radius:0px;
  7718. -moz-box-shadow:none;
  7719. -webkit-box-shadow:none;
  7720. box-shadow:none;
  7721. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7722. font-weight:500;
  7723. font-style:normal;
  7724. font-size:14px;
  7725. line-height:30px;
  7726. }
  7727. #u128771 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:1569px;
  7731. top:73px;
  7732. width:57px;
  7733. height:30px;
  7734. display:flex;
  7735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7736. font-weight:500;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. line-height:30px;
  7740. }
  7741. #u128771 .text {
  7742. position:absolute;
  7743. align-self:flex-start;
  7744. padding:0px 0px 0px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u128771_text {
  7749. border-width:0px;
  7750. white-space:nowrap;
  7751. text-transform:none;
  7752. }
  7753. #u128772 {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:0px;
  7759. height:0px;
  7760. }
  7761. #u128773_img {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:11px;
  7767. height:18px;
  7768. }
  7769. #u128773 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:1427px;
  7773. top:79px;
  7774. width:11px;
  7775. height:18px;
  7776. display:flex;
  7777. }
  7778. #u128773 .text {
  7779. position:absolute;
  7780. align-self:center;
  7781. padding:2px 2px 2px 2px;
  7782. box-sizing:border-box;
  7783. width:100%;
  7784. }
  7785. #u128773_text {
  7786. border-width:0px;
  7787. word-wrap:break-word;
  7788. text-transform:none;
  7789. visibility:hidden;
  7790. }
  7791. #u128774 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:0px;
  7797. height:0px;
  7798. }
  7799. #u128775_div {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:375px;
  7805. height:120px;
  7806. background:inherit;
  7807. background-color:rgba(255, 255, 255, 1);
  7808. border:none;
  7809. border-radius:0px;
  7810. -moz-box-shadow:none;
  7811. -webkit-box-shadow:none;
  7812. box-shadow:none;
  7813. }
  7814. #u128775 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1410px;
  7818. top:115px;
  7819. width:375px;
  7820. height:120px;
  7821. display:flex;
  7822. }
  7823. #u128775 .text {
  7824. position:absolute;
  7825. align-self:center;
  7826. padding:2px 2px 2px 2px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u128775_text {
  7831. border-width:0px;
  7832. word-wrap:break-word;
  7833. text-transform:none;
  7834. visibility:hidden;
  7835. }
  7836. #u128776_div {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:48px;
  7842. height:50px;
  7843. background:inherit;
  7844. background-color:rgba(24, 144, 255, 1);
  7845. border:none;
  7846. border-radius:4px;
  7847. -moz-box-shadow:none;
  7848. -webkit-box-shadow:none;
  7849. box-shadow:none;
  7850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7851. font-weight:400;
  7852. font-style:normal;
  7853. color:#FFFFFF;
  7854. }
  7855. #u128776 {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:1425px;
  7859. top:135px;
  7860. width:48px;
  7861. height:50px;
  7862. display:flex;
  7863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. color:#FFFFFF;
  7867. }
  7868. #u128776 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 2px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u128776_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. }
  7880. #u128777_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:127px;
  7886. height:30px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 0);
  7889. border:none;
  7890. border-left:0px;
  7891. border-top:0px;
  7892. border-right:0px;
  7893. border-radius:0px;
  7894. border-bottom-right-radius:0px;
  7895. border-bottom-left-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:18px;
  7903. line-height:30px;
  7904. }
  7905. #u128777 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:1487px;
  7909. top:135px;
  7910. width:127px;
  7911. height:30px;
  7912. display:flex;
  7913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:18px;
  7917. line-height:30px;
  7918. }
  7919. #u128777 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u128777_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u128778_img {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:85px;
  7937. height:17px;
  7938. }
  7939. #u128778 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:1487px;
  7943. top:203px;
  7944. width:85px;
  7945. height:17px;
  7946. display:flex;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:12px;
  7951. }
  7952. #u128778 .text {
  7953. position:absolute;
  7954. align-self:center;
  7955. padding:0px 0px 0px 0px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u128778_text {
  7960. border-width:0px;
  7961. white-space:nowrap;
  7962. text-transform:none;
  7963. }
  7964. #u128779 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:0px;
  7970. height:0px;
  7971. }
  7972. #u128780_div {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:60px;
  7978. height:20px;
  7979. background:inherit;
  7980. background-color:rgba(255, 255, 255, 1);
  7981. box-sizing:border-box;
  7982. border-width:1px;
  7983. border-style:solid;
  7984. border-color:rgba(215, 215, 215, 1);
  7985. border-radius:2px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. }
  7990. #u128780 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:1487px;
  7994. top:170px;
  7995. width:60px;
  7996. height:20px;
  7997. display:flex;
  7998. }
  7999. #u128780 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 2px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u128780_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u128781 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:0px;
  8018. height:0px;
  8019. }
  8020. #u128782_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:37px;
  8026. height:17px;
  8027. background:inherit;
  8028. background-color:rgba(255, 255, 255, 0);
  8029. border:none;
  8030. border-left:0px;
  8031. border-top:0px;
  8032. border-right:0px;
  8033. border-radius:0px;
  8034. border-bottom-right-radius:0px;
  8035. border-bottom-left-radius:0px;
  8036. -moz-box-shadow:none;
  8037. -webkit-box-shadow:none;
  8038. box-shadow:none;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:12px;
  8043. color:#7F7F7F;
  8044. }
  8045. #u128782 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:1506px;
  8049. top:172px;
  8050. width:37px;
  8051. height:17px;
  8052. display:flex;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:12px;
  8057. color:#7F7F7F;
  8058. }
  8059. #u128782 .text {
  8060. position:absolute;
  8061. align-self:flex-start;
  8062. padding:0px 0px 0px 0px;
  8063. box-sizing:border-box;
  8064. width:100%;
  8065. }
  8066. #u128782_text {
  8067. border-width:0px;
  8068. white-space:nowrap;
  8069. text-transform:none;
  8070. }
  8071. #u128783 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:0px;
  8077. height:0px;
  8078. }
  8079. #u128784_img {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:0px;
  8084. width:12px;
  8085. height:12px;
  8086. }
  8087. #u128784 {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:1491px;
  8091. top:174px;
  8092. width:12px;
  8093. height:12px;
  8094. display:flex;
  8095. }
  8096. #u128784 .text {
  8097. position:absolute;
  8098. align-self:center;
  8099. padding:2px 2px 2px 2px;
  8100. box-sizing:border-box;
  8101. width:100%;
  8102. }
  8103. #u128784_text {
  8104. border-width:0px;
  8105. word-wrap:break-word;
  8106. text-transform:none;
  8107. visibility:hidden;
  8108. }
  8109. #u128785_img {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:0px;
  8114. width:6px;
  8115. height:4px;
  8116. }
  8117. #u128785 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:1494px;
  8121. top:178px;
  8122. width:6px;
  8123. height:4px;
  8124. display:flex;
  8125. }
  8126. #u128785 .text {
  8127. position:absolute;
  8128. align-self:center;
  8129. padding:2px 2px 2px 2px;
  8130. box-sizing:border-box;
  8131. width:100%;
  8132. }
  8133. #u128785_text {
  8134. border-width:0px;
  8135. word-wrap:break-word;
  8136. text-transform:none;
  8137. visibility:hidden;
  8138. }
  8139. #u128786_img {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:97px;
  8145. height:17px;
  8146. }
  8147. #u128786 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:1427px;
  8151. top:255px;
  8152. width:97px;
  8153. height:17px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:12px;
  8159. color:#AAAAAA;
  8160. }
  8161. #u128786 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:0px 0px 0px 0px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u128786_text {
  8169. border-width:0px;
  8170. white-space:nowrap;
  8171. text-transform:none;
  8172. }
  8173. #u128787 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:0px;
  8179. height:0px;
  8180. }
  8181. #u128788_div {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:375px;
  8187. height:50px;
  8188. background:inherit;
  8189. background-color:rgba(255, 255, 255, 1);
  8190. border:none;
  8191. border-left:0px;
  8192. border-top:0px;
  8193. border-right:0px;
  8194. border-radius:0px;
  8195. border-bottom-right-radius:0px;
  8196. border-bottom-left-radius:0px;
  8197. -moz-box-shadow:none;
  8198. -webkit-box-shadow:none;
  8199. box-shadow:none;
  8200. }
  8201. #u128788 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:1410px;
  8205. top:280px;
  8206. width:375px;
  8207. height:50px;
  8208. display:flex;
  8209. }
  8210. #u128788 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u128788_text {
  8218. border-width:0px;
  8219. word-wrap:break-word;
  8220. text-transform:none;
  8221. visibility:hidden;
  8222. }
  8223. #u128789_div {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:29px;
  8229. height:30px;
  8230. background:inherit;
  8231. background-color:rgba(255, 255, 255, 0);
  8232. border:none;
  8233. border-left:0px;
  8234. border-top:0px;
  8235. border-right:0px;
  8236. border-radius:0px;
  8237. border-bottom-right-radius:0px;
  8238. border-bottom-left-radius:0px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:14px;
  8246. line-height:30px;
  8247. }
  8248. #u128789 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:1430px;
  8252. top:291px;
  8253. width:29px;
  8254. height:30px;
  8255. display:flex;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:14px;
  8260. line-height:30px;
  8261. }
  8262. #u128789 .text {
  8263. position:absolute;
  8264. align-self:flex-start;
  8265. padding:0px 0px 0px 0px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u128789_text {
  8270. border-width:0px;
  8271. white-space:nowrap;
  8272. text-transform:none;
  8273. }
  8274. #u128790_input {
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:205px;
  8279. height:25px;
  8280. padding:2px 2px 2px 2px;
  8281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:14px;
  8285. letter-spacing:normal;
  8286. color:#D7D7D7;
  8287. vertical-align:none;
  8288. text-align:right;
  8289. text-transform:none;
  8290. background-color:transparent;
  8291. border-color:transparent;
  8292. }
  8293. #u128790_input.disabled {
  8294. position:absolute;
  8295. left:0px;
  8296. top:0px;
  8297. width:205px;
  8298. height:25px;
  8299. padding:2px 2px 2px 2px;
  8300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:14px;
  8304. letter-spacing:normal;
  8305. color:#D7D7D7;
  8306. vertical-align:none;
  8307. text-align:right;
  8308. text-transform:none;
  8309. background-color:transparent;
  8310. border-color:transparent;
  8311. }
  8312. #u128790_div {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:205px;
  8318. height:25px;
  8319. background:inherit;
  8320. background-color:rgba(255, 255, 255, 1);
  8321. border:none;
  8322. border-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:14px;
  8330. color:#D7D7D7;
  8331. text-align:right;
  8332. }
  8333. #u128790 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:1560px;
  8337. top:293px;
  8338. width:205px;
  8339. height:25px;
  8340. display:flex;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:14px;
  8345. color:#D7D7D7;
  8346. text-align:right;
  8347. }
  8348. #u128790 .text {
  8349. position:absolute;
  8350. align-self:center;
  8351. padding:2px 2px 2px 2px;
  8352. box-sizing:border-box;
  8353. width:100%;
  8354. }
  8355. #u128790_div.disabled {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:205px;
  8361. height:25px;
  8362. background:inherit;
  8363. background-color:rgba(240, 240, 240, 1);
  8364. border:none;
  8365. border-radius:0px;
  8366. -moz-box-shadow:none;
  8367. -webkit-box-shadow:none;
  8368. box-shadow:none;
  8369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8370. font-weight:400;
  8371. font-style:normal;
  8372. font-size:14px;
  8373. color:#D7D7D7;
  8374. text-align:right;
  8375. }
  8376. #u128790.disabled {
  8377. }
  8378. #u128791 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:0px;
  8384. height:0px;
  8385. }
  8386. #u128792_div {
  8387. border-width:0px;
  8388. position:absolute;
  8389. left:0px;
  8390. top:0px;
  8391. width:375px;
  8392. height:50px;
  8393. background:inherit;
  8394. background-color:rgba(255, 255, 255, 1);
  8395. border:none;
  8396. border-left:0px;
  8397. border-top:0px;
  8398. border-right:0px;
  8399. border-radius:0px;
  8400. border-bottom-right-radius:0px;
  8401. border-bottom-left-radius:0px;
  8402. -moz-box-shadow:none;
  8403. -webkit-box-shadow:none;
  8404. box-shadow:none;
  8405. }
  8406. #u128792 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1410px;
  8410. top:331px;
  8411. width:375px;
  8412. height:50px;
  8413. display:flex;
  8414. }
  8415. #u128792 .text {
  8416. position:absolute;
  8417. align-self:center;
  8418. padding:2px 2px 2px 2px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u128792_text {
  8423. border-width:0px;
  8424. word-wrap:break-word;
  8425. text-transform:none;
  8426. visibility:hidden;
  8427. }
  8428. #u128793_div {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:29px;
  8434. height:30px;
  8435. background:inherit;
  8436. background-color:rgba(255, 255, 255, 0);
  8437. border:none;
  8438. border-left:0px;
  8439. border-top:0px;
  8440. border-right:0px;
  8441. border-radius:0px;
  8442. border-bottom-right-radius:0px;
  8443. border-bottom-left-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:14px;
  8451. line-height:30px;
  8452. }
  8453. #u128793 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:1430px;
  8457. top:342px;
  8458. width:29px;
  8459. height:30px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:14px;
  8465. line-height:30px;
  8466. }
  8467. #u128793 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u128793_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u128794_input {
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:205px;
  8484. height:25px;
  8485. padding:2px 2px 2px 2px;
  8486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. font-size:14px;
  8490. letter-spacing:normal;
  8491. color:#D7D7D7;
  8492. vertical-align:none;
  8493. text-align:right;
  8494. text-transform:none;
  8495. background-color:transparent;
  8496. border-color:transparent;
  8497. }
  8498. #u128794_input.disabled {
  8499. position:absolute;
  8500. left:0px;
  8501. top:0px;
  8502. width:205px;
  8503. height:25px;
  8504. padding:2px 2px 2px 2px;
  8505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:14px;
  8509. letter-spacing:normal;
  8510. color:#D7D7D7;
  8511. vertical-align:none;
  8512. text-align:right;
  8513. text-transform:none;
  8514. background-color:transparent;
  8515. border-color:transparent;
  8516. }
  8517. #u128794_div {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:0px;
  8521. top:0px;
  8522. width:205px;
  8523. height:25px;
  8524. background:inherit;
  8525. background-color:rgba(255, 255, 255, 1);
  8526. border:none;
  8527. border-radius:0px;
  8528. -moz-box-shadow:none;
  8529. -webkit-box-shadow:none;
  8530. box-shadow:none;
  8531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:14px;
  8535. color:#D7D7D7;
  8536. text-align:right;
  8537. }
  8538. #u128794 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:1560px;
  8542. top:344px;
  8543. width:205px;
  8544. height:25px;
  8545. display:flex;
  8546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:14px;
  8550. color:#D7D7D7;
  8551. text-align:right;
  8552. }
  8553. #u128794 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 2px 2px 2px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u128794_div.disabled {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:0px;
  8564. top:0px;
  8565. width:205px;
  8566. height:25px;
  8567. background:inherit;
  8568. background-color:rgba(240, 240, 240, 1);
  8569. border:none;
  8570. border-radius:0px;
  8571. -moz-box-shadow:none;
  8572. -webkit-box-shadow:none;
  8573. box-shadow:none;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:14px;
  8578. color:#D7D7D7;
  8579. text-align:right;
  8580. }
  8581. #u128794.disabled {
  8582. }