styles.css 136 KB

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