styles.css 135 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1804px;
  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. #u212615_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u212615 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u212615 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u212615_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u212616_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. #u212616 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u212616 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u212616_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u212617 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u212618_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. #u212618 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u212618 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u212618_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u212619 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u212620_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u212620 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u212620 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u212620_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u212621_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u212621 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u212621 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u212621_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u212622 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u212623_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u212623 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u212623 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u212623_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u212624_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u212624 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u212624 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u212624_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u212625_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u212625 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u212625 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u212625_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u212626_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u212626 {
  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. #u212626 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u212626_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u212627_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u212627 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u212627 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u212627_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u212628_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. #u212628 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u212628 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u212628_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u212629 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u212630_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u212630 {
  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. #u212630 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u212630_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u212631_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. #u212631 {
  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. #u212631 .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. #u212631_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u212632 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u212633_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u212633 {
  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. #u212633 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u212633_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u212634_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. #u212634 {
  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. #u212634 .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. #u212634_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u212635_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. #u212635 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u212635 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u212635_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u212636 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u212637_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u212637 {
  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. #u212637 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u212637_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u212638_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. #u212638 {
  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. #u212638 .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. #u212638_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u212639 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u212640_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u212640 {
  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. #u212640 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u212640_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u212641_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. #u212641 {
  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. #u212641 .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. #u212641_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u212642_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:734px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  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. #u212642 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:734px;
  804. display:flex;
  805. }
  806. #u212642 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u212642_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u212643_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:12px;
  825. height:12px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. box-sizing:border-box;
  829. border-width:2px;
  830. border-style:solid;
  831. border-color:rgba(51, 51, 51, 1);
  832. border-right:0px;
  833. border-bottom:0px;
  834. border-radius:0px;
  835. border-top-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u212643 {
  842. border-width:0px;
  843. position:absolute;
  844. left:39px;
  845. top:81px;
  846. width:12px;
  847. height:12px;
  848. display:flex;
  849. -webkit-transform:rotate(315deg);
  850. -moz-transform:rotate(315deg);
  851. -ms-transform:rotate(315deg);
  852. transform:rotate(315deg);
  853. }
  854. #u212643 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u212643_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u212644_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:85px;
  873. height:30px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. border:none;
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. font-size:14px;
  890. line-height:30px;
  891. }
  892. #u212644 {
  893. border-width:0px;
  894. position:absolute;
  895. left:174px;
  896. top:72px;
  897. width:85px;
  898. height:30px;
  899. display:flex;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. line-height:30px;
  905. }
  906. #u212644 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:0px 0px 0px 0px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u212644_text {
  914. border-width:0px;
  915. white-space:nowrap;
  916. text-transform:none;
  917. }
  918. #u212645 {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:0px;
  924. height:0px;
  925. }
  926. #u212646_div {
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:375px;
  932. height:170px;
  933. background:inherit;
  934. background-color:rgba(255, 255, 255, 1);
  935. border:none;
  936. border-left:0px;
  937. border-top:0px;
  938. border-right:0px;
  939. border-radius:0px;
  940. border-bottom-right-radius:0px;
  941. border-bottom-left-radius:0px;
  942. -moz-box-shadow:none;
  943. -webkit-box-shadow:none;
  944. box-shadow:none;
  945. }
  946. #u212646 {
  947. border-width:0px;
  948. position:absolute;
  949. left:29px;
  950. top:382px;
  951. width:375px;
  952. height:170px;
  953. display:flex;
  954. }
  955. #u212646 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u212646_text {
  963. border-width:0px;
  964. word-wrap:break-word;
  965. text-transform:none;
  966. visibility:hidden;
  967. }
  968. #u212647_div {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:253px;
  974. height:30px;
  975. background:inherit;
  976. background-color:rgba(255, 255, 255, 0);
  977. border:none;
  978. border-left:0px;
  979. border-top:0px;
  980. border-right:0px;
  981. border-radius:0px;
  982. border-bottom-right-radius:0px;
  983. border-bottom-left-radius:0px;
  984. -moz-box-shadow:none;
  985. -webkit-box-shadow:none;
  986. box-shadow:none;
  987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  988. font-weight:400;
  989. font-style:normal;
  990. font-size:12px;
  991. line-height:30px;
  992. }
  993. #u212647 {
  994. border-width:0px;
  995. position:absolute;
  996. left:49px;
  997. top:422px;
  998. width:253px;
  999. height:30px;
  1000. display:flex;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. font-size:12px;
  1005. line-height:30px;
  1006. }
  1007. #u212647 .text {
  1008. position:absolute;
  1009. align-self:flex-start;
  1010. padding:0px 0px 0px 0px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u212647_text {
  1015. border-width:0px;
  1016. white-space:nowrap;
  1017. text-transform:none;
  1018. }
  1019. #u212648_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:57px;
  1025. height:30px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-left:0px;
  1030. border-top:0px;
  1031. border-right:0px;
  1032. border-radius:0px;
  1033. border-bottom-right-radius:0px;
  1034. border-bottom-left-radius:0px;
  1035. -moz-box-shadow:none;
  1036. -webkit-box-shadow:none;
  1037. box-shadow:none;
  1038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1039. font-weight:400;
  1040. font-style:normal;
  1041. font-size:14px;
  1042. color:#AAAAAA;
  1043. line-height:30px;
  1044. }
  1045. #u212648 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:49px;
  1049. top:392px;
  1050. width:57px;
  1051. height:30px;
  1052. display:flex;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:14px;
  1057. color:#AAAAAA;
  1058. line-height:30px;
  1059. }
  1060. #u212648 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:0px 0px 0px 0px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u212648_text {
  1068. border-width:0px;
  1069. white-space:nowrap;
  1070. text-transform:none;
  1071. }
  1072. #u212649_img {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:100px;
  1078. height:74px;
  1079. }
  1080. #u212649 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:49px;
  1084. top:462px;
  1085. width:100px;
  1086. height:74px;
  1087. display:flex;
  1088. }
  1089. #u212649 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u212649_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u212650_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:100px;
  1108. height:74px;
  1109. }
  1110. #u212650 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:159px;
  1114. top:462px;
  1115. width:100px;
  1116. height:74px;
  1117. display:flex;
  1118. }
  1119. #u212650 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u212650_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u212651_div {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:376px;
  1138. height:60px;
  1139. background:inherit;
  1140. background-color:rgba(255, 255, 255, 1);
  1141. box-sizing:border-box;
  1142. border-width:1px;
  1143. border-style:solid;
  1144. border-color:rgba(215, 215, 215, 1);
  1145. border-top:0px;
  1146. border-radius:22px;
  1147. border-top-left-radius:0px;
  1148. border-top-right-radius:0px;
  1149. -moz-box-shadow:none;
  1150. -webkit-box-shadow:none;
  1151. box-shadow:none;
  1152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1153. font-weight:400;
  1154. font-style:normal;
  1155. font-size:18px;
  1156. color:#298FFF;
  1157. }
  1158. #u212651 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:29px;
  1162. top:781px;
  1163. width:376px;
  1164. height:60px;
  1165. display:flex;
  1166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1167. font-weight:400;
  1168. font-style:normal;
  1169. font-size:18px;
  1170. color:#298FFF;
  1171. }
  1172. #u212651 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u212651_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. }
  1184. #u212652 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:0px;
  1190. height:0px;
  1191. }
  1192. #u212653_div {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:342px;
  1198. height:180px;
  1199. background:inherit;
  1200. background-color:rgba(255, 255, 255, 1);
  1201. border:none;
  1202. border-radius:10px;
  1203. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1204. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1205. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1206. }
  1207. #u212653 {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:49px;
  1211. top:499px;
  1212. width:342px;
  1213. height:180px;
  1214. display:flex;
  1215. }
  1216. #u212653 .text {
  1217. position:absolute;
  1218. align-self:center;
  1219. padding:2px 2px 2px 2px;
  1220. box-sizing:border-box;
  1221. width:100%;
  1222. }
  1223. #u212653_text {
  1224. border-width:0px;
  1225. word-wrap:break-word;
  1226. text-transform:none;
  1227. visibility:hidden;
  1228. }
  1229. #u212654_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:163px;
  1235. height:30px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 0);
  1238. border:none;
  1239. border-left:0px;
  1240. border-top:0px;
  1241. border-right:0px;
  1242. border-radius:0px;
  1243. border-bottom-right-radius:0px;
  1244. border-bottom-left-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1249. font-weight:500;
  1250. font-style:normal;
  1251. font-size:18px;
  1252. text-align:center;
  1253. line-height:30px;
  1254. }
  1255. #u212654 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:138px;
  1259. top:548px;
  1260. width:163px;
  1261. height:30px;
  1262. display:flex;
  1263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1264. font-weight:500;
  1265. font-style:normal;
  1266. font-size:18px;
  1267. text-align:center;
  1268. line-height:30px;
  1269. }
  1270. #u212654 .text {
  1271. position:absolute;
  1272. align-self:flex-start;
  1273. padding:0px 0px 0px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u212654_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u212655_img {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:343px;
  1288. height:2px;
  1289. }
  1290. #u212655 {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:49px;
  1294. top:612px;
  1295. width:342px;
  1296. height:1px;
  1297. display:flex;
  1298. }
  1299. #u212655 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u212655_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. visibility:hidden;
  1311. }
  1312. #u212656_div {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:37px;
  1318. height:30px;
  1319. background:inherit;
  1320. background-color:rgba(255, 255, 255, 0);
  1321. border:none;
  1322. border-left:0px;
  1323. border-top:0px;
  1324. border-right:0px;
  1325. border-radius:0px;
  1326. border-bottom-right-radius:0px;
  1327. border-bottom-left-radius:0px;
  1328. -moz-box-shadow:none;
  1329. -webkit-box-shadow:none;
  1330. box-shadow:none;
  1331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1332. font-weight:400;
  1333. font-style:normal;
  1334. font-size:18px;
  1335. color:#1890FF;
  1336. text-align:right;
  1337. line-height:30px;
  1338. }
  1339. #u212656 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:294px;
  1343. top:631px;
  1344. width:37px;
  1345. height:30px;
  1346. display:flex;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:18px;
  1351. color:#1890FF;
  1352. text-align:right;
  1353. line-height:30px;
  1354. }
  1355. #u212656 .text {
  1356. position:absolute;
  1357. align-self:flex-start;
  1358. padding:0px 0px 0px 0px;
  1359. box-sizing:border-box;
  1360. width:100%;
  1361. }
  1362. #u212656_text {
  1363. border-width:0px;
  1364. white-space:nowrap;
  1365. text-transform:none;
  1366. }
  1367. #u212657_div {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:37px;
  1373. height:30px;
  1374. background:inherit;
  1375. background-color:rgba(255, 255, 255, 0);
  1376. border:none;
  1377. border-left:0px;
  1378. border-top:0px;
  1379. border-right:0px;
  1380. border-radius:0px;
  1381. border-bottom-right-radius:0px;
  1382. border-bottom-left-radius:0px;
  1383. -moz-box-shadow:none;
  1384. -webkit-box-shadow:none;
  1385. box-shadow:none;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:18px;
  1390. color:#1890FF;
  1391. text-align:right;
  1392. line-height:30px;
  1393. }
  1394. #u212657 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:119px;
  1398. top:631px;
  1399. width:37px;
  1400. height:30px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:18px;
  1406. color:#1890FF;
  1407. text-align:right;
  1408. line-height:30px;
  1409. }
  1410. #u212657 .text {
  1411. position:absolute;
  1412. align-self:flex-start;
  1413. padding:0px 0px 0px 0px;
  1414. box-sizing:border-box;
  1415. width:100%;
  1416. }
  1417. #u212657_text {
  1418. border-width:0px;
  1419. white-space:nowrap;
  1420. text-transform:none;
  1421. }
  1422. #u212658_img {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:2px;
  1428. height:67px;
  1429. }
  1430. #u212658 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:220px;
  1434. top:613px;
  1435. width:1px;
  1436. height:66px;
  1437. display:flex;
  1438. }
  1439. #u212658 .text {
  1440. position:absolute;
  1441. align-self:center;
  1442. padding:2px 2px 2px 2px;
  1443. box-sizing:border-box;
  1444. width:100%;
  1445. }
  1446. #u212658_text {
  1447. border-width:0px;
  1448. word-wrap:break-word;
  1449. text-transform:none;
  1450. visibility:hidden;
  1451. }
  1452. #u212659_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:200px;
  1458. height:30px;
  1459. background:inherit;
  1460. background-color:rgba(51, 51, 51, 0.8);
  1461. border:none;
  1462. border-radius:20px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:14px;
  1470. color:#FFFFFF;
  1471. text-align:center;
  1472. line-height:30px;
  1473. }
  1474. #u212659 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:119px;
  1478. top:598px;
  1479. width:200px;
  1480. height:30px;
  1481. display:flex;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:14px;
  1486. color:#FFFFFF;
  1487. text-align:center;
  1488. line-height:30px;
  1489. }
  1490. #u212659 .text {
  1491. position:absolute;
  1492. align-self:center;
  1493. padding:0px 0px 0px 0px;
  1494. box-sizing:border-box;
  1495. width:100%;
  1496. }
  1497. #u212659_text {
  1498. border-width:0px;
  1499. word-wrap:break-word;
  1500. text-transform:none;
  1501. }
  1502. #u212660 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:0px;
  1506. top:0px;
  1507. width:0px;
  1508. height:0px;
  1509. }
  1510. #u212661_div {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:359px;
  1516. height:194px;
  1517. background:inherit;
  1518. background-color:rgba(255, 255, 255, 1);
  1519. border:none;
  1520. border-left:0px;
  1521. border-top:0px;
  1522. border-right:0px;
  1523. border-radius:0px;
  1524. border-bottom-right-radius:0px;
  1525. border-bottom-left-radius:0px;
  1526. -moz-box-shadow:none;
  1527. -webkit-box-shadow:none;
  1528. box-shadow:none;
  1529. }
  1530. #u212661 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:39px;
  1534. top:178px;
  1535. width:359px;
  1536. height:194px;
  1537. display:flex;
  1538. }
  1539. #u212661 .text {
  1540. position:absolute;
  1541. align-self:center;
  1542. padding:2px 2px 2px 2px;
  1543. box-sizing:border-box;
  1544. width:100%;
  1545. }
  1546. #u212661_text {
  1547. border-width:0px;
  1548. word-wrap:break-word;
  1549. text-transform:none;
  1550. visibility:hidden;
  1551. }
  1552. #u212662 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:0px;
  1558. height:0px;
  1559. }
  1560. #u212663_img {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:340px;
  1566. height:140px;
  1567. }
  1568. #u212663 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:49px;
  1572. top:218px;
  1573. width:340px;
  1574. height:140px;
  1575. display:flex;
  1576. }
  1577. #u212663 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u212663_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. visibility:hidden;
  1589. }
  1590. #u212664_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:107px;
  1596. height:30px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border:none;
  1600. border-left:0px;
  1601. border-top:0px;
  1602. border-right:0px;
  1603. border-radius:0px;
  1604. border-bottom-right-radius:0px;
  1605. border-bottom-left-radius:0px;
  1606. -moz-box-shadow:none;
  1607. -webkit-box-shadow:none;
  1608. box-shadow:none;
  1609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1610. font-weight:500;
  1611. font-style:normal;
  1612. font-size:14px;
  1613. line-height:30px;
  1614. }
  1615. #u212664 {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:57px;
  1619. top:246px;
  1620. width:107px;
  1621. height:30px;
  1622. display:flex;
  1623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1624. font-weight:500;
  1625. font-style:normal;
  1626. font-size:14px;
  1627. line-height:30px;
  1628. }
  1629. #u212664 .text {
  1630. position:absolute;
  1631. align-self:flex-start;
  1632. padding:0px 0px 0px 0px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u212664_text {
  1637. border-width:0px;
  1638. white-space:nowrap;
  1639. text-transform:none;
  1640. }
  1641. #u212665_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:177px;
  1647. height:75px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 0);
  1650. border:none;
  1651. border-left:0px;
  1652. border-top:0px;
  1653. border-right:0px;
  1654. border-radius:0px;
  1655. border-bottom-right-radius:0px;
  1656. border-bottom-left-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#7F7F7F;
  1665. line-height:25px;
  1666. }
  1667. #u212665 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:57px;
  1671. top:276px;
  1672. width:177px;
  1673. height:75px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:12px;
  1679. color:#7F7F7F;
  1680. line-height:25px;
  1681. }
  1682. #u212665 .text {
  1683. position:absolute;
  1684. align-self:flex-start;
  1685. padding:0px 0px 0px 0px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u212665_text {
  1690. border-width:0px;
  1691. white-space:nowrap;
  1692. text-transform:none;
  1693. }
  1694. #u212666_div {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:57px;
  1700. height:25px;
  1701. background:inherit;
  1702. background-color:rgba(255, 255, 255, 0);
  1703. border:none;
  1704. border-left:0px;
  1705. border-top:0px;
  1706. border-right:0px;
  1707. border-radius:0px;
  1708. border-bottom-right-radius:0px;
  1709. border-bottom-left-radius:0px;
  1710. -moz-box-shadow:none;
  1711. -webkit-box-shadow:none;
  1712. box-shadow:none;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. text-align:right;
  1717. }
  1718. #u212666 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:312px;
  1722. top:286px;
  1723. width:57px;
  1724. height:25px;
  1725. display:flex;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. text-align:right;
  1730. }
  1731. #u212666 .text {
  1732. position:absolute;
  1733. align-self:flex-start;
  1734. padding:0px 0px 0px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u212666_text {
  1739. border-width:0px;
  1740. white-space:nowrap;
  1741. text-transform:none;
  1742. }
  1743. #u212667_div {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:106px;
  1749. height:11px;
  1750. background:inherit;
  1751. background-color:rgba(255, 255, 255, 0);
  1752. border:none;
  1753. border-left:0px;
  1754. border-top:0px;
  1755. border-right:0px;
  1756. border-radius:0px;
  1757. border-bottom-right-radius:0px;
  1758. border-bottom-left-radius:0px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:10px;
  1766. color:#000000;
  1767. text-align:center;
  1768. }
  1769. #u212667 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:57px;
  1773. top:229px;
  1774. width:106px;
  1775. height:11px;
  1776. display:flex;
  1777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:10px;
  1781. color:#000000;
  1782. text-align:center;
  1783. }
  1784. #u212667 .text {
  1785. position:absolute;
  1786. align-self:flex-start;
  1787. padding:0px 0px 0px 0px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u212667_text {
  1792. border-width:0px;
  1793. white-space:nowrap;
  1794. text-transform:none;
  1795. }
  1796. #u212668_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:31px;
  1802. height:24px;
  1803. background:inherit;
  1804. background-color:rgba(255, 255, 255, 0);
  1805. border:none;
  1806. border-left:0px;
  1807. border-top:0px;
  1808. border-right:0px;
  1809. border-radius:0px;
  1810. border-bottom-right-radius:0px;
  1811. border-bottom-left-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:10px;
  1819. color:#555555;
  1820. text-align:right;
  1821. line-height:24px;
  1822. }
  1823. #u212668 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:348px;
  1827. top:221px;
  1828. width:31px;
  1829. height:24px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:10px;
  1835. color:#555555;
  1836. text-align:right;
  1837. line-height:24px;
  1838. }
  1839. #u212668 .text {
  1840. position:absolute;
  1841. align-self:flex-start;
  1842. padding:0px 0px 0px 0px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u212668_text {
  1847. border-width:0px;
  1848. white-space:nowrap;
  1849. text-transform:none;
  1850. }
  1851. #u212669_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:85px;
  1857. height:30px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 0);
  1860. border:none;
  1861. border-left:0px;
  1862. border-top:0px;
  1863. border-right:0px;
  1864. border-radius:0px;
  1865. border-bottom-right-radius:0px;
  1866. border-bottom-left-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:14px;
  1874. line-height:30px;
  1875. }
  1876. #u212669 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:49px;
  1880. top:188px;
  1881. width:85px;
  1882. height:30px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. line-height:30px;
  1889. }
  1890. #u212669 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:0px 0px 0px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u212669_text {
  1898. border-width:0px;
  1899. white-space:nowrap;
  1900. text-transform:none;
  1901. }
  1902. #u212670 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:0px;
  1908. height:0px;
  1909. }
  1910. #u212671_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:359px;
  1916. height:60px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 1);
  1919. border:none;
  1920. border-left:0px;
  1921. border-top:0px;
  1922. border-right:0px;
  1923. border-radius:4px;
  1924. border-bottom-right-radius:0px;
  1925. border-bottom-left-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. }
  1930. #u212671 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:39px;
  1934. top:117px;
  1935. width:359px;
  1936. height:60px;
  1937. display:flex;
  1938. }
  1939. #u212671 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 2px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u212671_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u212672_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:71px;
  1957. height:40px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 0);
  1960. border:none;
  1961. border-left:0px;
  1962. border-top:0px;
  1963. border-right:0px;
  1964. border-radius:0px;
  1965. border-bottom-right-radius:0px;
  1966. border-bottom-left-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. color:#AAAAAA;
  1975. line-height:40px;
  1976. }
  1977. #u212672 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:57px;
  1981. top:127px;
  1982. width:71px;
  1983. height:40px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:14px;
  1989. color:#AAAAAA;
  1990. line-height:40px;
  1991. }
  1992. #u212672 .text {
  1993. position:absolute;
  1994. align-self:flex-start;
  1995. padding:0px 0px 0px 0px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u212672_text {
  2000. border-width:0px;
  2001. white-space:nowrap;
  2002. text-transform:none;
  2003. }
  2004. #u212673_div {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:43px;
  2010. height:40px;
  2011. background:inherit;
  2012. background-color:rgba(255, 255, 255, 0);
  2013. border:none;
  2014. border-left:0px;
  2015. border-top:0px;
  2016. border-right:0px;
  2017. border-radius:0px;
  2018. border-bottom-right-radius:0px;
  2019. border-bottom-left-radius:0px;
  2020. -moz-box-shadow:none;
  2021. -webkit-box-shadow:none;
  2022. box-shadow:none;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. line-height:40px;
  2028. }
  2029. #u212673 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:135px;
  2033. top:127px;
  2034. width:43px;
  2035. height:40px;
  2036. display:flex;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:14px;
  2041. line-height:40px;
  2042. }
  2043. #u212673 .text {
  2044. position:absolute;
  2045. align-self:flex-start;
  2046. padding:0px 0px 0px 0px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u212673_text {
  2051. border-width:0px;
  2052. white-space:nowrap;
  2053. text-transform:none;
  2054. }
  2055. #u212675_img {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:433px;
  2061. height:865px;
  2062. }
  2063. #u212675 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:455px;
  2067. top:0px;
  2068. width:433px;
  2069. height:865px;
  2070. display:flex;
  2071. }
  2072. #u212675 .text {
  2073. position:absolute;
  2074. align-self:center;
  2075. padding:2px 2px 2px 2px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u212675_text {
  2080. border-width:0px;
  2081. word-wrap:break-word;
  2082. text-transform:none;
  2083. visibility:hidden;
  2084. }
  2085. #u212676_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:375px;
  2091. height:40px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 1);
  2094. box-sizing:border-box;
  2095. border-width:1px;
  2096. border-style:solid;
  2097. border-color:rgba(215, 215, 215, 1);
  2098. border-left:0px;
  2099. border-top:0px;
  2100. border-right:0px;
  2101. border-radius:0px;
  2102. border-bottom-right-radius:0px;
  2103. border-bottom-left-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. }
  2108. #u212676 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:484px;
  2112. top:67px;
  2113. width:375px;
  2114. height:40px;
  2115. display:flex;
  2116. }
  2117. #u212676 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u212676_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u212677 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u212678_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:88px;
  2144. height:32px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 1);
  2147. box-sizing:border-box;
  2148. border-width:1px;
  2149. border-style:solid;
  2150. border-color:rgba(242, 242, 242, 1);
  2151. border-radius:33px;
  2152. -moz-box-shadow:none;
  2153. -webkit-box-shadow:none;
  2154. box-shadow:none;
  2155. }
  2156. #u212678 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:764px;
  2160. top:71px;
  2161. width:88px;
  2162. height:32px;
  2163. display:flex;
  2164. }
  2165. #u212678 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u212678_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u212679 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:0px;
  2184. height:0px;
  2185. }
  2186. #u212680_img {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:18px;
  2192. height:18px;
  2193. }
  2194. #u212680 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:827px;
  2198. top:78px;
  2199. width:18px;
  2200. height:18px;
  2201. display:flex;
  2202. }
  2203. #u212680 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 2px 2px 2px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u212680_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. visibility:hidden;
  2215. }
  2216. #u212681_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:6px;
  2222. height:6px;
  2223. }
  2224. #u212681 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:833px;
  2228. top:84px;
  2229. width:6px;
  2230. height:6px;
  2231. display:flex;
  2232. }
  2233. #u212681 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u212681_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u212682 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:0px;
  2252. height:0px;
  2253. }
  2254. #u212683_img {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:5px;
  2260. height:5px;
  2261. }
  2262. #u212683 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:778px;
  2266. top:85px;
  2267. width:5px;
  2268. height:5px;
  2269. display:flex;
  2270. }
  2271. #u212683 .text {
  2272. position:absolute;
  2273. align-self:center;
  2274. padding:2px 2px 2px 2px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u212683_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. visibility:hidden;
  2283. }
  2284. #u212684_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:5px;
  2290. height:5px;
  2291. }
  2292. #u212684 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:794px;
  2296. top:85px;
  2297. width:5px;
  2298. height:5px;
  2299. display:flex;
  2300. }
  2301. #u212684 .text {
  2302. position:absolute;
  2303. align-self:center;
  2304. padding:2px 2px 2px 2px;
  2305. box-sizing:border-box;
  2306. width:100%;
  2307. }
  2308. #u212684_text {
  2309. border-width:0px;
  2310. word-wrap:break-word;
  2311. text-transform:none;
  2312. visibility:hidden;
  2313. }
  2314. #u212685_img {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:7px;
  2320. height:7px;
  2321. }
  2322. #u212685 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:785px;
  2326. top:84px;
  2327. width:7px;
  2328. height:7px;
  2329. display:flex;
  2330. }
  2331. #u212685 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 2px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u212685_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u212686_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:19px;
  2350. height:2px;
  2351. }
  2352. #u212686 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:802px;
  2356. top:87px;
  2357. width:18px;
  2358. height:1px;
  2359. display:flex;
  2360. -webkit-transform:rotate(90deg);
  2361. -moz-transform:rotate(90deg);
  2362. -ms-transform:rotate(90deg);
  2363. transform:rotate(90deg);
  2364. }
  2365. #u212686 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 2px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u212686_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u212687_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:375px;
  2384. height:44px;
  2385. }
  2386. #u212687 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:484px;
  2390. top:24px;
  2391. width:375px;
  2392. height:44px;
  2393. display:flex;
  2394. }
  2395. #u212687 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 2px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u212687_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u212688_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:375px;
  2414. height:50px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 1);
  2417. box-sizing:border-box;
  2418. border-width:1px;
  2419. border-style:solid;
  2420. border-color:rgba(242, 242, 242, 1);
  2421. border-radius:26px;
  2422. border-top-left-radius:0px;
  2423. border-top-right-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. }
  2428. #u212688 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:484px;
  2432. top:788px;
  2433. width:375px;
  2434. height:50px;
  2435. display:flex;
  2436. }
  2437. #u212688 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u212688_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u212689 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:0px;
  2456. height:0px;
  2457. }
  2458. #u212690_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:24px;
  2464. height:24px;
  2465. }
  2466. #u212690 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:524px;
  2470. top:792px;
  2471. width:24px;
  2472. height:24px;
  2473. display:flex;
  2474. font-size:8px;
  2475. }
  2476. #u212690 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 2px 2px 2px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u212690_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u212691_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:25px;
  2494. height:17px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-radius:0px;
  2499. -moz-box-shadow:none;
  2500. -webkit-box-shadow:none;
  2501. box-shadow:none;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. }
  2507. #u212691 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:524px;
  2511. top:817px;
  2512. width:25px;
  2513. height:17px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:12px;
  2519. }
  2520. #u212691 .text {
  2521. position:absolute;
  2522. align-self:flex-start;
  2523. padding:0px 0px 0px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u212691_text {
  2528. border-width:0px;
  2529. white-space:nowrap;
  2530. text-transform:none;
  2531. }
  2532. #u212692 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:0px;
  2538. height:0px;
  2539. }
  2540. #u212693_img {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:24px;
  2546. height:24px;
  2547. }
  2548. #u212693 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:794px;
  2552. top:794px;
  2553. width:24px;
  2554. height:24px;
  2555. display:flex;
  2556. font-size:8px;
  2557. }
  2558. #u212693 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 2px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u212693_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u212694_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:25px;
  2576. height:17px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u212694 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:794px;
  2593. top:819px;
  2594. width:25px;
  2595. height:17px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. }
  2602. #u212694 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u212694_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u212695_div {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:375px;
  2620. height:681px;
  2621. background:inherit;
  2622. background-color:rgba(242, 242, 242, 0.462745098039216);
  2623. border:none;
  2624. border-radius:0px;
  2625. -moz-box-shadow:none;
  2626. -webkit-box-shadow:none;
  2627. box-shadow:none;
  2628. }
  2629. #u212695 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:484px;
  2633. top:107px;
  2634. width:375px;
  2635. height:681px;
  2636. display:flex;
  2637. }
  2638. #u212695 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u212695_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u212696 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:0px;
  2657. height:0px;
  2658. }
  2659. #u212697_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:24px;
  2665. height:24px;
  2666. }
  2667. #u212697 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:706px;
  2671. top:792px;
  2672. width:24px;
  2673. height:24px;
  2674. display:flex;
  2675. font-size:8px;
  2676. }
  2677. #u212697 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u212697_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }
  2689. #u212698_div {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:37px;
  2695. height:17px;
  2696. background:inherit;
  2697. background-color:rgba(255, 255, 255, 0);
  2698. border:none;
  2699. border-radius:0px;
  2700. -moz-box-shadow:none;
  2701. -webkit-box-shadow:none;
  2702. box-shadow:none;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. }
  2708. #u212698 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:700px;
  2712. top:817px;
  2713. width:37px;
  2714. height:17px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. }
  2721. #u212698 .text {
  2722. position:absolute;
  2723. align-self:flex-start;
  2724. padding:0px 0px 0px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u212698_text {
  2729. border-width:0px;
  2730. white-space:nowrap;
  2731. text-transform:none;
  2732. }
  2733. #u212699 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:0px;
  2739. height:0px;
  2740. }
  2741. #u212700_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:24px;
  2747. height:24px;
  2748. }
  2749. #u212700 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:612px;
  2753. top:792px;
  2754. width:24px;
  2755. height:24px;
  2756. display:flex;
  2757. font-size:8px;
  2758. }
  2759. #u212700 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 2px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u212700_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. }
  2771. #u212701_div {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:37px;
  2777. height:17px;
  2778. background:inherit;
  2779. background-color:rgba(255, 255, 255, 0);
  2780. border:none;
  2781. border-radius:0px;
  2782. -moz-box-shadow:none;
  2783. -webkit-box-shadow:none;
  2784. box-shadow:none;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:12px;
  2789. }
  2790. #u212701 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:606px;
  2794. top:817px;
  2795. width:37px;
  2796. height:17px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:12px;
  2802. }
  2803. #u212701 .text {
  2804. position:absolute;
  2805. align-self:flex-start;
  2806. padding:0px 0px 0px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u212701_text {
  2811. border-width:0px;
  2812. white-space:nowrap;
  2813. text-transform:none;
  2814. }
  2815. #u212702_div {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:375px;
  2821. height:734px;
  2822. background:inherit;
  2823. background-color:rgba(242, 242, 242, 1);
  2824. border:none;
  2825. border-top:0px;
  2826. border-radius:28px;
  2827. border-top-left-radius:0px;
  2828. border-top-right-radius:0px;
  2829. -moz-box-shadow:none;
  2830. -webkit-box-shadow:none;
  2831. box-shadow:none;
  2832. }
  2833. #u212702 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:484px;
  2837. top:107px;
  2838. width:375px;
  2839. height:734px;
  2840. display:flex;
  2841. }
  2842. #u212702 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:2px 2px 2px 2px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u212702_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. visibility:hidden;
  2854. }
  2855. #u212703_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:12px;
  2861. height:12px;
  2862. background:inherit;
  2863. background-color:rgba(255, 255, 255, 0);
  2864. box-sizing:border-box;
  2865. border-width:2px;
  2866. border-style:solid;
  2867. border-color:rgba(51, 51, 51, 1);
  2868. border-right:0px;
  2869. border-bottom:0px;
  2870. border-radius:0px;
  2871. border-top-right-radius:0px;
  2872. border-bottom-left-radius:0px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. }
  2877. #u212703 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:494px;
  2881. top:81px;
  2882. width:12px;
  2883. height:12px;
  2884. display:flex;
  2885. -webkit-transform:rotate(315deg);
  2886. -moz-transform:rotate(315deg);
  2887. -ms-transform:rotate(315deg);
  2888. transform:rotate(315deg);
  2889. }
  2890. #u212703 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u212703_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u212704_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:85px;
  2909. height:30px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 0);
  2912. border:none;
  2913. border-left:0px;
  2914. border-top:0px;
  2915. border-right:0px;
  2916. border-radius:0px;
  2917. border-bottom-right-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. -moz-box-shadow:none;
  2920. -webkit-box-shadow:none;
  2921. box-shadow:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. line-height:30px;
  2927. }
  2928. #u212704 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:629px;
  2932. top:72px;
  2933. width:85px;
  2934. height:30px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. line-height:30px;
  2941. }
  2942. #u212704 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:0px 0px 0px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u212704_text {
  2950. border-width:0px;
  2951. white-space:nowrap;
  2952. text-transform:none;
  2953. }
  2954. #u212705 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:0px;
  2960. height:0px;
  2961. }
  2962. #u212706_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:375px;
  2968. height:170px;
  2969. background:inherit;
  2970. background-color:rgba(255, 255, 255, 1);
  2971. border:none;
  2972. border-left:0px;
  2973. border-top:0px;
  2974. border-right:0px;
  2975. border-radius:0px;
  2976. border-bottom-right-radius:0px;
  2977. border-bottom-left-radius:0px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. }
  2982. #u212706 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:484px;
  2986. top:382px;
  2987. width:375px;
  2988. height:170px;
  2989. display:flex;
  2990. }
  2991. #u212706 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u212706_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u212707_div {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:253px;
  3010. height:30px;
  3011. background:inherit;
  3012. background-color:rgba(255, 255, 255, 0);
  3013. border:none;
  3014. border-left:0px;
  3015. border-top:0px;
  3016. border-right:0px;
  3017. border-radius:0px;
  3018. border-bottom-right-radius:0px;
  3019. border-bottom-left-radius:0px;
  3020. -moz-box-shadow:none;
  3021. -webkit-box-shadow:none;
  3022. box-shadow:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. line-height:30px;
  3028. }
  3029. #u212707 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:504px;
  3033. top:422px;
  3034. width:253px;
  3035. height:30px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. line-height:30px;
  3042. }
  3043. #u212707 .text {
  3044. position:absolute;
  3045. align-self:flex-start;
  3046. padding:0px 0px 0px 0px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u212707_text {
  3051. border-width:0px;
  3052. white-space:nowrap;
  3053. text-transform:none;
  3054. }
  3055. #u212708_div {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:57px;
  3061. height:30px;
  3062. background:inherit;
  3063. background-color:rgba(255, 255, 255, 0);
  3064. border:none;
  3065. border-left:0px;
  3066. border-top:0px;
  3067. border-right:0px;
  3068. border-radius:0px;
  3069. border-bottom-right-radius:0px;
  3070. border-bottom-left-radius:0px;
  3071. -moz-box-shadow:none;
  3072. -webkit-box-shadow:none;
  3073. box-shadow:none;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:14px;
  3078. color:#AAAAAA;
  3079. line-height:30px;
  3080. }
  3081. #u212708 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:504px;
  3085. top:392px;
  3086. width:57px;
  3087. height:30px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#AAAAAA;
  3094. line-height:30px;
  3095. }
  3096. #u212708 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:0px 0px 0px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u212708_text {
  3104. border-width:0px;
  3105. white-space:nowrap;
  3106. text-transform:none;
  3107. }
  3108. #u212709_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:100px;
  3114. height:74px;
  3115. }
  3116. #u212709 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:504px;
  3120. top:462px;
  3121. width:100px;
  3122. height:74px;
  3123. display:flex;
  3124. }
  3125. #u212709 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 2px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u212709_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u212710_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:100px;
  3144. height:74px;
  3145. }
  3146. #u212710 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:614px;
  3150. top:462px;
  3151. width:100px;
  3152. height:74px;
  3153. display:flex;
  3154. }
  3155. #u212710 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 2px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u212710_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u212711 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:0px;
  3174. height:0px;
  3175. }
  3176. #u212712_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:359px;
  3182. height:194px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 1);
  3185. border:none;
  3186. border-left:0px;
  3187. border-top:0px;
  3188. border-right:0px;
  3189. border-radius:0px;
  3190. border-bottom-right-radius:0px;
  3191. border-bottom-left-radius:0px;
  3192. -moz-box-shadow:none;
  3193. -webkit-box-shadow:none;
  3194. box-shadow:none;
  3195. }
  3196. #u212712 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:494px;
  3200. top:178px;
  3201. width:359px;
  3202. height:194px;
  3203. display:flex;
  3204. }
  3205. #u212712 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 2px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u212712_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. visibility:hidden;
  3217. }
  3218. #u212713 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:0px;
  3224. height:0px;
  3225. }
  3226. #u212714_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:340px;
  3232. height:140px;
  3233. }
  3234. #u212714 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:504px;
  3238. top:218px;
  3239. width:340px;
  3240. height:140px;
  3241. display:flex;
  3242. }
  3243. #u212714 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u212714_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u212715_div {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:93px;
  3262. height:30px;
  3263. background:inherit;
  3264. background-color:rgba(255, 255, 255, 0);
  3265. border:none;
  3266. border-left:0px;
  3267. border-top:0px;
  3268. border-right:0px;
  3269. border-radius:0px;
  3270. border-bottom-right-radius:0px;
  3271. border-bottom-left-radius:0px;
  3272. -moz-box-shadow:none;
  3273. -webkit-box-shadow:none;
  3274. box-shadow:none;
  3275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3276. font-weight:500;
  3277. font-style:normal;
  3278. font-size:14px;
  3279. line-height:30px;
  3280. }
  3281. #u212715 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:512px;
  3285. top:246px;
  3286. width:93px;
  3287. height:30px;
  3288. display:flex;
  3289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3290. font-weight:500;
  3291. font-style:normal;
  3292. font-size:14px;
  3293. line-height:30px;
  3294. }
  3295. #u212715 .text {
  3296. position:absolute;
  3297. align-self:flex-start;
  3298. padding:0px 0px 0px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u212715_text {
  3303. border-width:0px;
  3304. white-space:nowrap;
  3305. text-transform:none;
  3306. }
  3307. #u212716_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:177px;
  3313. height:75px;
  3314. background:inherit;
  3315. background-color:rgba(255, 255, 255, 0);
  3316. border:none;
  3317. border-left:0px;
  3318. border-top:0px;
  3319. border-right:0px;
  3320. border-radius:0px;
  3321. border-bottom-right-radius:0px;
  3322. border-bottom-left-radius:0px;
  3323. -moz-box-shadow:none;
  3324. -webkit-box-shadow:none;
  3325. box-shadow:none;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#7F7F7F;
  3331. line-height:25px;
  3332. }
  3333. #u212716 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:512px;
  3337. top:276px;
  3338. width:177px;
  3339. height:75px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. color:#7F7F7F;
  3346. line-height:25px;
  3347. }
  3348. #u212716 .text {
  3349. position:absolute;
  3350. align-self:flex-start;
  3351. padding:0px 0px 0px 0px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u212716_text {
  3356. border-width:0px;
  3357. white-space:nowrap;
  3358. text-transform:none;
  3359. }
  3360. #u212717_div {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:61px;
  3366. height:25px;
  3367. background:inherit;
  3368. background-color:rgba(255, 255, 255, 0);
  3369. border:none;
  3370. border-left:0px;
  3371. border-top:0px;
  3372. border-right:0px;
  3373. border-radius:0px;
  3374. border-bottom-right-radius:0px;
  3375. border-bottom-left-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. text-align:right;
  3383. }
  3384. #u212717 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:763px;
  3388. top:286px;
  3389. width:61px;
  3390. height:25px;
  3391. display:flex;
  3392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. text-align:right;
  3396. }
  3397. #u212717 .text {
  3398. position:absolute;
  3399. align-self:flex-start;
  3400. padding:0px 0px 0px 0px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u212717_text {
  3405. border-width:0px;
  3406. white-space:nowrap;
  3407. text-transform:none;
  3408. }
  3409. #u212718_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:106px;
  3415. height:11px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 0);
  3418. border:none;
  3419. border-left:0px;
  3420. border-top:0px;
  3421. border-right:0px;
  3422. border-radius:0px;
  3423. border-bottom-right-radius:0px;
  3424. border-bottom-left-radius:0px;
  3425. -moz-box-shadow:none;
  3426. -webkit-box-shadow:none;
  3427. box-shadow:none;
  3428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:10px;
  3432. color:#000000;
  3433. text-align:center;
  3434. }
  3435. #u212718 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:512px;
  3439. top:229px;
  3440. width:106px;
  3441. height:11px;
  3442. display:flex;
  3443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:10px;
  3447. color:#000000;
  3448. text-align:center;
  3449. }
  3450. #u212718 .text {
  3451. position:absolute;
  3452. align-self:flex-start;
  3453. padding:0px 0px 0px 0px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u212718_text {
  3458. border-width:0px;
  3459. white-space:nowrap;
  3460. text-transform:none;
  3461. }
  3462. #u212719_div {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:31px;
  3468. height:24px;
  3469. background:inherit;
  3470. background-color:rgba(255, 255, 255, 0);
  3471. border:none;
  3472. border-left:0px;
  3473. border-top:0px;
  3474. border-right:0px;
  3475. border-radius:0px;
  3476. border-bottom-right-radius:0px;
  3477. border-bottom-left-radius:0px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:10px;
  3485. color:#555555;
  3486. text-align:right;
  3487. line-height:24px;
  3488. }
  3489. #u212719 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:803px;
  3493. top:221px;
  3494. width:31px;
  3495. height:24px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:10px;
  3501. color:#555555;
  3502. text-align:right;
  3503. line-height:24px;
  3504. }
  3505. #u212719 .text {
  3506. position:absolute;
  3507. align-self:flex-start;
  3508. padding:0px 0px 0px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u212719_text {
  3513. border-width:0px;
  3514. white-space:nowrap;
  3515. text-transform:none;
  3516. }
  3517. #u212720_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:85px;
  3523. height:30px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 0);
  3526. border:none;
  3527. border-left:0px;
  3528. border-top:0px;
  3529. border-right:0px;
  3530. border-radius:0px;
  3531. border-bottom-right-radius:0px;
  3532. border-bottom-left-radius:0px;
  3533. -moz-box-shadow:none;
  3534. -webkit-box-shadow:none;
  3535. box-shadow:none;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:14px;
  3540. line-height:30px;
  3541. }
  3542. #u212720 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:504px;
  3546. top:188px;
  3547. width:85px;
  3548. height:30px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. line-height:30px;
  3555. }
  3556. #u212720 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:0px 0px 0px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u212720_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u212721 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:0px;
  3574. height:0px;
  3575. }
  3576. #u212722_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:359px;
  3582. height:60px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 1);
  3585. border:none;
  3586. border-left:0px;
  3587. border-top:0px;
  3588. border-right:0px;
  3589. border-radius:4px;
  3590. border-bottom-right-radius:0px;
  3591. border-bottom-left-radius:0px;
  3592. -moz-box-shadow:none;
  3593. -webkit-box-shadow:none;
  3594. box-shadow:none;
  3595. }
  3596. #u212722 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:494px;
  3600. top:117px;
  3601. width:359px;
  3602. height:60px;
  3603. display:flex;
  3604. }
  3605. #u212722 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 2px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u212722_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. }
  3617. #u212723_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:71px;
  3623. height:40px;
  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. color:#AAAAAA;
  3641. line-height:40px;
  3642. }
  3643. #u212723 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:512px;
  3647. top:127px;
  3648. width:71px;
  3649. height:40px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:14px;
  3655. color:#AAAAAA;
  3656. line-height:40px;
  3657. }
  3658. #u212723 .text {
  3659. position:absolute;
  3660. align-self:flex-start;
  3661. padding:0px 0px 0px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u212723_text {
  3666. border-width:0px;
  3667. white-space:nowrap;
  3668. text-transform:none;
  3669. }
  3670. #u212724_div {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:43px;
  3676. height:40px;
  3677. background:inherit;
  3678. background-color:rgba(255, 255, 255, 0);
  3679. border:none;
  3680. border-left:0px;
  3681. border-top:0px;
  3682. border-right:0px;
  3683. border-radius:0px;
  3684. border-bottom-right-radius:0px;
  3685. border-bottom-left-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:14px;
  3693. line-height:40px;
  3694. }
  3695. #u212724 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:590px;
  3699. top:127px;
  3700. width:43px;
  3701. height:40px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:14px;
  3707. line-height:40px;
  3708. }
  3709. #u212724 .text {
  3710. position:absolute;
  3711. align-self:flex-start;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u212724_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u212725_div {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:133px;
  3727. height:40px;
  3728. background:inherit;
  3729. background-color:rgba(255, 255, 255, 0);
  3730. border:none;
  3731. border-left:0px;
  3732. border-top:0px;
  3733. border-right:0px;
  3734. border-radius:0px;
  3735. border-bottom-right-radius:0px;
  3736. border-bottom-left-radius:0px;
  3737. -moz-box-shadow:none;
  3738. -webkit-box-shadow:none;
  3739. box-shadow:none;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:12px;
  3744. color:#D9001B;
  3745. line-height:40px;
  3746. }
  3747. #u212725 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:643px;
  3751. top:127px;
  3752. width:133px;
  3753. height:40px;
  3754. display:flex;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. color:#D9001B;
  3760. line-height:40px;
  3761. }
  3762. #u212725 .text {
  3763. position:absolute;
  3764. align-self:flex-start;
  3765. padding:0px 0px 0px 0px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u212725_text {
  3770. border-width:0px;
  3771. white-space:nowrap;
  3772. text-transform:none;
  3773. }
  3774. #u212727_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:433px;
  3780. height:865px;
  3781. }
  3782. #u212727 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:911px;
  3786. top:0px;
  3787. width:433px;
  3788. height:865px;
  3789. display:flex;
  3790. }
  3791. #u212727 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u212727_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u212728_div {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:375px;
  3810. height:40px;
  3811. background:inherit;
  3812. background-color:rgba(255, 255, 255, 1);
  3813. box-sizing:border-box;
  3814. border-width:1px;
  3815. border-style:solid;
  3816. border-color:rgba(215, 215, 215, 1);
  3817. border-left:0px;
  3818. border-top:0px;
  3819. border-right:0px;
  3820. border-radius:0px;
  3821. border-bottom-right-radius:0px;
  3822. border-bottom-left-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. }
  3827. #u212728 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:940px;
  3831. top:67px;
  3832. width:375px;
  3833. height:40px;
  3834. display:flex;
  3835. }
  3836. #u212728 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u212728_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u212729 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:0px;
  3855. height:0px;
  3856. }
  3857. #u212730_div {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:88px;
  3863. height:32px;
  3864. background:inherit;
  3865. background-color:rgba(255, 255, 255, 1);
  3866. box-sizing:border-box;
  3867. border-width:1px;
  3868. border-style:solid;
  3869. border-color:rgba(242, 242, 242, 1);
  3870. border-radius:33px;
  3871. -moz-box-shadow:none;
  3872. -webkit-box-shadow:none;
  3873. box-shadow:none;
  3874. }
  3875. #u212730 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:1220px;
  3879. top:71px;
  3880. width:88px;
  3881. height:32px;
  3882. display:flex;
  3883. }
  3884. #u212730 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u212730_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. visibility:hidden;
  3896. }
  3897. #u212731 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:0px;
  3903. height:0px;
  3904. }
  3905. #u212732_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:18px;
  3911. height:18px;
  3912. }
  3913. #u212732 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:1283px;
  3917. top:78px;
  3918. width:18px;
  3919. height:18px;
  3920. display:flex;
  3921. }
  3922. #u212732 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u212732_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u212733_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:6px;
  3941. height:6px;
  3942. }
  3943. #u212733 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:1289px;
  3947. top:84px;
  3948. width:6px;
  3949. height:6px;
  3950. display:flex;
  3951. }
  3952. #u212733 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u212733_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u212734 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u212735_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:5px;
  3979. height:5px;
  3980. }
  3981. #u212735 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:1234px;
  3985. top:85px;
  3986. width:5px;
  3987. height:5px;
  3988. display:flex;
  3989. }
  3990. #u212735 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u212735_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u212736_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:5px;
  4009. height:5px;
  4010. }
  4011. #u212736 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:1250px;
  4015. top:85px;
  4016. width:5px;
  4017. height:5px;
  4018. display:flex;
  4019. }
  4020. #u212736 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u212736_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u212737_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:7px;
  4039. height:7px;
  4040. }
  4041. #u212737 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:1241px;
  4045. top:84px;
  4046. width:7px;
  4047. height:7px;
  4048. display:flex;
  4049. }
  4050. #u212737 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u212737_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u212738_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:19px;
  4069. height:2px;
  4070. }
  4071. #u212738 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:1258px;
  4075. top:87px;
  4076. width:18px;
  4077. height:1px;
  4078. display:flex;
  4079. -webkit-transform:rotate(90deg);
  4080. -moz-transform:rotate(90deg);
  4081. -ms-transform:rotate(90deg);
  4082. transform:rotate(90deg);
  4083. }
  4084. #u212738 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 2px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u212738_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u212739_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:375px;
  4103. height:44px;
  4104. }
  4105. #u212739 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:940px;
  4109. top:24px;
  4110. width:375px;
  4111. height:44px;
  4112. display:flex;
  4113. }
  4114. #u212739 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u212739_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u212740_div {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:375px;
  4133. height:50px;
  4134. background:inherit;
  4135. background-color:rgba(255, 255, 255, 1);
  4136. box-sizing:border-box;
  4137. border-width:1px;
  4138. border-style:solid;
  4139. border-color:rgba(242, 242, 242, 1);
  4140. border-radius:26px;
  4141. border-top-left-radius:0px;
  4142. border-top-right-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. }
  4147. #u212740 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:940px;
  4151. top:788px;
  4152. width:375px;
  4153. height:50px;
  4154. display:flex;
  4155. }
  4156. #u212740 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u212740_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u212741 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:0px;
  4175. height:0px;
  4176. }
  4177. #u212742_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:24px;
  4183. height:24px;
  4184. }
  4185. #u212742 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:980px;
  4189. top:792px;
  4190. width:24px;
  4191. height:24px;
  4192. display:flex;
  4193. font-size:8px;
  4194. }
  4195. #u212742 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 2px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u212742_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. }
  4207. #u212743_div {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:25px;
  4213. height:17px;
  4214. background:inherit;
  4215. background-color:rgba(255, 255, 255, 0);
  4216. border:none;
  4217. border-radius:0px;
  4218. -moz-box-shadow:none;
  4219. -webkit-box-shadow:none;
  4220. box-shadow:none;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. }
  4226. #u212743 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:980px;
  4230. top:817px;
  4231. width:25px;
  4232. height:17px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. }
  4239. #u212743 .text {
  4240. position:absolute;
  4241. align-self:flex-start;
  4242. padding:0px 0px 0px 0px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u212743_text {
  4247. border-width:0px;
  4248. white-space:nowrap;
  4249. text-transform:none;
  4250. }
  4251. #u212744 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:0px;
  4257. height:0px;
  4258. }
  4259. #u212745_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:24px;
  4265. height:24px;
  4266. }
  4267. #u212745 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1250px;
  4271. top:794px;
  4272. width:24px;
  4273. height:24px;
  4274. display:flex;
  4275. font-size:8px;
  4276. }
  4277. #u212745 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 2px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u212745_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. }
  4289. #u212746_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:25px;
  4295. height:17px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. border:none;
  4299. border-radius:0px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. }
  4308. #u212746 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:1250px;
  4312. top:819px;
  4313. width:25px;
  4314. height:17px;
  4315. display:flex;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:12px;
  4320. }
  4321. #u212746 .text {
  4322. position:absolute;
  4323. align-self:flex-start;
  4324. padding:0px 0px 0px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u212746_text {
  4329. border-width:0px;
  4330. white-space:nowrap;
  4331. text-transform:none;
  4332. }
  4333. #u212747_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:375px;
  4339. height:681px;
  4340. background:inherit;
  4341. background-color:rgba(242, 242, 242, 0.462745098039216);
  4342. border:none;
  4343. border-radius:0px;
  4344. -moz-box-shadow:none;
  4345. -webkit-box-shadow:none;
  4346. box-shadow:none;
  4347. }
  4348. #u212747 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:940px;
  4352. top:107px;
  4353. width:375px;
  4354. height:681px;
  4355. display:flex;
  4356. }
  4357. #u212747 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u212747_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u212748 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:0px;
  4376. height:0px;
  4377. }
  4378. #u212749_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:24px;
  4384. height:24px;
  4385. }
  4386. #u212749 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:1162px;
  4390. top:792px;
  4391. width:24px;
  4392. height:24px;
  4393. display:flex;
  4394. font-size:8px;
  4395. }
  4396. #u212749 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 2px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u212749_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. }
  4408. #u212750_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:37px;
  4414. height:17px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 0);
  4417. border:none;
  4418. border-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. }
  4427. #u212750 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:1156px;
  4431. top:817px;
  4432. width:37px;
  4433. height:17px;
  4434. display:flex;
  4435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:12px;
  4439. }
  4440. #u212750 .text {
  4441. position:absolute;
  4442. align-self:flex-start;
  4443. padding:0px 0px 0px 0px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u212750_text {
  4448. border-width:0px;
  4449. white-space:nowrap;
  4450. text-transform:none;
  4451. }
  4452. #u212751 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:0px;
  4458. height:0px;
  4459. }
  4460. #u212752_img {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:24px;
  4466. height:24px;
  4467. }
  4468. #u212752 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:1068px;
  4472. top:792px;
  4473. width:24px;
  4474. height:24px;
  4475. display:flex;
  4476. font-size:8px;
  4477. }
  4478. #u212752 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u212752_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. }
  4490. #u212753_div {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:37px;
  4496. height:17px;
  4497. background:inherit;
  4498. background-color:rgba(255, 255, 255, 0);
  4499. border:none;
  4500. border-radius:0px;
  4501. -moz-box-shadow:none;
  4502. -webkit-box-shadow:none;
  4503. box-shadow:none;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. }
  4509. #u212753 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:1062px;
  4513. top:817px;
  4514. width:37px;
  4515. height:17px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. }
  4522. #u212753 .text {
  4523. position:absolute;
  4524. align-self:flex-start;
  4525. padding:0px 0px 0px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u212753_text {
  4530. border-width:0px;
  4531. white-space:nowrap;
  4532. text-transform:none;
  4533. }
  4534. #u212754_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:375px;
  4540. height:734px;
  4541. background:inherit;
  4542. background-color:rgba(242, 242, 242, 1);
  4543. border:none;
  4544. border-top:0px;
  4545. border-radius:28px;
  4546. border-top-left-radius:0px;
  4547. border-top-right-radius:0px;
  4548. -moz-box-shadow:none;
  4549. -webkit-box-shadow:none;
  4550. box-shadow:none;
  4551. }
  4552. #u212754 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:940px;
  4556. top:107px;
  4557. width:375px;
  4558. height:734px;
  4559. display:flex;
  4560. }
  4561. #u212754 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u212754_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u212755_div {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:12px;
  4580. height:12px;
  4581. background:inherit;
  4582. background-color:rgba(255, 255, 255, 0);
  4583. box-sizing:border-box;
  4584. border-width:2px;
  4585. border-style:solid;
  4586. border-color:rgba(51, 51, 51, 1);
  4587. border-right:0px;
  4588. border-bottom:0px;
  4589. border-radius:0px;
  4590. border-top-right-radius:0px;
  4591. border-bottom-left-radius:0px;
  4592. -moz-box-shadow:none;
  4593. -webkit-box-shadow:none;
  4594. box-shadow:none;
  4595. }
  4596. #u212755 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:950px;
  4600. top:81px;
  4601. width:12px;
  4602. height:12px;
  4603. display:flex;
  4604. -webkit-transform:rotate(315deg);
  4605. -moz-transform:rotate(315deg);
  4606. -ms-transform:rotate(315deg);
  4607. transform:rotate(315deg);
  4608. }
  4609. #u212755 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u212755_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u212756_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:85px;
  4628. height:30px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 0);
  4631. border:none;
  4632. border-left:0px;
  4633. border-top:0px;
  4634. border-right:0px;
  4635. border-radius:0px;
  4636. border-bottom-right-radius:0px;
  4637. border-bottom-left-radius:0px;
  4638. -moz-box-shadow:none;
  4639. -webkit-box-shadow:none;
  4640. box-shadow:none;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:14px;
  4645. line-height:30px;
  4646. }
  4647. #u212756 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:1085px;
  4651. top:72px;
  4652. width:85px;
  4653. height:30px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. line-height:30px;
  4660. }
  4661. #u212756 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:0px 0px 0px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u212756_text {
  4669. border-width:0px;
  4670. white-space:nowrap;
  4671. text-transform:none;
  4672. }
  4673. #u212757 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:0px;
  4679. height:0px;
  4680. }
  4681. #u212758_div {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:375px;
  4687. height:170px;
  4688. background:inherit;
  4689. background-color:rgba(255, 255, 255, 1);
  4690. border:none;
  4691. border-left:0px;
  4692. border-top:0px;
  4693. border-right:0px;
  4694. border-radius:0px;
  4695. border-bottom-right-radius:0px;
  4696. border-bottom-left-radius:0px;
  4697. -moz-box-shadow:none;
  4698. -webkit-box-shadow:none;
  4699. box-shadow:none;
  4700. }
  4701. #u212758 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:940px;
  4705. top:382px;
  4706. width:375px;
  4707. height:170px;
  4708. display:flex;
  4709. }
  4710. #u212758 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 2px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u212758_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u212759_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:253px;
  4729. height:30px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 0);
  4732. border:none;
  4733. border-left:0px;
  4734. border-top:0px;
  4735. border-right:0px;
  4736. border-radius:0px;
  4737. border-bottom-right-radius:0px;
  4738. border-bottom-left-radius:0px;
  4739. -moz-box-shadow:none;
  4740. -webkit-box-shadow:none;
  4741. box-shadow:none;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. line-height:30px;
  4747. }
  4748. #u212759 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:960px;
  4752. top:422px;
  4753. width:253px;
  4754. height:30px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:12px;
  4760. line-height:30px;
  4761. }
  4762. #u212759 .text {
  4763. position:absolute;
  4764. align-self:flex-start;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u212759_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u212760_div {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:57px;
  4780. height:30px;
  4781. background:inherit;
  4782. background-color:rgba(255, 255, 255, 0);
  4783. border:none;
  4784. border-left:0px;
  4785. border-top:0px;
  4786. border-right:0px;
  4787. border-radius:0px;
  4788. border-bottom-right-radius:0px;
  4789. border-bottom-left-radius:0px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. color:#AAAAAA;
  4798. line-height:30px;
  4799. }
  4800. #u212760 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:960px;
  4804. top:392px;
  4805. width:57px;
  4806. height:30px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:14px;
  4812. color:#AAAAAA;
  4813. line-height:30px;
  4814. }
  4815. #u212760 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:0px 0px 0px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u212760_text {
  4823. border-width:0px;
  4824. white-space:nowrap;
  4825. text-transform:none;
  4826. }
  4827. #u212761_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:100px;
  4833. height:74px;
  4834. }
  4835. #u212761 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:960px;
  4839. top:462px;
  4840. width:100px;
  4841. height:74px;
  4842. display:flex;
  4843. }
  4844. #u212761 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u212761_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u212762_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:100px;
  4863. height:74px;
  4864. }
  4865. #u212762 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:1070px;
  4869. top:462px;
  4870. width:100px;
  4871. height:74px;
  4872. display:flex;
  4873. }
  4874. #u212762 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 2px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u212762_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. visibility:hidden;
  4886. }
  4887. #u212763 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:0px;
  4893. height:0px;
  4894. }
  4895. #u212764_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:359px;
  4901. height:194px;
  4902. background:inherit;
  4903. background-color:rgba(255, 255, 255, 1);
  4904. border:none;
  4905. border-left:0px;
  4906. border-top:0px;
  4907. border-right:0px;
  4908. border-radius:0px;
  4909. border-bottom-right-radius:0px;
  4910. border-bottom-left-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. }
  4915. #u212764 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:950px;
  4919. top:178px;
  4920. width:359px;
  4921. height:194px;
  4922. display:flex;
  4923. }
  4924. #u212764 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u212764_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u212765 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:0px;
  4943. height:0px;
  4944. }
  4945. #u212766_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:340px;
  4951. height:140px;
  4952. }
  4953. #u212766 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:960px;
  4957. top:218px;
  4958. width:340px;
  4959. height:140px;
  4960. display:flex;
  4961. }
  4962. #u212766 .text {
  4963. position:absolute;
  4964. align-self:center;
  4965. padding:2px 2px 2px 2px;
  4966. box-sizing:border-box;
  4967. width:100%;
  4968. }
  4969. #u212766_text {
  4970. border-width:0px;
  4971. word-wrap:break-word;
  4972. text-transform:none;
  4973. visibility:hidden;
  4974. }
  4975. #u212767_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:93px;
  4981. height:30px;
  4982. background:inherit;
  4983. background-color:rgba(255, 255, 255, 0);
  4984. border:none;
  4985. border-left:0px;
  4986. border-top:0px;
  4987. border-right:0px;
  4988. border-radius:0px;
  4989. border-bottom-right-radius:0px;
  4990. border-bottom-left-radius:0px;
  4991. -moz-box-shadow:none;
  4992. -webkit-box-shadow:none;
  4993. box-shadow:none;
  4994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4995. font-weight:500;
  4996. font-style:normal;
  4997. font-size:14px;
  4998. line-height:30px;
  4999. }
  5000. #u212767 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:968px;
  5004. top:246px;
  5005. width:93px;
  5006. height:30px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5009. font-weight:500;
  5010. font-style:normal;
  5011. font-size:14px;
  5012. line-height:30px;
  5013. }
  5014. #u212767 .text {
  5015. position:absolute;
  5016. align-self:flex-start;
  5017. padding:0px 0px 0px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u212767_text {
  5022. border-width:0px;
  5023. white-space:nowrap;
  5024. text-transform:none;
  5025. }
  5026. #u212768_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:177px;
  5032. height:75px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 0);
  5035. border:none;
  5036. border-left:0px;
  5037. border-top:0px;
  5038. border-right:0px;
  5039. border-radius:0px;
  5040. border-bottom-right-radius:0px;
  5041. border-bottom-left-radius:0px;
  5042. -moz-box-shadow:none;
  5043. -webkit-box-shadow:none;
  5044. box-shadow:none;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:12px;
  5049. color:#7F7F7F;
  5050. line-height:25px;
  5051. }
  5052. #u212768 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:968px;
  5056. top:276px;
  5057. width:177px;
  5058. height:75px;
  5059. display:flex;
  5060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:12px;
  5064. color:#7F7F7F;
  5065. line-height:25px;
  5066. }
  5067. #u212768 .text {
  5068. position:absolute;
  5069. align-self:flex-start;
  5070. padding:0px 0px 0px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u212768_text {
  5075. border-width:0px;
  5076. white-space:nowrap;
  5077. text-transform:none;
  5078. }
  5079. #u212769_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:61px;
  5085. height:25px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 0);
  5088. border:none;
  5089. border-left:0px;
  5090. border-top:0px;
  5091. border-right:0px;
  5092. border-radius:0px;
  5093. border-bottom-right-radius:0px;
  5094. border-bottom-left-radius:0px;
  5095. -moz-box-shadow:none;
  5096. -webkit-box-shadow:none;
  5097. box-shadow:none;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. text-align:right;
  5102. }
  5103. #u212769 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:1219px;
  5107. top:286px;
  5108. width:61px;
  5109. height:25px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. text-align:right;
  5115. }
  5116. #u212769 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u212769_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u212770_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:106px;
  5134. height:11px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 0);
  5137. border:none;
  5138. border-left:0px;
  5139. border-top:0px;
  5140. border-right:0px;
  5141. border-radius:0px;
  5142. border-bottom-right-radius:0px;
  5143. border-bottom-left-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:10px;
  5151. color:#000000;
  5152. text-align:center;
  5153. }
  5154. #u212770 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:968px;
  5158. top:229px;
  5159. width:106px;
  5160. height:11px;
  5161. display:flex;
  5162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:10px;
  5166. color:#000000;
  5167. text-align:center;
  5168. }
  5169. #u212770 .text {
  5170. position:absolute;
  5171. align-self:flex-start;
  5172. padding:0px 0px 0px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u212770_text {
  5177. border-width:0px;
  5178. white-space:nowrap;
  5179. text-transform:none;
  5180. }
  5181. #u212771_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:31px;
  5187. height:24px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-left:0px;
  5192. border-top:0px;
  5193. border-right:0px;
  5194. border-radius:0px;
  5195. border-bottom-right-radius:0px;
  5196. border-bottom-left-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:10px;
  5204. color:#555555;
  5205. text-align:right;
  5206. line-height:24px;
  5207. }
  5208. #u212771 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:1259px;
  5212. top:221px;
  5213. width:31px;
  5214. height:24px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:10px;
  5220. color:#555555;
  5221. text-align:right;
  5222. line-height:24px;
  5223. }
  5224. #u212771 .text {
  5225. position:absolute;
  5226. align-self:flex-start;
  5227. padding:0px 0px 0px 0px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u212771_text {
  5232. border-width:0px;
  5233. white-space:nowrap;
  5234. text-transform:none;
  5235. }
  5236. #u212772_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:85px;
  5242. height:30px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 0);
  5245. border:none;
  5246. border-left:0px;
  5247. border-top:0px;
  5248. border-right:0px;
  5249. border-radius:0px;
  5250. border-bottom-right-radius:0px;
  5251. border-bottom-left-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:14px;
  5259. line-height:30px;
  5260. }
  5261. #u212772 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:960px;
  5265. top:188px;
  5266. width:85px;
  5267. height:30px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:14px;
  5273. line-height:30px;
  5274. }
  5275. #u212772 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u212772_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u212773 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:0px;
  5293. height:0px;
  5294. }
  5295. #u212774_div {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:359px;
  5301. height:60px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 1);
  5304. border:none;
  5305. border-left:0px;
  5306. border-top:0px;
  5307. border-right:0px;
  5308. border-radius:4px;
  5309. border-bottom-right-radius:0px;
  5310. border-bottom-left-radius:0px;
  5311. -moz-box-shadow:none;
  5312. -webkit-box-shadow:none;
  5313. box-shadow:none;
  5314. }
  5315. #u212774 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:950px;
  5319. top:117px;
  5320. width:359px;
  5321. height:60px;
  5322. display:flex;
  5323. }
  5324. #u212774 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 2px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u212774_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. }
  5336. #u212775_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:71px;
  5342. height:40px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-left:0px;
  5347. border-top:0px;
  5348. border-right:0px;
  5349. border-radius:0px;
  5350. border-bottom-right-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:14px;
  5359. color:#AAAAAA;
  5360. line-height:40px;
  5361. }
  5362. #u212775 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:968px;
  5366. top:127px;
  5367. width:71px;
  5368. height:40px;
  5369. display:flex;
  5370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. font-size:14px;
  5374. color:#AAAAAA;
  5375. line-height:40px;
  5376. }
  5377. #u212775 .text {
  5378. position:absolute;
  5379. align-self:flex-start;
  5380. padding:0px 0px 0px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u212775_text {
  5385. border-width:0px;
  5386. white-space:nowrap;
  5387. text-transform:none;
  5388. }
  5389. #u212776_div {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:43px;
  5395. height:40px;
  5396. background:inherit;
  5397. background-color:rgba(255, 255, 255, 0);
  5398. border:none;
  5399. border-left:0px;
  5400. border-top:0px;
  5401. border-right:0px;
  5402. border-radius:0px;
  5403. border-bottom-right-radius:0px;
  5404. border-bottom-left-radius:0px;
  5405. -moz-box-shadow:none;
  5406. -webkit-box-shadow:none;
  5407. box-shadow:none;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. line-height:40px;
  5413. }
  5414. #u212776 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:1046px;
  5418. top:127px;
  5419. width:43px;
  5420. height:40px;
  5421. display:flex;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:14px;
  5426. line-height:40px;
  5427. }
  5428. #u212776 .text {
  5429. position:absolute;
  5430. align-self:flex-start;
  5431. padding:0px 0px 0px 0px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u212776_text {
  5436. border-width:0px;
  5437. white-space:nowrap;
  5438. text-transform:none;
  5439. }
  5440. #u212777_div {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:121px;
  5446. height:40px;
  5447. background:inherit;
  5448. background-color:rgba(255, 255, 255, 0);
  5449. border:none;
  5450. border-left:0px;
  5451. border-top:0px;
  5452. border-right:0px;
  5453. border-radius:0px;
  5454. border-bottom-right-radius:0px;
  5455. border-bottom-left-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. color:#D9001B;
  5464. line-height:40px;
  5465. }
  5466. #u212777 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1099px;
  5470. top:127px;
  5471. width:121px;
  5472. height:40px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#D9001B;
  5479. line-height:40px;
  5480. }
  5481. #u212777 .text {
  5482. position:absolute;
  5483. align-self:flex-start;
  5484. padding:0px 0px 0px 0px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u212777_text {
  5489. border-width:0px;
  5490. white-space:nowrap;
  5491. text-transform:none;
  5492. }
  5493. #u212779_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:433px;
  5499. height:865px;
  5500. }
  5501. #u212779 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:1371px;
  5505. top:0px;
  5506. width:433px;
  5507. height:865px;
  5508. display:flex;
  5509. }
  5510. #u212779 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:2px 2px 2px 2px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u212779_text {
  5518. border-width:0px;
  5519. word-wrap:break-word;
  5520. text-transform:none;
  5521. visibility:hidden;
  5522. }
  5523. #u212780_div {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:375px;
  5529. height:40px;
  5530. background:inherit;
  5531. background-color:rgba(255, 255, 255, 1);
  5532. box-sizing:border-box;
  5533. border-width:1px;
  5534. border-style:solid;
  5535. border-color:rgba(215, 215, 215, 1);
  5536. border-left:0px;
  5537. border-top:0px;
  5538. border-right:0px;
  5539. border-radius:0px;
  5540. border-bottom-right-radius:0px;
  5541. border-bottom-left-radius:0px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. }
  5546. #u212780 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:1400px;
  5550. top:67px;
  5551. width:375px;
  5552. height:40px;
  5553. display:flex;
  5554. }
  5555. #u212780 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u212780_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u212781 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:0px;
  5574. height:0px;
  5575. }
  5576. #u212782_div {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:88px;
  5582. height:32px;
  5583. background:inherit;
  5584. background-color:rgba(255, 255, 255, 1);
  5585. box-sizing:border-box;
  5586. border-width:1px;
  5587. border-style:solid;
  5588. border-color:rgba(242, 242, 242, 1);
  5589. border-radius:33px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. }
  5594. #u212782 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:1680px;
  5598. top:71px;
  5599. width:88px;
  5600. height:32px;
  5601. display:flex;
  5602. }
  5603. #u212782 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 2px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u212782_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u212783 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:0px;
  5622. height:0px;
  5623. }
  5624. #u212784_img {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:18px;
  5630. height:18px;
  5631. }
  5632. #u212784 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:1743px;
  5636. top:78px;
  5637. width:18px;
  5638. height:18px;
  5639. display:flex;
  5640. }
  5641. #u212784 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 2px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u212784_text {
  5649. border-width:0px;
  5650. word-wrap:break-word;
  5651. text-transform:none;
  5652. visibility:hidden;
  5653. }
  5654. #u212785_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:6px;
  5660. height:6px;
  5661. }
  5662. #u212785 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:1749px;
  5666. top:84px;
  5667. width:6px;
  5668. height:6px;
  5669. display:flex;
  5670. }
  5671. #u212785 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u212785_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u212786 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:0px;
  5690. height:0px;
  5691. }
  5692. #u212787_img {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:5px;
  5698. height:5px;
  5699. }
  5700. #u212787 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:1694px;
  5704. top:85px;
  5705. width:5px;
  5706. height:5px;
  5707. display:flex;
  5708. }
  5709. #u212787 .text {
  5710. position:absolute;
  5711. align-self:center;
  5712. padding:2px 2px 2px 2px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u212787_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. visibility:hidden;
  5721. }
  5722. #u212788_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:5px;
  5728. height:5px;
  5729. }
  5730. #u212788 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:1710px;
  5734. top:85px;
  5735. width:5px;
  5736. height:5px;
  5737. display:flex;
  5738. }
  5739. #u212788 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u212788_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. visibility:hidden;
  5751. }
  5752. #u212789_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:7px;
  5758. height:7px;
  5759. }
  5760. #u212789 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:1701px;
  5764. top:84px;
  5765. width:7px;
  5766. height:7px;
  5767. display:flex;
  5768. }
  5769. #u212789 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u212789_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u212790_img {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:19px;
  5788. height:2px;
  5789. }
  5790. #u212790 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:1718px;
  5794. top:87px;
  5795. width:18px;
  5796. height:1px;
  5797. display:flex;
  5798. -webkit-transform:rotate(90deg);
  5799. -moz-transform:rotate(90deg);
  5800. -ms-transform:rotate(90deg);
  5801. transform:rotate(90deg);
  5802. }
  5803. #u212790 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u212790_text {
  5811. border-width:0px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. visibility:hidden;
  5815. }
  5816. #u212791_img {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:375px;
  5822. height:44px;
  5823. }
  5824. #u212791 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:1400px;
  5828. top:24px;
  5829. width:375px;
  5830. height:44px;
  5831. display:flex;
  5832. }
  5833. #u212791 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u212791_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u212792_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:375px;
  5852. height:50px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 1);
  5855. box-sizing:border-box;
  5856. border-width:1px;
  5857. border-style:solid;
  5858. border-color:rgba(242, 242, 242, 1);
  5859. border-radius:26px;
  5860. border-top-left-radius:0px;
  5861. border-top-right-radius:0px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. }
  5866. #u212792 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1400px;
  5870. top:788px;
  5871. width:375px;
  5872. height:50px;
  5873. display:flex;
  5874. }
  5875. #u212792 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 2px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u212792_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u212793 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. }
  5896. #u212794_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:24px;
  5902. height:24px;
  5903. }
  5904. #u212794 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:1440px;
  5908. top:792px;
  5909. width:24px;
  5910. height:24px;
  5911. display:flex;
  5912. font-size:8px;
  5913. }
  5914. #u212794 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u212794_text {
  5922. border-width:0px;
  5923. word-wrap:break-word;
  5924. text-transform:none;
  5925. }
  5926. #u212795_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:25px;
  5932. height:17px;
  5933. background:inherit;
  5934. background-color:rgba(255, 255, 255, 0);
  5935. border:none;
  5936. border-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. }
  5945. #u212795 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:1440px;
  5949. top:817px;
  5950. width:25px;
  5951. height:17px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:12px;
  5957. }
  5958. #u212795 .text {
  5959. position:absolute;
  5960. align-self:flex-start;
  5961. padding:0px 0px 0px 0px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u212795_text {
  5966. border-width:0px;
  5967. white-space:nowrap;
  5968. text-transform:none;
  5969. }
  5970. #u212796 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:0px;
  5976. height:0px;
  5977. }
  5978. #u212797_img {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:0px;
  5982. top:0px;
  5983. width:24px;
  5984. height:24px;
  5985. }
  5986. #u212797 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:1710px;
  5990. top:794px;
  5991. width:24px;
  5992. height:24px;
  5993. display:flex;
  5994. font-size:8px;
  5995. }
  5996. #u212797 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u212797_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. }
  6008. #u212798_div {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:25px;
  6014. height:17px;
  6015. background:inherit;
  6016. background-color:rgba(255, 255, 255, 0);
  6017. border:none;
  6018. border-radius:0px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. }
  6027. #u212798 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:1710px;
  6031. top:819px;
  6032. width:25px;
  6033. height:17px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. }
  6040. #u212798 .text {
  6041. position:absolute;
  6042. align-self:flex-start;
  6043. padding:0px 0px 0px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u212798_text {
  6048. border-width:0px;
  6049. white-space:nowrap;
  6050. text-transform:none;
  6051. }
  6052. #u212799_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:375px;
  6058. height:681px;
  6059. background:inherit;
  6060. background-color:rgba(242, 242, 242, 0.462745098039216);
  6061. border:none;
  6062. border-radius:0px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. }
  6067. #u212799 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:1400px;
  6071. top:107px;
  6072. width:375px;
  6073. height:681px;
  6074. display:flex;
  6075. }
  6076. #u212799 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u212799_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u212800 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:0px;
  6095. height:0px;
  6096. }
  6097. #u212801_img {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:24px;
  6103. height:24px;
  6104. }
  6105. #u212801 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:1622px;
  6109. top:792px;
  6110. width:24px;
  6111. height:24px;
  6112. display:flex;
  6113. font-size:8px;
  6114. }
  6115. #u212801 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u212801_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. }
  6127. #u212802_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:37px;
  6133. height:17px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 0);
  6136. border:none;
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:12px;
  6145. }
  6146. #u212802 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:1616px;
  6150. top:817px;
  6151. width:37px;
  6152. height:17px;
  6153. display:flex;
  6154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:12px;
  6158. }
  6159. #u212802 .text {
  6160. position:absolute;
  6161. align-self:flex-start;
  6162. padding:0px 0px 0px 0px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u212802_text {
  6167. border-width:0px;
  6168. white-space:nowrap;
  6169. text-transform:none;
  6170. }
  6171. #u212803 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:0px;
  6177. height:0px;
  6178. }
  6179. #u212804_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:24px;
  6185. height:24px;
  6186. }
  6187. #u212804 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:1528px;
  6191. top:792px;
  6192. width:24px;
  6193. height:24px;
  6194. display:flex;
  6195. font-size:8px;
  6196. }
  6197. #u212804 .text {
  6198. position:absolute;
  6199. align-self:center;
  6200. padding:2px 2px 2px 2px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u212804_text {
  6205. border-width:0px;
  6206. word-wrap:break-word;
  6207. text-transform:none;
  6208. }
  6209. #u212805_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:37px;
  6215. height:17px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:12px;
  6227. }
  6228. #u212805 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:1522px;
  6232. top:817px;
  6233. width:37px;
  6234. height:17px;
  6235. display:flex;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:12px;
  6240. }
  6241. #u212805 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:0px 0px 0px 0px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u212805_text {
  6249. border-width:0px;
  6250. white-space:nowrap;
  6251. text-transform:none;
  6252. }
  6253. #u212806_div {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:375px;
  6259. height:734px;
  6260. background:inherit;
  6261. background-color:rgba(242, 242, 242, 1);
  6262. border:none;
  6263. border-top:0px;
  6264. border-radius:28px;
  6265. border-top-left-radius:0px;
  6266. border-top-right-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. }
  6271. #u212806 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:1400px;
  6275. top:107px;
  6276. width:375px;
  6277. height:734px;
  6278. display:flex;
  6279. }
  6280. #u212806 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:2px 2px 2px 2px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u212806_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. visibility:hidden;
  6292. }
  6293. #u212807_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:12px;
  6299. height:12px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 0);
  6302. box-sizing:border-box;
  6303. border-width:2px;
  6304. border-style:solid;
  6305. border-color:rgba(51, 51, 51, 1);
  6306. border-right:0px;
  6307. border-bottom:0px;
  6308. border-radius:0px;
  6309. border-top-right-radius:0px;
  6310. border-bottom-left-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. }
  6315. #u212807 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:1410px;
  6319. top:81px;
  6320. width:12px;
  6321. height:12px;
  6322. display:flex;
  6323. -webkit-transform:rotate(315deg);
  6324. -moz-transform:rotate(315deg);
  6325. -ms-transform:rotate(315deg);
  6326. transform:rotate(315deg);
  6327. }
  6328. #u212807 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:2px 2px 2px 2px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u212807_text {
  6336. border-width:0px;
  6337. word-wrap:break-word;
  6338. text-transform:none;
  6339. visibility:hidden;
  6340. }
  6341. #u212808_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:85px;
  6347. height:30px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border:none;
  6351. border-left:0px;
  6352. border-top:0px;
  6353. border-right:0px;
  6354. border-radius:0px;
  6355. border-bottom-right-radius:0px;
  6356. border-bottom-left-radius:0px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. line-height:30px;
  6365. }
  6366. #u212808 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1545px;
  6370. top:72px;
  6371. width:85px;
  6372. height:30px;
  6373. display:flex;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. line-height:30px;
  6379. }
  6380. #u212808 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:0px 0px 0px 0px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u212808_text {
  6388. border-width:0px;
  6389. white-space:nowrap;
  6390. text-transform:none;
  6391. }
  6392. #u212809 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:0px;
  6398. height:0px;
  6399. }
  6400. #u212810_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:375px;
  6406. height:170px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 1);
  6409. border:none;
  6410. border-left:0px;
  6411. border-top:0px;
  6412. border-right:0px;
  6413. border-radius:0px;
  6414. border-bottom-right-radius:0px;
  6415. border-bottom-left-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. }
  6420. #u212810 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:1400px;
  6424. top:382px;
  6425. width:375px;
  6426. height:170px;
  6427. display:flex;
  6428. }
  6429. #u212810 .text {
  6430. position:absolute;
  6431. align-self:center;
  6432. padding:2px 2px 2px 2px;
  6433. box-sizing:border-box;
  6434. width:100%;
  6435. }
  6436. #u212810_text {
  6437. border-width:0px;
  6438. word-wrap:break-word;
  6439. text-transform:none;
  6440. visibility:hidden;
  6441. }
  6442. #u212811_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:253px;
  6448. height:30px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 0);
  6451. border:none;
  6452. border-left:0px;
  6453. border-top:0px;
  6454. border-right:0px;
  6455. border-radius:0px;
  6456. border-bottom-right-radius:0px;
  6457. border-bottom-left-radius:0px;
  6458. -moz-box-shadow:none;
  6459. -webkit-box-shadow:none;
  6460. box-shadow:none;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:12px;
  6465. line-height:30px;
  6466. }
  6467. #u212811 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:1420px;
  6471. top:422px;
  6472. width:253px;
  6473. height:30px;
  6474. display:flex;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:12px;
  6479. line-height:30px;
  6480. }
  6481. #u212811 .text {
  6482. position:absolute;
  6483. align-self:flex-start;
  6484. padding:0px 0px 0px 0px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u212811_text {
  6489. border-width:0px;
  6490. white-space:nowrap;
  6491. text-transform:none;
  6492. }
  6493. #u212812_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:57px;
  6499. height:30px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 0);
  6502. border:none;
  6503. border-left:0px;
  6504. border-top:0px;
  6505. border-right:0px;
  6506. border-radius:0px;
  6507. border-bottom-right-radius:0px;
  6508. border-bottom-left-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. color:#AAAAAA;
  6517. line-height:30px;
  6518. }
  6519. #u212812 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:1420px;
  6523. top:392px;
  6524. width:57px;
  6525. height:30px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. color:#AAAAAA;
  6532. line-height:30px;
  6533. }
  6534. #u212812 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:0px 0px 0px 0px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u212812_text {
  6542. border-width:0px;
  6543. white-space:nowrap;
  6544. text-transform:none;
  6545. }
  6546. #u212813_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:100px;
  6552. height:74px;
  6553. }
  6554. #u212813 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:1420px;
  6558. top:462px;
  6559. width:100px;
  6560. height:74px;
  6561. display:flex;
  6562. }
  6563. #u212813 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 2px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u212813_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. visibility:hidden;
  6575. }
  6576. #u212814_img {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:100px;
  6582. height:74px;
  6583. }
  6584. #u212814 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:1530px;
  6588. top:462px;
  6589. width:100px;
  6590. height:74px;
  6591. display:flex;
  6592. }
  6593. #u212814 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 2px 2px 2px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u212814_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u212815 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:0px;
  6612. height:0px;
  6613. }
  6614. #u212816_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:359px;
  6620. height:194px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 1);
  6623. border:none;
  6624. border-left:0px;
  6625. border-top:0px;
  6626. border-right:0px;
  6627. border-radius:0px;
  6628. border-bottom-right-radius:0px;
  6629. border-bottom-left-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. }
  6634. #u212816 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:1410px;
  6638. top:178px;
  6639. width:359px;
  6640. height:194px;
  6641. display:flex;
  6642. }
  6643. #u212816 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u212816_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u212817 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:0px;
  6662. height:0px;
  6663. }
  6664. #u212818_img {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:340px;
  6670. height:140px;
  6671. }
  6672. #u212818 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:1420px;
  6676. top:218px;
  6677. width:340px;
  6678. height:140px;
  6679. display:flex;
  6680. }
  6681. #u212818 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 2px 2px 2px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u212818_text {
  6689. border-width:0px;
  6690. word-wrap:break-word;
  6691. text-transform:none;
  6692. visibility:hidden;
  6693. }
  6694. #u212819_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:93px;
  6700. height:30px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 0);
  6703. border:none;
  6704. border-left:0px;
  6705. border-top:0px;
  6706. border-right:0px;
  6707. border-radius:0px;
  6708. border-bottom-right-radius:0px;
  6709. border-bottom-left-radius:0px;
  6710. -moz-box-shadow:none;
  6711. -webkit-box-shadow:none;
  6712. box-shadow:none;
  6713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6714. font-weight:500;
  6715. font-style:normal;
  6716. font-size:14px;
  6717. line-height:30px;
  6718. }
  6719. #u212819 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:1428px;
  6723. top:246px;
  6724. width:93px;
  6725. height:30px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6728. font-weight:500;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. line-height:30px;
  6732. }
  6733. #u212819 .text {
  6734. position:absolute;
  6735. align-self:flex-start;
  6736. padding:0px 0px 0px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u212819_text {
  6741. border-width:0px;
  6742. white-space:nowrap;
  6743. text-transform:none;
  6744. }
  6745. #u212820_div {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:177px;
  6751. height:75px;
  6752. background:inherit;
  6753. background-color:rgba(255, 255, 255, 0);
  6754. border:none;
  6755. border-left:0px;
  6756. border-top:0px;
  6757. border-right:0px;
  6758. border-radius:0px;
  6759. border-bottom-right-radius:0px;
  6760. border-bottom-left-radius:0px;
  6761. -moz-box-shadow:none;
  6762. -webkit-box-shadow:none;
  6763. box-shadow:none;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:12px;
  6768. color:#7F7F7F;
  6769. line-height:25px;
  6770. }
  6771. #u212820 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:1428px;
  6775. top:276px;
  6776. width:177px;
  6777. height:75px;
  6778. display:flex;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:12px;
  6783. color:#7F7F7F;
  6784. line-height:25px;
  6785. }
  6786. #u212820 .text {
  6787. position:absolute;
  6788. align-self:flex-start;
  6789. padding:0px 0px 0px 0px;
  6790. box-sizing:border-box;
  6791. width:100%;
  6792. }
  6793. #u212820_text {
  6794. border-width:0px;
  6795. white-space:nowrap;
  6796. text-transform:none;
  6797. }
  6798. #u212821_div {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:61px;
  6804. height:25px;
  6805. background:inherit;
  6806. background-color:rgba(255, 255, 255, 0);
  6807. border:none;
  6808. border-left:0px;
  6809. border-top:0px;
  6810. border-right:0px;
  6811. border-radius:0px;
  6812. border-bottom-right-radius:0px;
  6813. border-bottom-left-radius:0px;
  6814. -moz-box-shadow:none;
  6815. -webkit-box-shadow:none;
  6816. box-shadow:none;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. text-align:right;
  6821. }
  6822. #u212821 {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:1679px;
  6826. top:286px;
  6827. width:61px;
  6828. height:25px;
  6829. display:flex;
  6830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. text-align:right;
  6834. }
  6835. #u212821 .text {
  6836. position:absolute;
  6837. align-self:flex-start;
  6838. padding:0px 0px 0px 0px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u212821_text {
  6843. border-width:0px;
  6844. white-space:nowrap;
  6845. text-transform:none;
  6846. }
  6847. #u212822_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:106px;
  6853. height:11px;
  6854. background:inherit;
  6855. background-color:rgba(255, 255, 255, 0);
  6856. border:none;
  6857. border-left:0px;
  6858. border-top:0px;
  6859. border-right:0px;
  6860. border-radius:0px;
  6861. border-bottom-right-radius:0px;
  6862. border-bottom-left-radius:0px;
  6863. -moz-box-shadow:none;
  6864. -webkit-box-shadow:none;
  6865. box-shadow:none;
  6866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:10px;
  6870. color:#000000;
  6871. text-align:center;
  6872. }
  6873. #u212822 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:1428px;
  6877. top:229px;
  6878. width:106px;
  6879. height:11px;
  6880. display:flex;
  6881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:10px;
  6885. color:#000000;
  6886. text-align:center;
  6887. }
  6888. #u212822 .text {
  6889. position:absolute;
  6890. align-self:flex-start;
  6891. padding:0px 0px 0px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u212822_text {
  6896. border-width:0px;
  6897. white-space:nowrap;
  6898. text-transform:none;
  6899. }
  6900. #u212823_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:31px;
  6906. height:24px;
  6907. background:inherit;
  6908. background-color:rgba(255, 255, 255, 0);
  6909. border:none;
  6910. border-left:0px;
  6911. border-top:0px;
  6912. border-right:0px;
  6913. border-radius:0px;
  6914. border-bottom-right-radius:0px;
  6915. border-bottom-left-radius:0px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:10px;
  6923. color:#555555;
  6924. text-align:right;
  6925. line-height:24px;
  6926. }
  6927. #u212823 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:1719px;
  6931. top:221px;
  6932. width:31px;
  6933. height:24px;
  6934. display:flex;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:10px;
  6939. color:#555555;
  6940. text-align:right;
  6941. line-height:24px;
  6942. }
  6943. #u212823 .text {
  6944. position:absolute;
  6945. align-self:flex-start;
  6946. padding:0px 0px 0px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u212823_text {
  6951. border-width:0px;
  6952. white-space:nowrap;
  6953. text-transform:none;
  6954. }
  6955. #u212824_div {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:85px;
  6961. height:30px;
  6962. background:inherit;
  6963. background-color:rgba(255, 255, 255, 0);
  6964. border:none;
  6965. border-left:0px;
  6966. border-top:0px;
  6967. border-right:0px;
  6968. border-radius:0px;
  6969. border-bottom-right-radius:0px;
  6970. border-bottom-left-radius:0px;
  6971. -moz-box-shadow:none;
  6972. -webkit-box-shadow:none;
  6973. box-shadow:none;
  6974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. line-height:30px;
  6979. }
  6980. #u212824 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:1420px;
  6984. top:188px;
  6985. width:85px;
  6986. height:30px;
  6987. display:flex;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:14px;
  6992. line-height:30px;
  6993. }
  6994. #u212824 .text {
  6995. position:absolute;
  6996. align-self:center;
  6997. padding:0px 0px 0px 0px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u212824_text {
  7002. border-width:0px;
  7003. white-space:nowrap;
  7004. text-transform:none;
  7005. }
  7006. #u212825 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:0px;
  7012. height:0px;
  7013. }
  7014. #u212826_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:359px;
  7020. height:60px;
  7021. background:inherit;
  7022. background-color:rgba(255, 255, 255, 1);
  7023. border:none;
  7024. border-left:0px;
  7025. border-top:0px;
  7026. border-right:0px;
  7027. border-radius:4px;
  7028. border-bottom-right-radius:0px;
  7029. border-bottom-left-radius:0px;
  7030. -moz-box-shadow:none;
  7031. -webkit-box-shadow:none;
  7032. box-shadow:none;
  7033. }
  7034. #u212826 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:1410px;
  7038. top:117px;
  7039. width:359px;
  7040. height:60px;
  7041. display:flex;
  7042. }
  7043. #u212826 .text {
  7044. position:absolute;
  7045. align-self:center;
  7046. padding:2px 2px 2px 2px;
  7047. box-sizing:border-box;
  7048. width:100%;
  7049. }
  7050. #u212826_text {
  7051. border-width:0px;
  7052. word-wrap:break-word;
  7053. text-transform:none;
  7054. }
  7055. #u212827_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:71px;
  7061. height:40px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 0);
  7064. border:none;
  7065. border-left:0px;
  7066. border-top:0px;
  7067. border-right:0px;
  7068. border-radius:0px;
  7069. border-bottom-right-radius:0px;
  7070. border-bottom-left-radius:0px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:14px;
  7078. color:#AAAAAA;
  7079. line-height:40px;
  7080. }
  7081. #u212827 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:1428px;
  7085. top:127px;
  7086. width:71px;
  7087. height:40px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:14px;
  7093. color:#AAAAAA;
  7094. line-height:40px;
  7095. }
  7096. #u212827 .text {
  7097. position:absolute;
  7098. align-self:flex-start;
  7099. padding:0px 0px 0px 0px;
  7100. box-sizing:border-box;
  7101. width:100%;
  7102. }
  7103. #u212827_text {
  7104. border-width:0px;
  7105. white-space:nowrap;
  7106. text-transform:none;
  7107. }
  7108. #u212828_div {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:43px;
  7114. height:40px;
  7115. background:inherit;
  7116. background-color:rgba(255, 255, 255, 0);
  7117. border:none;
  7118. border-left:0px;
  7119. border-top:0px;
  7120. border-right:0px;
  7121. border-radius:0px;
  7122. border-bottom-right-radius:0px;
  7123. border-bottom-left-radius:0px;
  7124. -moz-box-shadow:none;
  7125. -webkit-box-shadow:none;
  7126. box-shadow:none;
  7127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:14px;
  7131. line-height:40px;
  7132. }
  7133. #u212828 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:1506px;
  7137. top:127px;
  7138. width:43px;
  7139. height:40px;
  7140. display:flex;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:14px;
  7145. line-height:40px;
  7146. }
  7147. #u212828 .text {
  7148. position:absolute;
  7149. align-self:flex-start;
  7150. padding:0px 0px 0px 0px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u212828_text {
  7155. border-width:0px;
  7156. white-space:nowrap;
  7157. text-transform:none;
  7158. }
  7159. #u212829_div {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:121px;
  7165. height:40px;
  7166. background:inherit;
  7167. background-color:rgba(255, 255, 255, 0);
  7168. border:none;
  7169. border-left:0px;
  7170. border-top:0px;
  7171. border-right:0px;
  7172. border-radius:0px;
  7173. border-bottom-right-radius:0px;
  7174. border-bottom-left-radius:0px;
  7175. -moz-box-shadow:none;
  7176. -webkit-box-shadow:none;
  7177. box-shadow:none;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:12px;
  7182. color:#D9001B;
  7183. line-height:40px;
  7184. }
  7185. #u212829 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:1559px;
  7189. top:127px;
  7190. width:121px;
  7191. height:40px;
  7192. display:flex;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:12px;
  7197. color:#D9001B;
  7198. line-height:40px;
  7199. }
  7200. #u212829 .text {
  7201. position:absolute;
  7202. align-self:flex-start;
  7203. padding:0px 0px 0px 0px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u212829_text {
  7208. border-width:0px;
  7209. white-space:nowrap;
  7210. text-transform:none;
  7211. }
  7212. #u212830 {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:0px;
  7218. height:0px;
  7219. }
  7220. #u212831_div {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:374px;
  7226. height:50px;
  7227. background:inherit;
  7228. background-color:rgba(255, 255, 255, 1);
  7229. border:none;
  7230. border-left:0px;
  7231. border-top:0px;
  7232. border-right:0px;
  7233. border-radius:0px;
  7234. border-bottom-right-radius:0px;
  7235. border-bottom-left-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. }
  7240. #u212831 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:939px;
  7244. top:562px;
  7245. width:374px;
  7246. height:50px;
  7247. display:flex;
  7248. }
  7249. #u212831 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u212831_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. visibility:hidden;
  7261. }
  7262. #u212832_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:71px;
  7268. height:30px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 0);
  7271. border:none;
  7272. border-left:0px;
  7273. border-top:0px;
  7274. border-right:0px;
  7275. border-radius:0px;
  7276. border-bottom-right-radius:0px;
  7277. border-bottom-left-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:14px;
  7285. color:#AAAAAA;
  7286. line-height:30px;
  7287. }
  7288. #u212832 {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:959px;
  7292. top:572px;
  7293. width:71px;
  7294. height:30px;
  7295. display:flex;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:14px;
  7300. color:#AAAAAA;
  7301. line-height:30px;
  7302. }
  7303. #u212832 .text {
  7304. position:absolute;
  7305. align-self:center;
  7306. padding:0px 0px 0px 0px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u212832_text {
  7311. border-width:0px;
  7312. word-wrap:break-word;
  7313. text-transform:none;
  7314. }
  7315. #u212833_div {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:52px;
  7321. height:30px;
  7322. background:inherit;
  7323. background-color:rgba(255, 255, 255, 0);
  7324. border:none;
  7325. border-left:0px;
  7326. border-top:0px;
  7327. border-right:0px;
  7328. border-radius:0px;
  7329. border-bottom-right-radius:0px;
  7330. border-bottom-left-radius:0px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. text-align:right;
  7339. line-height:30px;
  7340. }
  7341. #u212833 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:1033px;
  7345. top:572px;
  7346. width:52px;
  7347. height:30px;
  7348. display:flex;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:14px;
  7353. text-align:right;
  7354. line-height:30px;
  7355. }
  7356. #u212833 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:0px 0px 0px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u212833_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. }
  7368. #u212834_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:56px;
  7374. height:30px;
  7375. background:inherit;
  7376. background-color:rgba(255, 255, 255, 0);
  7377. border:none;
  7378. border-left:0px;
  7379. border-top:0px;
  7380. border-right:0px;
  7381. border-radius:0px;
  7382. border-bottom-right-radius:0px;
  7383. border-bottom-left-radius:0px;
  7384. -moz-box-shadow:none;
  7385. -webkit-box-shadow:none;
  7386. box-shadow:none;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:12px;
  7391. color:#1890FF;
  7392. line-height:30px;
  7393. }
  7394. #u212834 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:1244px;
  7398. top:572px;
  7399. width:56px;
  7400. height:30px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:12px;
  7406. color:#1890FF;
  7407. line-height:30px;
  7408. }
  7409. #u212834 .text {
  7410. position:absolute;
  7411. align-self:center;
  7412. padding:0px 0px 0px 0px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u212834_text {
  7417. border-width:0px;
  7418. word-wrap:break-word;
  7419. text-transform:none;
  7420. }
  7421. #u212835 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:0px;
  7427. height:0px;
  7428. }
  7429. #u212836_div {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:373px;
  7435. height:50px;
  7436. background:inherit;
  7437. background-color:rgba(255, 255, 255, 1);
  7438. border:none;
  7439. border-left:0px;
  7440. border-top:0px;
  7441. border-right:0px;
  7442. border-radius:0px;
  7443. border-bottom-right-radius:0px;
  7444. border-bottom-left-radius:0px;
  7445. -moz-box-shadow:none;
  7446. -webkit-box-shadow:none;
  7447. box-shadow:none;
  7448. }
  7449. #u212836 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:1402px;
  7453. top:562px;
  7454. width:373px;
  7455. height:50px;
  7456. display:flex;
  7457. }
  7458. #u212836 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:2px 2px 2px 2px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u212836_text {
  7466. border-width:0px;
  7467. word-wrap:break-word;
  7468. text-transform:none;
  7469. visibility:hidden;
  7470. }
  7471. #u212837_div {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:71px;
  7477. height:30px;
  7478. background:inherit;
  7479. background-color:rgba(255, 255, 255, 0);
  7480. border:none;
  7481. border-left:0px;
  7482. border-top:0px;
  7483. border-right:0px;
  7484. border-radius:0px;
  7485. border-bottom-right-radius:0px;
  7486. border-bottom-left-radius:0px;
  7487. -moz-box-shadow:none;
  7488. -webkit-box-shadow:none;
  7489. box-shadow:none;
  7490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:14px;
  7494. color:#AAAAAA;
  7495. line-height:30px;
  7496. }
  7497. #u212837 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:1422px;
  7501. top:572px;
  7502. width:71px;
  7503. height:30px;
  7504. display:flex;
  7505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:14px;
  7509. color:#AAAAAA;
  7510. line-height:30px;
  7511. }
  7512. #u212837 .text {
  7513. position:absolute;
  7514. align-self:center;
  7515. padding:0px 0px 0px 0px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u212837_text {
  7520. border-width:0px;
  7521. word-wrap:break-word;
  7522. text-transform:none;
  7523. }
  7524. #u212838_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:71px;
  7530. height:30px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border:none;
  7534. border-left:0px;
  7535. border-top:0px;
  7536. border-right:0px;
  7537. border-radius:0px;
  7538. border-bottom-right-radius:0px;
  7539. border-bottom-left-radius:0px;
  7540. -moz-box-shadow:none;
  7541. -webkit-box-shadow:none;
  7542. box-shadow:none;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. line-height:30px;
  7548. }
  7549. #u212838 {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:1496px;
  7553. top:572px;
  7554. width:71px;
  7555. height:30px;
  7556. display:flex;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:14px;
  7561. line-height:30px;
  7562. }
  7563. #u212838 .text {
  7564. position:absolute;
  7565. align-self:center;
  7566. padding:0px 0px 0px 0px;
  7567. box-sizing:border-box;
  7568. width:100%;
  7569. }
  7570. #u212838_text {
  7571. border-width:0px;
  7572. white-space:nowrap;
  7573. text-transform:none;
  7574. }