styles.css 115 KB

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