styles.css 113 KB

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