styles.css 173 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2270px;
  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. #u38344_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u38344 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u38344 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u38344_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u38345_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u38345 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u38345 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u38345_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u38346 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u38347_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u38347 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u38347 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u38347_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u38348 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u38349_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u38349 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u38349 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u38349_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u38350_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u38350 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u38350 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u38350_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u38351 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u38352_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u38352 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u38352 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u38352_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u38353_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u38353 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u38353 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u38353_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u38354_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u38354 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u38354 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u38354_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u38355_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u38355 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u38355 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u38355_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u38356_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u38356 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u38356 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u38356_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u38357_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u38357 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u38357 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u38357_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u38358 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u38359_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u38359 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u38359 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u38359_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u38360_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u38360 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u38360 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u38360_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u38361 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u38362_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u38362 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u38362 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u38362_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u38363_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u38363 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u38363 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u38363_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u38364_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u38364 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u38364 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u38364_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u38365 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u38366_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u38366 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u38366 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u38366_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u38367_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u38367 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u38367 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u38367_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u38368 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u38369_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u38369 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u38369 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u38369_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u38370_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u38370 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u38370 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u38370_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u38371_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:740px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 1);
  785. border:none;
  786. border-top:0px;
  787. border-radius:25px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. }
  794. #u38371 {
  795. border-width:0px;
  796. position:absolute;
  797. left:29px;
  798. top:105px;
  799. width:375px;
  800. height:740px;
  801. display:flex;
  802. }
  803. #u38371 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u38371_text {
  811. border-width:0px;
  812. word-wrap:break-word;
  813. text-transform:none;
  814. visibility:hidden;
  815. }
  816. #u38372 {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:0px;
  822. height:0px;
  823. }
  824. #u38373_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:11px;
  830. height:18px;
  831. }
  832. #u38373 {
  833. border-width:0px;
  834. position:absolute;
  835. left:40px;
  836. top:79px;
  837. width:11px;
  838. height:18px;
  839. display:flex;
  840. }
  841. #u38373 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u38373_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u38374_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:329px;
  860. height:40px;
  861. background:inherit;
  862. background-color:rgba(24, 144, 255, 1);
  863. box-sizing:border-box;
  864. border-width:1px;
  865. border-style:solid;
  866. border-color:rgba(24, 144, 255, 1);
  867. border-radius:19px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:14px;
  875. color:#FFFFFF;
  876. text-align:center;
  877. line-height:30px;
  878. }
  879. #u38374 {
  880. border-width:0px;
  881. position:absolute;
  882. left:52px;
  883. top:795px;
  884. width:329px;
  885. height:40px;
  886. display:flex;
  887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  888. font-weight:400;
  889. font-style:normal;
  890. font-size:14px;
  891. color:#FFFFFF;
  892. text-align:center;
  893. line-height:30px;
  894. }
  895. #u38374 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:0px 0px 0px 0px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u38374_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. }
  907. #u38375_div {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:375px;
  913. height:140px;
  914. background:inherit;
  915. background-color:rgba(255, 255, 255, 1);
  916. box-sizing:border-box;
  917. border-width:1px;
  918. border-style:solid;
  919. border-color:rgba(215, 215, 215, 1);
  920. border-left:0px;
  921. border-top:0px;
  922. border-right:0px;
  923. border-radius:0px;
  924. border-bottom-right-radius:0px;
  925. border-bottom-left-radius:0px;
  926. -moz-box-shadow:none;
  927. -webkit-box-shadow:none;
  928. box-shadow:none;
  929. }
  930. #u38375 {
  931. border-width:0px;
  932. position:absolute;
  933. left:29px;
  934. top:67px;
  935. width:375px;
  936. height:140px;
  937. display:flex;
  938. }
  939. #u38375 .text {
  940. position:absolute;
  941. align-self:center;
  942. padding:2px 2px 2px 2px;
  943. box-sizing:border-box;
  944. width:100%;
  945. }
  946. #u38375_text {
  947. border-width:0px;
  948. word-wrap:break-word;
  949. text-transform:none;
  950. visibility:hidden;
  951. }
  952. #u38376 {
  953. border-width:0px;
  954. position:absolute;
  955. left:0px;
  956. top:0px;
  957. width:0px;
  958. height:0px;
  959. }
  960. #u38377_div {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:88px;
  966. height:32px;
  967. background:inherit;
  968. background-color:rgba(255, 255, 255, 1);
  969. box-sizing:border-box;
  970. border-width:1px;
  971. border-style:solid;
  972. border-color:rgba(242, 242, 242, 1);
  973. border-radius:33px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. }
  978. #u38377 {
  979. border-width:0px;
  980. position:absolute;
  981. left:309px;
  982. top:71px;
  983. width:88px;
  984. height:32px;
  985. display:flex;
  986. }
  987. #u38377 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:2px 2px 2px 2px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u38377_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. visibility:hidden;
  999. }
  1000. #u38378 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:0px;
  1006. height:0px;
  1007. }
  1008. #u38379_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:18px;
  1014. height:18px;
  1015. }
  1016. #u38379 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:372px;
  1020. top:78px;
  1021. width:18px;
  1022. height:18px;
  1023. display:flex;
  1024. }
  1025. #u38379 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u38379_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u38380_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:6px;
  1044. height:6px;
  1045. }
  1046. #u38380 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:378px;
  1050. top:84px;
  1051. width:6px;
  1052. height:6px;
  1053. display:flex;
  1054. }
  1055. #u38380 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u38380_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u38381 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:0px;
  1074. height:0px;
  1075. }
  1076. #u38382_img {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:0px;
  1080. top:0px;
  1081. width:5px;
  1082. height:5px;
  1083. }
  1084. #u38382 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:323px;
  1088. top:85px;
  1089. width:5px;
  1090. height:5px;
  1091. display:flex;
  1092. }
  1093. #u38382 .text {
  1094. position:absolute;
  1095. align-self:center;
  1096. padding:2px 2px 2px 2px;
  1097. box-sizing:border-box;
  1098. width:100%;
  1099. }
  1100. #u38382_text {
  1101. border-width:0px;
  1102. word-wrap:break-word;
  1103. text-transform:none;
  1104. visibility:hidden;
  1105. }
  1106. #u38383_img {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:0px;
  1110. top:0px;
  1111. width:5px;
  1112. height:5px;
  1113. }
  1114. #u38383 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:339px;
  1118. top:85px;
  1119. width:5px;
  1120. height:5px;
  1121. display:flex;
  1122. }
  1123. #u38383 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:2px 2px 2px 2px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u38383_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. visibility:hidden;
  1135. }
  1136. #u38384_img {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:7px;
  1142. height:7px;
  1143. }
  1144. #u38384 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:330px;
  1148. top:84px;
  1149. width:7px;
  1150. height:7px;
  1151. display:flex;
  1152. }
  1153. #u38384 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u38384_text {
  1161. border-width:0px;
  1162. word-wrap:break-word;
  1163. text-transform:none;
  1164. visibility:hidden;
  1165. }
  1166. #u38385_img {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:19px;
  1172. height:2px;
  1173. }
  1174. #u38385 {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:347px;
  1178. top:87px;
  1179. width:18px;
  1180. height:1px;
  1181. display:flex;
  1182. -webkit-transform:rotate(90deg);
  1183. -moz-transform:rotate(90deg);
  1184. -ms-transform:rotate(90deg);
  1185. transform:rotate(90deg);
  1186. }
  1187. #u38385 .text {
  1188. position:absolute;
  1189. align-self:center;
  1190. padding:2px 2px 2px 2px;
  1191. box-sizing:border-box;
  1192. width:100%;
  1193. }
  1194. #u38385_text {
  1195. border-width:0px;
  1196. word-wrap:break-word;
  1197. text-transform:none;
  1198. visibility:hidden;
  1199. }
  1200. #u38386_div {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:12px;
  1206. height:12px;
  1207. background:inherit;
  1208. background-color:rgba(255, 255, 255, 0);
  1209. box-sizing:border-box;
  1210. border-width:2px;
  1211. border-style:solid;
  1212. border-color:rgba(51, 51, 51, 1);
  1213. border-right:0px;
  1214. border-bottom:0px;
  1215. border-radius:0px;
  1216. border-top-right-radius:0px;
  1217. border-bottom-left-radius:0px;
  1218. -moz-box-shadow:none;
  1219. -webkit-box-shadow:none;
  1220. box-shadow:none;
  1221. }
  1222. #u38386 {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:44px;
  1226. top:81px;
  1227. width:12px;
  1228. height:12px;
  1229. display:flex;
  1230. -webkit-transform:rotate(315deg);
  1231. -moz-transform:rotate(315deg);
  1232. -ms-transform:rotate(315deg);
  1233. transform:rotate(315deg);
  1234. }
  1235. #u38386 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:2px 2px 2px 2px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u38386_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u38387_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:43px;
  1254. height:21px;
  1255. background:inherit;
  1256. background-color:rgba(24, 144, 255, 1);
  1257. border:none;
  1258. border-radius:17px;
  1259. -moz-box-shadow:none;
  1260. -webkit-box-shadow:none;
  1261. box-shadow:none;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:12px;
  1266. color:#FFFFFF;
  1267. }
  1268. #u38387 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:42px;
  1272. top:155px;
  1273. width:43px;
  1274. height:21px;
  1275. display:flex;
  1276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1277. font-weight:400;
  1278. font-style:normal;
  1279. font-size:12px;
  1280. color:#FFFFFF;
  1281. }
  1282. #u38387 .text {
  1283. position:absolute;
  1284. align-self:center;
  1285. padding:2px 3px 2px 3px;
  1286. box-sizing:border-box;
  1287. width:100%;
  1288. }
  1289. #u38387_text {
  1290. border-width:0px;
  1291. white-space:nowrap;
  1292. text-transform:none;
  1293. }
  1294. #u38388_div {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:43px;
  1300. height:21px;
  1301. background:inherit;
  1302. background-color:rgba(242, 242, 242, 1);
  1303. border:none;
  1304. border-radius:17px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:12px;
  1312. color:#555555;
  1313. }
  1314. #u38388 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:103px;
  1318. top:155px;
  1319. width:43px;
  1320. height:21px;
  1321. display:flex;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:12px;
  1326. color:#555555;
  1327. }
  1328. #u38388 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 3px 2px 3px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u38388_text {
  1336. border-width:0px;
  1337. white-space:nowrap;
  1338. text-transform:none;
  1339. }
  1340. #u38389_div {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:43px;
  1346. height:21px;
  1347. background:inherit;
  1348. background-color:rgba(242, 242, 242, 1);
  1349. border:none;
  1350. border-radius:17px;
  1351. -moz-box-shadow:none;
  1352. -webkit-box-shadow:none;
  1353. box-shadow:none;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:12px;
  1358. color:#555555;
  1359. }
  1360. #u38389 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:163px;
  1364. top:155px;
  1365. width:43px;
  1366. height:21px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. font-size:12px;
  1372. color:#555555;
  1373. }
  1374. #u38389 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 3px 2px 3px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u38389_text {
  1382. border-width:0px;
  1383. white-space:nowrap;
  1384. text-transform:none;
  1385. }
  1386. #u38390 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u38391_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:280px;
  1400. height:30px;
  1401. background:inherit;
  1402. background-color:rgba(242, 242, 242, 1);
  1403. border:none;
  1404. border-radius:20px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. }
  1409. #u38391 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:42px;
  1413. top:115px;
  1414. width:280px;
  1415. height:30px;
  1416. display:flex;
  1417. }
  1418. #u38391 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u38391_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. visibility:hidden;
  1430. }
  1431. #u38392_input {
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:260px;
  1436. height:25px;
  1437. padding:2px 2px 2px 2px;
  1438. font-family:'ArialMT', 'Arial', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:13px;
  1442. letter-spacing:normal;
  1443. color:#000000;
  1444. vertical-align:none;
  1445. text-align:left;
  1446. text-transform:none;
  1447. background-color:transparent;
  1448. border-color:transparent;
  1449. }
  1450. #u38392_input.disabled {
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:260px;
  1455. height:25px;
  1456. padding:2px 2px 2px 2px;
  1457. font-family:'ArialMT', 'Arial', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:13px;
  1461. letter-spacing:normal;
  1462. color:#000000;
  1463. vertical-align:none;
  1464. text-align:left;
  1465. text-transform:none;
  1466. background-color:transparent;
  1467. border-color:transparent;
  1468. }
  1469. #u38392_div {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:260px;
  1475. height:25px;
  1476. background:inherit;
  1477. background-color:rgba(242, 242, 242, 1);
  1478. border:none;
  1479. border-radius:0px;
  1480. -moz-box-shadow:none;
  1481. -webkit-box-shadow:none;
  1482. box-shadow:none;
  1483. }
  1484. #u38392 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:51px;
  1488. top:116px;
  1489. width:260px;
  1490. height:25px;
  1491. display:flex;
  1492. }
  1493. #u38392 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:2px 2px 2px 2px;
  1497. box-sizing:border-box;
  1498. width:100%;
  1499. }
  1500. #u38392_div.disabled {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:260px;
  1506. height:25px;
  1507. background:inherit;
  1508. background-color:rgba(240, 240, 240, 1);
  1509. border:none;
  1510. border-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. }
  1515. #u38392.disabled {
  1516. }
  1517. #u38393_img {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:12px;
  1523. height:12px;
  1524. }
  1525. #u38393 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:303px;
  1529. top:124px;
  1530. width:12px;
  1531. height:12px;
  1532. display:flex;
  1533. }
  1534. #u38393 .text {
  1535. position:absolute;
  1536. align-self:center;
  1537. padding:2px 2px 2px 2px;
  1538. box-sizing:border-box;
  1539. width:100%;
  1540. }
  1541. #u38393_text {
  1542. border-width:0px;
  1543. word-wrap:break-word;
  1544. text-transform:none;
  1545. visibility:hidden;
  1546. }
  1547. #u38394_div {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:49px;
  1553. height:30px;
  1554. background:inherit;
  1555. background-color:rgba(255, 255, 255, 0);
  1556. border:none;
  1557. border-left:0px;
  1558. border-top:0px;
  1559. border-right:0px;
  1560. border-radius:0px;
  1561. border-bottom-right-radius:0px;
  1562. border-bottom-left-radius:0px;
  1563. -moz-box-shadow:none;
  1564. -webkit-box-shadow:none;
  1565. box-shadow:none;
  1566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1567. font-weight:400;
  1568. font-style:normal;
  1569. font-size:12px;
  1570. color:#1890FF;
  1571. line-height:30px;
  1572. }
  1573. #u38394 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:341px;
  1577. top:115px;
  1578. width:49px;
  1579. height:30px;
  1580. display:flex;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:12px;
  1585. color:#1890FF;
  1586. line-height:30px;
  1587. }
  1588. #u38394 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u38394_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u38395_div {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:63px;
  1606. height:14px;
  1607. background:inherit;
  1608. background-color:rgba(255, 255, 255, 0);
  1609. border:none;
  1610. border-left:0px;
  1611. border-top:0px;
  1612. border-right:0px;
  1613. border-radius:0px;
  1614. border-bottom-right-radius:0px;
  1615. border-bottom-left-radius:0px;
  1616. -moz-box-shadow:none;
  1617. -webkit-box-shadow:none;
  1618. box-shadow:none;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:10px;
  1623. color:#AAAAAA;
  1624. }
  1625. #u38395 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:42px;
  1629. top:184px;
  1630. width:63px;
  1631. height:14px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:10px;
  1637. color:#AAAAAA;
  1638. }
  1639. #u38395 .text {
  1640. position:absolute;
  1641. align-self:flex-start;
  1642. padding:0px 0px 0px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u38395_text {
  1647. border-width:0px;
  1648. white-space:nowrap;
  1649. text-transform:none;
  1650. }
  1651. #u38396_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:65px;
  1657. height:22px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 0);
  1660. border:none;
  1661. border-radius:0px;
  1662. -moz-box-shadow:none;
  1663. -webkit-box-shadow:none;
  1664. box-shadow:none;
  1665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1666. font-weight:400;
  1667. font-style:normal;
  1668. font-size:16px;
  1669. color:#000000;
  1670. }
  1671. #u38396 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:181px;
  1675. top:76px;
  1676. width:65px;
  1677. height:22px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:16px;
  1683. color:#000000;
  1684. }
  1685. #u38396 .text {
  1686. position:absolute;
  1687. align-self:flex-start;
  1688. padding:0px 0px 0px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u38396_text {
  1693. border-width:0px;
  1694. white-space:nowrap;
  1695. text-transform:none;
  1696. }
  1697. #u38397_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:11px;
  1703. height:11px;
  1704. background:inherit;
  1705. background-color:rgba(217, 0, 27, 1);
  1706. border:none;
  1707. border-radius:7px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:8px;
  1715. color:#FFFFFF;
  1716. text-align:center;
  1717. }
  1718. #u38397 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:80px;
  1722. top:150px;
  1723. width:11px;
  1724. height:11px;
  1725. display:flex;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:8px;
  1730. color:#FFFFFF;
  1731. text-align:center;
  1732. }
  1733. #u38397 .text {
  1734. position:absolute;
  1735. align-self:flex-start;
  1736. padding:0px 0px 0px 0px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u38397_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. }
  1745. #u38398_div {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:43px;
  1751. height:21px;
  1752. background:inherit;
  1753. background-color:rgba(242, 242, 242, 1);
  1754. border:none;
  1755. border-radius:17px;
  1756. -moz-box-shadow:none;
  1757. -webkit-box-shadow:none;
  1758. box-shadow:none;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:12px;
  1763. color:#555555;
  1764. }
  1765. #u38398 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:224px;
  1769. top:155px;
  1770. width:43px;
  1771. height:21px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. color:#555555;
  1778. }
  1779. #u38398 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 3px 2px 3px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u38398_text {
  1787. border-width:0px;
  1788. white-space:nowrap;
  1789. text-transform:none;
  1790. }
  1791. #u38399_div {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:43px;
  1797. height:21px;
  1798. background:inherit;
  1799. background-color:rgba(242, 242, 242, 1);
  1800. border:none;
  1801. border-radius:17px;
  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. color:#555555;
  1810. }
  1811. #u38399 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:287px;
  1815. top:155px;
  1816. width:43px;
  1817. height:21px;
  1818. display:flex;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:12px;
  1823. color:#555555;
  1824. }
  1825. #u38399 .text {
  1826. position:absolute;
  1827. align-self:center;
  1828. padding:2px 3px 2px 3px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u38399_text {
  1833. border-width:0px;
  1834. white-space:nowrap;
  1835. text-transform:none;
  1836. }
  1837. #u38401_img {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:433px;
  1843. height:865px;
  1844. }
  1845. #u38401 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:453px;
  1849. top:0px;
  1850. width:433px;
  1851. height:865px;
  1852. display:flex;
  1853. }
  1854. #u38401 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u38401_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. visibility:hidden;
  1866. }
  1867. #u38402_div {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:375px;
  1873. height:40px;
  1874. background:inherit;
  1875. background-color:rgba(255, 255, 255, 1);
  1876. border:none;
  1877. border-left:0px;
  1878. border-top:0px;
  1879. border-right:0px;
  1880. border-radius:0px;
  1881. border-bottom-right-radius:0px;
  1882. border-bottom-left-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. }
  1887. #u38402 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:482px;
  1891. top:67px;
  1892. width:375px;
  1893. height:40px;
  1894. display:flex;
  1895. }
  1896. #u38402 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u38402_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u38403 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u38404_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:88px;
  1923. height:32px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 1);
  1926. box-sizing:border-box;
  1927. border-width:1px;
  1928. border-style:solid;
  1929. border-color:rgba(242, 242, 242, 1);
  1930. border-radius:33px;
  1931. -moz-box-shadow:none;
  1932. -webkit-box-shadow:none;
  1933. box-shadow:none;
  1934. }
  1935. #u38404 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:762px;
  1939. top:71px;
  1940. width:88px;
  1941. height:32px;
  1942. display:flex;
  1943. }
  1944. #u38404 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u38404_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. visibility:hidden;
  1956. }
  1957. #u38405 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:0px;
  1963. height:0px;
  1964. }
  1965. #u38406_img {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:18px;
  1971. height:18px;
  1972. }
  1973. #u38406 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:825px;
  1977. top:78px;
  1978. width:18px;
  1979. height:18px;
  1980. display:flex;
  1981. }
  1982. #u38406 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u38406_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. visibility:hidden;
  1994. }
  1995. #u38407_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:6px;
  2001. height:6px;
  2002. }
  2003. #u38407 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:831px;
  2007. top:84px;
  2008. width:6px;
  2009. height:6px;
  2010. display:flex;
  2011. }
  2012. #u38407 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u38407_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. visibility:hidden;
  2024. }
  2025. #u38408 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:0px;
  2031. height:0px;
  2032. }
  2033. #u38409_img {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:5px;
  2039. height:5px;
  2040. }
  2041. #u38409 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:776px;
  2045. top:85px;
  2046. width:5px;
  2047. height:5px;
  2048. display:flex;
  2049. }
  2050. #u38409 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u38409_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u38410_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:5px;
  2069. height:5px;
  2070. }
  2071. #u38410 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:792px;
  2075. top:85px;
  2076. width:5px;
  2077. height:5px;
  2078. display:flex;
  2079. }
  2080. #u38410 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u38410_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u38411_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:7px;
  2099. height:7px;
  2100. }
  2101. #u38411 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:783px;
  2105. top:84px;
  2106. width:7px;
  2107. height:7px;
  2108. display:flex;
  2109. }
  2110. #u38411 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 2px 2px 2px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u38411_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. visibility:hidden;
  2122. }
  2123. #u38412_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:19px;
  2129. height:2px;
  2130. }
  2131. #u38412 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:800px;
  2135. top:87px;
  2136. width:18px;
  2137. height:1px;
  2138. display:flex;
  2139. -webkit-transform:rotate(90deg);
  2140. -moz-transform:rotate(90deg);
  2141. -ms-transform:rotate(90deg);
  2142. transform:rotate(90deg);
  2143. }
  2144. #u38412 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 2px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u38412_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. visibility:hidden;
  2156. }
  2157. #u38413_img {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:375px;
  2163. height:44px;
  2164. }
  2165. #u38413 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:482px;
  2169. top:24px;
  2170. width:375px;
  2171. height:44px;
  2172. display:flex;
  2173. }
  2174. #u38413 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u38413_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u38414_div {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:375px;
  2193. height:50px;
  2194. background:inherit;
  2195. background-color:rgba(255, 255, 255, 1);
  2196. box-sizing:border-box;
  2197. border-width:1px;
  2198. border-style:solid;
  2199. border-color:rgba(242, 242, 242, 1);
  2200. border-radius:26px;
  2201. border-top-left-radius:0px;
  2202. border-top-right-radius:0px;
  2203. -moz-box-shadow:none;
  2204. -webkit-box-shadow:none;
  2205. box-shadow:none;
  2206. }
  2207. #u38414 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:482px;
  2211. top:788px;
  2212. width:375px;
  2213. height:50px;
  2214. display:flex;
  2215. }
  2216. #u38414 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 2px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u38414_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u38415 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:0px;
  2235. height:0px;
  2236. }
  2237. #u38416_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:24px;
  2243. height:24px;
  2244. }
  2245. #u38416 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:522px;
  2249. top:792px;
  2250. width:24px;
  2251. height:24px;
  2252. display:flex;
  2253. font-size:8px;
  2254. }
  2255. #u38416 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 2px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u38416_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. }
  2267. #u38417_div {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:25px;
  2273. height:17px;
  2274. background:inherit;
  2275. background-color:rgba(255, 255, 255, 0);
  2276. border:none;
  2277. border-radius:0px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. }
  2286. #u38417 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:522px;
  2290. top:817px;
  2291. width:25px;
  2292. height:17px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:12px;
  2298. }
  2299. #u38417 .text {
  2300. position:absolute;
  2301. align-self:flex-start;
  2302. padding:0px 0px 0px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u38417_text {
  2307. border-width:0px;
  2308. white-space:nowrap;
  2309. text-transform:none;
  2310. }
  2311. #u38418 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:0px;
  2317. height:0px;
  2318. }
  2319. #u38419_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:24px;
  2325. height:24px;
  2326. }
  2327. #u38419 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:792px;
  2331. top:794px;
  2332. width:24px;
  2333. height:24px;
  2334. display:flex;
  2335. font-size:8px;
  2336. }
  2337. #u38419 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 2px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u38419_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. }
  2349. #u38420_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:25px;
  2355. height:17px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0);
  2358. border:none;
  2359. border-radius:0px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. }
  2368. #u38420 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:792px;
  2372. top:819px;
  2373. width:25px;
  2374. height:17px;
  2375. display:flex;
  2376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2377. font-weight:400;
  2378. font-style:normal;
  2379. font-size:12px;
  2380. }
  2381. #u38420 .text {
  2382. position:absolute;
  2383. align-self:flex-start;
  2384. padding:0px 0px 0px 0px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u38420_text {
  2389. border-width:0px;
  2390. white-space:nowrap;
  2391. text-transform:none;
  2392. }
  2393. #u38421_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:375px;
  2399. height:681px;
  2400. background:inherit;
  2401. background-color:rgba(242, 242, 242, 0.462745098039216);
  2402. border:none;
  2403. border-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. }
  2408. #u38421 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:482px;
  2412. top:107px;
  2413. width:375px;
  2414. height:681px;
  2415. display:flex;
  2416. }
  2417. #u38421 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u38421_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u38422 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:0px;
  2436. height:0px;
  2437. }
  2438. #u38423_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:24px;
  2444. height:24px;
  2445. }
  2446. #u38423 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:704px;
  2450. top:792px;
  2451. width:24px;
  2452. height:24px;
  2453. display:flex;
  2454. font-size:8px;
  2455. }
  2456. #u38423 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 2px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u38423_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u38424_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:37px;
  2474. height:17px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. border:none;
  2478. border-radius:0px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:12px;
  2486. }
  2487. #u38424 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:698px;
  2491. top:817px;
  2492. width:37px;
  2493. height:17px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. }
  2500. #u38424 .text {
  2501. position:absolute;
  2502. align-self:flex-start;
  2503. padding:0px 0px 0px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u38424_text {
  2508. border-width:0px;
  2509. white-space:nowrap;
  2510. text-transform:none;
  2511. }
  2512. #u38425 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:0px;
  2518. height:0px;
  2519. }
  2520. #u38426_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:24px;
  2526. height:24px;
  2527. }
  2528. #u38426 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:610px;
  2532. top:792px;
  2533. width:24px;
  2534. height:24px;
  2535. display:flex;
  2536. font-size:8px;
  2537. }
  2538. #u38426 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u38426_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u38427_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:37px;
  2556. height:17px;
  2557. background:inherit;
  2558. background-color:rgba(255, 255, 255, 0);
  2559. border:none;
  2560. border-radius:0px;
  2561. -moz-box-shadow:none;
  2562. -webkit-box-shadow:none;
  2563. box-shadow:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. }
  2569. #u38427 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:604px;
  2573. top:817px;
  2574. width:37px;
  2575. height:17px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u38427 .text {
  2583. position:absolute;
  2584. align-self:flex-start;
  2585. padding:0px 0px 0px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u38427_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u38428_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:375px;
  2600. height:740px;
  2601. background:inherit;
  2602. background-color:rgba(242, 242, 242, 1);
  2603. border:none;
  2604. border-top:0px;
  2605. border-radius:25px;
  2606. border-top-left-radius:0px;
  2607. border-top-right-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. }
  2612. #u38428 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:482px;
  2616. top:105px;
  2617. width:375px;
  2618. height:740px;
  2619. display:flex;
  2620. }
  2621. #u38428 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 2px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u38428_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. visibility:hidden;
  2633. }
  2634. #u38429 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:0px;
  2640. height:0px;
  2641. }
  2642. #u38430_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:11px;
  2648. height:18px;
  2649. }
  2650. #u38430 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:493px;
  2654. top:79px;
  2655. width:11px;
  2656. height:18px;
  2657. display:flex;
  2658. }
  2659. #u38430 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u38430_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u38431_div {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:375px;
  2678. height:140px;
  2679. background:inherit;
  2680. background-color:rgba(255, 255, 255, 1);
  2681. box-sizing:border-box;
  2682. border-width:1px;
  2683. border-style:solid;
  2684. border-color:rgba(215, 215, 215, 1);
  2685. border-left:0px;
  2686. border-top:0px;
  2687. border-right:0px;
  2688. border-radius:0px;
  2689. border-bottom-right-radius:0px;
  2690. border-bottom-left-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. }
  2695. #u38431 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:482px;
  2699. top:67px;
  2700. width:375px;
  2701. height:140px;
  2702. display:flex;
  2703. }
  2704. #u38431 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u38431_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u38432 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:0px;
  2723. height:0px;
  2724. }
  2725. #u38433_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:88px;
  2731. height:32px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 1);
  2734. box-sizing:border-box;
  2735. border-width:1px;
  2736. border-style:solid;
  2737. border-color:rgba(242, 242, 242, 1);
  2738. border-radius:33px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. }
  2743. #u38433 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:762px;
  2747. top:71px;
  2748. width:88px;
  2749. height:32px;
  2750. display:flex;
  2751. }
  2752. #u38433 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u38433_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u38434 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:0px;
  2771. height:0px;
  2772. }
  2773. #u38435_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:18px;
  2779. height:18px;
  2780. }
  2781. #u38435 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:825px;
  2785. top:78px;
  2786. width:18px;
  2787. height:18px;
  2788. display:flex;
  2789. }
  2790. #u38435 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u38435_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. visibility:hidden;
  2802. }
  2803. #u38436_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:6px;
  2809. height:6px;
  2810. }
  2811. #u38436 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:831px;
  2815. top:84px;
  2816. width:6px;
  2817. height:6px;
  2818. display:flex;
  2819. }
  2820. #u38436 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u38436_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u38437 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u38438_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:5px;
  2847. height:5px;
  2848. }
  2849. #u38438 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:776px;
  2853. top:85px;
  2854. width:5px;
  2855. height:5px;
  2856. display:flex;
  2857. }
  2858. #u38438 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:2px 2px 2px 2px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u38438_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. visibility:hidden;
  2870. }
  2871. #u38439_img {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:5px;
  2877. height:5px;
  2878. }
  2879. #u38439 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:792px;
  2883. top:85px;
  2884. width:5px;
  2885. height:5px;
  2886. display:flex;
  2887. }
  2888. #u38439 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u38439_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u38440_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:7px;
  2907. height:7px;
  2908. }
  2909. #u38440 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:783px;
  2913. top:84px;
  2914. width:7px;
  2915. height:7px;
  2916. display:flex;
  2917. }
  2918. #u38440 .text {
  2919. position:absolute;
  2920. align-self:center;
  2921. padding:2px 2px 2px 2px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u38440_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. visibility:hidden;
  2930. }
  2931. #u38441_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:19px;
  2937. height:2px;
  2938. }
  2939. #u38441 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:800px;
  2943. top:87px;
  2944. width:18px;
  2945. height:1px;
  2946. display:flex;
  2947. -webkit-transform:rotate(90deg);
  2948. -moz-transform:rotate(90deg);
  2949. -ms-transform:rotate(90deg);
  2950. transform:rotate(90deg);
  2951. }
  2952. #u38441 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u38441_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u38442_div {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:12px;
  2971. height:12px;
  2972. background:inherit;
  2973. background-color:rgba(255, 255, 255, 0);
  2974. box-sizing:border-box;
  2975. border-width:2px;
  2976. border-style:solid;
  2977. border-color:rgba(51, 51, 51, 1);
  2978. border-right:0px;
  2979. border-bottom:0px;
  2980. border-radius:0px;
  2981. border-top-right-radius:0px;
  2982. border-bottom-left-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. }
  2987. #u38442 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:497px;
  2991. top:82px;
  2992. width:12px;
  2993. height:12px;
  2994. display:flex;
  2995. -webkit-transform:rotate(315deg);
  2996. -moz-transform:rotate(315deg);
  2997. -ms-transform:rotate(315deg);
  2998. transform:rotate(315deg);
  2999. }
  3000. #u38442 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u38442_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u38443_div {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:43px;
  3019. height:21px;
  3020. background:inherit;
  3021. background-color:rgba(242, 242, 242, 1);
  3022. border:none;
  3023. border-radius:17px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#555555;
  3032. }
  3033. #u38443 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:495px;
  3037. top:155px;
  3038. width:43px;
  3039. height:21px;
  3040. display:flex;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:12px;
  3045. color:#555555;
  3046. }
  3047. #u38443 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 3px 2px 3px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u38443_text {
  3055. border-width:0px;
  3056. white-space:nowrap;
  3057. text-transform:none;
  3058. }
  3059. #u38444_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:43px;
  3065. height:21px;
  3066. background:inherit;
  3067. background-color:rgba(0, 137, 254, 1);
  3068. border:none;
  3069. border-radius:17px;
  3070. -moz-box-shadow:none;
  3071. -webkit-box-shadow:none;
  3072. box-shadow:none;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. color:#FFFFFF;
  3078. }
  3079. #u38444 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:556px;
  3083. top:155px;
  3084. width:43px;
  3085. height:21px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:12px;
  3091. color:#FFFFFF;
  3092. }
  3093. #u38444 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 3px 2px 3px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u38444_text {
  3101. border-width:0px;
  3102. white-space:nowrap;
  3103. text-transform:none;
  3104. }
  3105. #u38445_div {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:43px;
  3111. height:21px;
  3112. background:inherit;
  3113. background-color:rgba(242, 242, 242, 1);
  3114. border:none;
  3115. border-radius:17px;
  3116. -moz-box-shadow:none;
  3117. -webkit-box-shadow:none;
  3118. box-shadow:none;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#555555;
  3124. }
  3125. #u38445 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:616px;
  3129. top:155px;
  3130. width:43px;
  3131. height:21px;
  3132. display:flex;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. color:#555555;
  3138. }
  3139. #u38445 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 3px 2px 3px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u38445_text {
  3147. border-width:0px;
  3148. white-space:nowrap;
  3149. text-transform:none;
  3150. }
  3151. #u38446 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:0px;
  3157. height:0px;
  3158. }
  3159. #u38447_div {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:280px;
  3165. height:30px;
  3166. background:inherit;
  3167. background-color:rgba(242, 242, 242, 1);
  3168. border:none;
  3169. border-radius:20px;
  3170. -moz-box-shadow:none;
  3171. -webkit-box-shadow:none;
  3172. box-shadow:none;
  3173. }
  3174. #u38447 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:495px;
  3178. top:115px;
  3179. width:280px;
  3180. height:30px;
  3181. display:flex;
  3182. }
  3183. #u38447 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 2px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u38447_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. visibility:hidden;
  3195. }
  3196. #u38448_input {
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:260px;
  3201. height:25px;
  3202. padding:2px 2px 2px 2px;
  3203. font-family:'ArialMT', 'Arial', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:13px;
  3207. letter-spacing:normal;
  3208. color:#000000;
  3209. vertical-align:none;
  3210. text-align:left;
  3211. text-transform:none;
  3212. background-color:transparent;
  3213. border-color:transparent;
  3214. }
  3215. #u38448_input.disabled {
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:260px;
  3220. height:25px;
  3221. padding:2px 2px 2px 2px;
  3222. font-family:'ArialMT', 'Arial', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:13px;
  3226. letter-spacing:normal;
  3227. color:#000000;
  3228. vertical-align:none;
  3229. text-align:left;
  3230. text-transform:none;
  3231. background-color:transparent;
  3232. border-color:transparent;
  3233. }
  3234. #u38448_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:260px;
  3240. height:25px;
  3241. background:inherit;
  3242. background-color:rgba(242, 242, 242, 1);
  3243. border:none;
  3244. border-radius:0px;
  3245. -moz-box-shadow:none;
  3246. -webkit-box-shadow:none;
  3247. box-shadow:none;
  3248. }
  3249. #u38448 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:504px;
  3253. top:116px;
  3254. width:260px;
  3255. height:25px;
  3256. display:flex;
  3257. }
  3258. #u38448 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 2px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u38448_div.disabled {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:260px;
  3271. height:25px;
  3272. background:inherit;
  3273. background-color:rgba(240, 240, 240, 1);
  3274. border:none;
  3275. border-radius:0px;
  3276. -moz-box-shadow:none;
  3277. -webkit-box-shadow:none;
  3278. box-shadow:none;
  3279. }
  3280. #u38448.disabled {
  3281. }
  3282. #u38449_img {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:12px;
  3288. height:12px;
  3289. }
  3290. #u38449 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:756px;
  3294. top:124px;
  3295. width:12px;
  3296. height:12px;
  3297. display:flex;
  3298. }
  3299. #u38449 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u38449_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u38450_div {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:49px;
  3318. height:30px;
  3319. background:inherit;
  3320. background-color:rgba(255, 255, 255, 0);
  3321. border:none;
  3322. border-left:0px;
  3323. border-top:0px;
  3324. border-right:0px;
  3325. border-radius:0px;
  3326. border-bottom-right-radius:0px;
  3327. border-bottom-left-radius:0px;
  3328. -moz-box-shadow:none;
  3329. -webkit-box-shadow:none;
  3330. box-shadow:none;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#1890FF;
  3336. line-height:30px;
  3337. }
  3338. #u38450 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:794px;
  3342. top:115px;
  3343. width:49px;
  3344. height:30px;
  3345. display:flex;
  3346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:12px;
  3350. color:#1890FF;
  3351. line-height:30px;
  3352. }
  3353. #u38450 .text {
  3354. position:absolute;
  3355. align-self:flex-start;
  3356. padding:0px 0px 0px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u38450_text {
  3361. border-width:0px;
  3362. white-space:nowrap;
  3363. text-transform:none;
  3364. }
  3365. #u38451_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:63px;
  3371. height:14px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. border:none;
  3375. border-left:0px;
  3376. border-top:0px;
  3377. border-right:0px;
  3378. border-radius:0px;
  3379. border-bottom-right-radius:0px;
  3380. border-bottom-left-radius:0px;
  3381. -moz-box-shadow:none;
  3382. -webkit-box-shadow:none;
  3383. box-shadow:none;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:10px;
  3388. color:#AAAAAA;
  3389. }
  3390. #u38451 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:495px;
  3394. top:184px;
  3395. width:63px;
  3396. height:14px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:10px;
  3402. color:#AAAAAA;
  3403. }
  3404. #u38451 .text {
  3405. position:absolute;
  3406. align-self:flex-start;
  3407. padding:0px 0px 0px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u38451_text {
  3412. border-width:0px;
  3413. white-space:nowrap;
  3414. text-transform:none;
  3415. }
  3416. #u38452_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:65px;
  3422. height:22px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 0);
  3425. border:none;
  3426. border-radius:0px;
  3427. -moz-box-shadow:none;
  3428. -webkit-box-shadow:none;
  3429. box-shadow:none;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:16px;
  3434. color:#000000;
  3435. }
  3436. #u38452 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:634px;
  3440. top:77px;
  3441. width:65px;
  3442. height:22px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:16px;
  3448. color:#000000;
  3449. }
  3450. #u38452 .text {
  3451. position:absolute;
  3452. align-self:flex-start;
  3453. padding:0px 0px 0px 0px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u38452_text {
  3458. border-width:0px;
  3459. white-space:nowrap;
  3460. text-transform:none;
  3461. }
  3462. #u38453_div {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:11px;
  3468. height:11px;
  3469. background:inherit;
  3470. background-color:rgba(217, 0, 27, 1);
  3471. border:none;
  3472. border-radius:7px;
  3473. -moz-box-shadow:none;
  3474. -webkit-box-shadow:none;
  3475. box-shadow:none;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:8px;
  3480. color:#FFFFFF;
  3481. text-align:center;
  3482. }
  3483. #u38453 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:533px;
  3487. top:150px;
  3488. width:11px;
  3489. height:11px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:8px;
  3495. color:#FFFFFF;
  3496. text-align:center;
  3497. }
  3498. #u38453 .text {
  3499. position:absolute;
  3500. align-self:flex-start;
  3501. padding:0px 0px 0px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u38453_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. }
  3510. #u38454_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:43px;
  3516. height:21px;
  3517. background:inherit;
  3518. background-color:rgba(242, 242, 242, 1);
  3519. border:none;
  3520. border-radius:17px;
  3521. -moz-box-shadow:none;
  3522. -webkit-box-shadow:none;
  3523. box-shadow:none;
  3524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:12px;
  3528. color:#555555;
  3529. }
  3530. #u38454 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:677px;
  3534. top:155px;
  3535. width:43px;
  3536. height:21px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. color:#555555;
  3543. }
  3544. #u38454 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 3px 2px 3px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u38454_text {
  3552. border-width:0px;
  3553. white-space:nowrap;
  3554. text-transform:none;
  3555. }
  3556. #u38455_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:43px;
  3562. height:21px;
  3563. background:inherit;
  3564. background-color:rgba(242, 242, 242, 1);
  3565. border:none;
  3566. border-radius:17px;
  3567. -moz-box-shadow:none;
  3568. -webkit-box-shadow:none;
  3569. box-shadow:none;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#555555;
  3575. }
  3576. #u38455 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:740px;
  3580. top:155px;
  3581. width:43px;
  3582. height:21px;
  3583. display:flex;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:12px;
  3588. color:#555555;
  3589. }
  3590. #u38455 .text {
  3591. position:absolute;
  3592. align-self:center;
  3593. padding:2px 3px 2px 3px;
  3594. box-sizing:border-box;
  3595. width:100%;
  3596. }
  3597. #u38455_text {
  3598. border-width:0px;
  3599. white-space:nowrap;
  3600. text-transform:none;
  3601. }
  3602. #u38457_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:433px;
  3608. height:865px;
  3609. }
  3610. #u38457 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:914px;
  3614. top:0px;
  3615. width:433px;
  3616. height:865px;
  3617. display:flex;
  3618. }
  3619. #u38457 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u38457_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u38458_div {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:375px;
  3638. height:40px;
  3639. background:inherit;
  3640. background-color:rgba(255, 255, 255, 1);
  3641. border:none;
  3642. border-left:0px;
  3643. border-top:0px;
  3644. border-right:0px;
  3645. border-radius:0px;
  3646. border-bottom-right-radius:0px;
  3647. border-bottom-left-radius:0px;
  3648. -moz-box-shadow:none;
  3649. -webkit-box-shadow:none;
  3650. box-shadow:none;
  3651. }
  3652. #u38458 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:943px;
  3656. top:67px;
  3657. width:375px;
  3658. height:40px;
  3659. display:flex;
  3660. }
  3661. #u38458 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u38458_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u38459 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:0px;
  3680. height:0px;
  3681. }
  3682. #u38460_div {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:88px;
  3688. height:32px;
  3689. background:inherit;
  3690. background-color:rgba(255, 255, 255, 1);
  3691. box-sizing:border-box;
  3692. border-width:1px;
  3693. border-style:solid;
  3694. border-color:rgba(242, 242, 242, 1);
  3695. border-radius:33px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. }
  3700. #u38460 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:1223px;
  3704. top:71px;
  3705. width:88px;
  3706. height:32px;
  3707. display:flex;
  3708. }
  3709. #u38460 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 2px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u38460_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u38461 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:0px;
  3728. height:0px;
  3729. }
  3730. #u38462_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:18px;
  3736. height:18px;
  3737. }
  3738. #u38462 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:1286px;
  3742. top:78px;
  3743. width:18px;
  3744. height:18px;
  3745. display:flex;
  3746. }
  3747. #u38462 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 2px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u38462_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u38463_img {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:6px;
  3766. height:6px;
  3767. }
  3768. #u38463 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:1292px;
  3772. top:84px;
  3773. width:6px;
  3774. height:6px;
  3775. display:flex;
  3776. }
  3777. #u38463 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 2px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u38463_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u38464 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:0px;
  3796. height:0px;
  3797. }
  3798. #u38465_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:5px;
  3804. height:5px;
  3805. }
  3806. #u38465 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:1237px;
  3810. top:85px;
  3811. width:5px;
  3812. height:5px;
  3813. display:flex;
  3814. }
  3815. #u38465 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 2px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u38465_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u38466_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:5px;
  3834. height:5px;
  3835. }
  3836. #u38466 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:1253px;
  3840. top:85px;
  3841. width:5px;
  3842. height:5px;
  3843. display:flex;
  3844. }
  3845. #u38466 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u38466_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u38467_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:7px;
  3864. height:7px;
  3865. }
  3866. #u38467 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:1244px;
  3870. top:84px;
  3871. width:7px;
  3872. height:7px;
  3873. display:flex;
  3874. }
  3875. #u38467 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u38467_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u38468_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:19px;
  3894. height:2px;
  3895. }
  3896. #u38468 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:1261px;
  3900. top:87px;
  3901. width:18px;
  3902. height:1px;
  3903. display:flex;
  3904. -webkit-transform:rotate(90deg);
  3905. -moz-transform:rotate(90deg);
  3906. -ms-transform:rotate(90deg);
  3907. transform:rotate(90deg);
  3908. }
  3909. #u38468 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 2px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u38468_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u38469_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:375px;
  3928. height:44px;
  3929. }
  3930. #u38469 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:943px;
  3934. top:24px;
  3935. width:375px;
  3936. height:44px;
  3937. display:flex;
  3938. }
  3939. #u38469 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 2px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u38469_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u38470_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:375px;
  3958. height:50px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 1);
  3961. box-sizing:border-box;
  3962. border-width:1px;
  3963. border-style:solid;
  3964. border-color:rgba(242, 242, 242, 1);
  3965. border-radius:26px;
  3966. border-top-left-radius:0px;
  3967. border-top-right-radius:0px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. }
  3972. #u38470 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:943px;
  3976. top:788px;
  3977. width:375px;
  3978. height:50px;
  3979. display:flex;
  3980. }
  3981. #u38470 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u38470_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u38471 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u38472_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:24px;
  4008. height:24px;
  4009. }
  4010. #u38472 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:983px;
  4014. top:792px;
  4015. width:24px;
  4016. height:24px;
  4017. display:flex;
  4018. font-size:8px;
  4019. }
  4020. #u38472 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u38472_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. }
  4032. #u38473_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:25px;
  4038. height:17px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 0);
  4041. border:none;
  4042. border-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. }
  4051. #u38473 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:983px;
  4055. top:817px;
  4056. width:25px;
  4057. height:17px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. }
  4064. #u38473 .text {
  4065. position:absolute;
  4066. align-self:flex-start;
  4067. padding:0px 0px 0px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u38473_text {
  4072. border-width:0px;
  4073. white-space:nowrap;
  4074. text-transform:none;
  4075. }
  4076. #u38474 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:0px;
  4082. height:0px;
  4083. }
  4084. #u38475_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:24px;
  4090. height:24px;
  4091. }
  4092. #u38475 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:1253px;
  4096. top:794px;
  4097. width:24px;
  4098. height:24px;
  4099. display:flex;
  4100. font-size:8px;
  4101. }
  4102. #u38475 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u38475_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. }
  4114. #u38476_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:25px;
  4120. height:17px;
  4121. background:inherit;
  4122. background-color:rgba(255, 255, 255, 0);
  4123. border:none;
  4124. border-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:12px;
  4132. }
  4133. #u38476 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:1253px;
  4137. top:819px;
  4138. width:25px;
  4139. height:17px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:12px;
  4145. }
  4146. #u38476 .text {
  4147. position:absolute;
  4148. align-self:flex-start;
  4149. padding:0px 0px 0px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u38476_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u38477_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:375px;
  4164. height:681px;
  4165. background:inherit;
  4166. background-color:rgba(242, 242, 242, 0.462745098039216);
  4167. border:none;
  4168. border-radius:0px;
  4169. -moz-box-shadow:none;
  4170. -webkit-box-shadow:none;
  4171. box-shadow:none;
  4172. }
  4173. #u38477 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:943px;
  4177. top:107px;
  4178. width:375px;
  4179. height:681px;
  4180. display:flex;
  4181. }
  4182. #u38477 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u38477_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u38478 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:0px;
  4201. height:0px;
  4202. }
  4203. #u38479_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:24px;
  4209. height:24px;
  4210. }
  4211. #u38479 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:1165px;
  4215. top:792px;
  4216. width:24px;
  4217. height:24px;
  4218. display:flex;
  4219. font-size:8px;
  4220. }
  4221. #u38479 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u38479_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. }
  4233. #u38480_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:37px;
  4239. height:17px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. }
  4252. #u38480 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:1159px;
  4256. top:817px;
  4257. width:37px;
  4258. height:17px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:12px;
  4264. }
  4265. #u38480 .text {
  4266. position:absolute;
  4267. align-self:flex-start;
  4268. padding:0px 0px 0px 0px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u38480_text {
  4273. border-width:0px;
  4274. white-space:nowrap;
  4275. text-transform:none;
  4276. }
  4277. #u38481 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:0px;
  4283. height:0px;
  4284. }
  4285. #u38482_img {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:24px;
  4291. height:24px;
  4292. }
  4293. #u38482 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:1071px;
  4297. top:792px;
  4298. width:24px;
  4299. height:24px;
  4300. display:flex;
  4301. font-size:8px;
  4302. }
  4303. #u38482 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u38482_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. }
  4315. #u38483_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:37px;
  4321. height:17px;
  4322. background:inherit;
  4323. background-color:rgba(255, 255, 255, 0);
  4324. border:none;
  4325. border-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:12px;
  4333. }
  4334. #u38483 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:1065px;
  4338. top:817px;
  4339. width:37px;
  4340. height:17px;
  4341. display:flex;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:12px;
  4346. }
  4347. #u38483 .text {
  4348. position:absolute;
  4349. align-self:flex-start;
  4350. padding:0px 0px 0px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u38483_text {
  4355. border-width:0px;
  4356. white-space:nowrap;
  4357. text-transform:none;
  4358. }
  4359. #u38484_div {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:375px;
  4365. height:740px;
  4366. background:inherit;
  4367. background-color:rgba(242, 242, 242, 1);
  4368. border:none;
  4369. border-top:0px;
  4370. border-radius:25px;
  4371. border-top-left-radius:0px;
  4372. border-top-right-radius:0px;
  4373. -moz-box-shadow:none;
  4374. -webkit-box-shadow:none;
  4375. box-shadow:none;
  4376. }
  4377. #u38484 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:943px;
  4381. top:105px;
  4382. width:375px;
  4383. height:740px;
  4384. display:flex;
  4385. }
  4386. #u38484 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 2px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u38484_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. visibility:hidden;
  4398. }
  4399. #u38485 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:0px;
  4405. height:0px;
  4406. }
  4407. #u38486_img {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:11px;
  4413. height:18px;
  4414. }
  4415. #u38486 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:954px;
  4419. top:79px;
  4420. width:11px;
  4421. height:18px;
  4422. display:flex;
  4423. }
  4424. #u38486 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u38486_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u38487_div {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:375px;
  4443. height:140px;
  4444. background:inherit;
  4445. background-color:rgba(255, 255, 255, 1);
  4446. box-sizing:border-box;
  4447. border-width:1px;
  4448. border-style:solid;
  4449. border-color:rgba(215, 215, 215, 1);
  4450. border-left:0px;
  4451. border-top:0px;
  4452. border-right:0px;
  4453. border-radius:0px;
  4454. border-bottom-right-radius:0px;
  4455. border-bottom-left-radius:0px;
  4456. -moz-box-shadow:none;
  4457. -webkit-box-shadow:none;
  4458. box-shadow:none;
  4459. }
  4460. #u38487 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:943px;
  4464. top:67px;
  4465. width:375px;
  4466. height:140px;
  4467. display:flex;
  4468. }
  4469. #u38487 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u38487_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u38488 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:0px;
  4488. height:0px;
  4489. }
  4490. #u38489_div {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:88px;
  4496. height:32px;
  4497. background:inherit;
  4498. background-color:rgba(255, 255, 255, 1);
  4499. box-sizing:border-box;
  4500. border-width:1px;
  4501. border-style:solid;
  4502. border-color:rgba(242, 242, 242, 1);
  4503. border-radius:33px;
  4504. -moz-box-shadow:none;
  4505. -webkit-box-shadow:none;
  4506. box-shadow:none;
  4507. }
  4508. #u38489 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:1223px;
  4512. top:71px;
  4513. width:88px;
  4514. height:32px;
  4515. display:flex;
  4516. }
  4517. #u38489 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 2px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u38489_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. visibility:hidden;
  4529. }
  4530. #u38490 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:0px;
  4536. height:0px;
  4537. }
  4538. #u38491_img {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:18px;
  4544. height:18px;
  4545. }
  4546. #u38491 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:1286px;
  4550. top:78px;
  4551. width:18px;
  4552. height:18px;
  4553. display:flex;
  4554. }
  4555. #u38491 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 2px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u38491_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u38492_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:6px;
  4574. height:6px;
  4575. }
  4576. #u38492 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:1292px;
  4580. top:84px;
  4581. width:6px;
  4582. height:6px;
  4583. display:flex;
  4584. }
  4585. #u38492 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 2px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u38492_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u38493 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:0px;
  4604. height:0px;
  4605. }
  4606. #u38494_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:5px;
  4612. height:5px;
  4613. }
  4614. #u38494 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:1237px;
  4618. top:85px;
  4619. width:5px;
  4620. height:5px;
  4621. display:flex;
  4622. }
  4623. #u38494 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 2px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u38494_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u38495_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:5px;
  4642. height:5px;
  4643. }
  4644. #u38495 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:1253px;
  4648. top:85px;
  4649. width:5px;
  4650. height:5px;
  4651. display:flex;
  4652. }
  4653. #u38495 .text {
  4654. position:absolute;
  4655. align-self:center;
  4656. padding:2px 2px 2px 2px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u38495_text {
  4661. border-width:0px;
  4662. word-wrap:break-word;
  4663. text-transform:none;
  4664. visibility:hidden;
  4665. }
  4666. #u38496_img {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:7px;
  4672. height:7px;
  4673. }
  4674. #u38496 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:1244px;
  4678. top:84px;
  4679. width:7px;
  4680. height:7px;
  4681. display:flex;
  4682. }
  4683. #u38496 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 2px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u38496_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u38497_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:19px;
  4702. height:2px;
  4703. }
  4704. #u38497 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:1261px;
  4708. top:87px;
  4709. width:18px;
  4710. height:1px;
  4711. display:flex;
  4712. -webkit-transform:rotate(90deg);
  4713. -moz-transform:rotate(90deg);
  4714. -ms-transform:rotate(90deg);
  4715. transform:rotate(90deg);
  4716. }
  4717. #u38497 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u38497_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u38498_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:12px;
  4736. height:12px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. box-sizing:border-box;
  4740. border-width:2px;
  4741. border-style:solid;
  4742. border-color:rgba(51, 51, 51, 1);
  4743. border-right:0px;
  4744. border-bottom:0px;
  4745. border-radius:0px;
  4746. border-top-right-radius:0px;
  4747. border-bottom-left-radius:0px;
  4748. -moz-box-shadow:none;
  4749. -webkit-box-shadow:none;
  4750. box-shadow:none;
  4751. }
  4752. #u38498 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:958px;
  4756. top:81px;
  4757. width:12px;
  4758. height:12px;
  4759. display:flex;
  4760. -webkit-transform:rotate(315deg);
  4761. -moz-transform:rotate(315deg);
  4762. -ms-transform:rotate(315deg);
  4763. transform:rotate(315deg);
  4764. }
  4765. #u38498 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u38498_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. visibility:hidden;
  4777. }
  4778. #u38499_div {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:43px;
  4784. height:21px;
  4785. background:inherit;
  4786. background-color:rgba(242, 242, 242, 1);
  4787. border:none;
  4788. border-radius:17px;
  4789. -moz-box-shadow:none;
  4790. -webkit-box-shadow:none;
  4791. box-shadow:none;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#555555;
  4797. }
  4798. #u38499 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:956px;
  4802. top:155px;
  4803. width:43px;
  4804. height:21px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. color:#555555;
  4811. }
  4812. #u38499 .text {
  4813. position:absolute;
  4814. align-self:center;
  4815. padding:2px 3px 2px 3px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u38499_text {
  4820. border-width:0px;
  4821. white-space:nowrap;
  4822. text-transform:none;
  4823. }
  4824. #u38500_div {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:43px;
  4830. height:21px;
  4831. background:inherit;
  4832. background-color:rgba(242, 242, 242, 1);
  4833. border:none;
  4834. border-radius:17px;
  4835. -moz-box-shadow:none;
  4836. -webkit-box-shadow:none;
  4837. box-shadow:none;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#555555;
  4843. }
  4844. #u38500 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:1017px;
  4848. top:155px;
  4849. width:43px;
  4850. height:21px;
  4851. display:flex;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#555555;
  4857. }
  4858. #u38500 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 3px 2px 3px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u38500_text {
  4866. border-width:0px;
  4867. white-space:nowrap;
  4868. text-transform:none;
  4869. }
  4870. #u38501_div {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:43px;
  4876. height:21px;
  4877. background:inherit;
  4878. background-color:rgba(0, 137, 254, 1);
  4879. border:none;
  4880. border-radius:17px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#FFFFFF;
  4889. }
  4890. #u38501 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1077px;
  4894. top:155px;
  4895. width:43px;
  4896. height:21px;
  4897. display:flex;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. color:#FFFFFF;
  4903. }
  4904. #u38501 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 3px 2px 3px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u38501_text {
  4912. border-width:0px;
  4913. white-space:nowrap;
  4914. text-transform:none;
  4915. }
  4916. #u38502 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:0px;
  4922. height:0px;
  4923. }
  4924. #u38503_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:280px;
  4930. height:30px;
  4931. background:inherit;
  4932. background-color:rgba(242, 242, 242, 1);
  4933. border:none;
  4934. border-radius:20px;
  4935. -moz-box-shadow:none;
  4936. -webkit-box-shadow:none;
  4937. box-shadow:none;
  4938. }
  4939. #u38503 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:956px;
  4943. top:115px;
  4944. width:280px;
  4945. height:30px;
  4946. display:flex;
  4947. }
  4948. #u38503 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 2px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u38503_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u38504_input {
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:260px;
  4966. height:25px;
  4967. padding:2px 2px 2px 2px;
  4968. font-family:'ArialMT', 'Arial', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:13px;
  4972. letter-spacing:normal;
  4973. color:#000000;
  4974. vertical-align:none;
  4975. text-align:left;
  4976. text-transform:none;
  4977. background-color:transparent;
  4978. border-color:transparent;
  4979. }
  4980. #u38504_input.disabled {
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:260px;
  4985. height:25px;
  4986. padding:2px 2px 2px 2px;
  4987. font-family:'ArialMT', 'Arial', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:13px;
  4991. letter-spacing:normal;
  4992. color:#000000;
  4993. vertical-align:none;
  4994. text-align:left;
  4995. text-transform:none;
  4996. background-color:transparent;
  4997. border-color:transparent;
  4998. }
  4999. #u38504_div {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:260px;
  5005. height:25px;
  5006. background:inherit;
  5007. background-color:rgba(242, 242, 242, 1);
  5008. border:none;
  5009. border-radius:0px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. }
  5014. #u38504 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:965px;
  5018. top:116px;
  5019. width:260px;
  5020. height:25px;
  5021. display:flex;
  5022. }
  5023. #u38504 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 2px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u38504_div.disabled {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:260px;
  5036. height:25px;
  5037. background:inherit;
  5038. background-color:rgba(240, 240, 240, 1);
  5039. border:none;
  5040. border-radius:0px;
  5041. -moz-box-shadow:none;
  5042. -webkit-box-shadow:none;
  5043. box-shadow:none;
  5044. }
  5045. #u38504.disabled {
  5046. }
  5047. #u38505_img {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:12px;
  5053. height:12px;
  5054. }
  5055. #u38505 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1217px;
  5059. top:124px;
  5060. width:12px;
  5061. height:12px;
  5062. display:flex;
  5063. }
  5064. #u38505 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 2px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u38505_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u38506_div {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:49px;
  5083. height:30px;
  5084. background:inherit;
  5085. background-color:rgba(255, 255, 255, 0);
  5086. border:none;
  5087. border-left:0px;
  5088. border-top:0px;
  5089. border-right:0px;
  5090. border-radius:0px;
  5091. border-bottom-right-radius:0px;
  5092. border-bottom-left-radius:0px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:12px;
  5100. color:#1890FF;
  5101. line-height:30px;
  5102. }
  5103. #u38506 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:1255px;
  5107. top:115px;
  5108. width:49px;
  5109. height:30px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#1890FF;
  5116. line-height:30px;
  5117. }
  5118. #u38506 .text {
  5119. position:absolute;
  5120. align-self:flex-start;
  5121. padding:0px 0px 0px 0px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u38506_text {
  5126. border-width:0px;
  5127. white-space:nowrap;
  5128. text-transform:none;
  5129. }
  5130. #u38507_div {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:63px;
  5136. height:14px;
  5137. background:inherit;
  5138. background-color:rgba(255, 255, 255, 0);
  5139. border:none;
  5140. border-left:0px;
  5141. border-top:0px;
  5142. border-right:0px;
  5143. border-radius:0px;
  5144. border-bottom-right-radius:0px;
  5145. border-bottom-left-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:10px;
  5153. color:#AAAAAA;
  5154. }
  5155. #u38507 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:956px;
  5159. top:184px;
  5160. width:63px;
  5161. height:14px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:10px;
  5167. color:#AAAAAA;
  5168. }
  5169. #u38507 .text {
  5170. position:absolute;
  5171. align-self:flex-start;
  5172. padding:0px 0px 0px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u38507_text {
  5177. border-width:0px;
  5178. white-space:nowrap;
  5179. text-transform:none;
  5180. }
  5181. #u38508_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:65px;
  5187. height:22px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:16px;
  5199. color:#000000;
  5200. }
  5201. #u38508 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:1095px;
  5205. top:76px;
  5206. width:65px;
  5207. height:22px;
  5208. display:flex;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:16px;
  5213. color:#000000;
  5214. }
  5215. #u38508 .text {
  5216. position:absolute;
  5217. align-self:flex-start;
  5218. padding:0px 0px 0px 0px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u38508_text {
  5223. border-width:0px;
  5224. white-space:nowrap;
  5225. text-transform:none;
  5226. }
  5227. #u38509_div {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:11px;
  5233. height:11px;
  5234. background:inherit;
  5235. background-color:rgba(217, 0, 27, 1);
  5236. border:none;
  5237. border-radius:7px;
  5238. -moz-box-shadow:none;
  5239. -webkit-box-shadow:none;
  5240. box-shadow:none;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:8px;
  5245. color:#FFFFFF;
  5246. text-align:center;
  5247. }
  5248. #u38509 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:994px;
  5252. top:150px;
  5253. width:11px;
  5254. height:11px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:8px;
  5260. color:#FFFFFF;
  5261. text-align:center;
  5262. }
  5263. #u38509 .text {
  5264. position:absolute;
  5265. align-self:flex-start;
  5266. padding:0px 0px 0px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u38509_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. }
  5275. #u38510_div {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:43px;
  5281. height:21px;
  5282. background:inherit;
  5283. background-color:rgba(242, 242, 242, 1);
  5284. border:none;
  5285. border-radius:17px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:12px;
  5293. color:#555555;
  5294. }
  5295. #u38510 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:1138px;
  5299. top:155px;
  5300. width:43px;
  5301. height:21px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:12px;
  5307. color:#555555;
  5308. }
  5309. #u38510 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:2px 3px 2px 3px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u38510_text {
  5317. border-width:0px;
  5318. white-space:nowrap;
  5319. text-transform:none;
  5320. }
  5321. #u38511_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:43px;
  5327. height:21px;
  5328. background:inherit;
  5329. background-color:rgba(242, 242, 242, 1);
  5330. border:none;
  5331. border-radius:17px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:12px;
  5339. color:#555555;
  5340. }
  5341. #u38511 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:1201px;
  5345. top:155px;
  5346. width:43px;
  5347. height:21px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:12px;
  5353. color:#555555;
  5354. }
  5355. #u38511 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 3px 2px 3px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u38511_text {
  5363. border-width:0px;
  5364. white-space:nowrap;
  5365. text-transform:none;
  5366. }
  5367. #u38513_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:433px;
  5373. height:865px;
  5374. }
  5375. #u38513 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:1372px;
  5379. top:0px;
  5380. width:433px;
  5381. height:865px;
  5382. display:flex;
  5383. }
  5384. #u38513 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 2px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u38513_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. visibility:hidden;
  5396. }
  5397. #u38514_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:375px;
  5403. height:40px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 1);
  5406. border:none;
  5407. border-left:0px;
  5408. border-top:0px;
  5409. border-right:0px;
  5410. border-radius:0px;
  5411. border-bottom-right-radius:0px;
  5412. border-bottom-left-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. }
  5417. #u38514 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:1401px;
  5421. top:67px;
  5422. width:375px;
  5423. height:40px;
  5424. display:flex;
  5425. }
  5426. #u38514 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:2px 2px 2px 2px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u38514_text {
  5434. border-width:0px;
  5435. word-wrap:break-word;
  5436. text-transform:none;
  5437. visibility:hidden;
  5438. }
  5439. #u38515 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:0px;
  5445. height:0px;
  5446. }
  5447. #u38516_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:88px;
  5453. height:32px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 1);
  5456. box-sizing:border-box;
  5457. border-width:1px;
  5458. border-style:solid;
  5459. border-color:rgba(242, 242, 242, 1);
  5460. border-radius:33px;
  5461. -moz-box-shadow:none;
  5462. -webkit-box-shadow:none;
  5463. box-shadow:none;
  5464. }
  5465. #u38516 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:1681px;
  5469. top:71px;
  5470. width:88px;
  5471. height:32px;
  5472. display:flex;
  5473. }
  5474. #u38516 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 2px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u38516_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u38517 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:0px;
  5493. height:0px;
  5494. }
  5495. #u38518_img {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:18px;
  5501. height:18px;
  5502. }
  5503. #u38518 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:1744px;
  5507. top:78px;
  5508. width:18px;
  5509. height:18px;
  5510. display:flex;
  5511. }
  5512. #u38518 .text {
  5513. position:absolute;
  5514. align-self:center;
  5515. padding:2px 2px 2px 2px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u38518_text {
  5520. border-width:0px;
  5521. word-wrap:break-word;
  5522. text-transform:none;
  5523. visibility:hidden;
  5524. }
  5525. #u38519_img {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:6px;
  5531. height:6px;
  5532. }
  5533. #u38519 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:1750px;
  5537. top:84px;
  5538. width:6px;
  5539. height:6px;
  5540. display:flex;
  5541. }
  5542. #u38519 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 2px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u38519_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. visibility:hidden;
  5554. }
  5555. #u38520 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:0px;
  5561. height:0px;
  5562. }
  5563. #u38521_img {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:5px;
  5569. height:5px;
  5570. }
  5571. #u38521 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:1695px;
  5575. top:85px;
  5576. width:5px;
  5577. height:5px;
  5578. display:flex;
  5579. }
  5580. #u38521 .text {
  5581. position:absolute;
  5582. align-self:center;
  5583. padding:2px 2px 2px 2px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u38521_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u38522_img {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:5px;
  5599. height:5px;
  5600. }
  5601. #u38522 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:1711px;
  5605. top:85px;
  5606. width:5px;
  5607. height:5px;
  5608. display:flex;
  5609. }
  5610. #u38522 .text {
  5611. position:absolute;
  5612. align-self:center;
  5613. padding:2px 2px 2px 2px;
  5614. box-sizing:border-box;
  5615. width:100%;
  5616. }
  5617. #u38522_text {
  5618. border-width:0px;
  5619. word-wrap:break-word;
  5620. text-transform:none;
  5621. visibility:hidden;
  5622. }
  5623. #u38523_img {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:7px;
  5629. height:7px;
  5630. }
  5631. #u38523 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:1702px;
  5635. top:84px;
  5636. width:7px;
  5637. height:7px;
  5638. display:flex;
  5639. }
  5640. #u38523 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 2px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u38523_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u38524_img {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:19px;
  5659. height:2px;
  5660. }
  5661. #u38524 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:1719px;
  5665. top:87px;
  5666. width:18px;
  5667. height:1px;
  5668. display:flex;
  5669. -webkit-transform:rotate(90deg);
  5670. -moz-transform:rotate(90deg);
  5671. -ms-transform:rotate(90deg);
  5672. transform:rotate(90deg);
  5673. }
  5674. #u38524 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 2px 2px 2px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u38524_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u38525_img {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:375px;
  5693. height:44px;
  5694. }
  5695. #u38525 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:1401px;
  5699. top:24px;
  5700. width:375px;
  5701. height:44px;
  5702. display:flex;
  5703. }
  5704. #u38525 .text {
  5705. position:absolute;
  5706. align-self:center;
  5707. padding:2px 2px 2px 2px;
  5708. box-sizing:border-box;
  5709. width:100%;
  5710. }
  5711. #u38525_text {
  5712. border-width:0px;
  5713. word-wrap:break-word;
  5714. text-transform:none;
  5715. visibility:hidden;
  5716. }
  5717. #u38526_div {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:375px;
  5723. height:50px;
  5724. background:inherit;
  5725. background-color:rgba(255, 255, 255, 1);
  5726. box-sizing:border-box;
  5727. border-width:1px;
  5728. border-style:solid;
  5729. border-color:rgba(242, 242, 242, 1);
  5730. border-radius:26px;
  5731. border-top-left-radius:0px;
  5732. border-top-right-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. }
  5737. #u38526 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:1401px;
  5741. top:788px;
  5742. width:375px;
  5743. height:50px;
  5744. display:flex;
  5745. }
  5746. #u38526 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:2px 2px 2px 2px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u38526_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. visibility:hidden;
  5758. }
  5759. #u38527 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:0px;
  5765. height:0px;
  5766. }
  5767. #u38528_img {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:24px;
  5773. height:24px;
  5774. }
  5775. #u38528 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:1441px;
  5779. top:792px;
  5780. width:24px;
  5781. height:24px;
  5782. display:flex;
  5783. font-size:8px;
  5784. }
  5785. #u38528 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u38528_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. }
  5797. #u38529_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:25px;
  5803. height:17px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 0);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. }
  5816. #u38529 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1441px;
  5820. top:817px;
  5821. width:25px;
  5822. height:17px;
  5823. display:flex;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. }
  5829. #u38529 .text {
  5830. position:absolute;
  5831. align-self:flex-start;
  5832. padding:0px 0px 0px 0px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u38529_text {
  5837. border-width:0px;
  5838. white-space:nowrap;
  5839. text-transform:none;
  5840. }
  5841. #u38530 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:0px;
  5847. height:0px;
  5848. }
  5849. #u38531_img {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:24px;
  5855. height:24px;
  5856. }
  5857. #u38531 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:1711px;
  5861. top:794px;
  5862. width:24px;
  5863. height:24px;
  5864. display:flex;
  5865. font-size:8px;
  5866. }
  5867. #u38531 .text {
  5868. position:absolute;
  5869. align-self:center;
  5870. padding:2px 2px 2px 2px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u38531_text {
  5875. border-width:0px;
  5876. word-wrap:break-word;
  5877. text-transform:none;
  5878. }
  5879. #u38532_div {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:25px;
  5885. height:17px;
  5886. background:inherit;
  5887. background-color:rgba(255, 255, 255, 0);
  5888. border:none;
  5889. border-radius:0px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:12px;
  5897. }
  5898. #u38532 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:1711px;
  5902. top:819px;
  5903. width:25px;
  5904. height:17px;
  5905. display:flex;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:12px;
  5910. }
  5911. #u38532 .text {
  5912. position:absolute;
  5913. align-self:flex-start;
  5914. padding:0px 0px 0px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u38532_text {
  5919. border-width:0px;
  5920. white-space:nowrap;
  5921. text-transform:none;
  5922. }
  5923. #u38533_div {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:375px;
  5929. height:681px;
  5930. background:inherit;
  5931. background-color:rgba(242, 242, 242, 0.462745098039216);
  5932. border:none;
  5933. border-radius:0px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. }
  5938. #u38533 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:1401px;
  5942. top:107px;
  5943. width:375px;
  5944. height:681px;
  5945. display:flex;
  5946. }
  5947. #u38533 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u38533_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u38534 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:0px;
  5966. height:0px;
  5967. }
  5968. #u38535_img {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:24px;
  5974. height:24px;
  5975. }
  5976. #u38535 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:1623px;
  5980. top:792px;
  5981. width:24px;
  5982. height:24px;
  5983. display:flex;
  5984. font-size:8px;
  5985. }
  5986. #u38535 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u38535_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. }
  5998. #u38536_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:37px;
  6004. height:17px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 0);
  6007. border:none;
  6008. border-radius:0px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:12px;
  6016. }
  6017. #u38536 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:1617px;
  6021. top:817px;
  6022. width:37px;
  6023. height:17px;
  6024. display:flex;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:12px;
  6029. }
  6030. #u38536 .text {
  6031. position:absolute;
  6032. align-self:flex-start;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u38536_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u38537 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:0px;
  6048. height:0px;
  6049. }
  6050. #u38538_img {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:24px;
  6056. height:24px;
  6057. }
  6058. #u38538 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1529px;
  6062. top:792px;
  6063. width:24px;
  6064. height:24px;
  6065. display:flex;
  6066. font-size:8px;
  6067. }
  6068. #u38538 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:2px 2px 2px 2px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u38538_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. }
  6080. #u38539_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:37px;
  6086. height:17px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 0);
  6089. border:none;
  6090. border-radius:0px;
  6091. -moz-box-shadow:none;
  6092. -webkit-box-shadow:none;
  6093. box-shadow:none;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. }
  6099. #u38539 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1523px;
  6103. top:817px;
  6104. width:37px;
  6105. height:17px;
  6106. display:flex;
  6107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:12px;
  6111. }
  6112. #u38539 .text {
  6113. position:absolute;
  6114. align-self:flex-start;
  6115. padding:0px 0px 0px 0px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u38539_text {
  6120. border-width:0px;
  6121. white-space:nowrap;
  6122. text-transform:none;
  6123. }
  6124. #u38540_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:375px;
  6130. height:740px;
  6131. background:inherit;
  6132. background-color:rgba(242, 242, 242, 1);
  6133. border:none;
  6134. border-top:0px;
  6135. border-radius:25px;
  6136. border-top-left-radius:0px;
  6137. border-top-right-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. }
  6142. #u38540 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:1401px;
  6146. top:105px;
  6147. width:375px;
  6148. height:740px;
  6149. display:flex;
  6150. }
  6151. #u38540 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u38540_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u38541 {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:0px;
  6170. height:0px;
  6171. }
  6172. #u38542_img {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:11px;
  6178. height:18px;
  6179. }
  6180. #u38542 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1412px;
  6184. top:79px;
  6185. width:11px;
  6186. height:18px;
  6187. display:flex;
  6188. }
  6189. #u38542 .text {
  6190. position:absolute;
  6191. align-self:center;
  6192. padding:2px 2px 2px 2px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u38542_text {
  6197. border-width:0px;
  6198. word-wrap:break-word;
  6199. text-transform:none;
  6200. visibility:hidden;
  6201. }
  6202. #u38543_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:375px;
  6208. height:140px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(215, 215, 215, 1);
  6215. border-left:0px;
  6216. border-top:0px;
  6217. border-right:0px;
  6218. border-radius:0px;
  6219. border-bottom-right-radius:0px;
  6220. border-bottom-left-radius:0px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. }
  6225. #u38543 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:1401px;
  6229. top:67px;
  6230. width:375px;
  6231. height:140px;
  6232. display:flex;
  6233. }
  6234. #u38543 .text {
  6235. position:absolute;
  6236. align-self:center;
  6237. padding:2px 2px 2px 2px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u38543_text {
  6242. border-width:0px;
  6243. word-wrap:break-word;
  6244. text-transform:none;
  6245. visibility:hidden;
  6246. }
  6247. #u38544 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:0px;
  6253. height:0px;
  6254. }
  6255. #u38545_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:88px;
  6261. height:32px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. box-sizing:border-box;
  6265. border-width:1px;
  6266. border-style:solid;
  6267. border-color:rgba(242, 242, 242, 1);
  6268. border-radius:33px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. }
  6273. #u38545 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:1681px;
  6277. top:71px;
  6278. width:88px;
  6279. height:32px;
  6280. display:flex;
  6281. }
  6282. #u38545 .text {
  6283. position:absolute;
  6284. align-self:center;
  6285. padding:2px 2px 2px 2px;
  6286. box-sizing:border-box;
  6287. width:100%;
  6288. }
  6289. #u38545_text {
  6290. border-width:0px;
  6291. word-wrap:break-word;
  6292. text-transform:none;
  6293. visibility:hidden;
  6294. }
  6295. #u38546 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:0px;
  6301. height:0px;
  6302. }
  6303. #u38547_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:18px;
  6309. height:18px;
  6310. }
  6311. #u38547 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:1744px;
  6315. top:78px;
  6316. width:18px;
  6317. height:18px;
  6318. display:flex;
  6319. }
  6320. #u38547 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 2px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u38547_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u38548_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:6px;
  6339. height:6px;
  6340. }
  6341. #u38548 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:1750px;
  6345. top:84px;
  6346. width:6px;
  6347. height:6px;
  6348. display:flex;
  6349. }
  6350. #u38548 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u38548_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u38549 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u38550_img {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:5px;
  6377. height:5px;
  6378. }
  6379. #u38550 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:1695px;
  6383. top:85px;
  6384. width:5px;
  6385. height:5px;
  6386. display:flex;
  6387. }
  6388. #u38550 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:2px 2px 2px 2px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u38550_text {
  6396. border-width:0px;
  6397. word-wrap:break-word;
  6398. text-transform:none;
  6399. visibility:hidden;
  6400. }
  6401. #u38551_img {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:5px;
  6407. height:5px;
  6408. }
  6409. #u38551 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:1711px;
  6413. top:85px;
  6414. width:5px;
  6415. height:5px;
  6416. display:flex;
  6417. }
  6418. #u38551 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:2px 2px 2px 2px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u38551_text {
  6426. border-width:0px;
  6427. word-wrap:break-word;
  6428. text-transform:none;
  6429. visibility:hidden;
  6430. }
  6431. #u38552_img {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:7px;
  6437. height:7px;
  6438. }
  6439. #u38552 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:1702px;
  6443. top:84px;
  6444. width:7px;
  6445. height:7px;
  6446. display:flex;
  6447. }
  6448. #u38552 .text {
  6449. position:absolute;
  6450. align-self:center;
  6451. padding:2px 2px 2px 2px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u38552_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. visibility:hidden;
  6460. }
  6461. #u38553_img {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:19px;
  6467. height:2px;
  6468. }
  6469. #u38553 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:1719px;
  6473. top:87px;
  6474. width:18px;
  6475. height:1px;
  6476. display:flex;
  6477. -webkit-transform:rotate(90deg);
  6478. -moz-transform:rotate(90deg);
  6479. -ms-transform:rotate(90deg);
  6480. transform:rotate(90deg);
  6481. }
  6482. #u38553 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 2px 2px 2px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u38553_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u38554_div {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:12px;
  6501. height:12px;
  6502. background:inherit;
  6503. background-color:rgba(255, 255, 255, 0);
  6504. box-sizing:border-box;
  6505. border-width:2px;
  6506. border-style:solid;
  6507. border-color:rgba(51, 51, 51, 1);
  6508. border-right:0px;
  6509. border-bottom:0px;
  6510. border-radius:0px;
  6511. border-top-right-radius:0px;
  6512. border-bottom-left-radius:0px;
  6513. -moz-box-shadow:none;
  6514. -webkit-box-shadow:none;
  6515. box-shadow:none;
  6516. }
  6517. #u38554 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:1416px;
  6521. top:81px;
  6522. width:12px;
  6523. height:12px;
  6524. display:flex;
  6525. -webkit-transform:rotate(315deg);
  6526. -moz-transform:rotate(315deg);
  6527. -ms-transform:rotate(315deg);
  6528. transform:rotate(315deg);
  6529. }
  6530. #u38554 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 2px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u38554_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. visibility:hidden;
  6542. }
  6543. #u38555_div {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:43px;
  6549. height:21px;
  6550. background:inherit;
  6551. background-color:rgba(242, 242, 242, 1);
  6552. border:none;
  6553. border-radius:17px;
  6554. -moz-box-shadow:none;
  6555. -webkit-box-shadow:none;
  6556. box-shadow:none;
  6557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6558. font-weight:400;
  6559. font-style:normal;
  6560. font-size:12px;
  6561. color:#555555;
  6562. }
  6563. #u38555 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:1414px;
  6567. top:155px;
  6568. width:43px;
  6569. height:21px;
  6570. display:flex;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:12px;
  6575. color:#555555;
  6576. }
  6577. #u38555 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:2px 3px 2px 3px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u38555_text {
  6585. border-width:0px;
  6586. white-space:nowrap;
  6587. text-transform:none;
  6588. }
  6589. #u38556_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:43px;
  6595. height:21px;
  6596. background:inherit;
  6597. background-color:rgba(242, 242, 242, 1);
  6598. border:none;
  6599. border-radius:17px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:12px;
  6607. color:#555555;
  6608. }
  6609. #u38556 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:1475px;
  6613. top:155px;
  6614. width:43px;
  6615. height:21px;
  6616. display:flex;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:12px;
  6621. color:#555555;
  6622. }
  6623. #u38556 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 3px 2px 3px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u38556_text {
  6631. border-width:0px;
  6632. white-space:nowrap;
  6633. text-transform:none;
  6634. }
  6635. #u38557_div {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:43px;
  6641. height:21px;
  6642. background:inherit;
  6643. background-color:rgba(242, 242, 242, 1);
  6644. border:none;
  6645. border-radius:17px;
  6646. -moz-box-shadow:none;
  6647. -webkit-box-shadow:none;
  6648. box-shadow:none;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:12px;
  6653. color:#7F7F7F;
  6654. }
  6655. #u38557 {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:1535px;
  6659. top:155px;
  6660. width:43px;
  6661. height:21px;
  6662. display:flex;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:12px;
  6667. color:#7F7F7F;
  6668. }
  6669. #u38557 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 3px 2px 3px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u38557_text {
  6677. border-width:0px;
  6678. white-space:nowrap;
  6679. text-transform:none;
  6680. }
  6681. #u38558 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:0px;
  6687. height:0px;
  6688. }
  6689. #u38559_div {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:280px;
  6695. height:30px;
  6696. background:inherit;
  6697. background-color:rgba(242, 242, 242, 1);
  6698. border:none;
  6699. border-radius:20px;
  6700. -moz-box-shadow:none;
  6701. -webkit-box-shadow:none;
  6702. box-shadow:none;
  6703. }
  6704. #u38559 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:1414px;
  6708. top:115px;
  6709. width:280px;
  6710. height:30px;
  6711. display:flex;
  6712. }
  6713. #u38559 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 2px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u38559_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u38560_input {
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:260px;
  6731. height:25px;
  6732. padding:2px 2px 2px 2px;
  6733. font-family:'ArialMT', 'Arial', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:13px;
  6737. letter-spacing:normal;
  6738. color:#000000;
  6739. vertical-align:none;
  6740. text-align:left;
  6741. text-transform:none;
  6742. background-color:transparent;
  6743. border-color:transparent;
  6744. }
  6745. #u38560_input.disabled {
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:260px;
  6750. height:25px;
  6751. padding:2px 2px 2px 2px;
  6752. font-family:'ArialMT', 'Arial', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:13px;
  6756. letter-spacing:normal;
  6757. color:#000000;
  6758. vertical-align:none;
  6759. text-align:left;
  6760. text-transform:none;
  6761. background-color:transparent;
  6762. border-color:transparent;
  6763. }
  6764. #u38560_div {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:260px;
  6770. height:25px;
  6771. background:inherit;
  6772. background-color:rgba(242, 242, 242, 1);
  6773. border:none;
  6774. border-radius:0px;
  6775. -moz-box-shadow:none;
  6776. -webkit-box-shadow:none;
  6777. box-shadow:none;
  6778. }
  6779. #u38560 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:1423px;
  6783. top:116px;
  6784. width:260px;
  6785. height:25px;
  6786. display:flex;
  6787. }
  6788. #u38560 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:2px 2px 2px 2px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u38560_div.disabled {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:260px;
  6801. height:25px;
  6802. background:inherit;
  6803. background-color:rgba(240, 240, 240, 1);
  6804. border:none;
  6805. border-radius:0px;
  6806. -moz-box-shadow:none;
  6807. -webkit-box-shadow:none;
  6808. box-shadow:none;
  6809. }
  6810. #u38560.disabled {
  6811. }
  6812. #u38561_img {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:12px;
  6818. height:12px;
  6819. }
  6820. #u38561 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:1675px;
  6824. top:124px;
  6825. width:12px;
  6826. height:12px;
  6827. display:flex;
  6828. }
  6829. #u38561 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u38561_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u38562_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:49px;
  6848. height:30px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 0);
  6851. border:none;
  6852. border-left:0px;
  6853. border-top:0px;
  6854. border-right:0px;
  6855. border-radius:0px;
  6856. border-bottom-right-radius:0px;
  6857. border-bottom-left-radius:0px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:12px;
  6865. color:#1890FF;
  6866. line-height:30px;
  6867. }
  6868. #u38562 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:1713px;
  6872. top:115px;
  6873. width:49px;
  6874. height:30px;
  6875. display:flex;
  6876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6877. font-weight:400;
  6878. font-style:normal;
  6879. font-size:12px;
  6880. color:#1890FF;
  6881. line-height:30px;
  6882. }
  6883. #u38562 .text {
  6884. position:absolute;
  6885. align-self:flex-start;
  6886. padding:0px 0px 0px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u38562_text {
  6891. border-width:0px;
  6892. white-space:nowrap;
  6893. text-transform:none;
  6894. }
  6895. #u38563_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:63px;
  6901. height:14px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-left:0px;
  6906. border-top:0px;
  6907. border-right:0px;
  6908. border-radius:0px;
  6909. border-bottom-right-radius:0px;
  6910. border-bottom-left-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:10px;
  6918. color:#AAAAAA;
  6919. }
  6920. #u38563 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:1414px;
  6924. top:184px;
  6925. width:63px;
  6926. height:14px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:10px;
  6932. color:#AAAAAA;
  6933. }
  6934. #u38563 .text {
  6935. position:absolute;
  6936. align-self:flex-start;
  6937. padding:0px 0px 0px 0px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u38563_text {
  6942. border-width:0px;
  6943. white-space:nowrap;
  6944. text-transform:none;
  6945. }
  6946. #u38564_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:65px;
  6952. height:22px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 0);
  6955. border:none;
  6956. border-radius:0px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:16px;
  6964. color:#000000;
  6965. }
  6966. #u38564 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:1553px;
  6970. top:76px;
  6971. width:65px;
  6972. height:22px;
  6973. display:flex;
  6974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:16px;
  6978. color:#000000;
  6979. }
  6980. #u38564 .text {
  6981. position:absolute;
  6982. align-self:flex-start;
  6983. padding:0px 0px 0px 0px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u38564_text {
  6988. border-width:0px;
  6989. white-space:nowrap;
  6990. text-transform:none;
  6991. }
  6992. #u38565_div {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:11px;
  6998. height:11px;
  6999. background:inherit;
  7000. background-color:rgba(217, 0, 27, 1);
  7001. border:none;
  7002. border-radius:7px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:8px;
  7010. color:#FFFFFF;
  7011. text-align:center;
  7012. }
  7013. #u38565 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:1452px;
  7017. top:150px;
  7018. width:11px;
  7019. height:11px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:8px;
  7025. color:#FFFFFF;
  7026. text-align:center;
  7027. }
  7028. #u38565 .text {
  7029. position:absolute;
  7030. align-self:flex-start;
  7031. padding:0px 0px 0px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u38565_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. }
  7040. #u38566_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:43px;
  7046. height:21px;
  7047. background:inherit;
  7048. background-color:rgba(0, 137, 254, 1);
  7049. border:none;
  7050. border-radius:17px;
  7051. -moz-box-shadow:none;
  7052. -webkit-box-shadow:none;
  7053. box-shadow:none;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#FFFFFF;
  7059. }
  7060. #u38566 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:1596px;
  7064. top:155px;
  7065. width:43px;
  7066. height:21px;
  7067. display:flex;
  7068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7069. font-weight:400;
  7070. font-style:normal;
  7071. font-size:12px;
  7072. color:#FFFFFF;
  7073. }
  7074. #u38566 .text {
  7075. position:absolute;
  7076. align-self:center;
  7077. padding:2px 3px 2px 3px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u38566_text {
  7082. border-width:0px;
  7083. white-space:nowrap;
  7084. text-transform:none;
  7085. }
  7086. #u38567_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:43px;
  7092. height:21px;
  7093. background:inherit;
  7094. background-color:rgba(242, 242, 242, 1);
  7095. border:none;
  7096. border-radius:17px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:12px;
  7104. color:#555555;
  7105. }
  7106. #u38567 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:1659px;
  7110. top:155px;
  7111. width:43px;
  7112. height:21px;
  7113. display:flex;
  7114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7115. font-weight:400;
  7116. font-style:normal;
  7117. font-size:12px;
  7118. color:#555555;
  7119. }
  7120. #u38567 .text {
  7121. position:absolute;
  7122. align-self:center;
  7123. padding:2px 3px 2px 3px;
  7124. box-sizing:border-box;
  7125. width:100%;
  7126. }
  7127. #u38567_text {
  7128. border-width:0px;
  7129. white-space:nowrap;
  7130. text-transform:none;
  7131. }
  7132. #u38569_img {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:433px;
  7138. height:865px;
  7139. }
  7140. #u38569 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:1837px;
  7144. top:0px;
  7145. width:433px;
  7146. height:865px;
  7147. display:flex;
  7148. }
  7149. #u38569 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:2px 2px 2px 2px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u38569_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u38570_div {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:375px;
  7168. height:40px;
  7169. background:inherit;
  7170. background-color:rgba(255, 255, 255, 1);
  7171. border:none;
  7172. border-left:0px;
  7173. border-top:0px;
  7174. border-right:0px;
  7175. border-radius:0px;
  7176. border-bottom-right-radius:0px;
  7177. border-bottom-left-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. }
  7182. #u38570 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:1866px;
  7186. top:67px;
  7187. width:375px;
  7188. height:40px;
  7189. display:flex;
  7190. }
  7191. #u38570 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:2px 2px 2px 2px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u38570_text {
  7199. border-width:0px;
  7200. word-wrap:break-word;
  7201. text-transform:none;
  7202. visibility:hidden;
  7203. }
  7204. #u38571 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:0px;
  7210. height:0px;
  7211. }
  7212. #u38572_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:88px;
  7218. height:32px;
  7219. background:inherit;
  7220. background-color:rgba(255, 255, 255, 1);
  7221. box-sizing:border-box;
  7222. border-width:1px;
  7223. border-style:solid;
  7224. border-color:rgba(242, 242, 242, 1);
  7225. border-radius:33px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. }
  7230. #u38572 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:2146px;
  7234. top:71px;
  7235. width:88px;
  7236. height:32px;
  7237. display:flex;
  7238. }
  7239. #u38572 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u38572_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. visibility:hidden;
  7251. }
  7252. #u38573 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:0px;
  7258. height:0px;
  7259. }
  7260. #u38574_img {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:18px;
  7266. height:18px;
  7267. }
  7268. #u38574 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:2209px;
  7272. top:78px;
  7273. width:18px;
  7274. height:18px;
  7275. display:flex;
  7276. }
  7277. #u38574 .text {
  7278. position:absolute;
  7279. align-self:center;
  7280. padding:2px 2px 2px 2px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u38574_text {
  7285. border-width:0px;
  7286. word-wrap:break-word;
  7287. text-transform:none;
  7288. visibility:hidden;
  7289. }
  7290. #u38575_img {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:6px;
  7296. height:6px;
  7297. }
  7298. #u38575 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:2215px;
  7302. top:84px;
  7303. width:6px;
  7304. height:6px;
  7305. display:flex;
  7306. }
  7307. #u38575 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 2px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u38575_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u38576 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:0px;
  7326. height:0px;
  7327. }
  7328. #u38577_img {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:5px;
  7334. height:5px;
  7335. }
  7336. #u38577 {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:2160px;
  7340. top:85px;
  7341. width:5px;
  7342. height:5px;
  7343. display:flex;
  7344. }
  7345. #u38577 .text {
  7346. position:absolute;
  7347. align-self:center;
  7348. padding:2px 2px 2px 2px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u38577_text {
  7353. border-width:0px;
  7354. word-wrap:break-word;
  7355. text-transform:none;
  7356. visibility:hidden;
  7357. }
  7358. #u38578_img {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:5px;
  7364. height:5px;
  7365. }
  7366. #u38578 {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:2176px;
  7370. top:85px;
  7371. width:5px;
  7372. height:5px;
  7373. display:flex;
  7374. }
  7375. #u38578 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u38578_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u38579_img {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:7px;
  7394. height:7px;
  7395. }
  7396. #u38579 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:2167px;
  7400. top:84px;
  7401. width:7px;
  7402. height:7px;
  7403. display:flex;
  7404. }
  7405. #u38579 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u38579_text {
  7413. border-width:0px;
  7414. word-wrap:break-word;
  7415. text-transform:none;
  7416. visibility:hidden;
  7417. }
  7418. #u38580_img {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:19px;
  7424. height:2px;
  7425. }
  7426. #u38580 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:2184px;
  7430. top:87px;
  7431. width:18px;
  7432. height:1px;
  7433. display:flex;
  7434. -webkit-transform:rotate(90deg);
  7435. -moz-transform:rotate(90deg);
  7436. -ms-transform:rotate(90deg);
  7437. transform:rotate(90deg);
  7438. }
  7439. #u38580 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:2px 2px 2px 2px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u38580_text {
  7447. border-width:0px;
  7448. word-wrap:break-word;
  7449. text-transform:none;
  7450. visibility:hidden;
  7451. }
  7452. #u38581_img {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:375px;
  7458. height:44px;
  7459. }
  7460. #u38581 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:1866px;
  7464. top:24px;
  7465. width:375px;
  7466. height:44px;
  7467. display:flex;
  7468. }
  7469. #u38581 .text {
  7470. position:absolute;
  7471. align-self:center;
  7472. padding:2px 2px 2px 2px;
  7473. box-sizing:border-box;
  7474. width:100%;
  7475. }
  7476. #u38581_text {
  7477. border-width:0px;
  7478. word-wrap:break-word;
  7479. text-transform:none;
  7480. visibility:hidden;
  7481. }
  7482. #u38582_div {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:375px;
  7488. height:50px;
  7489. background:inherit;
  7490. background-color:rgba(255, 255, 255, 1);
  7491. box-sizing:border-box;
  7492. border-width:1px;
  7493. border-style:solid;
  7494. border-color:rgba(242, 242, 242, 1);
  7495. border-radius:26px;
  7496. border-top-left-radius:0px;
  7497. border-top-right-radius:0px;
  7498. -moz-box-shadow:none;
  7499. -webkit-box-shadow:none;
  7500. box-shadow:none;
  7501. }
  7502. #u38582 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:1866px;
  7506. top:788px;
  7507. width:375px;
  7508. height:50px;
  7509. display:flex;
  7510. }
  7511. #u38582 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 2px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u38582_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u38583 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:0px;
  7530. height:0px;
  7531. }
  7532. #u38584_img {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:24px;
  7538. height:24px;
  7539. }
  7540. #u38584 {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:1906px;
  7544. top:792px;
  7545. width:24px;
  7546. height:24px;
  7547. display:flex;
  7548. font-size:8px;
  7549. }
  7550. #u38584 .text {
  7551. position:absolute;
  7552. align-self:center;
  7553. padding:2px 2px 2px 2px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u38584_text {
  7558. border-width:0px;
  7559. word-wrap:break-word;
  7560. text-transform:none;
  7561. }
  7562. #u38585_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:25px;
  7568. height:17px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 0);
  7571. border:none;
  7572. border-radius:0px;
  7573. -moz-box-shadow:none;
  7574. -webkit-box-shadow:none;
  7575. box-shadow:none;
  7576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:12px;
  7580. }
  7581. #u38585 {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:1906px;
  7585. top:817px;
  7586. width:25px;
  7587. height:17px;
  7588. display:flex;
  7589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7590. font-weight:400;
  7591. font-style:normal;
  7592. font-size:12px;
  7593. }
  7594. #u38585 .text {
  7595. position:absolute;
  7596. align-self:flex-start;
  7597. padding:0px 0px 0px 0px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u38585_text {
  7602. border-width:0px;
  7603. white-space:nowrap;
  7604. text-transform:none;
  7605. }
  7606. #u38586 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:0px;
  7612. height:0px;
  7613. }
  7614. #u38587_img {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:24px;
  7620. height:24px;
  7621. }
  7622. #u38587 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:2176px;
  7626. top:794px;
  7627. width:24px;
  7628. height:24px;
  7629. display:flex;
  7630. font-size:8px;
  7631. }
  7632. #u38587 .text {
  7633. position:absolute;
  7634. align-self:center;
  7635. padding:2px 2px 2px 2px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u38587_text {
  7640. border-width:0px;
  7641. word-wrap:break-word;
  7642. text-transform:none;
  7643. }
  7644. #u38588_div {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:25px;
  7650. height:17px;
  7651. background:inherit;
  7652. background-color:rgba(255, 255, 255, 0);
  7653. border:none;
  7654. border-radius:0px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:12px;
  7662. }
  7663. #u38588 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:2176px;
  7667. top:819px;
  7668. width:25px;
  7669. height:17px;
  7670. display:flex;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:12px;
  7675. }
  7676. #u38588 .text {
  7677. position:absolute;
  7678. align-self:flex-start;
  7679. padding:0px 0px 0px 0px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u38588_text {
  7684. border-width:0px;
  7685. white-space:nowrap;
  7686. text-transform:none;
  7687. }
  7688. #u38589_div {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:0px;
  7692. top:0px;
  7693. width:375px;
  7694. height:681px;
  7695. background:inherit;
  7696. background-color:rgba(242, 242, 242, 0.462745098039216);
  7697. border:none;
  7698. border-radius:0px;
  7699. -moz-box-shadow:none;
  7700. -webkit-box-shadow:none;
  7701. box-shadow:none;
  7702. }
  7703. #u38589 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:1866px;
  7707. top:107px;
  7708. width:375px;
  7709. height:681px;
  7710. display:flex;
  7711. }
  7712. #u38589 .text {
  7713. position:absolute;
  7714. align-self:center;
  7715. padding:2px 2px 2px 2px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u38589_text {
  7720. border-width:0px;
  7721. word-wrap:break-word;
  7722. text-transform:none;
  7723. visibility:hidden;
  7724. }
  7725. #u38590 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:0px;
  7731. height:0px;
  7732. }
  7733. #u38591_img {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:24px;
  7739. height:24px;
  7740. }
  7741. #u38591 {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:2088px;
  7745. top:792px;
  7746. width:24px;
  7747. height:24px;
  7748. display:flex;
  7749. font-size:8px;
  7750. }
  7751. #u38591 .text {
  7752. position:absolute;
  7753. align-self:center;
  7754. padding:2px 2px 2px 2px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u38591_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. }
  7763. #u38592_div {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:37px;
  7769. height:17px;
  7770. background:inherit;
  7771. background-color:rgba(255, 255, 255, 0);
  7772. border:none;
  7773. border-radius:0px;
  7774. -moz-box-shadow:none;
  7775. -webkit-box-shadow:none;
  7776. box-shadow:none;
  7777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:12px;
  7781. }
  7782. #u38592 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:2082px;
  7786. top:817px;
  7787. width:37px;
  7788. height:17px;
  7789. display:flex;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. font-size:12px;
  7794. }
  7795. #u38592 .text {
  7796. position:absolute;
  7797. align-self:flex-start;
  7798. padding:0px 0px 0px 0px;
  7799. box-sizing:border-box;
  7800. width:100%;
  7801. }
  7802. #u38592_text {
  7803. border-width:0px;
  7804. white-space:nowrap;
  7805. text-transform:none;
  7806. }
  7807. #u38593 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:0px;
  7813. height:0px;
  7814. }
  7815. #u38594_img {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:24px;
  7821. height:24px;
  7822. }
  7823. #u38594 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:1994px;
  7827. top:792px;
  7828. width:24px;
  7829. height:24px;
  7830. display:flex;
  7831. font-size:8px;
  7832. }
  7833. #u38594 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 2px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u38594_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. }
  7845. #u38595_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:37px;
  7851. height:17px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border:none;
  7855. border-radius:0px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:12px;
  7863. }
  7864. #u38595 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:1988px;
  7868. top:817px;
  7869. width:37px;
  7870. height:17px;
  7871. display:flex;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:12px;
  7876. }
  7877. #u38595 .text {
  7878. position:absolute;
  7879. align-self:flex-start;
  7880. padding:0px 0px 0px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u38595_text {
  7885. border-width:0px;
  7886. white-space:nowrap;
  7887. text-transform:none;
  7888. }
  7889. #u38596_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:375px;
  7895. height:740px;
  7896. background:inherit;
  7897. background-color:rgba(242, 242, 242, 1);
  7898. border:none;
  7899. border-top:0px;
  7900. border-radius:25px;
  7901. border-top-left-radius:0px;
  7902. border-top-right-radius:0px;
  7903. -moz-box-shadow:none;
  7904. -webkit-box-shadow:none;
  7905. box-shadow:none;
  7906. }
  7907. #u38596 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:1866px;
  7911. top:105px;
  7912. width:375px;
  7913. height:740px;
  7914. display:flex;
  7915. }
  7916. #u38596 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:2px 2px 2px 2px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u38596_text {
  7924. border-width:0px;
  7925. word-wrap:break-word;
  7926. text-transform:none;
  7927. visibility:hidden;
  7928. }
  7929. #u38597 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:0px;
  7935. height:0px;
  7936. }
  7937. #u38598_img {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:0px;
  7941. top:0px;
  7942. width:11px;
  7943. height:18px;
  7944. }
  7945. #u38598 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:1877px;
  7949. top:79px;
  7950. width:11px;
  7951. height:18px;
  7952. display:flex;
  7953. }
  7954. #u38598 .text {
  7955. position:absolute;
  7956. align-self:center;
  7957. padding:2px 2px 2px 2px;
  7958. box-sizing:border-box;
  7959. width:100%;
  7960. }
  7961. #u38598_text {
  7962. border-width:0px;
  7963. word-wrap:break-word;
  7964. text-transform:none;
  7965. visibility:hidden;
  7966. }
  7967. #u38599_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:375px;
  7973. height:140px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 1);
  7976. box-sizing:border-box;
  7977. border-width:1px;
  7978. border-style:solid;
  7979. border-color:rgba(215, 215, 215, 1);
  7980. border-left:0px;
  7981. border-top:0px;
  7982. border-right:0px;
  7983. border-radius:0px;
  7984. border-bottom-right-radius:0px;
  7985. border-bottom-left-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. }
  7990. #u38599 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:1866px;
  7994. top:67px;
  7995. width:375px;
  7996. height:140px;
  7997. display:flex;
  7998. }
  7999. #u38599 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 2px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u38599_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u38600 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:0px;
  8018. height:0px;
  8019. }
  8020. #u38601_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:88px;
  8026. height:32px;
  8027. background:inherit;
  8028. background-color:rgba(255, 255, 255, 1);
  8029. box-sizing:border-box;
  8030. border-width:1px;
  8031. border-style:solid;
  8032. border-color:rgba(242, 242, 242, 1);
  8033. border-radius:33px;
  8034. -moz-box-shadow:none;
  8035. -webkit-box-shadow:none;
  8036. box-shadow:none;
  8037. }
  8038. #u38601 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:2146px;
  8042. top:71px;
  8043. width:88px;
  8044. height:32px;
  8045. display:flex;
  8046. }
  8047. #u38601 .text {
  8048. position:absolute;
  8049. align-self:center;
  8050. padding:2px 2px 2px 2px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u38601_text {
  8055. border-width:0px;
  8056. word-wrap:break-word;
  8057. text-transform:none;
  8058. visibility:hidden;
  8059. }
  8060. #u38602 {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:0px;
  8064. top:0px;
  8065. width:0px;
  8066. height:0px;
  8067. }
  8068. #u38603_img {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:18px;
  8074. height:18px;
  8075. }
  8076. #u38603 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:2209px;
  8080. top:78px;
  8081. width:18px;
  8082. height:18px;
  8083. display:flex;
  8084. }
  8085. #u38603 .text {
  8086. position:absolute;
  8087. align-self:center;
  8088. padding:2px 2px 2px 2px;
  8089. box-sizing:border-box;
  8090. width:100%;
  8091. }
  8092. #u38603_text {
  8093. border-width:0px;
  8094. word-wrap:break-word;
  8095. text-transform:none;
  8096. visibility:hidden;
  8097. }
  8098. #u38604_img {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:0px;
  8102. top:0px;
  8103. width:6px;
  8104. height:6px;
  8105. }
  8106. #u38604 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:2215px;
  8110. top:84px;
  8111. width:6px;
  8112. height:6px;
  8113. display:flex;
  8114. }
  8115. #u38604 .text {
  8116. position:absolute;
  8117. align-self:center;
  8118. padding:2px 2px 2px 2px;
  8119. box-sizing:border-box;
  8120. width:100%;
  8121. }
  8122. #u38604_text {
  8123. border-width:0px;
  8124. word-wrap:break-word;
  8125. text-transform:none;
  8126. visibility:hidden;
  8127. }
  8128. #u38605 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:0px;
  8134. height:0px;
  8135. }
  8136. #u38606_img {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:5px;
  8142. height:5px;
  8143. }
  8144. #u38606 {
  8145. border-width:0px;
  8146. position:absolute;
  8147. left:2160px;
  8148. top:85px;
  8149. width:5px;
  8150. height:5px;
  8151. display:flex;
  8152. }
  8153. #u38606 .text {
  8154. position:absolute;
  8155. align-self:center;
  8156. padding:2px 2px 2px 2px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u38606_text {
  8161. border-width:0px;
  8162. word-wrap:break-word;
  8163. text-transform:none;
  8164. visibility:hidden;
  8165. }
  8166. #u38607_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:5px;
  8172. height:5px;
  8173. }
  8174. #u38607 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:2176px;
  8178. top:85px;
  8179. width:5px;
  8180. height:5px;
  8181. display:flex;
  8182. }
  8183. #u38607 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:2px 2px 2px 2px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u38607_text {
  8191. border-width:0px;
  8192. word-wrap:break-word;
  8193. text-transform:none;
  8194. visibility:hidden;
  8195. }
  8196. #u38608_img {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:0px;
  8200. top:0px;
  8201. width:7px;
  8202. height:7px;
  8203. }
  8204. #u38608 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:2167px;
  8208. top:84px;
  8209. width:7px;
  8210. height:7px;
  8211. display:flex;
  8212. }
  8213. #u38608 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:2px 2px 2px 2px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u38608_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. visibility:hidden;
  8225. }
  8226. #u38609_img {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:19px;
  8232. height:2px;
  8233. }
  8234. #u38609 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:2184px;
  8238. top:87px;
  8239. width:18px;
  8240. height:1px;
  8241. display:flex;
  8242. -webkit-transform:rotate(90deg);
  8243. -moz-transform:rotate(90deg);
  8244. -ms-transform:rotate(90deg);
  8245. transform:rotate(90deg);
  8246. }
  8247. #u38609 .text {
  8248. position:absolute;
  8249. align-self:center;
  8250. padding:2px 2px 2px 2px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u38609_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. visibility:hidden;
  8259. }
  8260. #u38610_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:12px;
  8266. height:12px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. box-sizing:border-box;
  8270. border-width:2px;
  8271. border-style:solid;
  8272. border-color:rgba(51, 51, 51, 1);
  8273. border-right:0px;
  8274. border-bottom:0px;
  8275. border-radius:0px;
  8276. border-top-right-radius:0px;
  8277. border-bottom-left-radius:0px;
  8278. -moz-box-shadow:none;
  8279. -webkit-box-shadow:none;
  8280. box-shadow:none;
  8281. }
  8282. #u38610 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:1881px;
  8286. top:82px;
  8287. width:12px;
  8288. height:12px;
  8289. display:flex;
  8290. -webkit-transform:rotate(315deg);
  8291. -moz-transform:rotate(315deg);
  8292. -ms-transform:rotate(315deg);
  8293. transform:rotate(315deg);
  8294. }
  8295. #u38610 .text {
  8296. position:absolute;
  8297. align-self:center;
  8298. padding:2px 2px 2px 2px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u38610_text {
  8303. border-width:0px;
  8304. word-wrap:break-word;
  8305. text-transform:none;
  8306. visibility:hidden;
  8307. }
  8308. #u38611_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:43px;
  8314. height:21px;
  8315. background:inherit;
  8316. background-color:rgba(242, 242, 242, 1);
  8317. border:none;
  8318. border-radius:17px;
  8319. -moz-box-shadow:none;
  8320. -webkit-box-shadow:none;
  8321. box-shadow:none;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:12px;
  8326. color:#555555;
  8327. }
  8328. #u38611 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:1879px;
  8332. top:155px;
  8333. width:43px;
  8334. height:21px;
  8335. display:flex;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:12px;
  8340. color:#555555;
  8341. }
  8342. #u38611 .text {
  8343. position:absolute;
  8344. align-self:center;
  8345. padding:2px 3px 2px 3px;
  8346. box-sizing:border-box;
  8347. width:100%;
  8348. }
  8349. #u38611_text {
  8350. border-width:0px;
  8351. white-space:nowrap;
  8352. text-transform:none;
  8353. }
  8354. #u38612_div {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:43px;
  8360. height:21px;
  8361. background:inherit;
  8362. background-color:rgba(242, 242, 242, 1);
  8363. border:none;
  8364. border-radius:17px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:12px;
  8372. color:#555555;
  8373. }
  8374. #u38612 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:1940px;
  8378. top:155px;
  8379. width:43px;
  8380. height:21px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:12px;
  8386. color:#555555;
  8387. }
  8388. #u38612 .text {
  8389. position:absolute;
  8390. align-self:center;
  8391. padding:2px 3px 2px 3px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u38612_text {
  8396. border-width:0px;
  8397. white-space:nowrap;
  8398. text-transform:none;
  8399. }
  8400. #u38613_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:43px;
  8406. height:21px;
  8407. background:inherit;
  8408. background-color:rgba(242, 242, 242, 1);
  8409. border:none;
  8410. border-radius:17px;
  8411. -moz-box-shadow:none;
  8412. -webkit-box-shadow:none;
  8413. box-shadow:none;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:12px;
  8418. color:#7F7F7F;
  8419. }
  8420. #u38613 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:2000px;
  8424. top:155px;
  8425. width:43px;
  8426. height:21px;
  8427. display:flex;
  8428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8429. font-weight:400;
  8430. font-style:normal;
  8431. font-size:12px;
  8432. color:#7F7F7F;
  8433. }
  8434. #u38613 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:2px 3px 2px 3px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u38613_text {
  8442. border-width:0px;
  8443. white-space:nowrap;
  8444. text-transform:none;
  8445. }
  8446. #u38614 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:0px;
  8452. height:0px;
  8453. }
  8454. #u38615_div {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:280px;
  8460. height:30px;
  8461. background:inherit;
  8462. background-color:rgba(242, 242, 242, 1);
  8463. border:none;
  8464. border-radius:20px;
  8465. -moz-box-shadow:none;
  8466. -webkit-box-shadow:none;
  8467. box-shadow:none;
  8468. }
  8469. #u38615 {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:1879px;
  8473. top:115px;
  8474. width:280px;
  8475. height:30px;
  8476. display:flex;
  8477. }
  8478. #u38615 .text {
  8479. position:absolute;
  8480. align-self:center;
  8481. padding:2px 2px 2px 2px;
  8482. box-sizing:border-box;
  8483. width:100%;
  8484. }
  8485. #u38615_text {
  8486. border-width:0px;
  8487. word-wrap:break-word;
  8488. text-transform:none;
  8489. visibility:hidden;
  8490. }
  8491. #u38616_input {
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:260px;
  8496. height:25px;
  8497. padding:2px 2px 2px 2px;
  8498. font-family:'ArialMT', 'Arial', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:13px;
  8502. letter-spacing:normal;
  8503. color:#000000;
  8504. vertical-align:none;
  8505. text-align:left;
  8506. text-transform:none;
  8507. background-color:transparent;
  8508. border-color:transparent;
  8509. }
  8510. #u38616_input.disabled {
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:260px;
  8515. height:25px;
  8516. padding:2px 2px 2px 2px;
  8517. font-family:'ArialMT', 'Arial', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. font-size:13px;
  8521. letter-spacing:normal;
  8522. color:#000000;
  8523. vertical-align:none;
  8524. text-align:left;
  8525. text-transform:none;
  8526. background-color:transparent;
  8527. border-color:transparent;
  8528. }
  8529. #u38616_div {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:260px;
  8535. height:25px;
  8536. background:inherit;
  8537. background-color:rgba(242, 242, 242, 1);
  8538. border:none;
  8539. border-radius:0px;
  8540. -moz-box-shadow:none;
  8541. -webkit-box-shadow:none;
  8542. box-shadow:none;
  8543. }
  8544. #u38616 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:1888px;
  8548. top:116px;
  8549. width:260px;
  8550. height:25px;
  8551. display:flex;
  8552. }
  8553. #u38616 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 2px 2px 2px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u38616_div.disabled {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:0px;
  8564. top:0px;
  8565. width:260px;
  8566. height:25px;
  8567. background:inherit;
  8568. background-color:rgba(240, 240, 240, 1);
  8569. border:none;
  8570. border-radius:0px;
  8571. -moz-box-shadow:none;
  8572. -webkit-box-shadow:none;
  8573. box-shadow:none;
  8574. }
  8575. #u38616.disabled {
  8576. }
  8577. #u38617_img {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:12px;
  8583. height:12px;
  8584. }
  8585. #u38617 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:2140px;
  8589. top:124px;
  8590. width:12px;
  8591. height:12px;
  8592. display:flex;
  8593. }
  8594. #u38617 .text {
  8595. position:absolute;
  8596. align-self:center;
  8597. padding:2px 2px 2px 2px;
  8598. box-sizing:border-box;
  8599. width:100%;
  8600. }
  8601. #u38617_text {
  8602. border-width:0px;
  8603. word-wrap:break-word;
  8604. text-transform:none;
  8605. visibility:hidden;
  8606. }
  8607. #u38618_div {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:49px;
  8613. height:30px;
  8614. background:inherit;
  8615. background-color:rgba(255, 255, 255, 0);
  8616. border:none;
  8617. border-left:0px;
  8618. border-top:0px;
  8619. border-right:0px;
  8620. border-radius:0px;
  8621. border-bottom-right-radius:0px;
  8622. border-bottom-left-radius:0px;
  8623. -moz-box-shadow:none;
  8624. -webkit-box-shadow:none;
  8625. box-shadow:none;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:12px;
  8630. color:#1890FF;
  8631. line-height:30px;
  8632. }
  8633. #u38618 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:2178px;
  8637. top:115px;
  8638. width:49px;
  8639. height:30px;
  8640. display:flex;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. color:#1890FF;
  8646. line-height:30px;
  8647. }
  8648. #u38618 .text {
  8649. position:absolute;
  8650. align-self:flex-start;
  8651. padding:0px 0px 0px 0px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u38618_text {
  8656. border-width:0px;
  8657. white-space:nowrap;
  8658. text-transform:none;
  8659. }
  8660. #u38619_div {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:63px;
  8666. height:14px;
  8667. background:inherit;
  8668. background-color:rgba(255, 255, 255, 0);
  8669. border:none;
  8670. border-left:0px;
  8671. border-top:0px;
  8672. border-right:0px;
  8673. border-radius:0px;
  8674. border-bottom-right-radius:0px;
  8675. border-bottom-left-radius:0px;
  8676. -moz-box-shadow:none;
  8677. -webkit-box-shadow:none;
  8678. box-shadow:none;
  8679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:10px;
  8683. color:#AAAAAA;
  8684. }
  8685. #u38619 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:1879px;
  8689. top:184px;
  8690. width:63px;
  8691. height:14px;
  8692. display:flex;
  8693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8694. font-weight:400;
  8695. font-style:normal;
  8696. font-size:10px;
  8697. color:#AAAAAA;
  8698. }
  8699. #u38619 .text {
  8700. position:absolute;
  8701. align-self:flex-start;
  8702. padding:0px 0px 0px 0px;
  8703. box-sizing:border-box;
  8704. width:100%;
  8705. }
  8706. #u38619_text {
  8707. border-width:0px;
  8708. white-space:nowrap;
  8709. text-transform:none;
  8710. }
  8711. #u38620_div {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:0px;
  8715. top:0px;
  8716. width:65px;
  8717. height:22px;
  8718. background:inherit;
  8719. background-color:rgba(255, 255, 255, 0);
  8720. border:none;
  8721. border-radius:0px;
  8722. -moz-box-shadow:none;
  8723. -webkit-box-shadow:none;
  8724. box-shadow:none;
  8725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:16px;
  8729. color:#000000;
  8730. }
  8731. #u38620 {
  8732. border-width:0px;
  8733. position:absolute;
  8734. left:2018px;
  8735. top:77px;
  8736. width:65px;
  8737. height:22px;
  8738. display:flex;
  8739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8740. font-weight:400;
  8741. font-style:normal;
  8742. font-size:16px;
  8743. color:#000000;
  8744. }
  8745. #u38620 .text {
  8746. position:absolute;
  8747. align-self:flex-start;
  8748. padding:0px 0px 0px 0px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u38620_text {
  8753. border-width:0px;
  8754. white-space:nowrap;
  8755. text-transform:none;
  8756. }
  8757. #u38621_div {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:11px;
  8763. height:11px;
  8764. background:inherit;
  8765. background-color:rgba(217, 0, 27, 1);
  8766. border:none;
  8767. border-radius:7px;
  8768. -moz-box-shadow:none;
  8769. -webkit-box-shadow:none;
  8770. box-shadow:none;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:8px;
  8775. color:#FFFFFF;
  8776. text-align:center;
  8777. }
  8778. #u38621 {
  8779. border-width:0px;
  8780. position:absolute;
  8781. left:1917px;
  8782. top:150px;
  8783. width:11px;
  8784. height:11px;
  8785. display:flex;
  8786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:8px;
  8790. color:#FFFFFF;
  8791. text-align:center;
  8792. }
  8793. #u38621 .text {
  8794. position:absolute;
  8795. align-self:flex-start;
  8796. padding:0px 0px 0px 0px;
  8797. box-sizing:border-box;
  8798. width:100%;
  8799. }
  8800. #u38621_text {
  8801. border-width:0px;
  8802. word-wrap:break-word;
  8803. text-transform:none;
  8804. }
  8805. #u38622_div {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:43px;
  8811. height:21px;
  8812. background:inherit;
  8813. background-color:rgba(242, 242, 242, 1);
  8814. border:none;
  8815. border-radius:17px;
  8816. -moz-box-shadow:none;
  8817. -webkit-box-shadow:none;
  8818. box-shadow:none;
  8819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:12px;
  8823. color:#7F7F7F;
  8824. }
  8825. #u38622 {
  8826. border-width:0px;
  8827. position:absolute;
  8828. left:2061px;
  8829. top:155px;
  8830. width:43px;
  8831. height:21px;
  8832. display:flex;
  8833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:12px;
  8837. color:#7F7F7F;
  8838. }
  8839. #u38622 .text {
  8840. position:absolute;
  8841. align-self:center;
  8842. padding:2px 3px 2px 3px;
  8843. box-sizing:border-box;
  8844. width:100%;
  8845. }
  8846. #u38622_text {
  8847. border-width:0px;
  8848. white-space:nowrap;
  8849. text-transform:none;
  8850. }
  8851. #u38623_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:43px;
  8857. height:21px;
  8858. background:inherit;
  8859. background-color:rgba(0, 137, 254, 1);
  8860. border:none;
  8861. border-radius:17px;
  8862. -moz-box-shadow:none;
  8863. -webkit-box-shadow:none;
  8864. box-shadow:none;
  8865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8866. font-weight:400;
  8867. font-style:normal;
  8868. font-size:12px;
  8869. color:#FFFFFF;
  8870. }
  8871. #u38623 {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:2124px;
  8875. top:155px;
  8876. width:43px;
  8877. height:21px;
  8878. display:flex;
  8879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8880. font-weight:400;
  8881. font-style:normal;
  8882. font-size:12px;
  8883. color:#FFFFFF;
  8884. }
  8885. #u38623 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 3px 2px 3px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u38623_text {
  8893. border-width:0px;
  8894. white-space:nowrap;
  8895. text-transform:none;
  8896. }
  8897. #u38624 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:0px;
  8903. height:0px;
  8904. }
  8905. #u38625_img {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:355px;
  8911. height:200px;
  8912. }
  8913. #u38625 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:39px;
  8917. top:217px;
  8918. width:355px;
  8919. height:200px;
  8920. display:flex;
  8921. }
  8922. #u38625 .text {
  8923. position:absolute;
  8924. align-self:center;
  8925. padding:2px 2px 2px 2px;
  8926. box-sizing:border-box;
  8927. width:100%;
  8928. }
  8929. #u38625_text {
  8930. border-width:0px;
  8931. word-wrap:break-word;
  8932. text-transform:none;
  8933. visibility:hidden;
  8934. }
  8935. #u38626_div {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:183px;
  8941. height:30px;
  8942. background:inherit;
  8943. background-color:rgba(255, 255, 255, 0);
  8944. border:none;
  8945. border-left:0px;
  8946. border-top:0px;
  8947. border-right:0px;
  8948. border-radius:0px;
  8949. border-bottom-right-radius:0px;
  8950. border-bottom-left-radius:0px;
  8951. -moz-box-shadow:none;
  8952. -webkit-box-shadow:none;
  8953. box-shadow:none;
  8954. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8955. font-weight:500;
  8956. font-style:normal;
  8957. font-size:14px;
  8958. line-height:30px;
  8959. }
  8960. #u38626 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:55px;
  8964. top:223px;
  8965. width:183px;
  8966. height:30px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8969. font-weight:500;
  8970. font-style:normal;
  8971. font-size:14px;
  8972. line-height:30px;
  8973. }
  8974. #u38626 .text {
  8975. position:absolute;
  8976. align-self:flex-start;
  8977. padding:0px 0px 0px 0px;
  8978. box-sizing:border-box;
  8979. width:100%;
  8980. }
  8981. #u38626_text {
  8982. border-width:0px;
  8983. white-space:nowrap;
  8984. text-transform:none;
  8985. }
  8986. #u38627_div {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:325px;
  8992. height:125px;
  8993. background:inherit;
  8994. background-color:rgba(255, 255, 255, 0);
  8995. border:none;
  8996. border-left:0px;
  8997. border-top:0px;
  8998. border-right:0px;
  8999. border-radius:0px;
  9000. border-bottom-right-radius:0px;
  9001. border-bottom-left-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:12px;
  9009. line-height:25px;
  9010. }
  9011. #u38627 {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:55px;
  9015. top:253px;
  9016. width:325px;
  9017. height:125px;
  9018. display:flex;
  9019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9020. font-weight:400;
  9021. font-style:normal;
  9022. font-size:12px;
  9023. line-height:25px;
  9024. }
  9025. #u38627 .text {
  9026. position:absolute;
  9027. align-self:flex-start;
  9028. padding:0px 0px 0px 0px;
  9029. box-sizing:border-box;
  9030. width:100%;
  9031. }
  9032. #u38627_text {
  9033. border-width:0px;
  9034. word-wrap:break-word;
  9035. text-transform:none;
  9036. }
  9037. #u38628_div {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:0px;
  9041. top:0px;
  9042. width:9px;
  9043. height:9px;
  9044. background:inherit;
  9045. background-color:rgba(255, 255, 255, 0);
  9046. box-sizing:border-box;
  9047. border-width:1px;
  9048. border-style:solid;
  9049. border-color:rgba(127, 127, 127, 1);
  9050. border-right:0px;
  9051. border-bottom:0px;
  9052. border-radius:0px;
  9053. border-top-right-radius:0px;
  9054. border-bottom-left-radius:0px;
  9055. -moz-box-shadow:none;
  9056. -webkit-box-shadow:none;
  9057. box-shadow:none;
  9058. }
  9059. #u38628 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:370px;
  9063. top:231px;
  9064. width:9px;
  9065. height:9px;
  9066. display:flex;
  9067. -webkit-transform:rotate(135deg);
  9068. -moz-transform:rotate(135deg);
  9069. -ms-transform:rotate(135deg);
  9070. transform:rotate(135deg);
  9071. }
  9072. #u38628 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:2px 2px 2px 2px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u38628_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u38629_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:60px;
  9091. height:30px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 1);
  9094. box-sizing:border-box;
  9095. border-width:1px;
  9096. border-style:solid;
  9097. border-color:rgba(215, 215, 215, 1);
  9098. border-radius:63px;
  9099. -moz-box-shadow:none;
  9100. -webkit-box-shadow:none;
  9101. box-shadow:none;
  9102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9103. font-weight:400;
  9104. font-style:normal;
  9105. font-size:14px;
  9106. color:#555555;
  9107. }
  9108. #u38629 {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:320px;
  9112. top:377px;
  9113. width:60px;
  9114. height:30px;
  9115. display:flex;
  9116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9117. font-weight:400;
  9118. font-style:normal;
  9119. font-size:14px;
  9120. color:#555555;
  9121. }
  9122. #u38629 .text {
  9123. position:absolute;
  9124. align-self:center;
  9125. padding:2px 2px 2px 2px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u38629_text {
  9130. border-width:0px;
  9131. word-wrap:break-word;
  9132. text-transform:none;
  9133. }
  9134. #u38630 {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:0px;
  9140. height:0px;
  9141. }
  9142. #u38631_img {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:0px;
  9146. top:0px;
  9147. width:355px;
  9148. height:200px;
  9149. }
  9150. #u38631 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:497px;
  9154. top:217px;
  9155. width:355px;
  9156. height:200px;
  9157. display:flex;
  9158. }
  9159. #u38631 .text {
  9160. position:absolute;
  9161. align-self:center;
  9162. padding:2px 2px 2px 2px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u38631_text {
  9167. border-width:0px;
  9168. word-wrap:break-word;
  9169. text-transform:none;
  9170. visibility:hidden;
  9171. }
  9172. #u38632_div {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:183px;
  9178. height:30px;
  9179. background:inherit;
  9180. background-color:rgba(255, 255, 255, 0);
  9181. border:none;
  9182. border-left:0px;
  9183. border-top:0px;
  9184. border-right:0px;
  9185. border-radius:0px;
  9186. border-bottom-right-radius:0px;
  9187. border-bottom-left-radius:0px;
  9188. -moz-box-shadow:none;
  9189. -webkit-box-shadow:none;
  9190. box-shadow:none;
  9191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9192. font-weight:500;
  9193. font-style:normal;
  9194. font-size:14px;
  9195. line-height:30px;
  9196. }
  9197. #u38632 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:513px;
  9201. top:223px;
  9202. width:183px;
  9203. height:30px;
  9204. display:flex;
  9205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9206. font-weight:500;
  9207. font-style:normal;
  9208. font-size:14px;
  9209. line-height:30px;
  9210. }
  9211. #u38632 .text {
  9212. position:absolute;
  9213. align-self:flex-start;
  9214. padding:0px 0px 0px 0px;
  9215. box-sizing:border-box;
  9216. width:100%;
  9217. }
  9218. #u38632_text {
  9219. border-width:0px;
  9220. white-space:nowrap;
  9221. text-transform:none;
  9222. }
  9223. #u38633_div {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:0px;
  9227. top:0px;
  9228. width:325px;
  9229. height:125px;
  9230. background:inherit;
  9231. background-color:rgba(255, 255, 255, 0);
  9232. border:none;
  9233. border-left:0px;
  9234. border-top:0px;
  9235. border-right:0px;
  9236. border-radius:0px;
  9237. border-bottom-right-radius:0px;
  9238. border-bottom-left-radius:0px;
  9239. -moz-box-shadow:none;
  9240. -webkit-box-shadow:none;
  9241. box-shadow:none;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:12px;
  9246. line-height:25px;
  9247. }
  9248. #u38633 {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:513px;
  9252. top:253px;
  9253. width:325px;
  9254. height:125px;
  9255. display:flex;
  9256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9257. font-weight:400;
  9258. font-style:normal;
  9259. font-size:12px;
  9260. line-height:25px;
  9261. }
  9262. #u38633 .text {
  9263. position:absolute;
  9264. align-self:flex-start;
  9265. padding:0px 0px 0px 0px;
  9266. box-sizing:border-box;
  9267. width:100%;
  9268. }
  9269. #u38633_text {
  9270. border-width:0px;
  9271. word-wrap:break-word;
  9272. text-transform:none;
  9273. }
  9274. #u38634_div {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:0px;
  9278. top:0px;
  9279. width:9px;
  9280. height:9px;
  9281. background:inherit;
  9282. background-color:rgba(255, 255, 255, 0);
  9283. box-sizing:border-box;
  9284. border-width:1px;
  9285. border-style:solid;
  9286. border-color:rgba(127, 127, 127, 1);
  9287. border-right:0px;
  9288. border-bottom:0px;
  9289. border-radius:0px;
  9290. border-top-right-radius:0px;
  9291. border-bottom-left-radius:0px;
  9292. -moz-box-shadow:none;
  9293. -webkit-box-shadow:none;
  9294. box-shadow:none;
  9295. }
  9296. #u38634 {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:828px;
  9300. top:231px;
  9301. width:9px;
  9302. height:9px;
  9303. display:flex;
  9304. -webkit-transform:rotate(135deg);
  9305. -moz-transform:rotate(135deg);
  9306. -ms-transform:rotate(135deg);
  9307. transform:rotate(135deg);
  9308. }
  9309. #u38634 .text {
  9310. position:absolute;
  9311. align-self:center;
  9312. padding:2px 2px 2px 2px;
  9313. box-sizing:border-box;
  9314. width:100%;
  9315. }
  9316. #u38634_text {
  9317. border-width:0px;
  9318. word-wrap:break-word;
  9319. text-transform:none;
  9320. visibility:hidden;
  9321. }
  9322. #u38635_div {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:0px;
  9326. top:0px;
  9327. width:60px;
  9328. height:30px;
  9329. background:inherit;
  9330. background-color:rgba(255, 255, 255, 1);
  9331. box-sizing:border-box;
  9332. border-width:1px;
  9333. border-style:solid;
  9334. border-color:rgba(215, 215, 215, 1);
  9335. border-radius:63px;
  9336. -moz-box-shadow:none;
  9337. -webkit-box-shadow:none;
  9338. box-shadow:none;
  9339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:14px;
  9343. color:#555555;
  9344. }
  9345. #u38635 {
  9346. border-width:0px;
  9347. position:absolute;
  9348. left:778px;
  9349. top:377px;
  9350. width:60px;
  9351. height:30px;
  9352. display:flex;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:14px;
  9357. color:#555555;
  9358. }
  9359. #u38635 .text {
  9360. position:absolute;
  9361. align-self:center;
  9362. padding:2px 2px 2px 2px;
  9363. box-sizing:border-box;
  9364. width:100%;
  9365. }
  9366. #u38635_text {
  9367. border-width:0px;
  9368. word-wrap:break-word;
  9369. text-transform:none;
  9370. }
  9371. #u38636 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:0px;
  9377. height:0px;
  9378. }
  9379. #u38637_img {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:355px;
  9385. height:200px;
  9386. }
  9387. #u38637 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:958px;
  9391. top:217px;
  9392. width:355px;
  9393. height:200px;
  9394. display:flex;
  9395. }
  9396. #u38637 .text {
  9397. position:absolute;
  9398. align-self:center;
  9399. padding:2px 2px 2px 2px;
  9400. box-sizing:border-box;
  9401. width:100%;
  9402. }
  9403. #u38637_text {
  9404. border-width:0px;
  9405. word-wrap:break-word;
  9406. text-transform:none;
  9407. visibility:hidden;
  9408. }
  9409. #u38638_div {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:183px;
  9415. height:30px;
  9416. background:inherit;
  9417. background-color:rgba(255, 255, 255, 0);
  9418. border:none;
  9419. border-left:0px;
  9420. border-top:0px;
  9421. border-right:0px;
  9422. border-radius:0px;
  9423. border-bottom-right-radius:0px;
  9424. border-bottom-left-radius:0px;
  9425. -moz-box-shadow:none;
  9426. -webkit-box-shadow:none;
  9427. box-shadow:none;
  9428. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9429. font-weight:500;
  9430. font-style:normal;
  9431. font-size:14px;
  9432. line-height:30px;
  9433. }
  9434. #u38638 {
  9435. border-width:0px;
  9436. position:absolute;
  9437. left:974px;
  9438. top:223px;
  9439. width:183px;
  9440. height:30px;
  9441. display:flex;
  9442. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9443. font-weight:500;
  9444. font-style:normal;
  9445. font-size:14px;
  9446. line-height:30px;
  9447. }
  9448. #u38638 .text {
  9449. position:absolute;
  9450. align-self:flex-start;
  9451. padding:0px 0px 0px 0px;
  9452. box-sizing:border-box;
  9453. width:100%;
  9454. }
  9455. #u38638_text {
  9456. border-width:0px;
  9457. white-space:nowrap;
  9458. text-transform:none;
  9459. }
  9460. #u38639_div {
  9461. border-width:0px;
  9462. position:absolute;
  9463. left:0px;
  9464. top:0px;
  9465. width:325px;
  9466. height:125px;
  9467. background:inherit;
  9468. background-color:rgba(255, 255, 255, 0);
  9469. border:none;
  9470. border-left:0px;
  9471. border-top:0px;
  9472. border-right:0px;
  9473. border-radius:0px;
  9474. border-bottom-right-radius:0px;
  9475. border-bottom-left-radius:0px;
  9476. -moz-box-shadow:none;
  9477. -webkit-box-shadow:none;
  9478. box-shadow:none;
  9479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:12px;
  9483. line-height:25px;
  9484. }
  9485. #u38639 {
  9486. border-width:0px;
  9487. position:absolute;
  9488. left:974px;
  9489. top:253px;
  9490. width:325px;
  9491. height:125px;
  9492. display:flex;
  9493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9494. font-weight:400;
  9495. font-style:normal;
  9496. font-size:12px;
  9497. line-height:25px;
  9498. }
  9499. #u38639 .text {
  9500. position:absolute;
  9501. align-self:flex-start;
  9502. padding:0px 0px 0px 0px;
  9503. box-sizing:border-box;
  9504. width:100%;
  9505. }
  9506. #u38639_text {
  9507. border-width:0px;
  9508. word-wrap:break-word;
  9509. text-transform:none;
  9510. }
  9511. #u38640_div {
  9512. border-width:0px;
  9513. position:absolute;
  9514. left:0px;
  9515. top:0px;
  9516. width:9px;
  9517. height:9px;
  9518. background:inherit;
  9519. background-color:rgba(255, 255, 255, 0);
  9520. box-sizing:border-box;
  9521. border-width:1px;
  9522. border-style:solid;
  9523. border-color:rgba(127, 127, 127, 1);
  9524. border-right:0px;
  9525. border-bottom:0px;
  9526. border-radius:0px;
  9527. border-top-right-radius:0px;
  9528. border-bottom-left-radius:0px;
  9529. -moz-box-shadow:none;
  9530. -webkit-box-shadow:none;
  9531. box-shadow:none;
  9532. }
  9533. #u38640 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:1289px;
  9537. top:231px;
  9538. width:9px;
  9539. height:9px;
  9540. display:flex;
  9541. -webkit-transform:rotate(135deg);
  9542. -moz-transform:rotate(135deg);
  9543. -ms-transform:rotate(135deg);
  9544. transform:rotate(135deg);
  9545. }
  9546. #u38640 .text {
  9547. position:absolute;
  9548. align-self:center;
  9549. padding:2px 2px 2px 2px;
  9550. box-sizing:border-box;
  9551. width:100%;
  9552. }
  9553. #u38640_text {
  9554. border-width:0px;
  9555. word-wrap:break-word;
  9556. text-transform:none;
  9557. visibility:hidden;
  9558. }
  9559. #u38641_div {
  9560. border-width:0px;
  9561. position:absolute;
  9562. left:0px;
  9563. top:0px;
  9564. width:60px;
  9565. height:30px;
  9566. background:inherit;
  9567. background-color:rgba(255, 255, 255, 1);
  9568. box-sizing:border-box;
  9569. border-width:1px;
  9570. border-style:solid;
  9571. border-color:rgba(215, 215, 215, 1);
  9572. border-radius:63px;
  9573. -moz-box-shadow:none;
  9574. -webkit-box-shadow:none;
  9575. box-shadow:none;
  9576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. font-size:14px;
  9580. color:#555555;
  9581. }
  9582. #u38641 {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:1239px;
  9586. top:377px;
  9587. width:60px;
  9588. height:30px;
  9589. display:flex;
  9590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9591. font-weight:400;
  9592. font-style:normal;
  9593. font-size:14px;
  9594. color:#555555;
  9595. }
  9596. #u38641 .text {
  9597. position:absolute;
  9598. align-self:center;
  9599. padding:2px 2px 2px 2px;
  9600. box-sizing:border-box;
  9601. width:100%;
  9602. }
  9603. #u38641_text {
  9604. border-width:0px;
  9605. word-wrap:break-word;
  9606. text-transform:none;
  9607. }
  9608. #u38642 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:0px;
  9614. height:0px;
  9615. }
  9616. #u38643_img {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:355px;
  9622. height:170px;
  9623. }
  9624. #u38643 {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:1414px;
  9628. top:217px;
  9629. width:355px;
  9630. height:170px;
  9631. display:flex;
  9632. }
  9633. #u38643 .text {
  9634. position:absolute;
  9635. align-self:center;
  9636. padding:2px 2px 2px 2px;
  9637. box-sizing:border-box;
  9638. width:100%;
  9639. }
  9640. #u38643_text {
  9641. border-width:0px;
  9642. word-wrap:break-word;
  9643. text-transform:none;
  9644. visibility:hidden;
  9645. }
  9646. #u38644_div {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:0px;
  9650. top:0px;
  9651. width:183px;
  9652. height:30px;
  9653. background:inherit;
  9654. background-color:rgba(255, 255, 255, 0);
  9655. border:none;
  9656. border-left:0px;
  9657. border-top:0px;
  9658. border-right:0px;
  9659. border-radius:0px;
  9660. border-bottom-right-radius:0px;
  9661. border-bottom-left-radius:0px;
  9662. -moz-box-shadow:none;
  9663. -webkit-box-shadow:none;
  9664. box-shadow:none;
  9665. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9666. font-weight:500;
  9667. font-style:normal;
  9668. font-size:14px;
  9669. line-height:30px;
  9670. }
  9671. #u38644 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:1430px;
  9675. top:223px;
  9676. width:183px;
  9677. height:30px;
  9678. display:flex;
  9679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9680. font-weight:500;
  9681. font-style:normal;
  9682. font-size:14px;
  9683. line-height:30px;
  9684. }
  9685. #u38644 .text {
  9686. position:absolute;
  9687. align-self:flex-start;
  9688. padding:0px 0px 0px 0px;
  9689. box-sizing:border-box;
  9690. width:100%;
  9691. }
  9692. #u38644_text {
  9693. border-width:0px;
  9694. white-space:nowrap;
  9695. text-transform:none;
  9696. }
  9697. #u38645_div {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:0px;
  9701. top:0px;
  9702. width:325px;
  9703. height:125px;
  9704. background:inherit;
  9705. background-color:rgba(255, 255, 255, 0);
  9706. border:none;
  9707. border-left:0px;
  9708. border-top:0px;
  9709. border-right:0px;
  9710. border-radius:0px;
  9711. border-bottom-right-radius:0px;
  9712. border-bottom-left-radius:0px;
  9713. -moz-box-shadow:none;
  9714. -webkit-box-shadow:none;
  9715. box-shadow:none;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. line-height:25px;
  9721. }
  9722. #u38645 {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:1430px;
  9726. top:253px;
  9727. width:325px;
  9728. height:125px;
  9729. display:flex;
  9730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9731. font-weight:400;
  9732. font-style:normal;
  9733. font-size:12px;
  9734. line-height:25px;
  9735. }
  9736. #u38645 .text {
  9737. position:absolute;
  9738. align-self:flex-start;
  9739. padding:0px 0px 0px 0px;
  9740. box-sizing:border-box;
  9741. width:100%;
  9742. }
  9743. #u38645_text {
  9744. border-width:0px;
  9745. word-wrap:break-word;
  9746. text-transform:none;
  9747. }
  9748. #u38646_div {
  9749. border-width:0px;
  9750. position:absolute;
  9751. left:0px;
  9752. top:0px;
  9753. width:9px;
  9754. height:9px;
  9755. background:inherit;
  9756. background-color:rgba(255, 255, 255, 0);
  9757. box-sizing:border-box;
  9758. border-width:1px;
  9759. border-style:solid;
  9760. border-color:rgba(127, 127, 127, 1);
  9761. border-right:0px;
  9762. border-bottom:0px;
  9763. border-radius:0px;
  9764. border-top-right-radius:0px;
  9765. border-bottom-left-radius:0px;
  9766. -moz-box-shadow:none;
  9767. -webkit-box-shadow:none;
  9768. box-shadow:none;
  9769. }
  9770. #u38646 {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:1745px;
  9774. top:231px;
  9775. width:9px;
  9776. height:9px;
  9777. display:flex;
  9778. -webkit-transform:rotate(135deg);
  9779. -moz-transform:rotate(135deg);
  9780. -ms-transform:rotate(135deg);
  9781. transform:rotate(135deg);
  9782. }
  9783. #u38646 .text {
  9784. position:absolute;
  9785. align-self:center;
  9786. padding:2px 2px 2px 2px;
  9787. box-sizing:border-box;
  9788. width:100%;
  9789. }
  9790. #u38646_text {
  9791. border-width:0px;
  9792. word-wrap:break-word;
  9793. text-transform:none;
  9794. visibility:hidden;
  9795. }
  9796. #u38647 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:0px;
  9800. top:0px;
  9801. width:0px;
  9802. height:0px;
  9803. }
  9804. #u38648_img {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:0px;
  9808. top:0px;
  9809. width:355px;
  9810. height:170px;
  9811. }
  9812. #u38648 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:1879px;
  9816. top:217px;
  9817. width:355px;
  9818. height:170px;
  9819. display:flex;
  9820. }
  9821. #u38648 .text {
  9822. position:absolute;
  9823. align-self:center;
  9824. padding:2px 2px 2px 2px;
  9825. box-sizing:border-box;
  9826. width:100%;
  9827. }
  9828. #u38648_text {
  9829. border-width:0px;
  9830. word-wrap:break-word;
  9831. text-transform:none;
  9832. visibility:hidden;
  9833. }
  9834. #u38649_div {
  9835. border-width:0px;
  9836. position:absolute;
  9837. left:0px;
  9838. top:0px;
  9839. width:183px;
  9840. height:30px;
  9841. background:inherit;
  9842. background-color:rgba(255, 255, 255, 0);
  9843. border:none;
  9844. border-left:0px;
  9845. border-top:0px;
  9846. border-right:0px;
  9847. border-radius:0px;
  9848. border-bottom-right-radius:0px;
  9849. border-bottom-left-radius:0px;
  9850. -moz-box-shadow:none;
  9851. -webkit-box-shadow:none;
  9852. box-shadow:none;
  9853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9854. font-weight:500;
  9855. font-style:normal;
  9856. font-size:14px;
  9857. line-height:30px;
  9858. }
  9859. #u38649 {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:1895px;
  9863. top:223px;
  9864. width:183px;
  9865. height:30px;
  9866. display:flex;
  9867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9868. font-weight:500;
  9869. font-style:normal;
  9870. font-size:14px;
  9871. line-height:30px;
  9872. }
  9873. #u38649 .text {
  9874. position:absolute;
  9875. align-self:flex-start;
  9876. padding:0px 0px 0px 0px;
  9877. box-sizing:border-box;
  9878. width:100%;
  9879. }
  9880. #u38649_text {
  9881. border-width:0px;
  9882. white-space:nowrap;
  9883. text-transform:none;
  9884. }
  9885. #u38650_div {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:325px;
  9891. height:125px;
  9892. background:inherit;
  9893. background-color:rgba(255, 255, 255, 0);
  9894. border:none;
  9895. border-left:0px;
  9896. border-top:0px;
  9897. border-right:0px;
  9898. border-radius:0px;
  9899. border-bottom-right-radius:0px;
  9900. border-bottom-left-radius:0px;
  9901. -moz-box-shadow:none;
  9902. -webkit-box-shadow:none;
  9903. box-shadow:none;
  9904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9905. font-weight:400;
  9906. font-style:normal;
  9907. font-size:12px;
  9908. line-height:25px;
  9909. }
  9910. #u38650 {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:1895px;
  9914. top:253px;
  9915. width:325px;
  9916. height:125px;
  9917. display:flex;
  9918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9919. font-weight:400;
  9920. font-style:normal;
  9921. font-size:12px;
  9922. line-height:25px;
  9923. }
  9924. #u38650 .text {
  9925. position:absolute;
  9926. align-self:flex-start;
  9927. padding:0px 0px 0px 0px;
  9928. box-sizing:border-box;
  9929. width:100%;
  9930. }
  9931. #u38650_text {
  9932. border-width:0px;
  9933. word-wrap:break-word;
  9934. text-transform:none;
  9935. }
  9936. #u38651_div {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:0px;
  9940. top:0px;
  9941. width:9px;
  9942. height:9px;
  9943. background:inherit;
  9944. background-color:rgba(255, 255, 255, 0);
  9945. box-sizing:border-box;
  9946. border-width:1px;
  9947. border-style:solid;
  9948. border-color:rgba(127, 127, 127, 1);
  9949. border-right:0px;
  9950. border-bottom:0px;
  9951. border-radius:0px;
  9952. border-top-right-radius:0px;
  9953. border-bottom-left-radius:0px;
  9954. -moz-box-shadow:none;
  9955. -webkit-box-shadow:none;
  9956. box-shadow:none;
  9957. }
  9958. #u38651 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:2210px;
  9962. top:231px;
  9963. width:9px;
  9964. height:9px;
  9965. display:flex;
  9966. -webkit-transform:rotate(135deg);
  9967. -moz-transform:rotate(135deg);
  9968. -ms-transform:rotate(135deg);
  9969. transform:rotate(135deg);
  9970. }
  9971. #u38651 .text {
  9972. position:absolute;
  9973. align-self:center;
  9974. padding:2px 2px 2px 2px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u38651_text {
  9979. border-width:0px;
  9980. word-wrap:break-word;
  9981. text-transform:none;
  9982. visibility:hidden;
  9983. }