styles.css 151 KB

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