styles.css 131 KB

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