styles.css 110 KB

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