styles.css 135 KB

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