styles.css 108 KB

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