styles.css 156 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2249px;
  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. #u38651_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u38651 {
  28. border-width:0px;
  29. position:absolute;
  30. left:-463px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u38651 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u38651_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u38652_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u38652 {
  73. border-width:0px;
  74. position:absolute;
  75. left:-434px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u38652 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u38652_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u38653 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u38654_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u38654 {
  121. border-width:0px;
  122. position:absolute;
  123. left:-154px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u38654 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u38654_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u38655 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u38656_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u38656 {
  159. border-width:0px;
  160. position:absolute;
  161. left:-91px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u38656 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u38656_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u38657_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u38657 {
  189. border-width:0px;
  190. position:absolute;
  191. left:-85px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u38657 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u38657_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u38658 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u38659_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u38659 {
  227. border-width:0px;
  228. position:absolute;
  229. left:-140px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u38659 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u38659_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u38660_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u38660 {
  257. border-width:0px;
  258. position:absolute;
  259. left:-124px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u38660 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u38660_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u38661_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u38661 {
  287. border-width:0px;
  288. position:absolute;
  289. left:-133px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u38661 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u38661_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u38662_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u38662 {
  317. border-width:0px;
  318. position:absolute;
  319. left:-116px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u38662 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u38662_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u38663_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u38663 {
  351. border-width:0px;
  352. position:absolute;
  353. left:-434px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u38663 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u38663_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u38664_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u38664 {
  393. border-width:0px;
  394. position:absolute;
  395. left:-434px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u38664 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u38664_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u38665 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u38666_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u38666 {
  431. border-width:0px;
  432. position:absolute;
  433. left:-394px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u38666 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u38666_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u38667_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u38667 {
  472. border-width:0px;
  473. position:absolute;
  474. left:-394px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u38667 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u38667_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u38668 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u38669_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u38669 {
  513. border-width:0px;
  514. position:absolute;
  515. left:-124px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u38669 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u38669_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u38670_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u38670 {
  554. border-width:0px;
  555. position:absolute;
  556. left:-124px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u38670 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u38670_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u38671_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u38671 {
  594. border-width:0px;
  595. position:absolute;
  596. left:-434px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u38671 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u38671_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u38672 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u38673_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u38673 {
  632. border-width:0px;
  633. position:absolute;
  634. left:-212px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u38673 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u38673_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u38674_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u38674 {
  673. border-width:0px;
  674. position:absolute;
  675. left:-218px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u38674 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u38674_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u38675 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u38676_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u38676 {
  714. border-width:0px;
  715. position:absolute;
  716. left:-306px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u38676 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u38676_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u38677_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u38677 {
  755. border-width:0px;
  756. position:absolute;
  757. left:-312px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u38677 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u38677_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u38678_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u38678 {
  798. border-width:0px;
  799. position:absolute;
  800. left:-434px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u38678 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u38678_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u38679_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:44px;
  826. }
  827. #u38679 {
  828. border-width:0px;
  829. position:absolute;
  830. left:-434px;
  831. top:24px;
  832. width:375px;
  833. height:44px;
  834. display:flex;
  835. }
  836. #u38679 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u38679_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u38680 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u38681_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:88px;
  863. height:32px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 1);
  866. box-sizing:border-box;
  867. border-width:1px;
  868. border-style:solid;
  869. border-color:rgba(242, 242, 242, 1);
  870. border-radius:33px;
  871. -moz-box-shadow:none;
  872. -webkit-box-shadow:none;
  873. box-shadow:none;
  874. }
  875. #u38681 {
  876. border-width:0px;
  877. position:absolute;
  878. left:-154px;
  879. top:71px;
  880. width:88px;
  881. height:32px;
  882. display:flex;
  883. }
  884. #u38681 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u38681_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. visibility:hidden;
  896. }
  897. #u38682 {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:0px;
  903. height:0px;
  904. }
  905. #u38683_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:18px;
  911. height:18px;
  912. }
  913. #u38683 {
  914. border-width:0px;
  915. position:absolute;
  916. left:-91px;
  917. top:78px;
  918. width:18px;
  919. height:18px;
  920. display:flex;
  921. }
  922. #u38683 .text {
  923. position:absolute;
  924. align-self:center;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u38683_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. visibility:hidden;
  934. }
  935. #u38684_img {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:6px;
  941. height:6px;
  942. }
  943. #u38684 {
  944. border-width:0px;
  945. position:absolute;
  946. left:-85px;
  947. top:84px;
  948. width:6px;
  949. height:6px;
  950. display:flex;
  951. }
  952. #u38684 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:2px 2px 2px 2px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u38684_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. visibility:hidden;
  964. }
  965. #u38685 {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. }
  973. #u38686_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:5px;
  979. height:5px;
  980. }
  981. #u38686 {
  982. border-width:0px;
  983. position:absolute;
  984. left:-140px;
  985. top:85px;
  986. width:5px;
  987. height:5px;
  988. display:flex;
  989. }
  990. #u38686 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u38686_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u38687_img {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:5px;
  1009. height:5px;
  1010. }
  1011. #u38687 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:-124px;
  1015. top:85px;
  1016. width:5px;
  1017. height:5px;
  1018. display:flex;
  1019. }
  1020. #u38687 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u38687_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u38688_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:7px;
  1039. height:7px;
  1040. }
  1041. #u38688 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:-133px;
  1045. top:84px;
  1046. width:7px;
  1047. height:7px;
  1048. display:flex;
  1049. }
  1050. #u38688 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u38688_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u38689_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:19px;
  1069. height:2px;
  1070. }
  1071. #u38689 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:-116px;
  1075. top:87px;
  1076. width:18px;
  1077. height:1px;
  1078. display:flex;
  1079. -webkit-transform:rotate(90deg);
  1080. -moz-transform:rotate(90deg);
  1081. -ms-transform:rotate(90deg);
  1082. transform:rotate(90deg);
  1083. }
  1084. #u38689 .text {
  1085. position:absolute;
  1086. align-self:center;
  1087. padding:2px 2px 2px 2px;
  1088. box-sizing:border-box;
  1089. width:100%;
  1090. }
  1091. #u38689_text {
  1092. border-width:0px;
  1093. word-wrap:break-word;
  1094. text-transform:none;
  1095. visibility:hidden;
  1096. }
  1097. #u38690_div {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:65px;
  1103. height:22px;
  1104. background:inherit;
  1105. background-color:rgba(255, 255, 255, 0);
  1106. border:none;
  1107. border-radius:0px;
  1108. -moz-box-shadow:none;
  1109. -webkit-box-shadow:none;
  1110. box-shadow:none;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:16px;
  1115. color:#000000;
  1116. }
  1117. #u38690 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:-289px;
  1121. top:78px;
  1122. width:65px;
  1123. height:22px;
  1124. display:flex;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:16px;
  1129. color:#000000;
  1130. }
  1131. #u38690 .text {
  1132. position:absolute;
  1133. align-self:flex-start;
  1134. padding:0px 0px 0px 0px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u38690_text {
  1139. border-width:0px;
  1140. white-space:nowrap;
  1141. text-transform:none;
  1142. }
  1143. #u38691_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:12px;
  1149. height:12px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. box-sizing:border-box;
  1153. border-width:2px;
  1154. border-style:solid;
  1155. border-color:rgba(51, 51, 51, 1);
  1156. border-right:0px;
  1157. border-bottom:0px;
  1158. border-radius:0px;
  1159. border-top-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. }
  1165. #u38691 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:-417px;
  1169. top:81px;
  1170. width:12px;
  1171. height:12px;
  1172. display:flex;
  1173. -webkit-transform:rotate(315deg);
  1174. -moz-transform:rotate(315deg);
  1175. -ms-transform:rotate(315deg);
  1176. transform:rotate(315deg);
  1177. }
  1178. #u38691 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 2px 2px 2px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u38691_text {
  1186. border-width:0px;
  1187. word-wrap:break-word;
  1188. text-transform:none;
  1189. visibility:hidden;
  1190. }
  1191. #u38692_img {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:23px;
  1197. height:23px;
  1198. }
  1199. #u38692 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:-390px;
  1203. top:76px;
  1204. width:23px;
  1205. height:23px;
  1206. display:flex;
  1207. }
  1208. #u38692 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u38692_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u38693 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:0px;
  1227. height:0px;
  1228. }
  1229. #u38694_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:375px;
  1235. height:50px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 1);
  1238. box-sizing:border-box;
  1239. border-width:1px;
  1240. border-style:solid;
  1241. border-color:rgba(242, 242, 242, 1);
  1242. border-radius:26px;
  1243. border-top-left-radius:0px;
  1244. border-top-right-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. }
  1249. #u38694 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:-434px;
  1253. top:791px;
  1254. width:375px;
  1255. height:50px;
  1256. display:flex;
  1257. }
  1258. #u38694 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u38694_text {
  1266. border-width:0px;
  1267. word-wrap:break-word;
  1268. text-transform:none;
  1269. visibility:hidden;
  1270. }
  1271. #u38695 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u38696_img {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:24px;
  1285. height:24px;
  1286. }
  1287. #u38696 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:-144px;
  1291. top:795px;
  1292. width:24px;
  1293. height:24px;
  1294. display:flex;
  1295. font-size:8px;
  1296. }
  1297. #u38696 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u38696_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. }
  1309. #u38697_div {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:25px;
  1315. height:17px;
  1316. background:inherit;
  1317. background-color:rgba(255, 255, 255, 0);
  1318. border:none;
  1319. border-radius:0px;
  1320. -moz-box-shadow:none;
  1321. -webkit-box-shadow:none;
  1322. box-shadow:none;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:12px;
  1327. }
  1328. #u38697 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:-145px;
  1332. top:820px;
  1333. width:25px;
  1334. height:17px;
  1335. display:flex;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:12px;
  1340. }
  1341. #u38697 .text {
  1342. position:absolute;
  1343. align-self:flex-start;
  1344. padding:0px 0px 0px 0px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u38697_text {
  1349. border-width:0px;
  1350. white-space:nowrap;
  1351. text-transform:none;
  1352. }
  1353. #u38698 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:0px;
  1359. height:0px;
  1360. }
  1361. #u38699_div {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:25px;
  1367. height:17px;
  1368. background:inherit;
  1369. background-color:rgba(255, 255, 255, 0);
  1370. border:none;
  1371. border-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:12px;
  1379. }
  1380. #u38699 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:-374px;
  1384. top:820px;
  1385. width:25px;
  1386. height:17px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. }
  1393. #u38699 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u38699_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u38700_img {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:24px;
  1411. height:24px;
  1412. }
  1413. #u38700 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:-374px;
  1417. top:795px;
  1418. width:24px;
  1419. height:24px;
  1420. display:flex;
  1421. font-size:8px;
  1422. color:#FFFFFF;
  1423. }
  1424. #u38700 .text {
  1425. position:absolute;
  1426. align-self:center;
  1427. padding:2px 2px 2px 2px;
  1428. box-sizing:border-box;
  1429. width:100%;
  1430. }
  1431. #u38700_text {
  1432. border-width:0px;
  1433. word-wrap:break-word;
  1434. text-transform:none;
  1435. }
  1436. #u38701_img {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:17px;
  1442. height:30px;
  1443. }
  1444. #u38701 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:-390px;
  1448. top:214px;
  1449. width:17px;
  1450. height:30px;
  1451. display:flex;
  1452. }
  1453. #u38701 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 2px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u38701_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. visibility:hidden;
  1465. }
  1466. #u38702_img {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:17px;
  1472. height:30px;
  1473. }
  1474. #u38702 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:-152px;
  1478. top:199px;
  1479. width:17px;
  1480. height:30px;
  1481. display:flex;
  1482. }
  1483. #u38702 .text {
  1484. position:absolute;
  1485. align-self:center;
  1486. padding:2px 2px 2px 2px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u38702_text {
  1491. border-width:0px;
  1492. word-wrap:break-word;
  1493. text-transform:none;
  1494. visibility:hidden;
  1495. }
  1496. #u38703_img {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:17px;
  1502. height:30px;
  1503. }
  1504. #u38703 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:-121px;
  1508. top:481px;
  1509. width:17px;
  1510. height:30px;
  1511. display:flex;
  1512. }
  1513. #u38703 .text {
  1514. position:absolute;
  1515. align-self:center;
  1516. padding:2px 2px 2px 2px;
  1517. box-sizing:border-box;
  1518. width:100%;
  1519. }
  1520. #u38703_text {
  1521. border-width:0px;
  1522. word-wrap:break-word;
  1523. text-transform:none;
  1524. visibility:hidden;
  1525. }
  1526. #u38704_img {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:17px;
  1532. height:30px;
  1533. }
  1534. #u38704 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:-262px;
  1538. top:403px;
  1539. width:17px;
  1540. height:30px;
  1541. display:flex;
  1542. }
  1543. #u38704 .text {
  1544. position:absolute;
  1545. align-self:center;
  1546. padding:2px 2px 2px 2px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u38704_text {
  1551. border-width:0px;
  1552. word-wrap:break-word;
  1553. text-transform:none;
  1554. visibility:hidden;
  1555. }
  1556. #u38705_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:17px;
  1562. height:30px;
  1563. }
  1564. #u38705 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:-302px;
  1568. top:426px;
  1569. width:17px;
  1570. height:30px;
  1571. display:flex;
  1572. }
  1573. #u38705 .text {
  1574. position:absolute;
  1575. align-self:center;
  1576. padding:2px 2px 2px 2px;
  1577. box-sizing:border-box;
  1578. width:100%;
  1579. }
  1580. #u38705_text {
  1581. border-width:0px;
  1582. word-wrap:break-word;
  1583. text-transform:none;
  1584. visibility:hidden;
  1585. }
  1586. #u38706_img {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:17px;
  1592. height:30px;
  1593. }
  1594. #u38706 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:-339px;
  1598. top:579px;
  1599. width:17px;
  1600. height:30px;
  1601. display:flex;
  1602. }
  1603. #u38706 .text {
  1604. position:absolute;
  1605. align-self:center;
  1606. padding:2px 2px 2px 2px;
  1607. box-sizing:border-box;
  1608. width:100%;
  1609. }
  1610. #u38706_text {
  1611. border-width:0px;
  1612. word-wrap:break-word;
  1613. text-transform:none;
  1614. visibility:hidden;
  1615. }
  1616. #u38707_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:17px;
  1622. height:30px;
  1623. }
  1624. #u38707 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:-279px;
  1628. top:649px;
  1629. width:17px;
  1630. height:30px;
  1631. display:flex;
  1632. }
  1633. #u38707 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u38707_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u38708_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:49px;
  1652. height:17px;
  1653. background:inherit;
  1654. background-color:rgba(51, 51, 51, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u38708 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:-373px;
  1670. top:199px;
  1671. width:49px;
  1672. height:17px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:12px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u38708 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u38708_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u38709 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:0px;
  1698. height:0px;
  1699. }
  1700. #u38710_div {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:375px;
  1706. height:50px;
  1707. background:inherit;
  1708. background-color:rgba(255, 255, 255, 1);
  1709. border:none;
  1710. border-radius:0px;
  1711. -moz-box-shadow:none;
  1712. -webkit-box-shadow:none;
  1713. box-shadow:none;
  1714. }
  1715. #u38710 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:-434px;
  1719. top:106px;
  1720. width:375px;
  1721. height:50px;
  1722. display:flex;
  1723. }
  1724. #u38710 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u38710_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u38711 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u38712 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:0px;
  1751. height:0px;
  1752. }
  1753. #u38713_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:135px;
  1759. height:30px;
  1760. background:inherit;
  1761. background-color:rgba(242, 242, 242, 1);
  1762. border:none;
  1763. border-radius:20px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. }
  1768. #u38713 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:-421px;
  1772. top:116px;
  1773. width:135px;
  1774. height:30px;
  1775. display:flex;
  1776. }
  1777. #u38713 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 2px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u38713_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. visibility:hidden;
  1789. }
  1790. #u38714_input {
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:122px;
  1795. height:22px;
  1796. padding:2px 2px 2px 2px;
  1797. font-family:'ArialMT', 'Arial', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. letter-spacing:normal;
  1802. color:#7F7F7F;
  1803. vertical-align:none;
  1804. text-align:left;
  1805. text-transform:none;
  1806. background-color:transparent;
  1807. border-color:transparent;
  1808. }
  1809. #u38714_input.disabled {
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:122px;
  1814. height:22px;
  1815. padding:2px 2px 2px 2px;
  1816. font-family:'ArialMT', 'Arial', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. letter-spacing:normal;
  1821. color:#7F7F7F;
  1822. vertical-align:none;
  1823. text-align:left;
  1824. text-transform:none;
  1825. background-color:transparent;
  1826. border-color:transparent;
  1827. }
  1828. #u38714_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:122px;
  1834. height:22px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 0);
  1837. border:none;
  1838. border-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. font-size:12px;
  1843. color:#7F7F7F;
  1844. }
  1845. #u38714 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:-414px;
  1849. top:120px;
  1850. width:122px;
  1851. height:22px;
  1852. display:flex;
  1853. font-size:12px;
  1854. color:#7F7F7F;
  1855. }
  1856. #u38714 .text {
  1857. position:absolute;
  1858. align-self:flex-start;
  1859. padding:2px 2px 2px 2px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u38714_div.disabled {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:122px;
  1869. height:22px;
  1870. background:inherit;
  1871. background-color:rgba(240, 240, 240, 1);
  1872. border:none;
  1873. border-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-size:12px;
  1878. color:#7F7F7F;
  1879. }
  1880. #u38714.disabled {
  1881. }
  1882. .u38714_input_option {
  1883. font-size:12px;
  1884. }
  1885. #u38715_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:64px;
  1891. height:30px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border:none;
  1895. border-left:0px;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-radius:0px;
  1899. border-bottom-right-radius:0px;
  1900. border-bottom-left-radius:0px;
  1901. -moz-box-shadow:none;
  1902. -webkit-box-shadow:none;
  1903. box-shadow:none;
  1904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:12px;
  1908. color:#1890FF;
  1909. line-height:30px;
  1910. }
  1911. #u38715 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:-131px;
  1915. top:116px;
  1916. width:64px;
  1917. height:30px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#1890FF;
  1924. line-height:30px;
  1925. }
  1926. #u38715 .text {
  1927. position:absolute;
  1928. align-self:flex-start;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u38715_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u38716 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:0px;
  1944. height:0px;
  1945. }
  1946. #u38717_div {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:135px;
  1952. height:30px;
  1953. background:inherit;
  1954. background-color:rgba(242, 242, 242, 1);
  1955. border:none;
  1956. border-radius:20px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. }
  1961. #u38717 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:-276px;
  1965. top:116px;
  1966. width:135px;
  1967. height:30px;
  1968. display:flex;
  1969. }
  1970. #u38717 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:2px 2px 2px 2px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u38717_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. visibility:hidden;
  1982. }
  1983. #u38718_input {
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:122px;
  1988. height:22px;
  1989. padding:2px 2px 2px 2px;
  1990. font-family:'ArialMT', 'Arial', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. letter-spacing:normal;
  1995. color:#7F7F7F;
  1996. vertical-align:none;
  1997. text-align:left;
  1998. text-transform:none;
  1999. background-color:transparent;
  2000. border-color:transparent;
  2001. }
  2002. #u38718_input.disabled {
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:122px;
  2007. height:22px;
  2008. padding:2px 2px 2px 2px;
  2009. font-family:'ArialMT', 'Arial', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. letter-spacing:normal;
  2014. color:#7F7F7F;
  2015. vertical-align:none;
  2016. text-align:left;
  2017. text-transform:none;
  2018. background-color:transparent;
  2019. border-color:transparent;
  2020. }
  2021. #u38718_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:122px;
  2027. height:22px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 0);
  2030. border:none;
  2031. border-radius:0px;
  2032. -moz-box-shadow:none;
  2033. -webkit-box-shadow:none;
  2034. box-shadow:none;
  2035. font-size:12px;
  2036. color:#7F7F7F;
  2037. }
  2038. #u38718 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:-269px;
  2042. top:120px;
  2043. width:122px;
  2044. height:22px;
  2045. display:flex;
  2046. font-size:12px;
  2047. color:#7F7F7F;
  2048. }
  2049. #u38718 .text {
  2050. position:absolute;
  2051. align-self:flex-start;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u38718_div.disabled {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:122px;
  2062. height:22px;
  2063. background:inherit;
  2064. background-color:rgba(240, 240, 240, 1);
  2065. border:none;
  2066. border-radius:0px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. font-size:12px;
  2071. color:#7F7F7F;
  2072. }
  2073. #u38718.disabled {
  2074. }
  2075. .u38718_input_option {
  2076. font-size:12px;
  2077. }
  2078. #u38720_img {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:433px;
  2084. height:865px;
  2085. }
  2086. #u38720 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:433px;
  2092. height:865px;
  2093. display:flex;
  2094. }
  2095. #u38720 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 2px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u38720_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. visibility:hidden;
  2107. }
  2108. #u38721_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:375px;
  2114. height:40px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 255, 1);
  2117. box-sizing:border-box;
  2118. border-width:1px;
  2119. border-style:solid;
  2120. border-color:rgba(215, 215, 215, 1);
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. }
  2131. #u38721 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:29px;
  2135. top:67px;
  2136. width:375px;
  2137. height:40px;
  2138. display:flex;
  2139. }
  2140. #u38721 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u38721_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u38722 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u38723_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:88px;
  2167. height:32px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 1);
  2170. box-sizing:border-box;
  2171. border-width:1px;
  2172. border-style:solid;
  2173. border-color:rgba(242, 242, 242, 1);
  2174. border-radius:33px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. }
  2179. #u38723 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:309px;
  2183. top:71px;
  2184. width:88px;
  2185. height:32px;
  2186. display:flex;
  2187. }
  2188. #u38723 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 2px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u38723_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. visibility:hidden;
  2200. }
  2201. #u38724 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:0px;
  2207. height:0px;
  2208. }
  2209. #u38725_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:18px;
  2215. height:18px;
  2216. }
  2217. #u38725 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:372px;
  2221. top:78px;
  2222. width:18px;
  2223. height:18px;
  2224. display:flex;
  2225. }
  2226. #u38725 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 2px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u38725_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u38726_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:6px;
  2245. height:6px;
  2246. }
  2247. #u38726 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:378px;
  2251. top:84px;
  2252. width:6px;
  2253. height:6px;
  2254. display:flex;
  2255. }
  2256. #u38726 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 2px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u38726_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. visibility:hidden;
  2268. }
  2269. #u38727 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:0px;
  2275. height:0px;
  2276. }
  2277. #u38728_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:5px;
  2283. height:5px;
  2284. }
  2285. #u38728 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:323px;
  2289. top:85px;
  2290. width:5px;
  2291. height:5px;
  2292. display:flex;
  2293. }
  2294. #u38728 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 2px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u38728_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u38729_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:5px;
  2313. height:5px;
  2314. }
  2315. #u38729 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:339px;
  2319. top:85px;
  2320. width:5px;
  2321. height:5px;
  2322. display:flex;
  2323. }
  2324. #u38729 .text {
  2325. position:absolute;
  2326. align-self:center;
  2327. padding:2px 2px 2px 2px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u38729_text {
  2332. border-width:0px;
  2333. word-wrap:break-word;
  2334. text-transform:none;
  2335. visibility:hidden;
  2336. }
  2337. #u38730_img {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:7px;
  2343. height:7px;
  2344. }
  2345. #u38730 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:330px;
  2349. top:84px;
  2350. width:7px;
  2351. height:7px;
  2352. display:flex;
  2353. }
  2354. #u38730 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u38730_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u38731_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:19px;
  2373. height:2px;
  2374. }
  2375. #u38731 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:347px;
  2379. top:87px;
  2380. width:18px;
  2381. height:1px;
  2382. display:flex;
  2383. -webkit-transform:rotate(90deg);
  2384. -moz-transform:rotate(90deg);
  2385. -ms-transform:rotate(90deg);
  2386. transform:rotate(90deg);
  2387. }
  2388. #u38731 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u38731_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u38732_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:375px;
  2407. height:44px;
  2408. }
  2409. #u38732 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:29px;
  2413. top:24px;
  2414. width:375px;
  2415. height:44px;
  2416. display:flex;
  2417. }
  2418. #u38732 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 2px 2px 2px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u38732_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u38733_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:375px;
  2437. height:50px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 1);
  2440. box-sizing:border-box;
  2441. border-width:1px;
  2442. border-style:solid;
  2443. border-color:rgba(242, 242, 242, 1);
  2444. border-radius:26px;
  2445. border-top-left-radius:0px;
  2446. border-top-right-radius:0px;
  2447. -moz-box-shadow:none;
  2448. -webkit-box-shadow:none;
  2449. box-shadow:none;
  2450. }
  2451. #u38733 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:29px;
  2455. top:788px;
  2456. width:375px;
  2457. height:50px;
  2458. display:flex;
  2459. }
  2460. #u38733 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u38733_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u38734 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:0px;
  2479. height:0px;
  2480. }
  2481. #u38735_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:24px;
  2487. height:24px;
  2488. }
  2489. #u38735 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:69px;
  2493. top:792px;
  2494. width:24px;
  2495. height:24px;
  2496. display:flex;
  2497. font-size:8px;
  2498. }
  2499. #u38735 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u38735_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. }
  2511. #u38736_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:25px;
  2517. height:17px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 0);
  2520. border:none;
  2521. border-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. }
  2530. #u38736 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:69px;
  2534. top:817px;
  2535. width:25px;
  2536. height:17px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. }
  2543. #u38736 .text {
  2544. position:absolute;
  2545. align-self:flex-start;
  2546. padding:0px 0px 0px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u38736_text {
  2551. border-width:0px;
  2552. white-space:nowrap;
  2553. text-transform:none;
  2554. }
  2555. #u38737 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:0px;
  2561. height:0px;
  2562. }
  2563. #u38738_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:24px;
  2569. height:24px;
  2570. }
  2571. #u38738 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:339px;
  2575. top:794px;
  2576. width:24px;
  2577. height:24px;
  2578. display:flex;
  2579. font-size:8px;
  2580. }
  2581. #u38738 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u38738_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. }
  2593. #u38739_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:25px;
  2599. height:17px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-radius:0px;
  2604. -moz-box-shadow:none;
  2605. -webkit-box-shadow:none;
  2606. box-shadow:none;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:12px;
  2611. }
  2612. #u38739 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:339px;
  2616. top:819px;
  2617. width:25px;
  2618. height:17px;
  2619. display:flex;
  2620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:12px;
  2624. }
  2625. #u38739 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u38739_text {
  2633. border-width:0px;
  2634. white-space:nowrap;
  2635. text-transform:none;
  2636. }
  2637. #u38740_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:375px;
  2643. height:681px;
  2644. background:inherit;
  2645. background-color:rgba(242, 242, 242, 0.462745098039216);
  2646. border:none;
  2647. border-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. }
  2652. #u38740 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:29px;
  2656. top:107px;
  2657. width:375px;
  2658. height:681px;
  2659. display:flex;
  2660. }
  2661. #u38740 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 2px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u38740_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u38741 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:0px;
  2680. height:0px;
  2681. }
  2682. #u38742_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:24px;
  2688. height:24px;
  2689. }
  2690. #u38742 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:251px;
  2694. top:792px;
  2695. width:24px;
  2696. height:24px;
  2697. display:flex;
  2698. font-size:8px;
  2699. }
  2700. #u38742 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 2px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u38742_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. }
  2712. #u38743_div {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:37px;
  2718. height:17px;
  2719. background:inherit;
  2720. background-color:rgba(255, 255, 255, 0);
  2721. border:none;
  2722. border-radius:0px;
  2723. -moz-box-shadow:none;
  2724. -webkit-box-shadow:none;
  2725. box-shadow:none;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:12px;
  2730. }
  2731. #u38743 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:245px;
  2735. top:817px;
  2736. width:37px;
  2737. height:17px;
  2738. display:flex;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. }
  2744. #u38743 .text {
  2745. position:absolute;
  2746. align-self:flex-start;
  2747. padding:0px 0px 0px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u38743_text {
  2752. border-width:0px;
  2753. white-space:nowrap;
  2754. text-transform:none;
  2755. }
  2756. #u38744 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:0px;
  2762. height:0px;
  2763. }
  2764. #u38745_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:24px;
  2770. height:24px;
  2771. }
  2772. #u38745 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:157px;
  2776. top:792px;
  2777. width:24px;
  2778. height:24px;
  2779. display:flex;
  2780. font-size:8px;
  2781. }
  2782. #u38745 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 2px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u38745_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. }
  2794. #u38746_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:37px;
  2800. height:17px;
  2801. background:inherit;
  2802. background-color:rgba(255, 255, 255, 0);
  2803. border:none;
  2804. border-radius:0px;
  2805. -moz-box-shadow:none;
  2806. -webkit-box-shadow:none;
  2807. box-shadow:none;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:12px;
  2812. }
  2813. #u38746 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:151px;
  2817. top:817px;
  2818. width:37px;
  2819. height:17px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. }
  2826. #u38746 .text {
  2827. position:absolute;
  2828. align-self:flex-start;
  2829. padding:0px 0px 0px 0px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u38746_text {
  2834. border-width:0px;
  2835. white-space:nowrap;
  2836. text-transform:none;
  2837. }
  2838. #u38747_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:375px;
  2844. height:735px;
  2845. background:inherit;
  2846. background-color:rgba(242, 242, 242, 0.996078431372549);
  2847. border:none;
  2848. border-top:0px;
  2849. border-radius:35px;
  2850. border-top-left-radius:0px;
  2851. border-top-right-radius:0px;
  2852. -moz-box-shadow:none;
  2853. -webkit-box-shadow:none;
  2854. box-shadow:none;
  2855. }
  2856. #u38747 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:29px;
  2860. top:106px;
  2861. width:375px;
  2862. height:735px;
  2863. display:flex;
  2864. }
  2865. #u38747 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u38747_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u38748_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:375px;
  2884. height:44px;
  2885. }
  2886. #u38748 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:29px;
  2890. top:24px;
  2891. width:375px;
  2892. height:44px;
  2893. display:flex;
  2894. }
  2895. #u38748 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 2px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u38748_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u38749 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:0px;
  2914. height:0px;
  2915. }
  2916. #u38750_div {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:88px;
  2922. height:32px;
  2923. background:inherit;
  2924. background-color:rgba(255, 255, 255, 1);
  2925. box-sizing:border-box;
  2926. border-width:1px;
  2927. border-style:solid;
  2928. border-color:rgba(242, 242, 242, 1);
  2929. border-radius:33px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. }
  2934. #u38750 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:309px;
  2938. top:71px;
  2939. width:88px;
  2940. height:32px;
  2941. display:flex;
  2942. }
  2943. #u38750 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 2px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u38750_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u38751 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:0px;
  2962. height:0px;
  2963. }
  2964. #u38752_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:18px;
  2970. height:18px;
  2971. }
  2972. #u38752 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:372px;
  2976. top:78px;
  2977. width:18px;
  2978. height:18px;
  2979. display:flex;
  2980. }
  2981. #u38752 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u38752_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. visibility:hidden;
  2993. }
  2994. #u38753_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:6px;
  3000. height:6px;
  3001. }
  3002. #u38753 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:378px;
  3006. top:84px;
  3007. width:6px;
  3008. height:6px;
  3009. display:flex;
  3010. }
  3011. #u38753 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u38753_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u38754 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:0px;
  3030. height:0px;
  3031. }
  3032. #u38755_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:5px;
  3038. height:5px;
  3039. }
  3040. #u38755 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:323px;
  3044. top:85px;
  3045. width:5px;
  3046. height:5px;
  3047. display:flex;
  3048. }
  3049. #u38755 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u38755_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u38756_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:5px;
  3068. height:5px;
  3069. }
  3070. #u38756 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:339px;
  3074. top:85px;
  3075. width:5px;
  3076. height:5px;
  3077. display:flex;
  3078. }
  3079. #u38756 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u38756_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u38757_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:7px;
  3098. height:7px;
  3099. }
  3100. #u38757 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:330px;
  3104. top:84px;
  3105. width:7px;
  3106. height:7px;
  3107. display:flex;
  3108. }
  3109. #u38757 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u38757_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u38758_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:19px;
  3128. height:2px;
  3129. }
  3130. #u38758 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:347px;
  3134. top:87px;
  3135. width:18px;
  3136. height:1px;
  3137. display:flex;
  3138. -webkit-transform:rotate(90deg);
  3139. -moz-transform:rotate(90deg);
  3140. -ms-transform:rotate(90deg);
  3141. transform:rotate(90deg);
  3142. }
  3143. #u38758 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u38758_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u38759_div {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:65px;
  3162. height:22px;
  3163. background:inherit;
  3164. background-color:rgba(255, 255, 255, 0);
  3165. border:none;
  3166. border-radius:0px;
  3167. -moz-box-shadow:none;
  3168. -webkit-box-shadow:none;
  3169. box-shadow:none;
  3170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3171. font-weight:400;
  3172. font-style:normal;
  3173. font-size:16px;
  3174. color:#000000;
  3175. }
  3176. #u38759 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:174px;
  3180. top:78px;
  3181. width:65px;
  3182. height:22px;
  3183. display:flex;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:16px;
  3188. color:#000000;
  3189. }
  3190. #u38759 .text {
  3191. position:absolute;
  3192. align-self:flex-start;
  3193. padding:0px 0px 0px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u38759_text {
  3198. border-width:0px;
  3199. white-space:nowrap;
  3200. text-transform:none;
  3201. }
  3202. #u38760_div {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:12px;
  3208. height:12px;
  3209. background:inherit;
  3210. background-color:rgba(255, 255, 255, 0);
  3211. box-sizing:border-box;
  3212. border-width:2px;
  3213. border-style:solid;
  3214. border-color:rgba(51, 51, 51, 1);
  3215. border-right:0px;
  3216. border-bottom:0px;
  3217. border-radius:0px;
  3218. border-top-right-radius:0px;
  3219. border-bottom-left-radius:0px;
  3220. -moz-box-shadow:none;
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none;
  3223. }
  3224. #u38760 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:46px;
  3228. top:81px;
  3229. width:12px;
  3230. height:12px;
  3231. display:flex;
  3232. -webkit-transform:rotate(315deg);
  3233. -moz-transform:rotate(315deg);
  3234. -ms-transform:rotate(315deg);
  3235. transform:rotate(315deg);
  3236. }
  3237. #u38760 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u38760_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u38761_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:23px;
  3256. height:23px;
  3257. }
  3258. #u38761 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:73px;
  3262. top:76px;
  3263. width:23px;
  3264. height:23px;
  3265. display:flex;
  3266. }
  3267. #u38761 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u38761_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u38762 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:0px;
  3286. height:0px;
  3287. }
  3288. #u38763_div {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:375px;
  3294. height:50px;
  3295. background:inherit;
  3296. background-color:rgba(255, 255, 255, 1);
  3297. border:none;
  3298. border-radius:0px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. }
  3303. #u38763 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:29px;
  3307. top:106px;
  3308. width:375px;
  3309. height:50px;
  3310. display:flex;
  3311. }
  3312. #u38763 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 2px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u38763_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u38764 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:0px;
  3331. height:0px;
  3332. }
  3333. #u38765 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:0px;
  3339. height:0px;
  3340. }
  3341. #u38766_div {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:135px;
  3347. height:30px;
  3348. background:inherit;
  3349. background-color:rgba(242, 242, 242, 1);
  3350. border:none;
  3351. border-radius:20px;
  3352. -moz-box-shadow:none;
  3353. -webkit-box-shadow:none;
  3354. box-shadow:none;
  3355. }
  3356. #u38766 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:42px;
  3360. top:116px;
  3361. width:135px;
  3362. height:30px;
  3363. display:flex;
  3364. }
  3365. #u38766 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 2px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u38766_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. visibility:hidden;
  3377. }
  3378. #u38767_input {
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:122px;
  3383. height:22px;
  3384. padding:2px 2px 2px 2px;
  3385. font-family:'ArialMT', 'Arial', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. letter-spacing:normal;
  3390. color:#7F7F7F;
  3391. vertical-align:none;
  3392. text-align:left;
  3393. text-transform:none;
  3394. background-color:transparent;
  3395. border-color:transparent;
  3396. }
  3397. #u38767_input.disabled {
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:122px;
  3402. height:22px;
  3403. padding:2px 2px 2px 2px;
  3404. font-family:'ArialMT', 'Arial', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. letter-spacing:normal;
  3409. color:#7F7F7F;
  3410. vertical-align:none;
  3411. text-align:left;
  3412. text-transform:none;
  3413. background-color:transparent;
  3414. border-color:transparent;
  3415. }
  3416. #u38767_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:122px;
  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-size:12px;
  3431. color:#7F7F7F;
  3432. }
  3433. #u38767 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:49px;
  3437. top:120px;
  3438. width:122px;
  3439. height:22px;
  3440. display:flex;
  3441. font-size:12px;
  3442. color:#7F7F7F;
  3443. }
  3444. #u38767 .text {
  3445. position:absolute;
  3446. align-self:flex-start;
  3447. padding:2px 2px 2px 2px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u38767_div.disabled {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:122px;
  3457. height:22px;
  3458. background:inherit;
  3459. background-color:rgba(240, 240, 240, 1);
  3460. border:none;
  3461. border-radius:0px;
  3462. -moz-box-shadow:none;
  3463. -webkit-box-shadow:none;
  3464. box-shadow:none;
  3465. font-size:12px;
  3466. color:#7F7F7F;
  3467. }
  3468. #u38767.disabled {
  3469. }
  3470. .u38767_input_option {
  3471. font-size:12px;
  3472. }
  3473. #u38768_div {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:64px;
  3479. height:30px;
  3480. background:inherit;
  3481. background-color:rgba(255, 255, 255, 0);
  3482. border:none;
  3483. border-left:0px;
  3484. border-top:0px;
  3485. border-right:0px;
  3486. border-radius:0px;
  3487. border-bottom-right-radius:0px;
  3488. border-bottom-left-radius:0px;
  3489. -moz-box-shadow:none;
  3490. -webkit-box-shadow:none;
  3491. box-shadow:none;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:12px;
  3496. color:#1890FF;
  3497. line-height:30px;
  3498. }
  3499. #u38768 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:332px;
  3503. top:116px;
  3504. width:64px;
  3505. height:30px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. color:#1890FF;
  3512. line-height:30px;
  3513. }
  3514. #u38768 .text {
  3515. position:absolute;
  3516. align-self:flex-start;
  3517. padding:0px 0px 0px 0px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u38768_text {
  3522. border-width:0px;
  3523. white-space:nowrap;
  3524. text-transform:none;
  3525. }
  3526. #u38769 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:0px;
  3532. height:0px;
  3533. }
  3534. #u38770_div {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:135px;
  3540. height:30px;
  3541. background:inherit;
  3542. background-color:rgba(242, 242, 242, 1);
  3543. border:none;
  3544. border-radius:20px;
  3545. -moz-box-shadow:none;
  3546. -webkit-box-shadow:none;
  3547. box-shadow:none;
  3548. }
  3549. #u38770 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:187px;
  3553. top:116px;
  3554. width:135px;
  3555. height:30px;
  3556. display:flex;
  3557. }
  3558. #u38770 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u38770_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u38771_input {
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:122px;
  3576. height:22px;
  3577. padding:2px 2px 2px 2px;
  3578. font-family:'ArialMT', 'Arial', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:12px;
  3582. letter-spacing:normal;
  3583. color:#7F7F7F;
  3584. vertical-align:none;
  3585. text-align:left;
  3586. text-transform:none;
  3587. background-color:transparent;
  3588. border-color:transparent;
  3589. }
  3590. #u38771_input.disabled {
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:122px;
  3595. height:22px;
  3596. padding:2px 2px 2px 2px;
  3597. font-family:'ArialMT', 'Arial', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:12px;
  3601. letter-spacing:normal;
  3602. color:#7F7F7F;
  3603. vertical-align:none;
  3604. text-align:left;
  3605. text-transform:none;
  3606. background-color:transparent;
  3607. border-color:transparent;
  3608. }
  3609. #u38771_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:122px;
  3615. height:22px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 0);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. font-size:12px;
  3624. color:#7F7F7F;
  3625. }
  3626. #u38771 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:194px;
  3630. top:120px;
  3631. width:122px;
  3632. height:22px;
  3633. display:flex;
  3634. font-size:12px;
  3635. color:#7F7F7F;
  3636. }
  3637. #u38771 .text {
  3638. position:absolute;
  3639. align-self:flex-start;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u38771_div.disabled {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:122px;
  3650. height:22px;
  3651. background:inherit;
  3652. background-color:rgba(240, 240, 240, 1);
  3653. border:none;
  3654. border-radius:0px;
  3655. -moz-box-shadow:none;
  3656. -webkit-box-shadow:none;
  3657. box-shadow:none;
  3658. font-size:12px;
  3659. color:#7F7F7F;
  3660. }
  3661. #u38771.disabled {
  3662. }
  3663. .u38771_input_option {
  3664. font-size:12px;
  3665. }
  3666. #u38772 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:0px;
  3672. height:0px;
  3673. }
  3674. #u38773_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:357px;
  3680. height:150px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 1);
  3683. border:none;
  3684. border-radius:4px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. }
  3689. #u38773 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:38px;
  3693. top:166px;
  3694. width:357px;
  3695. height:150px;
  3696. display:flex;
  3697. }
  3698. #u38773 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 2px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u38773_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u38774_div {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:97px;
  3717. height:22px;
  3718. background:inherit;
  3719. background-color:rgba(255, 255, 255, 0);
  3720. border:none;
  3721. border-radius:0px;
  3722. -moz-box-shadow:none;
  3723. -webkit-box-shadow:none;
  3724. box-shadow:none;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:16px;
  3729. color:#000000;
  3730. }
  3731. #u38774 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:55px;
  3735. top:175px;
  3736. width:97px;
  3737. height:22px;
  3738. display:flex;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:16px;
  3743. color:#000000;
  3744. }
  3745. #u38774 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u38774_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u38775_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:57px;
  3763. height:20px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. color:#00BFBF;
  3775. }
  3776. #u38775 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:323px;
  3780. top:177px;
  3781. width:57px;
  3782. height:20px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. color:#00BFBF;
  3788. }
  3789. #u38775 .text {
  3790. position:absolute;
  3791. align-self:flex-start;
  3792. padding:0px 0px 0px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u38775_text {
  3797. border-width:0px;
  3798. white-space:nowrap;
  3799. text-transform:none;
  3800. }
  3801. #u38776 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:0px;
  3807. height:0px;
  3808. }
  3809. #u38777_img {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:8px;
  3815. height:14px;
  3816. }
  3817. #u38777 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:58px;
  3821. top:203px;
  3822. width:8px;
  3823. height:14px;
  3824. display:flex;
  3825. }
  3826. #u38777 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u38777_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u38778_div {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:49px;
  3845. height:17px;
  3846. background:inherit;
  3847. background-color:rgba(255, 255, 255, 0);
  3848. border:none;
  3849. border-radius:0px;
  3850. -moz-box-shadow:none;
  3851. -webkit-box-shadow:none;
  3852. box-shadow:none;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:12px;
  3857. color:#000000;
  3858. }
  3859. #u38778 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:73px;
  3863. top:202px;
  3864. width:49px;
  3865. height:17px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. color:#000000;
  3872. }
  3873. #u38778 .text {
  3874. position:absolute;
  3875. align-self:flex-start;
  3876. padding:0px 0px 0px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u38778_text {
  3881. border-width:0px;
  3882. white-space:nowrap;
  3883. text-transform:none;
  3884. }
  3885. #u38779_div {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:43px;
  3891. height:21px;
  3892. background:inherit;
  3893. background-color:rgba(0, 137, 254, 0);
  3894. box-sizing:border-box;
  3895. border-width:1px;
  3896. border-style:solid;
  3897. border-color:rgba(245, 154, 35, 1);
  3898. border-radius:20px;
  3899. -moz-box-shadow:none;
  3900. -webkit-box-shadow:none;
  3901. box-shadow:none;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. color:#F59A23;
  3907. }
  3908. #u38779 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:329px;
  3912. top:282px;
  3913. width:43px;
  3914. height:21px;
  3915. display:flex;
  3916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. font-size:12px;
  3920. color:#F59A23;
  3921. }
  3922. #u38779 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u38779_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. }
  3934. #u38780_div {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:320px;
  3940. height:40px;
  3941. background:inherit;
  3942. background-color:rgba(242, 242, 242, 0.498039215686275);
  3943. border:none;
  3944. border-radius:4px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. }
  3949. #u38780 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:52px;
  3953. top:232px;
  3954. width:320px;
  3955. height:40px;
  3956. display:flex;
  3957. }
  3958. #u38780 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 2px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u38780_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u38781_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:80px;
  3977. height:17px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border:none;
  3981. border-radius:0px;
  3982. -moz-box-shadow:none;
  3983. -webkit-box-shadow:none;
  3984. box-shadow:none;
  3985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. }
  3990. #u38781 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:61px;
  3994. top:244px;
  3995. width:80px;
  3996. height:17px;
  3997. display:flex;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. }
  4003. #u38781 .text {
  4004. position:absolute;
  4005. align-self:flex-start;
  4006. padding:0px 0px 0px 0px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u38781_text {
  4011. border-width:0px;
  4012. white-space:nowrap;
  4013. text-transform:none;
  4014. }
  4015. #u38782_div {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:80px;
  4021. height:17px;
  4022. background:inherit;
  4023. background-color:rgba(255, 255, 255, 0);
  4024. border:none;
  4025. border-radius:0px;
  4026. -moz-box-shadow:none;
  4027. -webkit-box-shadow:none;
  4028. box-shadow:none;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. color:#000000;
  4034. }
  4035. #u38782 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:193px;
  4039. top:244px;
  4040. width:80px;
  4041. height:17px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. color:#000000;
  4048. }
  4049. #u38782 .text {
  4050. position:absolute;
  4051. align-self:flex-start;
  4052. padding:0px 0px 0px 0px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u38782_text {
  4057. border-width:0px;
  4058. white-space:nowrap;
  4059. text-transform:none;
  4060. }
  4061. #u38783_div {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:21px;
  4067. height:14px;
  4068. background:inherit;
  4069. background-color:rgba(255, 255, 255, 0);
  4070. border:none;
  4071. border-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:10px;
  4079. color:#D9001B;
  4080. }
  4081. #u38783 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:338px;
  4085. top:244px;
  4086. width:21px;
  4087. height:14px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:10px;
  4093. color:#D9001B;
  4094. }
  4095. #u38783 .text {
  4096. position:absolute;
  4097. align-self:flex-start;
  4098. padding:0px 0px 0px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u38783_text {
  4103. border-width:0px;
  4104. white-space:nowrap;
  4105. text-transform:none;
  4106. }
  4107. #u38784_div {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:70px;
  4113. height:24px;
  4114. background:inherit;
  4115. background-color:rgba(242, 242, 242, 1);
  4116. border:none;
  4117. border-radius:20px;
  4118. -moz-box-shadow:none;
  4119. -webkit-box-shadow:none;
  4120. box-shadow:none;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:10px;
  4125. color:#00BFBF;
  4126. }
  4127. #u38784 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:52px;
  4131. top:281px;
  4132. width:70px;
  4133. height:24px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:10px;
  4139. color:#00BFBF;
  4140. }
  4141. #u38784 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u38784_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. }
  4153. #u38785_div {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:62px;
  4159. height:30px;
  4160. background:inherit;
  4161. background-color:rgba(92, 122, 253, 1);
  4162. box-sizing:border-box;
  4163. border-width:1px;
  4164. border-style:solid;
  4165. border-color:rgba(121, 121, 121, 1);
  4166. border-right:0px;
  4167. border-radius:4px;
  4168. border-top-right-radius:0px;
  4169. border-bottom-right-radius:0px;
  4170. -moz-box-shadow:none;
  4171. -webkit-box-shadow:none;
  4172. box-shadow:none;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#FFFFFF;
  4178. }
  4179. #u38785 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:-304px;
  4183. top:741px;
  4184. width:62px;
  4185. height:30px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#FFFFFF;
  4192. }
  4193. #u38785 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u38785_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u38786_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:62px;
  4211. height:30px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 1);
  4214. box-sizing:border-box;
  4215. border-width:1px;
  4216. border-style:solid;
  4217. border-color:rgba(121, 121, 121, 1);
  4218. border-radius:4px;
  4219. border-top-left-radius:0px;
  4220. border-bottom-left-radius:0px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:12px;
  4228. }
  4229. #u38786 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:-243px;
  4233. top:741px;
  4234. width:62px;
  4235. height:30px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. }
  4242. #u38786 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u38786_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. }
  4254. #u38787_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:433px;
  4260. height:865px;
  4261. }
  4262. #u38787 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:467px;
  4266. top:2px;
  4267. width:433px;
  4268. height:865px;
  4269. display:flex;
  4270. }
  4271. #u38787 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 2px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u38787_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. visibility:hidden;
  4283. }
  4284. #u38788 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:0px;
  4290. height:0px;
  4291. }
  4292. #u38789_div {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:375px;
  4298. height:736px;
  4299. background:inherit;
  4300. background-color:rgba(51, 51, 51, 0.533333333333333);
  4301. border:none;
  4302. border-top:0px;
  4303. border-radius:25px;
  4304. border-top-left-radius:0px;
  4305. border-top-right-radius:0px;
  4306. -moz-box-shadow:none;
  4307. -webkit-box-shadow:none;
  4308. box-shadow:none;
  4309. }
  4310. #u38789 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:496px;
  4314. top:107px;
  4315. width:375px;
  4316. height:736px;
  4317. display:flex;
  4318. }
  4319. #u38789 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u38789_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u38790_div {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:375px;
  4338. height:617px;
  4339. background:inherit;
  4340. background-color:rgba(255, 255, 255, 1);
  4341. border:none;
  4342. border-top:0px;
  4343. border-radius:25px;
  4344. border-top-left-radius:0px;
  4345. border-top-right-radius:0px;
  4346. -moz-box-shadow:none;
  4347. -webkit-box-shadow:none;
  4348. box-shadow:none;
  4349. }
  4350. #u38790 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:496px;
  4354. top:226px;
  4355. width:375px;
  4356. height:617px;
  4357. display:flex;
  4358. }
  4359. #u38790 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u38790_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u38791_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:109px;
  4378. height:28px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 0);
  4381. border:none;
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4392. font-weight:500;
  4393. font-style:normal;
  4394. font-size:18px;
  4395. line-height:30px;
  4396. }
  4397. #u38791 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:630px;
  4401. top:467px;
  4402. width:109px;
  4403. height:28px;
  4404. display:flex;
  4405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4406. font-weight:500;
  4407. font-style:normal;
  4408. font-size:18px;
  4409. line-height:30px;
  4410. }
  4411. #u38791 .text {
  4412. position:absolute;
  4413. align-self:flex-start;
  4414. padding:0px 0px 0px 0px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u38791_text {
  4419. border-width:0px;
  4420. white-space:nowrap;
  4421. text-transform:none;
  4422. }
  4423. #u38792 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:0px;
  4429. height:0px;
  4430. }
  4431. #u38793_div {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:375px;
  4437. height:60px;
  4438. background:inherit;
  4439. background-color:rgba(255, 255, 255, 1);
  4440. border:none;
  4441. border-top:0px;
  4442. border-radius:28px;
  4443. border-top-left-radius:0px;
  4444. border-top-right-radius:0px;
  4445. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4446. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4447. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:14px;
  4452. color:#FFFFFF;
  4453. }
  4454. #u38793 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:496px;
  4458. top:783px;
  4459. width:375px;
  4460. height:60px;
  4461. display:flex;
  4462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:14px;
  4466. color:#FFFFFF;
  4467. }
  4468. #u38793 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u38793_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u38794_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:347px;
  4487. height:40px;
  4488. background:inherit;
  4489. background-color:rgba(24, 144, 255, 1);
  4490. border:none;
  4491. border-radius:63px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. color:#FFFFFF;
  4500. }
  4501. #u38794 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:514px;
  4505. top:793px;
  4506. width:347px;
  4507. height:40px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. color:#FFFFFF;
  4514. }
  4515. #u38794 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 2px 2px 2px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u38794_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. }
  4527. #u38795_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:375px;
  4533. height:220px;
  4534. }
  4535. #u38795 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:496px;
  4539. top:226px;
  4540. width:375px;
  4541. height:220px;
  4542. display:flex;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. }
  4547. #u38795 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 2px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u38795_text {
  4555. border-width:0px;
  4556. word-wrap:break-word;
  4557. text-transform:none;
  4558. }
  4559. #u38796 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:0px;
  4565. height:0px;
  4566. }
  4567. #u38797_div {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:67px;
  4573. height:30px;
  4574. background:inherit;
  4575. background-color:rgba(255, 255, 255, 0);
  4576. border:none;
  4577. border-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:11px;
  4585. color:#555555;
  4586. line-height:30px;
  4587. }
  4588. #u38797 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:648px;
  4592. top:506px;
  4593. width:67px;
  4594. height:30px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:11px;
  4600. color:#555555;
  4601. line-height:30px;
  4602. }
  4603. #u38797 .text {
  4604. position:absolute;
  4605. align-self:flex-start;
  4606. padding:0px 0px 0px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u38797_text {
  4611. border-width:0px;
  4612. white-space:nowrap;
  4613. text-transform:none;
  4614. }
  4615. #u38798_img {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:12px;
  4621. height:18px;
  4622. }
  4623. #u38798 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:630px;
  4627. top:511px;
  4628. width:12px;
  4629. height:18px;
  4630. display:flex;
  4631. }
  4632. #u38798 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 2px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u38798_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u38799 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:0px;
  4651. height:0px;
  4652. }
  4653. #u38800_div {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:347px;
  4659. height:167px;
  4660. background:inherit;
  4661. background-color:rgba(242, 242, 242, 1);
  4662. border:none;
  4663. border-radius:3px;
  4664. -moz-box-shadow:none;
  4665. -webkit-box-shadow:none;
  4666. box-shadow:none;
  4667. }
  4668. #u38800 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:510px;
  4672. top:583px;
  4673. width:347px;
  4674. height:167px;
  4675. display:flex;
  4676. }
  4677. #u38800 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u38800_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u38801_div {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:71px;
  4696. height:90px;
  4697. background:inherit;
  4698. background-color:rgba(255, 255, 255, 0);
  4699. border:none;
  4700. border-radius:0px;
  4701. -moz-box-shadow:none;
  4702. -webkit-box-shadow:none;
  4703. box-shadow:none;
  4704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. color:#000000;
  4708. line-height:30px;
  4709. }
  4710. #u38801 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:524px;
  4714. top:649px;
  4715. width:71px;
  4716. height:90px;
  4717. display:flex;
  4718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4719. font-weight:400;
  4720. font-style:normal;
  4721. color:#000000;
  4722. line-height:30px;
  4723. }
  4724. #u38801 .text {
  4725. position:absolute;
  4726. align-self:flex-start;
  4727. padding:0px 0px 0px 0px;
  4728. box-sizing:border-box;
  4729. width:100%;
  4730. }
  4731. #u38801_text {
  4732. border-width:0px;
  4733. white-space:nowrap;
  4734. text-transform:none;
  4735. }
  4736. #u38802_div {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:72px;
  4742. height:90px;
  4743. background:inherit;
  4744. background-color:rgba(255, 255, 255, 0);
  4745. border:none;
  4746. border-radius:0px;
  4747. -moz-box-shadow:none;
  4748. -webkit-box-shadow:none;
  4749. box-shadow:none;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. color:#000000;
  4754. line-height:30px;
  4755. }
  4756. #u38802 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:595px;
  4760. top:649px;
  4761. width:72px;
  4762. height:90px;
  4763. display:flex;
  4764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. color:#000000;
  4768. line-height:30px;
  4769. }
  4770. #u38802 .text {
  4771. position:absolute;
  4772. align-self:flex-start;
  4773. padding:0px 0px 0px 0px;
  4774. box-sizing:border-box;
  4775. width:100%;
  4776. }
  4777. #u38802_text {
  4778. border-width:0px;
  4779. white-space:nowrap;
  4780. text-transform:none;
  4781. }
  4782. #u38803_div {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:81px;
  4788. height:28px;
  4789. background:inherit;
  4790. background-color:rgba(255, 255, 255, 0);
  4791. border:none;
  4792. border-left:0px;
  4793. border-top:0px;
  4794. border-right:0px;
  4795. border-radius:0px;
  4796. border-bottom-right-radius:0px;
  4797. border-bottom-left-radius:0px;
  4798. -moz-box-shadow:none;
  4799. -webkit-box-shadow:none;
  4800. box-shadow:none;
  4801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4802. font-weight:500;
  4803. font-style:normal;
  4804. font-size:16px;
  4805. line-height:30px;
  4806. }
  4807. #u38803 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:524px;
  4811. top:593px;
  4812. width:81px;
  4813. height:28px;
  4814. display:flex;
  4815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4816. font-weight:500;
  4817. font-style:normal;
  4818. font-size:16px;
  4819. line-height:30px;
  4820. }
  4821. #u38803 .text {
  4822. position:absolute;
  4823. align-self:flex-start;
  4824. padding:0px 0px 0px 0px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u38803_text {
  4829. border-width:0px;
  4830. white-space:nowrap;
  4831. text-transform:none;
  4832. }
  4833. #u38804_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:29px;
  4839. height:30px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 0);
  4842. border:none;
  4843. border-radius:0px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. color:#00BFBF;
  4851. line-height:30px;
  4852. }
  4853. #u38804 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:818px;
  4857. top:596px;
  4858. width:29px;
  4859. height:30px;
  4860. display:flex;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. color:#00BFBF;
  4865. line-height:30px;
  4866. }
  4867. #u38804 .text {
  4868. position:absolute;
  4869. align-self:flex-start;
  4870. padding:0px 0px 0px 0px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u38804_text {
  4875. border-width:0px;
  4876. white-space:nowrap;
  4877. text-transform:none;
  4878. }
  4879. #u38805_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:168px;
  4885. height:16px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 0);
  4888. border:none;
  4889. border-radius:0px;
  4890. -moz-box-shadow:none;
  4891. -webkit-box-shadow:none;
  4892. box-shadow:none;
  4893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:11px;
  4897. color:#555555;
  4898. }
  4899. #u38805 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:524px;
  4903. top:623px;
  4904. width:168px;
  4905. height:16px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:11px;
  4911. color:#555555;
  4912. }
  4913. #u38805 .text {
  4914. position:absolute;
  4915. align-self:flex-start;
  4916. padding:0px 0px 0px 0px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u38805_text {
  4921. border-width:0px;
  4922. white-space:nowrap;
  4923. text-transform:none;
  4924. }
  4925. #u38806_img {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:100px;
  4931. height:98px;
  4932. }
  4933. #u38806 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:510px;
  4937. top:465px;
  4938. width:100px;
  4939. height:98px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. }
  4945. #u38806 .text {
  4946. position:absolute;
  4947. align-self:center;
  4948. padding:2px 2px 2px 2px;
  4949. box-sizing:border-box;
  4950. width:100%;
  4951. }
  4952. #u38806_text {
  4953. border-width:0px;
  4954. word-wrap:break-word;
  4955. text-transform:none;
  4956. }
  4957. #u38807_img {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:433px;
  4963. height:865px;
  4964. }
  4965. #u38807 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:920px;
  4969. top:2px;
  4970. width:433px;
  4971. height:865px;
  4972. display:flex;
  4973. }
  4974. #u38807 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:2px 2px 2px 2px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u38807_text {
  4982. border-width:0px;
  4983. word-wrap:break-word;
  4984. text-transform:none;
  4985. visibility:hidden;
  4986. }
  4987. #u38808 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:0px;
  4993. height:0px;
  4994. }
  4995. #u38809_div {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:375px;
  5001. height:736px;
  5002. background:inherit;
  5003. background-color:rgba(51, 51, 51, 0.533333333333333);
  5004. border:none;
  5005. border-top:0px;
  5006. border-radius:25px;
  5007. border-top-left-radius:0px;
  5008. border-top-right-radius:0px;
  5009. -moz-box-shadow:none;
  5010. -webkit-box-shadow:none;
  5011. box-shadow:none;
  5012. }
  5013. #u38809 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:949px;
  5017. top:107px;
  5018. width:375px;
  5019. height:736px;
  5020. display:flex;
  5021. }
  5022. #u38809 .text {
  5023. position:absolute;
  5024. align-self:center;
  5025. padding:2px 2px 2px 2px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u38809_text {
  5030. border-width:0px;
  5031. word-wrap:break-word;
  5032. text-transform:none;
  5033. visibility:hidden;
  5034. }
  5035. #u38810_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:375px;
  5041. height:617px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 1);
  5044. border:none;
  5045. border-top:0px;
  5046. border-radius:25px;
  5047. border-top-left-radius:0px;
  5048. border-top-right-radius:0px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. }
  5053. #u38810 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:949px;
  5057. top:226px;
  5058. width:375px;
  5059. height:617px;
  5060. display:flex;
  5061. }
  5062. #u38810 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u38810_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u38811_div {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:109px;
  5081. height:28px;
  5082. background:inherit;
  5083. background-color:rgba(255, 255, 255, 0);
  5084. border:none;
  5085. border-left:0px;
  5086. border-top:0px;
  5087. border-right:0px;
  5088. border-radius:0px;
  5089. border-bottom-right-radius:0px;
  5090. border-bottom-left-radius:0px;
  5091. -moz-box-shadow:none;
  5092. -webkit-box-shadow:none;
  5093. box-shadow:none;
  5094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5095. font-weight:500;
  5096. font-style:normal;
  5097. font-size:18px;
  5098. line-height:30px;
  5099. }
  5100. #u38811 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:1083px;
  5104. top:467px;
  5105. width:109px;
  5106. height:28px;
  5107. display:flex;
  5108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5109. font-weight:500;
  5110. font-style:normal;
  5111. font-size:18px;
  5112. line-height:30px;
  5113. }
  5114. #u38811 .text {
  5115. position:absolute;
  5116. align-self:flex-start;
  5117. padding:0px 0px 0px 0px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u38811_text {
  5122. border-width:0px;
  5123. white-space:nowrap;
  5124. text-transform:none;
  5125. }
  5126. #u38812 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:0px;
  5132. height:0px;
  5133. }
  5134. #u38813_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:375px;
  5140. height:60px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 1);
  5143. border:none;
  5144. border-top:0px;
  5145. border-radius:28px;
  5146. border-top-left-radius:0px;
  5147. border-top-right-radius:0px;
  5148. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5149. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5150. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. color:#FFFFFF;
  5156. }
  5157. #u38813 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:949px;
  5161. top:783px;
  5162. width:375px;
  5163. height:60px;
  5164. display:flex;
  5165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:14px;
  5169. color:#FFFFFF;
  5170. }
  5171. #u38813 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 2px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u38813_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. visibility:hidden;
  5183. }
  5184. #u38814_div {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:347px;
  5190. height:40px;
  5191. background:inherit;
  5192. background-color:rgba(245, 154, 35, 1);
  5193. border:none;
  5194. border-radius:63px;
  5195. -moz-box-shadow:none;
  5196. -webkit-box-shadow:none;
  5197. box-shadow:none;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:14px;
  5202. color:#FFFFFF;
  5203. }
  5204. #u38814 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:967px;
  5208. top:793px;
  5209. width:347px;
  5210. height:40px;
  5211. display:flex;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:14px;
  5216. color:#FFFFFF;
  5217. }
  5218. #u38814 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u38814_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. }
  5230. #u38815_img {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:375px;
  5236. height:220px;
  5237. }
  5238. #u38815 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:949px;
  5242. top:226px;
  5243. width:375px;
  5244. height:220px;
  5245. display:flex;
  5246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. }
  5250. #u38815 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:2px 2px 2px 2px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u38815_text {
  5258. border-width:0px;
  5259. word-wrap:break-word;
  5260. text-transform:none;
  5261. }
  5262. #u38816 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:0px;
  5268. height:0px;
  5269. }
  5270. #u38817_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:67px;
  5276. height:30px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-radius:0px;
  5281. -moz-box-shadow:none;
  5282. -webkit-box-shadow:none;
  5283. box-shadow:none;
  5284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:11px;
  5288. color:#555555;
  5289. line-height:30px;
  5290. }
  5291. #u38817 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:1101px;
  5295. top:506px;
  5296. width:67px;
  5297. height:30px;
  5298. display:flex;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:11px;
  5303. color:#555555;
  5304. line-height:30px;
  5305. }
  5306. #u38817 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u38817_text {
  5314. border-width:0px;
  5315. white-space:nowrap;
  5316. text-transform:none;
  5317. }
  5318. #u38818_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:12px;
  5324. height:18px;
  5325. }
  5326. #u38818 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:1083px;
  5330. top:511px;
  5331. width:12px;
  5332. height:18px;
  5333. display:flex;
  5334. }
  5335. #u38818 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u38818_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u38819 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:0px;
  5354. height:0px;
  5355. }
  5356. #u38820_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:347px;
  5362. height:167px;
  5363. background:inherit;
  5364. background-color:rgba(242, 242, 242, 1);
  5365. border:none;
  5366. border-radius:3px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. }
  5371. #u38820 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:963px;
  5375. top:583px;
  5376. width:347px;
  5377. height:167px;
  5378. display:flex;
  5379. }
  5380. #u38820 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 2px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u38820_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u38821_div {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:71px;
  5399. height:90px;
  5400. background:inherit;
  5401. background-color:rgba(255, 255, 255, 0);
  5402. border:none;
  5403. border-radius:0px;
  5404. -moz-box-shadow:none;
  5405. -webkit-box-shadow:none;
  5406. box-shadow:none;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. color:#000000;
  5411. line-height:30px;
  5412. }
  5413. #u38821 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:977px;
  5417. top:649px;
  5418. width:71px;
  5419. height:90px;
  5420. display:flex;
  5421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. color:#000000;
  5425. line-height:30px;
  5426. }
  5427. #u38821 .text {
  5428. position:absolute;
  5429. align-self:flex-start;
  5430. padding:0px 0px 0px 0px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u38821_text {
  5435. border-width:0px;
  5436. white-space:nowrap;
  5437. text-transform:none;
  5438. }
  5439. #u38822_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:72px;
  5445. height:90px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 0);
  5448. border:none;
  5449. border-radius:0px;
  5450. -moz-box-shadow:none;
  5451. -webkit-box-shadow:none;
  5452. box-shadow:none;
  5453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. color:#000000;
  5457. line-height:30px;
  5458. }
  5459. #u38822 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:1048px;
  5463. top:649px;
  5464. width:72px;
  5465. height:90px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. color:#000000;
  5471. line-height:30px;
  5472. }
  5473. #u38822 .text {
  5474. position:absolute;
  5475. align-self:flex-start;
  5476. padding:0px 0px 0px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u38822_text {
  5481. border-width:0px;
  5482. white-space:nowrap;
  5483. text-transform:none;
  5484. }
  5485. #u38823_div {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:81px;
  5491. height:28px;
  5492. background:inherit;
  5493. background-color:rgba(255, 255, 255, 0);
  5494. border:none;
  5495. border-left:0px;
  5496. border-top:0px;
  5497. border-right:0px;
  5498. border-radius:0px;
  5499. border-bottom-right-radius:0px;
  5500. border-bottom-left-radius:0px;
  5501. -moz-box-shadow:none;
  5502. -webkit-box-shadow:none;
  5503. box-shadow:none;
  5504. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5505. font-weight:500;
  5506. font-style:normal;
  5507. font-size:16px;
  5508. line-height:30px;
  5509. }
  5510. #u38823 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:977px;
  5514. top:593px;
  5515. width:81px;
  5516. height:28px;
  5517. display:flex;
  5518. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5519. font-weight:500;
  5520. font-style:normal;
  5521. font-size:16px;
  5522. line-height:30px;
  5523. }
  5524. #u38823 .text {
  5525. position:absolute;
  5526. align-self:flex-start;
  5527. padding:0px 0px 0px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u38823_text {
  5532. border-width:0px;
  5533. white-space:nowrap;
  5534. text-transform:none;
  5535. }
  5536. #u38824_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:29px;
  5542. height:30px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. color:#00BFBF;
  5554. line-height:30px;
  5555. }
  5556. #u38824 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:1271px;
  5560. top:596px;
  5561. width:29px;
  5562. height:30px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. color:#00BFBF;
  5568. line-height:30px;
  5569. }
  5570. #u38824 .text {
  5571. position:absolute;
  5572. align-self:flex-start;
  5573. padding:0px 0px 0px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u38824_text {
  5578. border-width:0px;
  5579. white-space:nowrap;
  5580. text-transform:none;
  5581. }
  5582. #u38825_div {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:168px;
  5588. height:16px;
  5589. background:inherit;
  5590. background-color:rgba(255, 255, 255, 0);
  5591. border:none;
  5592. border-radius:0px;
  5593. -moz-box-shadow:none;
  5594. -webkit-box-shadow:none;
  5595. box-shadow:none;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:11px;
  5600. color:#555555;
  5601. }
  5602. #u38825 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:977px;
  5606. top:623px;
  5607. width:168px;
  5608. height:16px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:11px;
  5614. color:#555555;
  5615. }
  5616. #u38825 .text {
  5617. position:absolute;
  5618. align-self:flex-start;
  5619. padding:0px 0px 0px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u38825_text {
  5624. border-width:0px;
  5625. white-space:nowrap;
  5626. text-transform:none;
  5627. }
  5628. #u38826_img {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:100px;
  5634. height:98px;
  5635. }
  5636. #u38826 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:963px;
  5640. top:465px;
  5641. width:100px;
  5642. height:98px;
  5643. display:flex;
  5644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. }
  5648. #u38826 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 2px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u38826_text {
  5656. border-width:0px;
  5657. word-wrap:break-word;
  5658. text-transform:none;
  5659. }
  5660. #u38827_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:57px;
  5666. height:30px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 0);
  5669. border:none;
  5670. border-radius:0px;
  5671. -moz-box-shadow:none;
  5672. -webkit-box-shadow:none;
  5673. box-shadow:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. color:#0089FE;
  5678. line-height:30px;
  5679. }
  5680. #u38827 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:1083px;
  5684. top:539px;
  5685. width:57px;
  5686. height:30px;
  5687. display:flex;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. color:#0089FE;
  5692. line-height:30px;
  5693. }
  5694. #u38827 .text {
  5695. position:absolute;
  5696. align-self:flex-start;
  5697. padding:0px 0px 0px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u38827_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u38828_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:433px;
  5712. height:865px;
  5713. }
  5714. #u38828 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:1373px;
  5718. top:2px;
  5719. width:433px;
  5720. height:865px;
  5721. display:flex;
  5722. }
  5723. #u38828 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u38828_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u38829 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:0px;
  5742. height:0px;
  5743. }
  5744. #u38830_div {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:375px;
  5750. height:736px;
  5751. background:inherit;
  5752. background-color:rgba(51, 51, 51, 0.533333333333333);
  5753. border:none;
  5754. border-top:0px;
  5755. border-radius:25px;
  5756. border-top-left-radius:0px;
  5757. border-top-right-radius:0px;
  5758. -moz-box-shadow:none;
  5759. -webkit-box-shadow:none;
  5760. box-shadow:none;
  5761. }
  5762. #u38830 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:1402px;
  5766. top:107px;
  5767. width:375px;
  5768. height:736px;
  5769. display:flex;
  5770. }
  5771. #u38830 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u38830_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u38831_div {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:375px;
  5790. height:617px;
  5791. background:inherit;
  5792. background-color:rgba(255, 255, 255, 1);
  5793. border:none;
  5794. border-top:0px;
  5795. border-radius:25px;
  5796. border-top-left-radius:0px;
  5797. border-top-right-radius:0px;
  5798. -moz-box-shadow:none;
  5799. -webkit-box-shadow:none;
  5800. box-shadow:none;
  5801. }
  5802. #u38831 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:1402px;
  5806. top:226px;
  5807. width:375px;
  5808. height:617px;
  5809. display:flex;
  5810. }
  5811. #u38831 .text {
  5812. position:absolute;
  5813. align-self:center;
  5814. padding:2px 2px 2px 2px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u38831_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. visibility:hidden;
  5823. }
  5824. #u38832_div {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:109px;
  5830. height:28px;
  5831. background:inherit;
  5832. background-color:rgba(255, 255, 255, 0);
  5833. border:none;
  5834. border-left:0px;
  5835. border-top:0px;
  5836. border-right:0px;
  5837. border-radius:0px;
  5838. border-bottom-right-radius:0px;
  5839. border-bottom-left-radius:0px;
  5840. -moz-box-shadow:none;
  5841. -webkit-box-shadow:none;
  5842. box-shadow:none;
  5843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5844. font-weight:500;
  5845. font-style:normal;
  5846. font-size:18px;
  5847. line-height:30px;
  5848. }
  5849. #u38832 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:1536px;
  5853. top:467px;
  5854. width:109px;
  5855. height:28px;
  5856. display:flex;
  5857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5858. font-weight:500;
  5859. font-style:normal;
  5860. font-size:18px;
  5861. line-height:30px;
  5862. }
  5863. #u38832 .text {
  5864. position:absolute;
  5865. align-self:flex-start;
  5866. padding:0px 0px 0px 0px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u38832_text {
  5871. border-width:0px;
  5872. white-space:nowrap;
  5873. text-transform:none;
  5874. }
  5875. #u38833 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:0px;
  5881. height:0px;
  5882. }
  5883. #u38834_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:375px;
  5889. height:60px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 1);
  5892. border:none;
  5893. border-top:0px;
  5894. border-radius:28px;
  5895. border-top-left-radius:0px;
  5896. border-top-right-radius:0px;
  5897. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5898. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5899. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:14px;
  5904. color:#FFFFFF;
  5905. }
  5906. #u38834 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:1402px;
  5910. top:783px;
  5911. width:375px;
  5912. height:60px;
  5913. display:flex;
  5914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:14px;
  5918. color:#FFFFFF;
  5919. }
  5920. #u38834 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 2px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u38834_text {
  5928. border-width:0px;
  5929. word-wrap:break-word;
  5930. text-transform:none;
  5931. visibility:hidden;
  5932. }
  5933. #u38835_div {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:347px;
  5939. height:40px;
  5940. background:inherit;
  5941. background-color:rgba(236, 128, 141, 1);
  5942. border:none;
  5943. border-radius:63px;
  5944. -moz-box-shadow:none;
  5945. -webkit-box-shadow:none;
  5946. box-shadow:none;
  5947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. font-size:14px;
  5951. color:#FFFFFF;
  5952. }
  5953. #u38835 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:1420px;
  5957. top:793px;
  5958. width:347px;
  5959. height:40px;
  5960. display:flex;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:14px;
  5965. color:#FFFFFF;
  5966. }
  5967. #u38835 .text {
  5968. position:absolute;
  5969. align-self:center;
  5970. padding:2px 2px 2px 2px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u38835_text {
  5975. border-width:0px;
  5976. word-wrap:break-word;
  5977. text-transform:none;
  5978. }
  5979. #u38836_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:375px;
  5985. height:220px;
  5986. }
  5987. #u38836 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:1402px;
  5991. top:226px;
  5992. width:375px;
  5993. height:220px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. }
  5999. #u38836 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 2px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u38836_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. }
  6011. #u38837 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u38838_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:67px;
  6025. height:30px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border:none;
  6029. border-radius:0px;
  6030. -moz-box-shadow:none;
  6031. -webkit-box-shadow:none;
  6032. box-shadow:none;
  6033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:11px;
  6037. color:#555555;
  6038. line-height:30px;
  6039. }
  6040. #u38838 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:1554px;
  6044. top:506px;
  6045. width:67px;
  6046. height:30px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:11px;
  6052. color:#555555;
  6053. line-height:30px;
  6054. }
  6055. #u38838 .text {
  6056. position:absolute;
  6057. align-self:flex-start;
  6058. padding:0px 0px 0px 0px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u38838_text {
  6063. border-width:0px;
  6064. white-space:nowrap;
  6065. text-transform:none;
  6066. }
  6067. #u38839_img {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:12px;
  6073. height:18px;
  6074. }
  6075. #u38839 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:1536px;
  6079. top:511px;
  6080. width:12px;
  6081. height:18px;
  6082. display:flex;
  6083. }
  6084. #u38839 .text {
  6085. position:absolute;
  6086. align-self:center;
  6087. padding:2px 2px 2px 2px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u38839_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. visibility:hidden;
  6096. }
  6097. #u38840 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:0px;
  6103. height:0px;
  6104. }
  6105. #u38841_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:347px;
  6111. height:167px;
  6112. background:inherit;
  6113. background-color:rgba(242, 242, 242, 1);
  6114. border:none;
  6115. border-radius:3px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. }
  6120. #u38841 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:1416px;
  6124. top:583px;
  6125. width:347px;
  6126. height:167px;
  6127. display:flex;
  6128. }
  6129. #u38841 .text {
  6130. position:absolute;
  6131. align-self:center;
  6132. padding:2px 2px 2px 2px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u38841_text {
  6137. border-width:0px;
  6138. word-wrap:break-word;
  6139. text-transform:none;
  6140. visibility:hidden;
  6141. }
  6142. #u38842_div {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:71px;
  6148. height:90px;
  6149. background:inherit;
  6150. background-color:rgba(255, 255, 255, 0);
  6151. border:none;
  6152. border-radius:0px;
  6153. -moz-box-shadow:none;
  6154. -webkit-box-shadow:none;
  6155. box-shadow:none;
  6156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6157. font-weight:400;
  6158. font-style:normal;
  6159. color:#000000;
  6160. line-height:30px;
  6161. }
  6162. #u38842 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:1430px;
  6166. top:649px;
  6167. width:71px;
  6168. height:90px;
  6169. display:flex;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. color:#000000;
  6174. line-height:30px;
  6175. }
  6176. #u38842 .text {
  6177. position:absolute;
  6178. align-self:flex-start;
  6179. padding:0px 0px 0px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u38842_text {
  6184. border-width:0px;
  6185. white-space:nowrap;
  6186. text-transform:none;
  6187. }
  6188. #u38843_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:72px;
  6194. height:90px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border:none;
  6198. border-radius:0px;
  6199. -moz-box-shadow:none;
  6200. -webkit-box-shadow:none;
  6201. box-shadow:none;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. color:#000000;
  6206. line-height:30px;
  6207. }
  6208. #u38843 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:1501px;
  6212. top:649px;
  6213. width:72px;
  6214. height:90px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. color:#000000;
  6220. line-height:30px;
  6221. }
  6222. #u38843 .text {
  6223. position:absolute;
  6224. align-self:flex-start;
  6225. padding:0px 0px 0px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u38843_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u38844_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:81px;
  6240. height:28px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 0);
  6243. border:none;
  6244. border-left:0px;
  6245. border-top:0px;
  6246. border-right:0px;
  6247. border-radius:0px;
  6248. border-bottom-right-radius:0px;
  6249. border-bottom-left-radius:0px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6254. font-weight:500;
  6255. font-style:normal;
  6256. font-size:16px;
  6257. line-height:30px;
  6258. }
  6259. #u38844 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1430px;
  6263. top:593px;
  6264. width:81px;
  6265. height:28px;
  6266. display:flex;
  6267. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6268. font-weight:500;
  6269. font-style:normal;
  6270. font-size:16px;
  6271. line-height:30px;
  6272. }
  6273. #u38844 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u38844_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u38845_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:29px;
  6291. height:30px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. color:#00BFBF;
  6303. line-height:30px;
  6304. }
  6305. #u38845 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1724px;
  6309. top:596px;
  6310. width:29px;
  6311. height:30px;
  6312. display:flex;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. color:#00BFBF;
  6317. line-height:30px;
  6318. }
  6319. #u38845 .text {
  6320. position:absolute;
  6321. align-self:flex-start;
  6322. padding:0px 0px 0px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u38845_text {
  6327. border-width:0px;
  6328. white-space:nowrap;
  6329. text-transform:none;
  6330. }
  6331. #u38846_div {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:168px;
  6337. height:16px;
  6338. background:inherit;
  6339. background-color:rgba(255, 255, 255, 0);
  6340. border:none;
  6341. border-radius:0px;
  6342. -moz-box-shadow:none;
  6343. -webkit-box-shadow:none;
  6344. box-shadow:none;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:11px;
  6349. color:#555555;
  6350. }
  6351. #u38846 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:1430px;
  6355. top:623px;
  6356. width:168px;
  6357. height:16px;
  6358. display:flex;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:11px;
  6363. color:#555555;
  6364. }
  6365. #u38846 .text {
  6366. position:absolute;
  6367. align-self:flex-start;
  6368. padding:0px 0px 0px 0px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u38846_text {
  6373. border-width:0px;
  6374. white-space:nowrap;
  6375. text-transform:none;
  6376. }
  6377. #u38847_img {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:100px;
  6383. height:98px;
  6384. }
  6385. #u38847 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:1416px;
  6389. top:465px;
  6390. width:100px;
  6391. height:98px;
  6392. display:flex;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. }
  6397. #u38847 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 2px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u38847_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. }
  6409. #u38848_img {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:433px;
  6415. height:865px;
  6416. }
  6417. #u38848 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:1826px;
  6421. top:2px;
  6422. width:433px;
  6423. height:865px;
  6424. display:flex;
  6425. }
  6426. #u38848 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:2px 2px 2px 2px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u38848_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. visibility:hidden;
  6438. }
  6439. #u38849 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:0px;
  6445. height:0px;
  6446. }
  6447. #u38850_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:375px;
  6453. height:736px;
  6454. background:inherit;
  6455. background-color:rgba(51, 51, 51, 0.533333333333333);
  6456. border:none;
  6457. border-top:0px;
  6458. border-radius:25px;
  6459. border-top-left-radius:0px;
  6460. border-top-right-radius:0px;
  6461. -moz-box-shadow:none;
  6462. -webkit-box-shadow:none;
  6463. box-shadow:none;
  6464. }
  6465. #u38850 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:1855px;
  6469. top:107px;
  6470. width:375px;
  6471. height:736px;
  6472. display:flex;
  6473. }
  6474. #u38850 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u38850_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. visibility:hidden;
  6486. }
  6487. #u38851_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:375px;
  6493. height:617px;
  6494. background:inherit;
  6495. background-color:rgba(255, 255, 255, 1);
  6496. border:none;
  6497. border-top:0px;
  6498. border-radius:25px;
  6499. border-top-left-radius:0px;
  6500. border-top-right-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. }
  6505. #u38851 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:1855px;
  6509. top:226px;
  6510. width:375px;
  6511. height:617px;
  6512. display:flex;
  6513. }
  6514. #u38851 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u38851_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u38852_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:109px;
  6533. height:28px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 0);
  6536. border:none;
  6537. border-left:0px;
  6538. border-top:0px;
  6539. border-right:0px;
  6540. border-radius:0px;
  6541. border-bottom-right-radius:0px;
  6542. border-bottom-left-radius:0px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6547. font-weight:500;
  6548. font-style:normal;
  6549. font-size:18px;
  6550. line-height:30px;
  6551. }
  6552. #u38852 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:1989px;
  6556. top:467px;
  6557. width:109px;
  6558. height:28px;
  6559. display:flex;
  6560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6561. font-weight:500;
  6562. font-style:normal;
  6563. font-size:18px;
  6564. line-height:30px;
  6565. }
  6566. #u38852 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:0px 0px 0px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u38852_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u38853 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:0px;
  6584. height:0px;
  6585. }
  6586. #u38854_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:375px;
  6592. height:60px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 1);
  6595. border:none;
  6596. border-top:0px;
  6597. border-radius:28px;
  6598. border-top-left-radius:0px;
  6599. border-top-right-radius:0px;
  6600. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6601. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6602. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#FFFFFF;
  6608. }
  6609. #u38854 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:1855px;
  6613. top:783px;
  6614. width:375px;
  6615. height:60px;
  6616. display:flex;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. color:#FFFFFF;
  6622. }
  6623. #u38854 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 2px 2px 2px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u38854_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. visibility:hidden;
  6635. }
  6636. #u38855_div {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:347px;
  6642. height:40px;
  6643. background:inherit;
  6644. background-color:rgba(236, 128, 141, 1);
  6645. border:none;
  6646. border-radius:63px;
  6647. -moz-box-shadow:none;
  6648. -webkit-box-shadow:none;
  6649. box-shadow:none;
  6650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:14px;
  6654. color:#FFFFFF;
  6655. }
  6656. #u38855 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:1873px;
  6660. top:793px;
  6661. width:347px;
  6662. height:40px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:14px;
  6668. color:#FFFFFF;
  6669. }
  6670. #u38855 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 2px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u38855_text {
  6678. border-width:0px;
  6679. word-wrap:break-word;
  6680. text-transform:none;
  6681. }
  6682. #u38856_img {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:375px;
  6688. height:220px;
  6689. }
  6690. #u38856 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:1855px;
  6694. top:226px;
  6695. width:375px;
  6696. height:220px;
  6697. display:flex;
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. }
  6702. #u38856 .text {
  6703. position:absolute;
  6704. align-self:center;
  6705. padding:2px 2px 2px 2px;
  6706. box-sizing:border-box;
  6707. width:100%;
  6708. }
  6709. #u38856_text {
  6710. border-width:0px;
  6711. word-wrap:break-word;
  6712. text-transform:none;
  6713. }
  6714. #u38857 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:0px;
  6720. height:0px;
  6721. }
  6722. #u38858_div {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:67px;
  6728. height:30px;
  6729. background:inherit;
  6730. background-color:rgba(255, 255, 255, 0);
  6731. border:none;
  6732. border-radius:0px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:11px;
  6740. color:#555555;
  6741. line-height:30px;
  6742. }
  6743. #u38858 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:2007px;
  6747. top:506px;
  6748. width:67px;
  6749. height:30px;
  6750. display:flex;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:11px;
  6755. color:#555555;
  6756. line-height:30px;
  6757. }
  6758. #u38858 .text {
  6759. position:absolute;
  6760. align-self:flex-start;
  6761. padding:0px 0px 0px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u38858_text {
  6766. border-width:0px;
  6767. white-space:nowrap;
  6768. text-transform:none;
  6769. }
  6770. #u38859_img {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:12px;
  6776. height:18px;
  6777. }
  6778. #u38859 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:1989px;
  6782. top:511px;
  6783. width:12px;
  6784. height:18px;
  6785. display:flex;
  6786. }
  6787. #u38859 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:2px 2px 2px 2px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u38859_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. visibility:hidden;
  6799. }
  6800. #u38860 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:0px;
  6806. height:0px;
  6807. }
  6808. #u38861_div {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:347px;
  6814. height:167px;
  6815. background:inherit;
  6816. background-color:rgba(242, 242, 242, 1);
  6817. border:none;
  6818. border-radius:3px;
  6819. -moz-box-shadow:none;
  6820. -webkit-box-shadow:none;
  6821. box-shadow:none;
  6822. }
  6823. #u38861 {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:1869px;
  6827. top:583px;
  6828. width:347px;
  6829. height:167px;
  6830. display:flex;
  6831. }
  6832. #u38861 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:2px 2px 2px 2px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u38861_text {
  6840. border-width:0px;
  6841. word-wrap:break-word;
  6842. text-transform:none;
  6843. visibility:hidden;
  6844. }
  6845. #u38862_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:71px;
  6851. height:90px;
  6852. background:inherit;
  6853. background-color:rgba(255, 255, 255, 0);
  6854. border:none;
  6855. border-radius:0px;
  6856. -moz-box-shadow:none;
  6857. -webkit-box-shadow:none;
  6858. box-shadow:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. color:#000000;
  6863. line-height:30px;
  6864. }
  6865. #u38862 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:1883px;
  6869. top:649px;
  6870. width:71px;
  6871. height:90px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. color:#000000;
  6877. line-height:30px;
  6878. }
  6879. #u38862 .text {
  6880. position:absolute;
  6881. align-self:flex-start;
  6882. padding:0px 0px 0px 0px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u38862_text {
  6887. border-width:0px;
  6888. white-space:nowrap;
  6889. text-transform:none;
  6890. }
  6891. #u38863_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:72px;
  6897. height:90px;
  6898. background:inherit;
  6899. background-color:rgba(255, 255, 255, 0);
  6900. border:none;
  6901. border-radius:0px;
  6902. -moz-box-shadow:none;
  6903. -webkit-box-shadow:none;
  6904. box-shadow:none;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. color:#000000;
  6909. line-height:30px;
  6910. }
  6911. #u38863 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:1954px;
  6915. top:649px;
  6916. width:72px;
  6917. height:90px;
  6918. display:flex;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. color:#000000;
  6923. line-height:30px;
  6924. }
  6925. #u38863 .text {
  6926. position:absolute;
  6927. align-self:flex-start;
  6928. padding:0px 0px 0px 0px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u38863_text {
  6933. border-width:0px;
  6934. white-space:nowrap;
  6935. text-transform:none;
  6936. }
  6937. #u38864_div {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:81px;
  6943. height:28px;
  6944. background:inherit;
  6945. background-color:rgba(255, 255, 255, 0);
  6946. border:none;
  6947. border-left:0px;
  6948. border-top:0px;
  6949. border-right:0px;
  6950. border-radius:0px;
  6951. border-bottom-right-radius:0px;
  6952. border-bottom-left-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6957. font-weight:500;
  6958. font-style:normal;
  6959. font-size:16px;
  6960. line-height:30px;
  6961. }
  6962. #u38864 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:1883px;
  6966. top:593px;
  6967. width:81px;
  6968. height:28px;
  6969. display:flex;
  6970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6971. font-weight:500;
  6972. font-style:normal;
  6973. font-size:16px;
  6974. line-height:30px;
  6975. }
  6976. #u38864 .text {
  6977. position:absolute;
  6978. align-self:flex-start;
  6979. padding:0px 0px 0px 0px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u38864_text {
  6984. border-width:0px;
  6985. white-space:nowrap;
  6986. text-transform:none;
  6987. }
  6988. #u38865_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:29px;
  6994. height:30px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 0);
  6997. border:none;
  6998. border-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. color:#00BFBF;
  7006. line-height:30px;
  7007. }
  7008. #u38865 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:2177px;
  7012. top:596px;
  7013. width:29px;
  7014. height:30px;
  7015. display:flex;
  7016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7017. font-weight:400;
  7018. font-style:normal;
  7019. color:#00BFBF;
  7020. line-height:30px;
  7021. }
  7022. #u38865 .text {
  7023. position:absolute;
  7024. align-self:flex-start;
  7025. padding:0px 0px 0px 0px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u38865_text {
  7030. border-width:0px;
  7031. white-space:nowrap;
  7032. text-transform:none;
  7033. }
  7034. #u38866_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:168px;
  7040. height:16px;
  7041. background:inherit;
  7042. background-color:rgba(255, 255, 255, 0);
  7043. border:none;
  7044. border-radius:0px;
  7045. -moz-box-shadow:none;
  7046. -webkit-box-shadow:none;
  7047. box-shadow:none;
  7048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:11px;
  7052. color:#555555;
  7053. }
  7054. #u38866 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:1883px;
  7058. top:623px;
  7059. width:168px;
  7060. height:16px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:11px;
  7066. color:#555555;
  7067. }
  7068. #u38866 .text {
  7069. position:absolute;
  7070. align-self:flex-start;
  7071. padding:0px 0px 0px 0px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u38866_text {
  7076. border-width:0px;
  7077. white-space:nowrap;
  7078. text-transform:none;
  7079. }
  7080. #u38867_img {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:100px;
  7086. height:98px;
  7087. }
  7088. #u38867 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:1869px;
  7092. top:465px;
  7093. width:100px;
  7094. height:98px;
  7095. display:flex;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. }
  7100. #u38867 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:2px 2px 2px 2px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u38867_text {
  7108. border-width:0px;
  7109. word-wrap:break-word;
  7110. text-transform:none;
  7111. }
  7112. #u38868_img {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:433px;
  7118. height:865px;
  7119. }
  7120. #u38868 {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:2279px;
  7124. top:2px;
  7125. width:433px;
  7126. height:865px;
  7127. display:flex;
  7128. }
  7129. #u38868 .text {
  7130. position:absolute;
  7131. align-self:center;
  7132. padding:2px 2px 2px 2px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u38868_text {
  7137. border-width:0px;
  7138. word-wrap:break-word;
  7139. text-transform:none;
  7140. visibility:hidden;
  7141. }
  7142. #u38869 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:0px;
  7148. height:0px;
  7149. }
  7150. #u38870_div {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:375px;
  7156. height:736px;
  7157. background:inherit;
  7158. background-color:rgba(51, 51, 51, 0.533333333333333);
  7159. border:none;
  7160. border-top:0px;
  7161. border-radius:25px;
  7162. border-top-left-radius:0px;
  7163. border-top-right-radius:0px;
  7164. -moz-box-shadow:none;
  7165. -webkit-box-shadow:none;
  7166. box-shadow:none;
  7167. }
  7168. #u38870 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:2308px;
  7172. top:107px;
  7173. width:375px;
  7174. height:736px;
  7175. display:flex;
  7176. }
  7177. #u38870 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:2px 2px 2px 2px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u38870_text {
  7185. border-width:0px;
  7186. word-wrap:break-word;
  7187. text-transform:none;
  7188. visibility:hidden;
  7189. }
  7190. #u38871_div {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:0px;
  7194. top:0px;
  7195. width:375px;
  7196. height:617px;
  7197. background:inherit;
  7198. background-color:rgba(255, 255, 255, 1);
  7199. border:none;
  7200. border-top:0px;
  7201. border-radius:25px;
  7202. border-top-left-radius:0px;
  7203. border-top-right-radius:0px;
  7204. -moz-box-shadow:none;
  7205. -webkit-box-shadow:none;
  7206. box-shadow:none;
  7207. }
  7208. #u38871 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:2308px;
  7212. top:226px;
  7213. width:375px;
  7214. height:617px;
  7215. display:flex;
  7216. }
  7217. #u38871 .text {
  7218. position:absolute;
  7219. align-self:center;
  7220. padding:2px 2px 2px 2px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u38871_text {
  7225. border-width:0px;
  7226. word-wrap:break-word;
  7227. text-transform:none;
  7228. visibility:hidden;
  7229. }
  7230. #u38872_div {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:109px;
  7236. height:28px;
  7237. background:inherit;
  7238. background-color:rgba(255, 255, 255, 0);
  7239. border:none;
  7240. border-left:0px;
  7241. border-top:0px;
  7242. border-right:0px;
  7243. border-radius:0px;
  7244. border-bottom-right-radius:0px;
  7245. border-bottom-left-radius:0px;
  7246. -moz-box-shadow:none;
  7247. -webkit-box-shadow:none;
  7248. box-shadow:none;
  7249. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7250. font-weight:500;
  7251. font-style:normal;
  7252. font-size:18px;
  7253. line-height:30px;
  7254. }
  7255. #u38872 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:2442px;
  7259. top:467px;
  7260. width:109px;
  7261. height:28px;
  7262. display:flex;
  7263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7264. font-weight:500;
  7265. font-style:normal;
  7266. font-size:18px;
  7267. line-height:30px;
  7268. }
  7269. #u38872 .text {
  7270. position:absolute;
  7271. align-self:flex-start;
  7272. padding:0px 0px 0px 0px;
  7273. box-sizing:border-box;
  7274. width:100%;
  7275. }
  7276. #u38872_text {
  7277. border-width:0px;
  7278. white-space:nowrap;
  7279. text-transform:none;
  7280. }
  7281. #u38873 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:0px;
  7287. height:0px;
  7288. }
  7289. #u38874_div {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:375px;
  7295. height:60px;
  7296. background:inherit;
  7297. background-color:rgba(255, 255, 255, 1);
  7298. border:none;
  7299. border-top:0px;
  7300. border-radius:28px;
  7301. border-top-left-radius:0px;
  7302. border-top-right-radius:0px;
  7303. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7304. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7305. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:14px;
  7310. color:#FFFFFF;
  7311. }
  7312. #u38874 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:2308px;
  7316. top:783px;
  7317. width:375px;
  7318. height:60px;
  7319. display:flex;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:14px;
  7324. color:#FFFFFF;
  7325. }
  7326. #u38874 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:2px 2px 2px 2px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u38874_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. visibility:hidden;
  7338. }
  7339. #u38875_div {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:347px;
  7345. height:40px;
  7346. background:inherit;
  7347. background-color:rgba(170, 170, 170, 1);
  7348. border:none;
  7349. border-radius:63px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#FFFFFF;
  7358. }
  7359. #u38875 {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:2326px;
  7363. top:793px;
  7364. width:347px;
  7365. height:40px;
  7366. display:flex;
  7367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:14px;
  7371. color:#FFFFFF;
  7372. }
  7373. #u38875 .text {
  7374. position:absolute;
  7375. align-self:center;
  7376. padding:2px 2px 2px 2px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u38875_text {
  7381. border-width:0px;
  7382. word-wrap:break-word;
  7383. text-transform:none;
  7384. }
  7385. #u38876_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:375px;
  7391. height:220px;
  7392. }
  7393. #u38876 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:2308px;
  7397. top:226px;
  7398. width:375px;
  7399. height:220px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. }
  7405. #u38876 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u38876_text {
  7413. border-width:0px;
  7414. word-wrap:break-word;
  7415. text-transform:none;
  7416. }
  7417. #u38877 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:0px;
  7423. height:0px;
  7424. }
  7425. #u38878_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:67px;
  7431. height:30px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 0);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:11px;
  7443. color:#555555;
  7444. line-height:30px;
  7445. }
  7446. #u38878 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:2460px;
  7450. top:506px;
  7451. width:67px;
  7452. height:30px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:11px;
  7458. color:#555555;
  7459. line-height:30px;
  7460. }
  7461. #u38878 .text {
  7462. position:absolute;
  7463. align-self:flex-start;
  7464. padding:0px 0px 0px 0px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u38878_text {
  7469. border-width:0px;
  7470. white-space:nowrap;
  7471. text-transform:none;
  7472. }
  7473. #u38879_img {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:12px;
  7479. height:18px;
  7480. }
  7481. #u38879 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:2442px;
  7485. top:511px;
  7486. width:12px;
  7487. height:18px;
  7488. display:flex;
  7489. }
  7490. #u38879 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:2px 2px 2px 2px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u38879_text {
  7498. border-width:0px;
  7499. word-wrap:break-word;
  7500. text-transform:none;
  7501. visibility:hidden;
  7502. }
  7503. #u38880 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:0px;
  7509. height:0px;
  7510. }
  7511. #u38881_div {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:347px;
  7517. height:167px;
  7518. background:inherit;
  7519. background-color:rgba(242, 242, 242, 1);
  7520. border:none;
  7521. border-radius:3px;
  7522. -moz-box-shadow:none;
  7523. -webkit-box-shadow:none;
  7524. box-shadow:none;
  7525. }
  7526. #u38881 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:2322px;
  7530. top:583px;
  7531. width:347px;
  7532. height:167px;
  7533. display:flex;
  7534. }
  7535. #u38881 .text {
  7536. position:absolute;
  7537. align-self:center;
  7538. padding:2px 2px 2px 2px;
  7539. box-sizing:border-box;
  7540. width:100%;
  7541. }
  7542. #u38881_text {
  7543. border-width:0px;
  7544. word-wrap:break-word;
  7545. text-transform:none;
  7546. visibility:hidden;
  7547. }
  7548. #u38882_div {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:71px;
  7554. height:90px;
  7555. background:inherit;
  7556. background-color:rgba(255, 255, 255, 0);
  7557. border:none;
  7558. border-radius:0px;
  7559. -moz-box-shadow:none;
  7560. -webkit-box-shadow:none;
  7561. box-shadow:none;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. color:#000000;
  7566. line-height:30px;
  7567. }
  7568. #u38882 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:2336px;
  7572. top:649px;
  7573. width:71px;
  7574. height:90px;
  7575. display:flex;
  7576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. color:#000000;
  7580. line-height:30px;
  7581. }
  7582. #u38882 .text {
  7583. position:absolute;
  7584. align-self:flex-start;
  7585. padding:0px 0px 0px 0px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u38882_text {
  7590. border-width:0px;
  7591. white-space:nowrap;
  7592. text-transform:none;
  7593. }
  7594. #u38883_div {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:72px;
  7600. height:90px;
  7601. background:inherit;
  7602. background-color:rgba(255, 255, 255, 0);
  7603. border:none;
  7604. border-radius:0px;
  7605. -moz-box-shadow:none;
  7606. -webkit-box-shadow:none;
  7607. box-shadow:none;
  7608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7609. font-weight:400;
  7610. font-style:normal;
  7611. color:#000000;
  7612. line-height:30px;
  7613. }
  7614. #u38883 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:2407px;
  7618. top:649px;
  7619. width:72px;
  7620. height:90px;
  7621. display:flex;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. color:#000000;
  7626. line-height:30px;
  7627. }
  7628. #u38883 .text {
  7629. position:absolute;
  7630. align-self:flex-start;
  7631. padding:0px 0px 0px 0px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u38883_text {
  7636. border-width:0px;
  7637. white-space:nowrap;
  7638. text-transform:none;
  7639. }
  7640. #u38884_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:81px;
  7646. height:28px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 0);
  7649. border:none;
  7650. border-left:0px;
  7651. border-top:0px;
  7652. border-right:0px;
  7653. border-radius:0px;
  7654. border-bottom-right-radius:0px;
  7655. border-bottom-left-radius:0px;
  7656. -moz-box-shadow:none;
  7657. -webkit-box-shadow:none;
  7658. box-shadow:none;
  7659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7660. font-weight:500;
  7661. font-style:normal;
  7662. font-size:16px;
  7663. line-height:30px;
  7664. }
  7665. #u38884 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:2336px;
  7669. top:593px;
  7670. width:81px;
  7671. height:28px;
  7672. display:flex;
  7673. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7674. font-weight:500;
  7675. font-style:normal;
  7676. font-size:16px;
  7677. line-height:30px;
  7678. }
  7679. #u38884 .text {
  7680. position:absolute;
  7681. align-self:flex-start;
  7682. padding:0px 0px 0px 0px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u38884_text {
  7687. border-width:0px;
  7688. white-space:nowrap;
  7689. text-transform:none;
  7690. }
  7691. #u38885_div {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:29px;
  7697. height:30px;
  7698. background:inherit;
  7699. background-color:rgba(255, 255, 255, 0);
  7700. border:none;
  7701. border-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. color:#00BFBF;
  7709. line-height:30px;
  7710. }
  7711. #u38885 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:2630px;
  7715. top:596px;
  7716. width:29px;
  7717. height:30px;
  7718. display:flex;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. color:#00BFBF;
  7723. line-height:30px;
  7724. }
  7725. #u38885 .text {
  7726. position:absolute;
  7727. align-self:flex-start;
  7728. padding:0px 0px 0px 0px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u38885_text {
  7733. border-width:0px;
  7734. white-space:nowrap;
  7735. text-transform:none;
  7736. }
  7737. #u38886_div {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:168px;
  7743. height:16px;
  7744. background:inherit;
  7745. background-color:rgba(255, 255, 255, 0);
  7746. border:none;
  7747. border-radius:0px;
  7748. -moz-box-shadow:none;
  7749. -webkit-box-shadow:none;
  7750. box-shadow:none;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:11px;
  7755. color:#555555;
  7756. }
  7757. #u38886 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:2336px;
  7761. top:623px;
  7762. width:168px;
  7763. height:16px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:11px;
  7769. color:#555555;
  7770. }
  7771. #u38886 .text {
  7772. position:absolute;
  7773. align-self:flex-start;
  7774. padding:0px 0px 0px 0px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u38886_text {
  7779. border-width:0px;
  7780. white-space:nowrap;
  7781. text-transform:none;
  7782. }
  7783. #u38887_img {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:0px;
  7787. top:0px;
  7788. width:100px;
  7789. height:98px;
  7790. }
  7791. #u38887 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:2322px;
  7795. top:465px;
  7796. width:100px;
  7797. height:98px;
  7798. display:flex;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. }
  7803. #u38887 .text {
  7804. position:absolute;
  7805. align-self:center;
  7806. padding:2px 2px 2px 2px;
  7807. box-sizing:border-box;
  7808. width:100%;
  7809. }
  7810. #u38887_text {
  7811. border-width:0px;
  7812. word-wrap:break-word;
  7813. text-transform:none;
  7814. }
  7815. #u38888 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:0px;
  7821. height:0px;
  7822. }
  7823. #u38889_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:357px;
  7829. height:150px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 1);
  7832. border:none;
  7833. border-radius:4px;
  7834. -moz-box-shadow:none;
  7835. -webkit-box-shadow:none;
  7836. box-shadow:none;
  7837. }
  7838. #u38889 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:38px;
  7842. top:326px;
  7843. width:357px;
  7844. height:150px;
  7845. display:flex;
  7846. }
  7847. #u38889 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u38889_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. visibility:hidden;
  7859. }
  7860. #u38890_div {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:97px;
  7866. height:22px;
  7867. background:inherit;
  7868. background-color:rgba(255, 255, 255, 0);
  7869. border:none;
  7870. border-radius:0px;
  7871. -moz-box-shadow:none;
  7872. -webkit-box-shadow:none;
  7873. box-shadow:none;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:16px;
  7878. color:#000000;
  7879. }
  7880. #u38890 {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:55px;
  7884. top:335px;
  7885. width:97px;
  7886. height:22px;
  7887. display:flex;
  7888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:16px;
  7892. color:#000000;
  7893. }
  7894. #u38890 .text {
  7895. position:absolute;
  7896. align-self:flex-start;
  7897. padding:0px 0px 0px 0px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u38890_text {
  7902. border-width:0px;
  7903. white-space:nowrap;
  7904. text-transform:none;
  7905. }
  7906. #u38891 {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:0px;
  7912. height:0px;
  7913. }
  7914. #u38892_img {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:0px;
  7918. top:0px;
  7919. width:8px;
  7920. height:14px;
  7921. }
  7922. #u38892 {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:58px;
  7926. top:363px;
  7927. width:8px;
  7928. height:14px;
  7929. display:flex;
  7930. }
  7931. #u38892 .text {
  7932. position:absolute;
  7933. align-self:center;
  7934. padding:2px 2px 2px 2px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u38892_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. visibility:hidden;
  7943. }
  7944. #u38893_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:49px;
  7950. height:17px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 0);
  7953. border:none;
  7954. border-radius:0px;
  7955. -moz-box-shadow:none;
  7956. -webkit-box-shadow:none;
  7957. box-shadow:none;
  7958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7959. font-weight:400;
  7960. font-style:normal;
  7961. font-size:12px;
  7962. color:#000000;
  7963. }
  7964. #u38893 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:73px;
  7968. top:362px;
  7969. width:49px;
  7970. height:17px;
  7971. display:flex;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:12px;
  7976. color:#000000;
  7977. }
  7978. #u38893 .text {
  7979. position:absolute;
  7980. align-self:flex-start;
  7981. padding:0px 0px 0px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u38893_text {
  7986. border-width:0px;
  7987. white-space:nowrap;
  7988. text-transform:none;
  7989. }
  7990. #u38894_div {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:320px;
  7996. height:40px;
  7997. background:inherit;
  7998. background-color:rgba(242, 242, 242, 0.498039215686275);
  7999. border:none;
  8000. border-radius:4px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. }
  8005. #u38894 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:52px;
  8009. top:392px;
  8010. width:320px;
  8011. height:40px;
  8012. display:flex;
  8013. }
  8014. #u38894 .text {
  8015. position:absolute;
  8016. align-self:center;
  8017. padding:2px 2px 2px 2px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u38894_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u38895_div {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:70px;
  8033. height:24px;
  8034. background:inherit;
  8035. background-color:rgba(242, 242, 242, 1);
  8036. border:none;
  8037. border-radius:20px;
  8038. -moz-box-shadow:none;
  8039. -webkit-box-shadow:none;
  8040. box-shadow:none;
  8041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8042. font-weight:400;
  8043. font-style:normal;
  8044. font-size:10px;
  8045. color:#AAAAAA;
  8046. }
  8047. #u38895 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:52px;
  8051. top:441px;
  8052. width:70px;
  8053. height:24px;
  8054. display:flex;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:10px;
  8059. color:#AAAAAA;
  8060. }
  8061. #u38895 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:2px 2px 2px 2px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u38895_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. }
  8073. #u38896_div {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:98px;
  8079. height:20px;
  8080. background:inherit;
  8081. background-color:rgba(255, 255, 255, 0);
  8082. border:none;
  8083. border-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. color:#000000;
  8091. }
  8092. #u38896 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:62px;
  8096. top:402px;
  8097. width:98px;
  8098. height:20px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. color:#000000;
  8104. }
  8105. #u38896 .text {
  8106. position:absolute;
  8107. align-self:flex-start;
  8108. padding:0px 0px 0px 0px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u38896_text {
  8113. border-width:0px;
  8114. white-space:nowrap;
  8115. text-transform:none;
  8116. }
  8117. #u38897_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:90px;
  8123. height:20px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. color:#000000;
  8135. }
  8136. #u38897 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:194px;
  8140. top:402px;
  8141. width:90px;
  8142. height:20px;
  8143. display:flex;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. color:#000000;
  8148. }
  8149. #u38897 .text {
  8150. position:absolute;
  8151. align-self:flex-start;
  8152. padding:0px 0px 0px 0px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u38897_text {
  8157. border-width:0px;
  8158. white-space:nowrap;
  8159. text-transform:none;
  8160. }
  8161. #u38898 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:0px;
  8167. height:0px;
  8168. }
  8169. #u38899_div {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:357px;
  8175. height:150px;
  8176. background:inherit;
  8177. background-color:rgba(255, 255, 255, 1);
  8178. border:none;
  8179. border-radius:4px;
  8180. -moz-box-shadow:none;
  8181. -webkit-box-shadow:none;
  8182. box-shadow:none;
  8183. }
  8184. #u38899 {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:38px;
  8188. top:486px;
  8189. width:357px;
  8190. height:150px;
  8191. display:flex;
  8192. }
  8193. #u38899 .text {
  8194. position:absolute;
  8195. align-self:center;
  8196. padding:2px 2px 2px 2px;
  8197. box-sizing:border-box;
  8198. width:100%;
  8199. }
  8200. #u38899_text {
  8201. border-width:0px;
  8202. word-wrap:break-word;
  8203. text-transform:none;
  8204. visibility:hidden;
  8205. }
  8206. #u38900_div {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:97px;
  8212. height:22px;
  8213. background:inherit;
  8214. background-color:rgba(255, 255, 255, 0);
  8215. border:none;
  8216. border-radius:0px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:16px;
  8224. color:#000000;
  8225. }
  8226. #u38900 {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:55px;
  8230. top:495px;
  8231. width:97px;
  8232. height:22px;
  8233. display:flex;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:16px;
  8238. color:#000000;
  8239. }
  8240. #u38900 .text {
  8241. position:absolute;
  8242. align-self:flex-start;
  8243. padding:0px 0px 0px 0px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u38900_text {
  8248. border-width:0px;
  8249. white-space:nowrap;
  8250. text-transform:none;
  8251. }
  8252. #u38901 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:0px;
  8256. top:0px;
  8257. width:0px;
  8258. height:0px;
  8259. }
  8260. #u38902_img {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:8px;
  8266. height:14px;
  8267. }
  8268. #u38902 {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:58px;
  8272. top:523px;
  8273. width:8px;
  8274. height:14px;
  8275. display:flex;
  8276. }
  8277. #u38902 .text {
  8278. position:absolute;
  8279. align-self:center;
  8280. padding:2px 2px 2px 2px;
  8281. box-sizing:border-box;
  8282. width:100%;
  8283. }
  8284. #u38902_text {
  8285. border-width:0px;
  8286. word-wrap:break-word;
  8287. text-transform:none;
  8288. visibility:hidden;
  8289. }
  8290. #u38903_div {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:0px;
  8294. top:0px;
  8295. width:49px;
  8296. height:17px;
  8297. background:inherit;
  8298. background-color:rgba(255, 255, 255, 0);
  8299. border:none;
  8300. border-radius:0px;
  8301. -moz-box-shadow:none;
  8302. -webkit-box-shadow:none;
  8303. box-shadow:none;
  8304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:12px;
  8308. color:#000000;
  8309. }
  8310. #u38903 {
  8311. border-width:0px;
  8312. position:absolute;
  8313. left:73px;
  8314. top:522px;
  8315. width:49px;
  8316. height:17px;
  8317. display:flex;
  8318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8319. font-weight:400;
  8320. font-style:normal;
  8321. font-size:12px;
  8322. color:#000000;
  8323. }
  8324. #u38903 .text {
  8325. position:absolute;
  8326. align-self:flex-start;
  8327. padding:0px 0px 0px 0px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u38903_text {
  8332. border-width:0px;
  8333. white-space:nowrap;
  8334. text-transform:none;
  8335. }
  8336. #u38904_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:320px;
  8342. height:40px;
  8343. background:inherit;
  8344. background-color:rgba(242, 242, 242, 0.498039215686275);
  8345. border:none;
  8346. border-radius:4px;
  8347. -moz-box-shadow:none;
  8348. -webkit-box-shadow:none;
  8349. box-shadow:none;
  8350. }
  8351. #u38904 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:52px;
  8355. top:552px;
  8356. width:320px;
  8357. height:40px;
  8358. display:flex;
  8359. }
  8360. #u38904 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:2px 2px 2px 2px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u38904_text {
  8368. border-width:0px;
  8369. word-wrap:break-word;
  8370. text-transform:none;
  8371. visibility:hidden;
  8372. }
  8373. #u38905_div {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:80px;
  8379. height:17px;
  8380. background:inherit;
  8381. background-color:rgba(255, 255, 255, 0);
  8382. border:none;
  8383. border-radius:0px;
  8384. -moz-box-shadow:none;
  8385. -webkit-box-shadow:none;
  8386. box-shadow:none;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:12px;
  8391. }
  8392. #u38905 {
  8393. border-width:0px;
  8394. position:absolute;
  8395. left:62px;
  8396. top:562px;
  8397. width:80px;
  8398. height:17px;
  8399. display:flex;
  8400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:12px;
  8404. }
  8405. #u38905 .text {
  8406. position:absolute;
  8407. align-self:flex-start;
  8408. padding:0px 0px 0px 0px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u38905_text {
  8413. border-width:0px;
  8414. white-space:nowrap;
  8415. text-transform:none;
  8416. }
  8417. #u38906_div {
  8418. border-width:0px;
  8419. position:absolute;
  8420. left:0px;
  8421. top:0px;
  8422. width:80px;
  8423. height:17px;
  8424. background:inherit;
  8425. background-color:rgba(255, 255, 255, 0);
  8426. border:none;
  8427. border-radius:0px;
  8428. -moz-box-shadow:none;
  8429. -webkit-box-shadow:none;
  8430. box-shadow:none;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. color:#000000;
  8436. }
  8437. #u38906 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:194px;
  8441. top:562px;
  8442. width:80px;
  8443. height:17px;
  8444. display:flex;
  8445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:12px;
  8449. color:#000000;
  8450. }
  8451. #u38906 .text {
  8452. position:absolute;
  8453. align-self:flex-start;
  8454. padding:0px 0px 0px 0px;
  8455. box-sizing:border-box;
  8456. width:100%;
  8457. }
  8458. #u38906_text {
  8459. border-width:0px;
  8460. white-space:nowrap;
  8461. text-transform:none;
  8462. }
  8463. #u38907_div {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:61px;
  8469. height:14px;
  8470. background:inherit;
  8471. background-color:rgba(255, 255, 255, 0);
  8472. border:none;
  8473. border-radius:0px;
  8474. -moz-box-shadow:none;
  8475. -webkit-box-shadow:none;
  8476. box-shadow:none;
  8477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:10px;
  8481. color:#AAAAAA;
  8482. }
  8483. #u38907 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:301px;
  8487. top:565px;
  8488. width:61px;
  8489. height:14px;
  8490. display:flex;
  8491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:10px;
  8495. color:#AAAAAA;
  8496. }
  8497. #u38907 .text {
  8498. position:absolute;
  8499. align-self:flex-start;
  8500. padding:0px 0px 0px 0px;
  8501. box-sizing:border-box;
  8502. width:100%;
  8503. }
  8504. #u38907_text {
  8505. border-width:0px;
  8506. white-space:nowrap;
  8507. text-transform:none;
  8508. }
  8509. #u38908_div {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:70px;
  8515. height:24px;
  8516. background:inherit;
  8517. background-color:rgba(242, 242, 242, 1);
  8518. border:none;
  8519. border-radius:20px;
  8520. -moz-box-shadow:none;
  8521. -webkit-box-shadow:none;
  8522. box-shadow:none;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:10px;
  8527. color:#AAAAAA;
  8528. }
  8529. #u38908 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:52px;
  8533. top:599px;
  8534. width:70px;
  8535. height:24px;
  8536. display:flex;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:10px;
  8541. color:#AAAAAA;
  8542. }
  8543. #u38908 .text {
  8544. position:absolute;
  8545. align-self:center;
  8546. padding:2px 2px 2px 2px;
  8547. box-sizing:border-box;
  8548. width:100%;
  8549. }
  8550. #u38908_text {
  8551. border-width:0px;
  8552. word-wrap:break-word;
  8553. text-transform:none;
  8554. }
  8555. #u38909_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:394px;
  8561. height:123px;
  8562. background:inherit;
  8563. background-color:rgba(245, 154, 35, 0);
  8564. border:none;
  8565. border-left:0px;
  8566. border-top:0px;
  8567. border-right:0px;
  8568. border-radius:0px;
  8569. border-bottom-right-radius:0px;
  8570. border-bottom-left-radius:0px;
  8571. -moz-box-shadow:none;
  8572. -webkit-box-shadow:none;
  8573. box-shadow:none;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:12px;
  8578. color:#D9001B;
  8579. text-align:left;
  8580. }
  8581. #u38909 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:38px;
  8585. top:895px;
  8586. width:394px;
  8587. height:123px;
  8588. display:flex;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:12px;
  8593. color:#D9001B;
  8594. text-align:left;
  8595. }
  8596. #u38909 .text {
  8597. position:absolute;
  8598. align-self:flex-start;
  8599. padding:2px 2px 2px 2px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u38909_text {
  8604. border-width:0px;
  8605. white-space:nowrap;
  8606. text-transform:none;
  8607. }
  8608. #u38910 {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:0px;
  8614. height:0px;
  8615. }
  8616. #u38911_div {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:375px;
  8622. height:50px;
  8623. background:inherit;
  8624. background-color:rgba(255, 255, 255, 1);
  8625. box-sizing:border-box;
  8626. border-width:1px;
  8627. border-style:solid;
  8628. border-color:rgba(242, 242, 242, 1);
  8629. border-radius:26px;
  8630. border-top-left-radius:0px;
  8631. border-top-right-radius:0px;
  8632. -moz-box-shadow:none;
  8633. -webkit-box-shadow:none;
  8634. box-shadow:none;
  8635. }
  8636. #u38911 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:29px;
  8640. top:791px;
  8641. width:375px;
  8642. height:50px;
  8643. display:flex;
  8644. }
  8645. #u38911 .text {
  8646. position:absolute;
  8647. align-self:center;
  8648. padding:2px 2px 2px 2px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u38911_text {
  8653. border-width:0px;
  8654. word-wrap:break-word;
  8655. text-transform:none;
  8656. visibility:hidden;
  8657. }
  8658. #u38912 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:0px;
  8664. height:0px;
  8665. }
  8666. #u38913_img {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:24px;
  8672. height:24px;
  8673. }
  8674. #u38913 {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:319px;
  8678. top:795px;
  8679. width:24px;
  8680. height:24px;
  8681. display:flex;
  8682. font-size:8px;
  8683. }
  8684. #u38913 .text {
  8685. position:absolute;
  8686. align-self:center;
  8687. padding:2px 2px 2px 2px;
  8688. box-sizing:border-box;
  8689. width:100%;
  8690. }
  8691. #u38913_text {
  8692. border-width:0px;
  8693. word-wrap:break-word;
  8694. text-transform:none;
  8695. }
  8696. #u38914_div {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:25px;
  8702. height:17px;
  8703. background:inherit;
  8704. background-color:rgba(255, 255, 255, 0);
  8705. border:none;
  8706. border-radius:0px;
  8707. -moz-box-shadow:none;
  8708. -webkit-box-shadow:none;
  8709. box-shadow:none;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:12px;
  8714. }
  8715. #u38914 {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:318px;
  8719. top:820px;
  8720. width:25px;
  8721. height:17px;
  8722. display:flex;
  8723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8724. font-weight:400;
  8725. font-style:normal;
  8726. font-size:12px;
  8727. }
  8728. #u38914 .text {
  8729. position:absolute;
  8730. align-self:flex-start;
  8731. padding:0px 0px 0px 0px;
  8732. box-sizing:border-box;
  8733. width:100%;
  8734. }
  8735. #u38914_text {
  8736. border-width:0px;
  8737. white-space:nowrap;
  8738. text-transform:none;
  8739. }
  8740. #u38915 {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:0px;
  8746. height:0px;
  8747. }
  8748. #u38916_div {
  8749. border-width:0px;
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:25px;
  8754. height:17px;
  8755. background:inherit;
  8756. background-color:rgba(255, 255, 255, 0);
  8757. border:none;
  8758. border-radius:0px;
  8759. -moz-box-shadow:none;
  8760. -webkit-box-shadow:none;
  8761. box-shadow:none;
  8762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8763. font-weight:400;
  8764. font-style:normal;
  8765. font-size:12px;
  8766. }
  8767. #u38916 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:89px;
  8771. top:820px;
  8772. width:25px;
  8773. height:17px;
  8774. display:flex;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:12px;
  8779. }
  8780. #u38916 .text {
  8781. position:absolute;
  8782. align-self:flex-start;
  8783. padding:0px 0px 0px 0px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u38916_text {
  8788. border-width:0px;
  8789. white-space:nowrap;
  8790. text-transform:none;
  8791. }
  8792. #u38917_img {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:24px;
  8798. height:24px;
  8799. }
  8800. #u38917 {
  8801. border-width:0px;
  8802. position:absolute;
  8803. left:89px;
  8804. top:795px;
  8805. width:24px;
  8806. height:24px;
  8807. display:flex;
  8808. font-size:8px;
  8809. color:#FFFFFF;
  8810. }
  8811. #u38917 .text {
  8812. position:absolute;
  8813. align-self:center;
  8814. padding:2px 2px 2px 2px;
  8815. box-sizing:border-box;
  8816. width:100%;
  8817. }
  8818. #u38917_text {
  8819. border-width:0px;
  8820. word-wrap:break-word;
  8821. text-transform:none;
  8822. }