styles.css 139 KB

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