styles.css 226 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:6544px;
  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. #u37557 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u37559 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u37560_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u37560 {
  53. border-width:0px;
  54. position:absolute;
  55. left:1706px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u37560 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u37560_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u37561_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u37561 {
  92. border-width:0px;
  93. position:absolute;
  94. left:1657px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u37561 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u37561_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u37562 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u37563_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u37563 {
  131. border-width:0px;
  132. position:absolute;
  133. left:1676px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u37563 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u37563_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u37564_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u37564 {
  172. border-width:0px;
  173. position:absolute;
  174. left:1719px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u37564 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u37564_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u37565_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u37565 {
  214. border-width:0px;
  215. position:absolute;
  216. left:1657px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u37565 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u37565_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u37566_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u37566 {
  245. border-width:0px;
  246. position:absolute;
  247. left:3180px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u37566 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u37566_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u37567_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u37567 {
  275. border-width:0px;
  276. position:absolute;
  277. left:3150px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u37567 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u37567_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u37568 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u37569_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u37569 {
  313. border-width:0px;
  314. position:absolute;
  315. left:3210px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u37569 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u37569_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u37570_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u37570 {
  343. border-width:0px;
  344. position:absolute;
  345. left:3229px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u37570 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u37570_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u37571_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u37571 {
  380. border-width:0px;
  381. position:absolute;
  382. left:1855px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u37571 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u37571_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u37572 {
  402. border-width:0px;
  403. position:absolute;
  404. left:1692px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u37572_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u37573 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u37574_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u37574 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u37574 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u37574_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u37575 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u37576_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u37576 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u37576 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u37576_img.selected {
  504. }
  505. #u37576.selected {
  506. }
  507. #u37576_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u37577_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u37577 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u37577 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u37577_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u37575_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u37578 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u37579_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u37579 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u37579 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u37579_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u37580 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u37581_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u37581 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u37581 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u37581_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u37582 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u37583_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u37583 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u37583 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u37583_img.selected {
  693. }
  694. #u37583.selected {
  695. }
  696. #u37583_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u37584_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u37584 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u37584 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u37584_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u37582_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u37585 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u37586_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u37586 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u37586 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u37586_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u37587 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u37588_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u37588 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u37588 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u37588_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u37589 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u37590_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u37590 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u37590 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u37590_img.selected {
  882. }
  883. #u37590.selected {
  884. }
  885. #u37590_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u37591_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u37591 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u37591 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u37591_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u37589_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u37592 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u37593_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u37593 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u37593 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u37593_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u37594 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u37595_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u37595 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u37595 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u37595_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u37596 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u37597_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u37597 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u37597 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u37597_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u37598 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u37599_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u37599 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u37599 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u37599_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u37600 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u37601_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u37601 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u37601 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u37601_img.selected {
  1170. }
  1171. #u37601.selected {
  1172. }
  1173. #u37601_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u37602_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u37602 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u37602 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u37602_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u37600_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u37603 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u37604_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u37604 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u37604 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u37604_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u37605 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u37606_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u37606 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u37606 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u37606_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u37607 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u37608_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u37608 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u37608 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u37608_img.selected {
  1360. }
  1361. #u37608.selected {
  1362. }
  1363. #u37608_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u37609_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u37609 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u37609 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u37609_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u37607_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u37610 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u37611_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u37611 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u37611 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u37611_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u37612 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u37613_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u37613 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u37613 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u37613_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u37614 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u37615_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u37615 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u37615 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u37615_img.selected {
  1550. }
  1551. #u37615.selected {
  1552. }
  1553. #u37615_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u37616_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u37616 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u37616 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u37616_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u37614_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u37617 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u37618_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u37618 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u37618 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u37618_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u37619 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u37620_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u37620 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u37620 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u37620_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u37621 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u37622_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u37622 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u37622 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u37622_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u37623 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u37624_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u37624_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u37624_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u37624 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:1900px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u37624 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u37624_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u37624.disabled {
  1850. }
  1851. .u37624_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u37625_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u37625 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:1873px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u37625 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u37625_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u37626_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u37626 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:1865px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u37626 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u37626_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u37627_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u37627 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:2074px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u37627 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u37627_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u37628_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u37628 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:3031px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u37628 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u37628_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u37629_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1600px;
  2026. height:1200px;
  2027. background:inherit;
  2028. background-color:rgba(242, 242, 242, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2032. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2033. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2034. }
  2035. #u37629 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:1657px;
  2039. top:50px;
  2040. width:1600px;
  2041. height:1200px;
  2042. display:flex;
  2043. }
  2044. #u37629 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u37629_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u37630_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:280px;
  2063. height:1184px;
  2064. background:inherit;
  2065. background-color:rgba(255, 255, 255, 1);
  2066. box-sizing:border-box;
  2067. border-width:1px;
  2068. border-style:solid;
  2069. border-color:rgba(215, 215, 215, 1);
  2070. border-radius:0px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:14px;
  2078. color:#AAAAAA;
  2079. text-align:center;
  2080. line-height:30px;
  2081. }
  2082. #u37630 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:1657px;
  2086. top:50px;
  2087. width:280px;
  2088. height:1184px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:14px;
  2094. color:#AAAAAA;
  2095. text-align:center;
  2096. line-height:30px;
  2097. }
  2098. #u37630 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:5px 10px 5px 10px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u37630_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u37631_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:93px;
  2117. height:60px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:18px;
  2134. color:#198CFB;
  2135. text-align:right;
  2136. line-height:50px;
  2137. }
  2138. #u37631 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:1814px;
  2142. top:190px;
  2143. width:93px;
  2144. height:60px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:18px;
  2150. color:#198CFB;
  2151. text-align:right;
  2152. line-height:50px;
  2153. }
  2154. #u37631 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:5px 0px 5px 20px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u37631_text {
  2162. border-width:0px;
  2163. white-space:nowrap;
  2164. text-transform:none;
  2165. }
  2166. #u37632_div {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:1320px;
  2172. height:1184px;
  2173. background:inherit;
  2174. background-color:rgba(255, 255, 255, 1);
  2175. box-sizing:border-box;
  2176. border-width:1px;
  2177. border-style:solid;
  2178. border-color:rgba(215, 215, 215, 1);
  2179. border-radius:0px;
  2180. -moz-box-shadow:none;
  2181. -webkit-box-shadow:none;
  2182. box-shadow:none;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. color:#AAAAAA;
  2188. text-align:center;
  2189. line-height:30px;
  2190. }
  2191. #u37632 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:1937px;
  2195. top:50px;
  2196. width:1320px;
  2197. height:1184px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:14px;
  2203. color:#AAAAAA;
  2204. text-align:center;
  2205. line-height:30px;
  2206. }
  2207. #u37632 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:5px 10px 5px 10px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u37632_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. visibility:hidden;
  2219. }
  2220. #u37633_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:73px;
  2226. height:60px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-left:0px;
  2231. border-top:0px;
  2232. border-right:0px;
  2233. border-radius:0px;
  2234. border-bottom-right-radius:0px;
  2235. border-bottom-left-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:18px;
  2243. line-height:50px;
  2244. }
  2245. #u37633 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:1967px;
  2249. top:130px;
  2250. width:73px;
  2251. height:60px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:18px;
  2257. line-height:50px;
  2258. }
  2259. #u37633 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:5px 0px 5px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u37633_text {
  2267. border-width:0px;
  2268. white-space:nowrap;
  2269. text-transform:none;
  2270. }
  2271. #u37634_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:1600px;
  2277. height:60px;
  2278. background:inherit;
  2279. background-color:rgba(255, 255, 255, 1);
  2280. border:none;
  2281. border-radius:0px;
  2282. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2283. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2284. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:14px;
  2289. color:#AAAAAA;
  2290. text-align:center;
  2291. line-height:30px;
  2292. }
  2293. #u37634 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:1657px;
  2297. top:50px;
  2298. width:1600px;
  2299. height:60px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:14px;
  2305. color:#AAAAAA;
  2306. text-align:center;
  2307. line-height:30px;
  2308. }
  2309. #u37634 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:5px 10px 5px 10px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u37634_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. visibility:hidden;
  2321. }
  2322. #u37635_div {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:60px;
  2328. height:30px;
  2329. background:inherit;
  2330. background-color:rgba(25, 140, 251, 1);
  2331. border:none;
  2332. border-radius:4px;
  2333. -moz-box-shadow:none;
  2334. -webkit-box-shadow:none;
  2335. box-shadow:none;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:14px;
  2340. color:#FFFFFF;
  2341. }
  2342. #u37635 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:3157px;
  2346. top:65px;
  2347. width:60px;
  2348. height:30px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u37635 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 2px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u37635_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u37636_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:70px;
  2374. height:35px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 0);
  2377. border:none;
  2378. border-left:0px;
  2379. border-top:0px;
  2380. border-right:0px;
  2381. border-radius:0px;
  2382. border-bottom-right-radius:0px;
  2383. border-bottom-left-radius:0px;
  2384. -moz-box-shadow:none;
  2385. -webkit-box-shadow:none;
  2386. box-shadow:none;
  2387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2388. font-weight:500;
  2389. font-style:normal;
  2390. font-size:18px;
  2391. }
  2392. #u37636 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:1680px;
  2396. top:63px;
  2397. width:70px;
  2398. height:35px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2401. font-weight:500;
  2402. font-style:normal;
  2403. font-size:18px;
  2404. }
  2405. #u37636 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:5px 10px 5px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u37636_text {
  2413. border-width:0px;
  2414. white-space:nowrap;
  2415. text-transform:none;
  2416. }
  2417. #u37637_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:491px;
  2423. height:60px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border:none;
  2427. border-left:0px;
  2428. border-top:0px;
  2429. border-right:0px;
  2430. border-radius:0px;
  2431. border-bottom-right-radius:0px;
  2432. border-bottom-left-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. line-height:50px;
  2441. }
  2442. #u37637 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:1967px;
  2446. top:190px;
  2447. width:491px;
  2448. height:60px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. line-height:50px;
  2455. }
  2456. #u37637 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:5px 0px 5px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u37637_text {
  2464. border-width:0px;
  2465. white-space:nowrap;
  2466. text-transform:none;
  2467. }
  2468. #u37638 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:0px;
  2474. height:0px;
  2475. }
  2476. #u37639_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:50px;
  2482. height:31px;
  2483. }
  2484. #u37639 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:2073px;
  2488. top:254px;
  2489. width:50px;
  2490. height:31px;
  2491. display:flex;
  2492. }
  2493. #u37639 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 2px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u37639_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. visibility:hidden;
  2505. }
  2506. #u37640_div {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:73px;
  2512. height:40px;
  2513. background:inherit;
  2514. background-color:rgba(255, 255, 255, 0);
  2515. border:none;
  2516. border-left:0px;
  2517. border-top:0px;
  2518. border-right:0px;
  2519. border-radius:0px;
  2520. border-bottom-right-radius:0px;
  2521. border-bottom-left-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:18px;
  2529. }
  2530. #u37640 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1967px;
  2534. top:250px;
  2535. width:73px;
  2536. height:40px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:18px;
  2542. }
  2543. #u37640 .text {
  2544. position:absolute;
  2545. align-self:center;
  2546. padding:0px 0px 0px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u37640_text {
  2551. border-width:0px;
  2552. white-space:nowrap;
  2553. text-transform:none;
  2554. }
  2555. #u37641 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:0px;
  2561. height:0px;
  2562. }
  2563. #u37642_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:50px;
  2569. height:31px;
  2570. }
  2571. #u37642 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:2073px;
  2575. top:314px;
  2576. width:50px;
  2577. height:31px;
  2578. display:flex;
  2579. }
  2580. #u37642 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u37642_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u37643_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:73px;
  2599. height:40px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-left:0px;
  2604. border-top:0px;
  2605. border-right:0px;
  2606. border-radius:0px;
  2607. border-bottom-right-radius:0px;
  2608. border-bottom-left-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:18px;
  2616. }
  2617. #u37643 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:1967px;
  2621. top:310px;
  2622. width:73px;
  2623. height:40px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:18px;
  2629. }
  2630. #u37643 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u37643_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u37644_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:141px;
  2648. height:60px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 0);
  2651. border:none;
  2652. border-left:0px;
  2653. border-top:0px;
  2654. border-right:0px;
  2655. border-radius:0px;
  2656. border-bottom-right-radius:0px;
  2657. border-bottom-left-radius:0px;
  2658. -moz-box-shadow:none;
  2659. -webkit-box-shadow:none;
  2660. box-shadow:none;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:14px;
  2665. color:#F59A23;
  2666. line-height:50px;
  2667. }
  2668. #u37644 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:2138px;
  2672. top:300px;
  2673. width:141px;
  2674. height:60px;
  2675. display:flex;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:14px;
  2680. color:#F59A23;
  2681. line-height:50px;
  2682. }
  2683. #u37644 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:5px 0px 5px 0px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u37644_text {
  2691. border-width:0px;
  2692. white-space:nowrap;
  2693. text-transform:none;
  2694. }
  2695. #u37645_div {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:101px;
  2701. height:35px;
  2702. background:inherit;
  2703. background-color:rgba(255, 255, 255, 0);
  2704. border:none;
  2705. border-top:0px;
  2706. border-right:0px;
  2707. border-bottom:0px;
  2708. border-radius:0px;
  2709. border-top-left-radius:0px;
  2710. border-bottom-left-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:18px;
  2718. }
  2719. #u37645 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:1967px;
  2723. top:378px;
  2724. width:101px;
  2725. height:35px;
  2726. display:flex;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:18px;
  2731. }
  2732. #u37645 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:5px 10px 5px 0px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u37645_text {
  2740. border-width:0px;
  2741. white-space:nowrap;
  2742. text-transform:none;
  2743. }
  2744. #u37646 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:0px;
  2750. height:0px;
  2751. }
  2752. #u37647_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:1149px;
  2758. height:40px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 1);
  2761. box-sizing:border-box;
  2762. border-width:1px;
  2763. border-style:solid;
  2764. border-color:rgba(201, 201, 201, 1);
  2765. border-radius:4px;
  2766. -moz-box-shadow:none;
  2767. -webkit-box-shadow:none;
  2768. box-shadow:none;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:14px;
  2773. text-align:right;
  2774. }
  2775. #u37647 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:2068px;
  2779. top:375px;
  2780. width:1149px;
  2781. height:40px;
  2782. display:flex;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. text-align:right;
  2788. }
  2789. #u37647 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 8px 2px 8px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u37647_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u37648_input {
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:726px;
  2807. height:33px;
  2808. padding:2px 2px 2px 2px;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:14px;
  2813. letter-spacing:normal;
  2814. color:#333333;
  2815. vertical-align:none;
  2816. text-align:left;
  2817. text-transform:none;
  2818. background-color:transparent;
  2819. border-color:transparent;
  2820. }
  2821. #u37648_input.disabled {
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:726px;
  2826. height:33px;
  2827. padding:2px 2px 2px 2px;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. letter-spacing:normal;
  2833. color:#333333;
  2834. vertical-align:none;
  2835. text-align:left;
  2836. text-transform:none;
  2837. background-color:transparent;
  2838. border-color:transparent;
  2839. }
  2840. #u37648_div {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:726px;
  2846. height:33px;
  2847. background:inherit;
  2848. background-color:rgba(255, 255, 255, 0);
  2849. border:none;
  2850. border-radius:0px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. color:#333333;
  2859. }
  2860. #u37648 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:2083px;
  2864. top:379px;
  2865. width:726px;
  2866. height:33px;
  2867. display:flex;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:14px;
  2872. color:#333333;
  2873. }
  2874. #u37648 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 2px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u37648_div.disabled {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:726px;
  2887. height:33px;
  2888. background:inherit;
  2889. background-color:rgba(240, 240, 240, 1);
  2890. border:none;
  2891. border-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:14px;
  2899. color:#333333;
  2900. }
  2901. #u37648.disabled {
  2902. }
  2903. #u37649_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:101px;
  2909. height:35px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 0);
  2912. border:none;
  2913. border-top:0px;
  2914. border-right:0px;
  2915. border-bottom:0px;
  2916. border-radius:0px;
  2917. border-top-left-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. -moz-box-shadow:none;
  2920. -webkit-box-shadow:none;
  2921. box-shadow:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:18px;
  2926. }
  2927. #u37649 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:1967px;
  2931. top:428px;
  2932. width:101px;
  2933. height:35px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:18px;
  2939. }
  2940. #u37649 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:5px 10px 5px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u37649_text {
  2948. border-width:0px;
  2949. white-space:nowrap;
  2950. text-transform:none;
  2951. }
  2952. #u37650 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:0px;
  2958. height:0px;
  2959. }
  2960. #u37651_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:1149px;
  2966. height:767px;
  2967. background:inherit;
  2968. background-color:rgba(255, 255, 255, 1);
  2969. box-sizing:border-box;
  2970. border-width:1px;
  2971. border-style:solid;
  2972. border-color:rgba(201, 201, 201, 1);
  2973. border-radius:4px;
  2974. -moz-box-shadow:none;
  2975. -webkit-box-shadow:none;
  2976. box-shadow:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:14px;
  2981. text-align:right;
  2982. }
  2983. #u37651 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:2068px;
  2987. top:425px;
  2988. width:1149px;
  2989. height:767px;
  2990. display:flex;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:14px;
  2995. text-align:right;
  2996. }
  2997. #u37651 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 8px 2px 8px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u37651_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u37652_input {
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:1120px;
  3015. height:750px;
  3016. padding:2px 2px 2px 2px;
  3017. font-family:'ArialMT', 'Arial', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:14px;
  3021. letter-spacing:normal;
  3022. color:#000000;
  3023. vertical-align:none;
  3024. text-align:left;
  3025. text-transform:none;
  3026. background-color:transparent;
  3027. border-color:transparent;
  3028. resize:none;
  3029. }
  3030. #u37652_input.disabled {
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:1120px;
  3035. height:750px;
  3036. padding:2px 2px 2px 2px;
  3037. font-family:'ArialMT', 'Arial', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. letter-spacing:normal;
  3042. color:#000000;
  3043. vertical-align:none;
  3044. text-align:left;
  3045. text-transform:none;
  3046. background-color:transparent;
  3047. border-color:transparent;
  3048. resize:none;
  3049. }
  3050. #u37652_div {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:1120px;
  3056. height:750px;
  3057. background:inherit;
  3058. background-color:rgba(255, 255, 255, 1);
  3059. border:none;
  3060. border-radius:0px;
  3061. -moz-box-shadow:none;
  3062. -webkit-box-shadow:none;
  3063. box-shadow:none;
  3064. font-size:14px;
  3065. }
  3066. #u37652 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:2083px;
  3070. top:429px;
  3071. width:1120px;
  3072. height:750px;
  3073. display:flex;
  3074. font-size:14px;
  3075. }
  3076. #u37652 .text {
  3077. position:absolute;
  3078. align-self:flex-start;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u37652_div.disabled {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:1120px;
  3089. height:750px;
  3090. background:inherit;
  3091. background-color:rgba(240, 240, 240, 1);
  3092. border:none;
  3093. border-radius:0px;
  3094. -moz-box-shadow:none;
  3095. -webkit-box-shadow:none;
  3096. box-shadow:none;
  3097. font-size:14px;
  3098. }
  3099. #u37652.disabled {
  3100. }
  3101. #u37653_div {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:129px;
  3107. height:60px;
  3108. background:inherit;
  3109. background-color:rgba(255, 255, 255, 0);
  3110. border:none;
  3111. border-left:0px;
  3112. border-top:0px;
  3113. border-right:0px;
  3114. border-radius:0px;
  3115. border-bottom-right-radius:0px;
  3116. border-bottom-left-radius:0px;
  3117. -moz-box-shadow:none;
  3118. -webkit-box-shadow:none;
  3119. box-shadow:none;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:18px;
  3124. text-align:right;
  3125. line-height:50px;
  3126. }
  3127. #u37653 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:1778px;
  3131. top:250px;
  3132. width:129px;
  3133. height:60px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:18px;
  3139. text-align:right;
  3140. line-height:50px;
  3141. }
  3142. #u37653 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:5px 0px 5px 20px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u37653_text {
  3150. border-width:0px;
  3151. white-space:nowrap;
  3152. text-transform:none;
  3153. }
  3154. #u37654 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:0px;
  3160. height:0px;
  3161. }
  3162. #u37656 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:0px;
  3168. height:0px;
  3169. }
  3170. #u37657_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:129px;
  3176. height:22px;
  3177. background:inherit;
  3178. background-color:rgba(255, 255, 255, 0);
  3179. border:none;
  3180. border-radius:0px;
  3181. -moz-box-shadow:none;
  3182. -webkit-box-shadow:none;
  3183. box-shadow:none;
  3184. font-size:16px;
  3185. color:#FFFFFF;
  3186. }
  3187. #u37657 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:3365px;
  3191. top:14px;
  3192. width:129px;
  3193. height:22px;
  3194. display:flex;
  3195. font-size:16px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u37657 .text {
  3199. position:absolute;
  3200. align-self:flex-start;
  3201. padding:0px 0px 0px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u37657_text {
  3206. border-width:0px;
  3207. white-space:nowrap;
  3208. text-transform:none;
  3209. }
  3210. #u37658_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:1600px;
  3216. height:50px;
  3217. background:inherit;
  3218. background-color:rgba(30, 42, 68, 1);
  3219. border:none;
  3220. border-radius:0px;
  3221. -moz-box-shadow:none;
  3222. -webkit-box-shadow:none;
  3223. box-shadow:none;
  3224. color:#AFB3B6;
  3225. }
  3226. #u37658 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:3316px;
  3230. top:0px;
  3231. width:1600px;
  3232. height:50px;
  3233. display:flex;
  3234. color:#AFB3B6;
  3235. }
  3236. #u37658 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 2px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u37658_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u37659 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:0px;
  3255. height:0px;
  3256. }
  3257. #u37660_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:31px;
  3263. height:31px;
  3264. }
  3265. #u37660 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:3335px;
  3269. top:10px;
  3270. width:31px;
  3271. height:31px;
  3272. display:flex;
  3273. }
  3274. #u37660 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u37660_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. }
  3286. #u37661_div {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:129px;
  3292. height:22px;
  3293. background:inherit;
  3294. background-color:rgba(255, 255, 255, 0);
  3295. border:none;
  3296. border-radius:0px;
  3297. -moz-box-shadow:none;
  3298. -webkit-box-shadow:none;
  3299. box-shadow:none;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:16px;
  3304. color:#FFFFFF;
  3305. }
  3306. #u37661 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:3378px;
  3310. top:14px;
  3311. width:129px;
  3312. height:22px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:16px;
  3318. color:#FFFFFF;
  3319. }
  3320. #u37661 .text {
  3321. position:absolute;
  3322. align-self:flex-start;
  3323. padding:0px 0px 0px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u37661_text {
  3328. border-width:0px;
  3329. white-space:nowrap;
  3330. text-transform:none;
  3331. }
  3332. #u37662_div {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:200px;
  3338. height:1200px;
  3339. background:inherit;
  3340. background-color:rgba(30, 42, 68, 1);
  3341. border:none;
  3342. border-radius:0px;
  3343. -moz-box-shadow:none;
  3344. -webkit-box-shadow:none;
  3345. box-shadow:none;
  3346. color:#AFB3B6;
  3347. }
  3348. #u37662 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:3316px;
  3352. top:47px;
  3353. width:200px;
  3354. height:1200px;
  3355. display:flex;
  3356. color:#AFB3B6;
  3357. }
  3358. #u37662 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u37662_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u37663_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:15px;
  3377. height:15px;
  3378. }
  3379. #u37663 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:4839px;
  3383. top:18px;
  3384. width:15px;
  3385. height:15px;
  3386. display:flex;
  3387. }
  3388. #u37663 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 2px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u37663_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u37664_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:15px;
  3407. height:15px;
  3408. }
  3409. #u37664 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:4809px;
  3413. top:18px;
  3414. width:15px;
  3415. height:15px;
  3416. display:flex;
  3417. }
  3418. #u37664 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 2px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u37664_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u37665 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:0px;
  3437. height:0px;
  3438. }
  3439. #u37666_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:14px;
  3445. height:14px;
  3446. }
  3447. #u37666 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:4869px;
  3451. top:18px;
  3452. width:14px;
  3453. height:14px;
  3454. display:flex;
  3455. }
  3456. #u37666 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 2px 2px 2px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u37666_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u37667_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:8px;
  3475. height:5px;
  3476. }
  3477. #u37667 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:4888px;
  3481. top:23px;
  3482. width:8px;
  3483. height:5px;
  3484. display:flex;
  3485. }
  3486. #u37667 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u37667_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u37668_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:1402px;
  3505. height:1200px;
  3506. background:inherit;
  3507. background-color:rgba(242, 242, 242, 1);
  3508. border:none;
  3509. border-radius:0px;
  3510. -moz-box-shadow:none;
  3511. -webkit-box-shadow:none;
  3512. box-shadow:none;
  3513. }
  3514. #u37668 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:3514px;
  3518. top:47px;
  3519. width:1402px;
  3520. height:1200px;
  3521. display:flex;
  3522. }
  3523. #u37668 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 2px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u37668_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u37669 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:3351px;
  3540. top:81px;
  3541. width:118px;
  3542. height:220px;
  3543. }
  3544. #u37669_children {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:0px;
  3550. height:0px;
  3551. }
  3552. #u37670 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:98px;
  3558. height:20px;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:14px;
  3563. color:#FFFFFF;
  3564. }
  3565. #u37671_div {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:76px;
  3571. height:20px;
  3572. background:inherit;
  3573. background-color:rgba(255, 255, 255, 0);
  3574. border:none;
  3575. border-radius:0px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. }
  3580. #u37671 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:22px;
  3584. top:0px;
  3585. width:76px;
  3586. height:20px;
  3587. display:flex;
  3588. }
  3589. #u37671 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 3px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u37671_text {
  3597. border-width:0px;
  3598. white-space:nowrap;
  3599. text-transform:none;
  3600. }
  3601. #u37672 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:20px;
  3606. width:84px;
  3607. height:20px;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:14px;
  3612. color:#FFFFFF;
  3613. }
  3614. #u37673_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:9px;
  3620. height:9px;
  3621. }
  3622. #u37673 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:6px;
  3626. top:6px;
  3627. width:9px;
  3628. height:9px;
  3629. display:flex;
  3630. }
  3631. #u37673 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 2px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u37673_img.selected {
  3639. }
  3640. #u37673.selected {
  3641. }
  3642. #u37673_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u37674_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:62px;
  3654. height:20px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-radius:0px;
  3659. -moz-box-shadow:none;
  3660. -webkit-box-shadow:none;
  3661. box-shadow:none;
  3662. }
  3663. #u37674 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:22px;
  3667. top:0px;
  3668. width:62px;
  3669. height:20px;
  3670. display:flex;
  3671. }
  3672. #u37674 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 3px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u37674_text {
  3680. border-width:0px;
  3681. white-space:nowrap;
  3682. text-transform:none;
  3683. }
  3684. #u37672_children {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:0px;
  3690. height:0px;
  3691. }
  3692. #u37675 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:20px;
  3696. top:20px;
  3697. width:98px;
  3698. height:20px;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. color:#FFFFFF;
  3704. }
  3705. #u37676_div {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:76px;
  3711. height:20px;
  3712. background:inherit;
  3713. background-color:rgba(255, 255, 255, 0);
  3714. border:none;
  3715. border-radius:0px;
  3716. -moz-box-shadow:none;
  3717. -webkit-box-shadow:none;
  3718. box-shadow:none;
  3719. }
  3720. #u37676 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:22px;
  3724. top:0px;
  3725. width:76px;
  3726. height:20px;
  3727. display:flex;
  3728. }
  3729. #u37676 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:2px 2px 2px 3px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u37676_text {
  3737. border-width:0px;
  3738. white-space:nowrap;
  3739. text-transform:none;
  3740. }
  3741. #u37677 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:20px;
  3745. top:40px;
  3746. width:98px;
  3747. height:20px;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. color:#FFFFFF;
  3753. }
  3754. #u37678_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:76px;
  3760. height:20px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 0);
  3763. border:none;
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. }
  3769. #u37678 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:22px;
  3773. top:0px;
  3774. width:76px;
  3775. height:20px;
  3776. display:flex;
  3777. }
  3778. #u37678 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 3px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u37678_text {
  3786. border-width:0px;
  3787. white-space:nowrap;
  3788. text-transform:none;
  3789. }
  3790. #u37679 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:80px;
  3795. width:84px;
  3796. height:20px;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:14px;
  3801. color:#FFFFFF;
  3802. }
  3803. #u37680_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:9px;
  3809. height:9px;
  3810. }
  3811. #u37680 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:6px;
  3815. top:6px;
  3816. width:9px;
  3817. height:9px;
  3818. display:flex;
  3819. }
  3820. #u37680 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 2px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u37680_img.selected {
  3828. }
  3829. #u37680.selected {
  3830. }
  3831. #u37680_text {
  3832. border-width:0px;
  3833. word-wrap:break-word;
  3834. text-transform:none;
  3835. visibility:hidden;
  3836. }
  3837. #u37681_div {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:62px;
  3843. height:20px;
  3844. background:inherit;
  3845. background-color:rgba(255, 255, 255, 0);
  3846. border:none;
  3847. border-radius:0px;
  3848. -moz-box-shadow:none;
  3849. -webkit-box-shadow:none;
  3850. box-shadow:none;
  3851. }
  3852. #u37681 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:22px;
  3856. top:0px;
  3857. width:62px;
  3858. height:20px;
  3859. display:flex;
  3860. }
  3861. #u37681 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 3px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u37681_text {
  3869. border-width:0px;
  3870. white-space:nowrap;
  3871. text-transform:none;
  3872. }
  3873. #u37679_children {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:0px;
  3879. height:0px;
  3880. }
  3881. #u37682 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:20px;
  3885. top:20px;
  3886. width:98px;
  3887. height:20px;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. color:#FFFFFF;
  3893. }
  3894. #u37683_div {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:76px;
  3900. height:20px;
  3901. background:inherit;
  3902. background-color:rgba(255, 255, 255, 0);
  3903. border:none;
  3904. border-radius:0px;
  3905. -moz-box-shadow:none;
  3906. -webkit-box-shadow:none;
  3907. box-shadow:none;
  3908. }
  3909. #u37683 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:22px;
  3913. top:0px;
  3914. width:76px;
  3915. height:20px;
  3916. display:flex;
  3917. }
  3918. #u37683 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 3px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u37683_text {
  3926. border-width:0px;
  3927. white-space:nowrap;
  3928. text-transform:none;
  3929. }
  3930. #u37684 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:20px;
  3934. top:40px;
  3935. width:98px;
  3936. height:20px;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:14px;
  3941. color:#FFFFFF;
  3942. }
  3943. #u37685_div {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:76px;
  3949. height:20px;
  3950. background:inherit;
  3951. background-color:rgba(255, 255, 255, 0);
  3952. border:none;
  3953. border-radius:0px;
  3954. -moz-box-shadow:none;
  3955. -webkit-box-shadow:none;
  3956. box-shadow:none;
  3957. }
  3958. #u37685 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:22px;
  3962. top:0px;
  3963. width:76px;
  3964. height:20px;
  3965. display:flex;
  3966. }
  3967. #u37685 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 3px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u37685_text {
  3975. border-width:0px;
  3976. white-space:nowrap;
  3977. text-transform:none;
  3978. }
  3979. #u37686 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:140px;
  3984. width:84px;
  3985. height:20px;
  3986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:14px;
  3990. color:#FFFFFF;
  3991. }
  3992. #u37687_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:9px;
  3998. height:9px;
  3999. }
  4000. #u37687 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:6px;
  4004. top:6px;
  4005. width:9px;
  4006. height:9px;
  4007. display:flex;
  4008. }
  4009. #u37687 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 2px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u37687_img.selected {
  4017. }
  4018. #u37687.selected {
  4019. }
  4020. #u37687_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u37688_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:62px;
  4032. height:20px;
  4033. background:inherit;
  4034. background-color:rgba(255, 255, 255, 0);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. }
  4041. #u37688 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:22px;
  4045. top:0px;
  4046. width:62px;
  4047. height:20px;
  4048. display:flex;
  4049. }
  4050. #u37688 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 3px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u37688_text {
  4058. border-width:0px;
  4059. white-space:nowrap;
  4060. text-transform:none;
  4061. }
  4062. #u37686_children {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:0px;
  4068. height:0px;
  4069. visibility:hidden;
  4070. }
  4071. #u37689 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:20px;
  4075. top:20px;
  4076. width:84px;
  4077. height:20px;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. color:#FFFFFF;
  4083. }
  4084. #u37690_div {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:62px;
  4090. height:20px;
  4091. background:inherit;
  4092. background-color:rgba(255, 255, 255, 0);
  4093. border:none;
  4094. border-radius:0px;
  4095. -moz-box-shadow:none;
  4096. -webkit-box-shadow:none;
  4097. box-shadow:none;
  4098. }
  4099. #u37690 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:22px;
  4103. top:0px;
  4104. width:62px;
  4105. height:20px;
  4106. display:flex;
  4107. }
  4108. #u37690 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:2px 2px 2px 3px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u37690_text {
  4116. border-width:0px;
  4117. white-space:nowrap;
  4118. text-transform:none;
  4119. }
  4120. #u37691 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:20px;
  4124. top:40px;
  4125. width:84px;
  4126. height:20px;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:14px;
  4131. color:#FFFFFF;
  4132. }
  4133. #u37692_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:62px;
  4139. height:20px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border:none;
  4143. border-radius:0px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. }
  4148. #u37692 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:22px;
  4152. top:0px;
  4153. width:62px;
  4154. height:20px;
  4155. display:flex;
  4156. }
  4157. #u37692 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 3px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u37692_text {
  4165. border-width:0px;
  4166. white-space:nowrap;
  4167. text-transform:none;
  4168. }
  4169. #u37693 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:20px;
  4173. top:60px;
  4174. width:84px;
  4175. height:20px;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:14px;
  4180. color:#FFFFFF;
  4181. }
  4182. #u37694_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:62px;
  4188. height:20px;
  4189. background:inherit;
  4190. background-color:rgba(255, 255, 255, 0);
  4191. border:none;
  4192. border-radius:0px;
  4193. -moz-box-shadow:none;
  4194. -webkit-box-shadow:none;
  4195. box-shadow:none;
  4196. }
  4197. #u37694 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:22px;
  4201. top:0px;
  4202. width:62px;
  4203. height:20px;
  4204. display:flex;
  4205. }
  4206. #u37694 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 3px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u37694_text {
  4214. border-width:0px;
  4215. white-space:nowrap;
  4216. text-transform:none;
  4217. }
  4218. #u37695 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:20px;
  4222. top:80px;
  4223. width:84px;
  4224. height:20px;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:14px;
  4229. color:#FFFFFF;
  4230. }
  4231. #u37696_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:62px;
  4237. height:20px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 0);
  4240. border:none;
  4241. border-radius:0px;
  4242. -moz-box-shadow:none;
  4243. -webkit-box-shadow:none;
  4244. box-shadow:none;
  4245. }
  4246. #u37696 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:22px;
  4250. top:0px;
  4251. width:62px;
  4252. height:20px;
  4253. display:flex;
  4254. }
  4255. #u37696 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 3px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u37696_text {
  4263. border-width:0px;
  4264. white-space:nowrap;
  4265. text-transform:none;
  4266. }
  4267. #u37697 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:160px;
  4272. width:98px;
  4273. height:20px;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. color:#FFFFFF;
  4279. }
  4280. #u37698_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:9px;
  4286. height:9px;
  4287. }
  4288. #u37698 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:6px;
  4292. top:6px;
  4293. width:9px;
  4294. height:9px;
  4295. display:flex;
  4296. }
  4297. #u37698 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u37698_img.selected {
  4305. }
  4306. #u37698.selected {
  4307. }
  4308. #u37698_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u37699_div {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:76px;
  4320. height:20px;
  4321. background:inherit;
  4322. background-color:rgba(255, 255, 255, 0);
  4323. border:none;
  4324. border-radius:0px;
  4325. -moz-box-shadow:none;
  4326. -webkit-box-shadow:none;
  4327. box-shadow:none;
  4328. }
  4329. #u37699 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:22px;
  4333. top:0px;
  4334. width:76px;
  4335. height:20px;
  4336. display:flex;
  4337. }
  4338. #u37699 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:2px 2px 2px 3px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u37699_text {
  4346. border-width:0px;
  4347. white-space:nowrap;
  4348. text-transform:none;
  4349. }
  4350. #u37697_children {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:0px;
  4356. height:0px;
  4357. visibility:hidden;
  4358. }
  4359. #u37700 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:20px;
  4363. top:20px;
  4364. width:98px;
  4365. height:20px;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:14px;
  4370. color:#FFFFFF;
  4371. }
  4372. #u37701_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:76px;
  4378. height:20px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 0);
  4381. border:none;
  4382. border-radius:0px;
  4383. -moz-box-shadow:none;
  4384. -webkit-box-shadow:none;
  4385. box-shadow:none;
  4386. }
  4387. #u37701 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:22px;
  4391. top:0px;
  4392. width:76px;
  4393. height:20px;
  4394. display:flex;
  4395. }
  4396. #u37701 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 3px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u37701_text {
  4404. border-width:0px;
  4405. white-space:nowrap;
  4406. text-transform:none;
  4407. }
  4408. #u37702 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:20px;
  4412. top:40px;
  4413. width:98px;
  4414. height:20px;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. color:#FFFFFF;
  4420. }
  4421. #u37703_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:76px;
  4427. height:20px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-radius:0px;
  4432. -moz-box-shadow:none;
  4433. -webkit-box-shadow:none;
  4434. box-shadow:none;
  4435. }
  4436. #u37703 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:22px;
  4440. top:0px;
  4441. width:76px;
  4442. height:20px;
  4443. display:flex;
  4444. }
  4445. #u37703 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 3px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u37703_text {
  4453. border-width:0px;
  4454. white-space:nowrap;
  4455. text-transform:none;
  4456. }
  4457. #u37704 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:180px;
  4462. width:84px;
  4463. height:20px;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:14px;
  4468. color:#FFFFFF;
  4469. }
  4470. #u37705_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:9px;
  4476. height:9px;
  4477. }
  4478. #u37705 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:6px;
  4482. top:6px;
  4483. width:9px;
  4484. height:9px;
  4485. display:flex;
  4486. }
  4487. #u37705 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 2px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u37705_img.selected {
  4495. }
  4496. #u37705.selected {
  4497. }
  4498. #u37705_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. visibility:hidden;
  4503. }
  4504. #u37706_div {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:62px;
  4510. height:20px;
  4511. background:inherit;
  4512. background-color:rgba(255, 255, 255, 0);
  4513. border:none;
  4514. border-radius:0px;
  4515. -moz-box-shadow:none;
  4516. -webkit-box-shadow:none;
  4517. box-shadow:none;
  4518. }
  4519. #u37706 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:22px;
  4523. top:0px;
  4524. width:62px;
  4525. height:20px;
  4526. display:flex;
  4527. }
  4528. #u37706 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:2px 2px 2px 3px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u37706_text {
  4536. border-width:0px;
  4537. white-space:nowrap;
  4538. text-transform:none;
  4539. }
  4540. #u37704_children {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:0px;
  4546. height:0px;
  4547. visibility:hidden;
  4548. }
  4549. #u37707 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:20px;
  4553. top:20px;
  4554. width:98px;
  4555. height:20px;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:14px;
  4560. color:#FFFFFF;
  4561. }
  4562. #u37708_div {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:76px;
  4568. height:20px;
  4569. background:inherit;
  4570. background-color:rgba(255, 255, 255, 0);
  4571. border:none;
  4572. border-radius:0px;
  4573. -moz-box-shadow:none;
  4574. -webkit-box-shadow:none;
  4575. box-shadow:none;
  4576. }
  4577. #u37708 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:22px;
  4581. top:0px;
  4582. width:76px;
  4583. height:20px;
  4584. display:flex;
  4585. }
  4586. #u37708 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 3px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u37708_text {
  4594. border-width:0px;
  4595. white-space:nowrap;
  4596. text-transform:none;
  4597. }
  4598. #u37709 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:20px;
  4602. top:40px;
  4603. width:84px;
  4604. height:20px;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:14px;
  4609. color:#FFFFFF;
  4610. }
  4611. #u37710_div {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:62px;
  4617. height:20px;
  4618. background:inherit;
  4619. background-color:rgba(255, 255, 255, 0);
  4620. border:none;
  4621. border-radius:0px;
  4622. -moz-box-shadow:none;
  4623. -webkit-box-shadow:none;
  4624. box-shadow:none;
  4625. }
  4626. #u37710 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:22px;
  4630. top:0px;
  4631. width:62px;
  4632. height:20px;
  4633. display:flex;
  4634. }
  4635. #u37710 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 3px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u37710_text {
  4643. border-width:0px;
  4644. white-space:nowrap;
  4645. text-transform:none;
  4646. }
  4647. #u37711 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:200px;
  4652. width:84px;
  4653. height:20px;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:14px;
  4658. color:#FFFFFF;
  4659. }
  4660. #u37712_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:9px;
  4666. height:9px;
  4667. }
  4668. #u37712 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:6px;
  4672. top:6px;
  4673. width:9px;
  4674. height:9px;
  4675. display:flex;
  4676. }
  4677. #u37712 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u37712_img.selected {
  4685. }
  4686. #u37712.selected {
  4687. }
  4688. #u37712_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u37713_div {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:62px;
  4700. height:20px;
  4701. background:inherit;
  4702. background-color:rgba(255, 255, 255, 0);
  4703. border:none;
  4704. border-radius:0px;
  4705. -moz-box-shadow:none;
  4706. -webkit-box-shadow:none;
  4707. box-shadow:none;
  4708. }
  4709. #u37713 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:22px;
  4713. top:0px;
  4714. width:62px;
  4715. height:20px;
  4716. display:flex;
  4717. }
  4718. #u37713 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 3px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u37713_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u37711_children {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. visibility:hidden;
  4738. }
  4739. #u37714 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:20px;
  4743. top:20px;
  4744. width:84px;
  4745. height:20px;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:14px;
  4750. color:#FFFFFF;
  4751. }
  4752. #u37715_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:62px;
  4758. height:20px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 0);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. }
  4767. #u37715 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:22px;
  4771. top:0px;
  4772. width:62px;
  4773. height:20px;
  4774. display:flex;
  4775. }
  4776. #u37715 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 3px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u37715_text {
  4784. border-width:0px;
  4785. white-space:nowrap;
  4786. text-transform:none;
  4787. }
  4788. #u37716 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:20px;
  4792. top:40px;
  4793. width:84px;
  4794. height:20px;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:14px;
  4799. color:#FFFFFF;
  4800. }
  4801. #u37717_div {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:62px;
  4807. height:20px;
  4808. background:inherit;
  4809. background-color:rgba(255, 255, 255, 0);
  4810. border:none;
  4811. border-radius:0px;
  4812. -moz-box-shadow:none;
  4813. -webkit-box-shadow:none;
  4814. box-shadow:none;
  4815. }
  4816. #u37717 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:22px;
  4820. top:0px;
  4821. width:62px;
  4822. height:20px;
  4823. display:flex;
  4824. }
  4825. #u37717 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 3px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u37717_text {
  4833. border-width:0px;
  4834. white-space:nowrap;
  4835. text-transform:none;
  4836. }
  4837. #u37718 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:20px;
  4841. top:60px;
  4842. width:84px;
  4843. height:20px;
  4844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:14px;
  4848. color:#FFFFFF;
  4849. }
  4850. #u37719_div {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:62px;
  4856. height:20px;
  4857. background:inherit;
  4858. background-color:rgba(255, 255, 255, 0);
  4859. border:none;
  4860. border-radius:0px;
  4861. -moz-box-shadow:none;
  4862. -webkit-box-shadow:none;
  4863. box-shadow:none;
  4864. }
  4865. #u37719 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:22px;
  4869. top:0px;
  4870. width:62px;
  4871. height:20px;
  4872. display:flex;
  4873. }
  4874. #u37719 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 3px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u37719_text {
  4882. border-width:0px;
  4883. white-space:nowrap;
  4884. text-transform:none;
  4885. }
  4886. #u37720 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:0px;
  4892. height:0px;
  4893. }
  4894. #u37721_input {
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:141px;
  4899. height:22px;
  4900. padding:2px 2px 2px 2px;
  4901. font-family:'ArialMT', 'Arial', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:14px;
  4905. letter-spacing:normal;
  4906. color:#FFFFFF;
  4907. vertical-align:none;
  4908. text-align:left;
  4909. text-transform:none;
  4910. background-color:transparent;
  4911. border-color:transparent;
  4912. }
  4913. #u37721_input.disabled {
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:141px;
  4918. height:22px;
  4919. padding:2px 2px 2px 2px;
  4920. font-family:'ArialMT', 'Arial', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:14px;
  4924. letter-spacing:normal;
  4925. color:#FFFFFF;
  4926. vertical-align:none;
  4927. text-align:left;
  4928. text-transform:none;
  4929. background-color:transparent;
  4930. border-color:transparent;
  4931. }
  4932. #u37721_div {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:141px;
  4938. height:22px;
  4939. background:inherit;
  4940. background-color:rgba(255, 255, 255, 0);
  4941. border:none;
  4942. border-radius:0px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-size:14px;
  4947. color:#FFFFFF;
  4948. }
  4949. #u37721 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:3559px;
  4953. top:14px;
  4954. width:141px;
  4955. height:22px;
  4956. display:flex;
  4957. font-size:14px;
  4958. color:#FFFFFF;
  4959. }
  4960. #u37721 .text {
  4961. position:absolute;
  4962. align-self:flex-start;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u37721_div.disabled {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:141px;
  4973. height:22px;
  4974. background:inherit;
  4975. background-color:rgba(240, 240, 240, 1);
  4976. border:none;
  4977. border-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-size:14px;
  4982. color:#FFFFFF;
  4983. }
  4984. #u37721.disabled {
  4985. }
  4986. .u37721_input_option {
  4987. font-size:14px;
  4988. }
  4989. #u37722_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:22px;
  4995. height:22px;
  4996. }
  4997. #u37722 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:3532px;
  5001. top:15px;
  5002. width:22px;
  5003. height:22px;
  5004. display:flex;
  5005. }
  5006. #u37722 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 2px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u37722_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u37723_div {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:136px;
  5025. height:16px;
  5026. background:inherit;
  5027. background-color:rgba(255, 255, 255, 0);
  5028. border:none;
  5029. border-radius:0px;
  5030. -moz-box-shadow:none;
  5031. -webkit-box-shadow:none;
  5032. box-shadow:none;
  5033. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5034. font-weight:200;
  5035. font-style:normal;
  5036. font-size:11px;
  5037. color:#555555;
  5038. }
  5039. #u37723 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:3524px;
  5043. top:53px;
  5044. width:136px;
  5045. height:16px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5048. font-weight:200;
  5049. font-style:normal;
  5050. font-size:11px;
  5051. color:#555555;
  5052. }
  5053. #u37723 .text {
  5054. position:absolute;
  5055. align-self:flex-start;
  5056. padding:0px 0px 0px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u37723_text {
  5061. border-width:0px;
  5062. white-space:nowrap;
  5063. text-transform:none;
  5064. }
  5065. #u37724_div {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:140px;
  5071. height:24px;
  5072. background:inherit;
  5073. background-color:rgba(242, 242, 242, 0.2);
  5074. border:none;
  5075. border-radius:25px;
  5076. -moz-box-shadow:none;
  5077. -webkit-box-shadow:none;
  5078. box-shadow:none;
  5079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. color:#FFFFFF;
  5083. text-align:center;
  5084. }
  5085. #u37724 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:3733px;
  5089. top:13px;
  5090. width:140px;
  5091. height:24px;
  5092. display:flex;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. color:#FFFFFF;
  5097. text-align:center;
  5098. }
  5099. #u37724 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:0px 0px 0px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u37724_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. }
  5111. #u37725_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:85px;
  5117. height:20px;
  5118. background:inherit;
  5119. background-color:rgba(30, 42, 68, 1);
  5120. border:none;
  5121. border-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. color:#FFFFFF;
  5129. }
  5130. #u37725 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:4690px;
  5134. top:15px;
  5135. width:85px;
  5136. height:20px;
  5137. display:flex;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. color:#FFFFFF;
  5142. }
  5143. #u37725 .text {
  5144. position:absolute;
  5145. align-self:flex-start;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u37725_text {
  5151. border-width:0px;
  5152. white-space:nowrap;
  5153. text-transform:none;
  5154. }
  5155. #u37726_div {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:1600px;
  5161. height:1200px;
  5162. background:inherit;
  5163. background-color:rgba(242, 242, 242, 1);
  5164. border:none;
  5165. border-radius:0px;
  5166. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5167. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5168. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5169. }
  5170. #u37726 {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:3316px;
  5174. top:50px;
  5175. width:1600px;
  5176. height:1200px;
  5177. display:flex;
  5178. }
  5179. #u37726 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u37726_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u37727_div {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:280px;
  5198. height:1184px;
  5199. background:inherit;
  5200. background-color:rgba(255, 255, 255, 1);
  5201. box-sizing:border-box;
  5202. border-width:1px;
  5203. border-style:solid;
  5204. border-color:rgba(215, 215, 215, 1);
  5205. border-radius:0px;
  5206. -moz-box-shadow:none;
  5207. -webkit-box-shadow:none;
  5208. box-shadow:none;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. color:#AAAAAA;
  5214. text-align:center;
  5215. line-height:30px;
  5216. }
  5217. #u37727 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:3316px;
  5221. top:50px;
  5222. width:280px;
  5223. height:1184px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. color:#AAAAAA;
  5230. text-align:center;
  5231. line-height:30px;
  5232. }
  5233. #u37727 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:5px 10px 5px 10px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u37727_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u37728_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:93px;
  5252. height:60px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border:none;
  5256. border-left:0px;
  5257. border-top:0px;
  5258. border-right:0px;
  5259. border-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:18px;
  5269. text-align:right;
  5270. line-height:50px;
  5271. }
  5272. #u37728 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:3473px;
  5276. top:225px;
  5277. width:93px;
  5278. height:60px;
  5279. display:flex;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:18px;
  5284. text-align:right;
  5285. line-height:50px;
  5286. }
  5287. #u37728 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:5px 0px 5px 20px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u37728_text {
  5295. border-width:0px;
  5296. white-space:nowrap;
  5297. text-transform:none;
  5298. }
  5299. #u37729_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:1320px;
  5305. height:1184px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 1);
  5308. box-sizing:border-box;
  5309. border-width:1px;
  5310. border-style:solid;
  5311. border-color:rgba(215, 215, 215, 1);
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#AAAAAA;
  5321. text-align:center;
  5322. line-height:30px;
  5323. }
  5324. #u37729 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:3596px;
  5328. top:50px;
  5329. width:1320px;
  5330. height:1184px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. color:#AAAAAA;
  5337. text-align:center;
  5338. line-height:30px;
  5339. }
  5340. #u37729 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:5px 10px 5px 10px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u37729_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u37730_div {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:109px;
  5359. height:60px;
  5360. background:inherit;
  5361. background-color:rgba(255, 255, 255, 0);
  5362. border:none;
  5363. border-left:0px;
  5364. border-top:0px;
  5365. border-right:0px;
  5366. border-radius:0px;
  5367. border-bottom-right-radius:0px;
  5368. border-bottom-left-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:18px;
  5376. line-height:50px;
  5377. }
  5378. #u37730 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:3626px;
  5382. top:130px;
  5383. width:109px;
  5384. height:60px;
  5385. display:flex;
  5386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:18px;
  5390. line-height:50px;
  5391. }
  5392. #u37730 .text {
  5393. position:absolute;
  5394. align-self:center;
  5395. padding:5px 0px 5px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u37730_text {
  5400. border-width:0px;
  5401. white-space:nowrap;
  5402. text-transform:none;
  5403. }
  5404. #u37731_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:1600px;
  5410. height:60px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 1);
  5413. border:none;
  5414. border-radius:0px;
  5415. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  5416. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  5417. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:14px;
  5422. color:#AAAAAA;
  5423. text-align:center;
  5424. line-height:30px;
  5425. }
  5426. #u37731 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:3316px;
  5430. top:50px;
  5431. width:1600px;
  5432. height:60px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. color:#AAAAAA;
  5439. text-align:center;
  5440. line-height:30px;
  5441. }
  5442. #u37731 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:5px 10px 5px 10px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u37731_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. visibility:hidden;
  5454. }
  5455. #u37732_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:60px;
  5461. height:30px;
  5462. background:inherit;
  5463. background-color:rgba(25, 140, 251, 1);
  5464. border:none;
  5465. border-radius:4px;
  5466. -moz-box-shadow:none;
  5467. -webkit-box-shadow:none;
  5468. box-shadow:none;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:14px;
  5473. color:#FFFFFF;
  5474. }
  5475. #u37732 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:4816px;
  5479. top:65px;
  5480. width:60px;
  5481. height:30px;
  5482. display:flex;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:14px;
  5487. color:#FFFFFF;
  5488. }
  5489. #u37732 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u37732_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. }
  5501. #u37733_div {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:70px;
  5507. height:35px;
  5508. background:inherit;
  5509. background-color:rgba(255, 255, 255, 0);
  5510. border:none;
  5511. border-left:0px;
  5512. border-top:0px;
  5513. border-right:0px;
  5514. border-radius:0px;
  5515. border-bottom-right-radius:0px;
  5516. border-bottom-left-radius:0px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5521. font-weight:500;
  5522. font-style:normal;
  5523. font-size:18px;
  5524. }
  5525. #u37733 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:3339px;
  5529. top:63px;
  5530. width:70px;
  5531. height:35px;
  5532. display:flex;
  5533. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5534. font-weight:500;
  5535. font-style:normal;
  5536. font-size:18px;
  5537. }
  5538. #u37733 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:5px 10px 5px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u37733_text {
  5546. border-width:0px;
  5547. white-space:nowrap;
  5548. text-transform:none;
  5549. }
  5550. #u37734_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:93px;
  5556. height:60px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 0);
  5559. border:none;
  5560. border-left:0px;
  5561. border-top:0px;
  5562. border-right:0px;
  5563. border-radius:0px;
  5564. border-bottom-right-radius:0px;
  5565. border-bottom-left-radius:0px;
  5566. -moz-box-shadow:none;
  5567. -webkit-box-shadow:none;
  5568. box-shadow:none;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:18px;
  5573. text-align:right;
  5574. line-height:50px;
  5575. }
  5576. #u37734 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:3473px;
  5580. top:345px;
  5581. width:93px;
  5582. height:60px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:18px;
  5588. text-align:right;
  5589. line-height:50px;
  5590. }
  5591. #u37734 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:5px 0px 5px 20px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u37734_text {
  5599. border-width:0px;
  5600. white-space:nowrap;
  5601. text-transform:none;
  5602. }
  5603. #u37735_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:93px;
  5609. height:60px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border:none;
  5613. border-left:0px;
  5614. border-top:0px;
  5615. border-right:0px;
  5616. border-radius:0px;
  5617. border-bottom-right-radius:0px;
  5618. border-bottom-left-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:18px;
  5626. text-align:right;
  5627. line-height:50px;
  5628. }
  5629. #u37735 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:1814px;
  5633. top:130px;
  5634. width:93px;
  5635. height:60px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:18px;
  5641. text-align:right;
  5642. line-height:50px;
  5643. }
  5644. #u37735 .text {
  5645. position:absolute;
  5646. align-self:center;
  5647. padding:5px 0px 5px 20px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u37735_text {
  5652. border-width:0px;
  5653. white-space:nowrap;
  5654. text-transform:none;
  5655. }
  5656. #u37736 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:0px;
  5662. height:0px;
  5663. }
  5664. #u37738 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:0px;
  5670. height:0px;
  5671. }
  5672. #u37739_div {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:129px;
  5678. height:22px;
  5679. background:inherit;
  5680. background-color:rgba(255, 255, 255, 0);
  5681. border:none;
  5682. border-radius:0px;
  5683. -moz-box-shadow:none;
  5684. -webkit-box-shadow:none;
  5685. box-shadow:none;
  5686. font-size:16px;
  5687. color:#FFFFFF;
  5688. }
  5689. #u37739 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:49px;
  5693. top:14px;
  5694. width:129px;
  5695. height:22px;
  5696. display:flex;
  5697. font-size:16px;
  5698. color:#FFFFFF;
  5699. }
  5700. #u37739 .text {
  5701. position:absolute;
  5702. align-self:flex-start;
  5703. padding:0px 0px 0px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u37739_text {
  5708. border-width:0px;
  5709. white-space:nowrap;
  5710. text-transform:none;
  5711. }
  5712. #u37740_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:1600px;
  5718. height:50px;
  5719. background:inherit;
  5720. background-color:rgba(30, 42, 68, 1);
  5721. border:none;
  5722. border-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. color:#AFB3B6;
  5727. }
  5728. #u37740 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:1600px;
  5734. height:50px;
  5735. display:flex;
  5736. color:#AFB3B6;
  5737. }
  5738. #u37740 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u37740_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u37741 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:0px;
  5757. height:0px;
  5758. }
  5759. #u37742_img {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:31px;
  5765. height:31px;
  5766. }
  5767. #u37742 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:19px;
  5771. top:10px;
  5772. width:31px;
  5773. height:31px;
  5774. display:flex;
  5775. }
  5776. #u37742 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 2px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u37742_text {
  5784. border-width:0px;
  5785. word-wrap:break-word;
  5786. text-transform:none;
  5787. }
  5788. #u37743_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:129px;
  5794. height:22px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:16px;
  5806. color:#FFFFFF;
  5807. }
  5808. #u37743 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:62px;
  5812. top:14px;
  5813. width:129px;
  5814. height:22px;
  5815. display:flex;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:16px;
  5820. color:#FFFFFF;
  5821. }
  5822. #u37743 .text {
  5823. position:absolute;
  5824. align-self:flex-start;
  5825. padding:0px 0px 0px 0px;
  5826. box-sizing:border-box;
  5827. width:100%;
  5828. }
  5829. #u37743_text {
  5830. border-width:0px;
  5831. white-space:nowrap;
  5832. text-transform:none;
  5833. }
  5834. #u37744_div {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:200px;
  5840. height:1200px;
  5841. background:inherit;
  5842. background-color:rgba(30, 42, 68, 1);
  5843. border:none;
  5844. border-radius:0px;
  5845. -moz-box-shadow:none;
  5846. -webkit-box-shadow:none;
  5847. box-shadow:none;
  5848. color:#AFB3B6;
  5849. }
  5850. #u37744 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:47px;
  5855. width:200px;
  5856. height:1200px;
  5857. display:flex;
  5858. color:#AFB3B6;
  5859. }
  5860. #u37744 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 2px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u37744_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. visibility:hidden;
  5872. }
  5873. #u37745_img {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:15px;
  5879. height:15px;
  5880. }
  5881. #u37745 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:1523px;
  5885. top:18px;
  5886. width:15px;
  5887. height:15px;
  5888. display:flex;
  5889. }
  5890. #u37745 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:2px 2px 2px 2px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u37745_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. visibility:hidden;
  5902. }
  5903. #u37746_img {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:15px;
  5909. height:15px;
  5910. }
  5911. #u37746 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:1493px;
  5915. top:18px;
  5916. width:15px;
  5917. height:15px;
  5918. display:flex;
  5919. }
  5920. #u37746 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 2px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u37746_text {
  5928. border-width:0px;
  5929. word-wrap:break-word;
  5930. text-transform:none;
  5931. visibility:hidden;
  5932. }
  5933. #u37747 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:0px;
  5939. height:0px;
  5940. }
  5941. #u37748_img {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:14px;
  5947. height:14px;
  5948. }
  5949. #u37748 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:1553px;
  5953. top:18px;
  5954. width:14px;
  5955. height:14px;
  5956. display:flex;
  5957. }
  5958. #u37748 .text {
  5959. position:absolute;
  5960. align-self:center;
  5961. padding:2px 2px 2px 2px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u37748_text {
  5966. border-width:0px;
  5967. word-wrap:break-word;
  5968. text-transform:none;
  5969. visibility:hidden;
  5970. }
  5971. #u37749_img {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:8px;
  5977. height:5px;
  5978. }
  5979. #u37749 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:1572px;
  5983. top:23px;
  5984. width:8px;
  5985. height:5px;
  5986. display:flex;
  5987. }
  5988. #u37749 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 2px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u37749_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u37750_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:1402px;
  6007. height:1200px;
  6008. background:inherit;
  6009. background-color:rgba(242, 242, 242, 1);
  6010. border:none;
  6011. border-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. }
  6016. #u37750 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:198px;
  6020. top:47px;
  6021. width:1402px;
  6022. height:1200px;
  6023. display:flex;
  6024. }
  6025. #u37750 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u37750_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u37751 {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:35px;
  6042. top:81px;
  6043. width:118px;
  6044. height:220px;
  6045. }
  6046. #u37751_children {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:0px;
  6052. height:0px;
  6053. }
  6054. #u37752 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:98px;
  6060. height:20px;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. color:#FFFFFF;
  6066. }
  6067. #u37753_div {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:76px;
  6073. height:20px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 0);
  6076. border:none;
  6077. border-radius:0px;
  6078. -moz-box-shadow:none;
  6079. -webkit-box-shadow:none;
  6080. box-shadow:none;
  6081. }
  6082. #u37753 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:22px;
  6086. top:0px;
  6087. width:76px;
  6088. height:20px;
  6089. display:flex;
  6090. }
  6091. #u37753 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:2px 2px 2px 3px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u37753_text {
  6099. border-width:0px;
  6100. white-space:nowrap;
  6101. text-transform:none;
  6102. }
  6103. #u37754 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:20px;
  6108. width:84px;
  6109. height:20px;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:14px;
  6114. color:#FFFFFF;
  6115. }
  6116. #u37755_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:9px;
  6122. height:9px;
  6123. }
  6124. #u37755 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:6px;
  6128. top:6px;
  6129. width:9px;
  6130. height:9px;
  6131. display:flex;
  6132. }
  6133. #u37755 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:2px 2px 2px 2px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u37755_img.selected {
  6141. }
  6142. #u37755.selected {
  6143. }
  6144. #u37755_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u37756_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:62px;
  6156. height:20px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 0);
  6159. border:none;
  6160. border-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. }
  6165. #u37756 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:22px;
  6169. top:0px;
  6170. width:62px;
  6171. height:20px;
  6172. display:flex;
  6173. }
  6174. #u37756 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 3px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u37756_text {
  6182. border-width:0px;
  6183. white-space:nowrap;
  6184. text-transform:none;
  6185. }
  6186. #u37754_children {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:0px;
  6192. height:0px;
  6193. }
  6194. #u37757 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:20px;
  6198. top:20px;
  6199. width:98px;
  6200. height:20px;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:14px;
  6205. color:#FFFFFF;
  6206. }
  6207. #u37758_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:76px;
  6213. height:20px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 0);
  6216. border:none;
  6217. border-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. }
  6222. #u37758 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:22px;
  6226. top:0px;
  6227. width:76px;
  6228. height:20px;
  6229. display:flex;
  6230. }
  6231. #u37758 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 3px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u37758_text {
  6239. border-width:0px;
  6240. white-space:nowrap;
  6241. text-transform:none;
  6242. }
  6243. #u37759 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:20px;
  6247. top:40px;
  6248. width:98px;
  6249. height:20px;
  6250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:14px;
  6254. color:#FFFFFF;
  6255. }
  6256. #u37760_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:76px;
  6262. height:20px;
  6263. background:inherit;
  6264. background-color:rgba(255, 255, 255, 0);
  6265. border:none;
  6266. border-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. }
  6271. #u37760 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:22px;
  6275. top:0px;
  6276. width:76px;
  6277. height:20px;
  6278. display:flex;
  6279. }
  6280. #u37760 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:2px 2px 2px 3px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u37760_text {
  6288. border-width:0px;
  6289. white-space:nowrap;
  6290. text-transform:none;
  6291. }
  6292. #u37761 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:80px;
  6297. width:84px;
  6298. height:20px;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:#FFFFFF;
  6304. }
  6305. #u37762_img {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:9px;
  6311. height:9px;
  6312. }
  6313. #u37762 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:6px;
  6317. top:6px;
  6318. width:9px;
  6319. height:9px;
  6320. display:flex;
  6321. }
  6322. #u37762 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:2px 2px 2px 2px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u37762_img.selected {
  6330. }
  6331. #u37762.selected {
  6332. }
  6333. #u37762_text {
  6334. border-width:0px;
  6335. word-wrap:break-word;
  6336. text-transform:none;
  6337. visibility:hidden;
  6338. }
  6339. #u37763_div {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:62px;
  6345. height:20px;
  6346. background:inherit;
  6347. background-color:rgba(255, 255, 255, 0);
  6348. border:none;
  6349. border-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. }
  6354. #u37763 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:22px;
  6358. top:0px;
  6359. width:62px;
  6360. height:20px;
  6361. display:flex;
  6362. }
  6363. #u37763 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 3px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u37763_text {
  6371. border-width:0px;
  6372. white-space:nowrap;
  6373. text-transform:none;
  6374. }
  6375. #u37761_children {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:0px;
  6381. height:0px;
  6382. }
  6383. #u37764 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:20px;
  6387. top:20px;
  6388. width:98px;
  6389. height:20px;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:14px;
  6394. color:#FFFFFF;
  6395. }
  6396. #u37765_div {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:76px;
  6402. height:20px;
  6403. background:inherit;
  6404. background-color:rgba(255, 255, 255, 0);
  6405. border:none;
  6406. border-radius:0px;
  6407. -moz-box-shadow:none;
  6408. -webkit-box-shadow:none;
  6409. box-shadow:none;
  6410. }
  6411. #u37765 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:22px;
  6415. top:0px;
  6416. width:76px;
  6417. height:20px;
  6418. display:flex;
  6419. }
  6420. #u37765 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 3px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u37765_text {
  6428. border-width:0px;
  6429. white-space:nowrap;
  6430. text-transform:none;
  6431. }
  6432. #u37766 {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:20px;
  6436. top:40px;
  6437. width:98px;
  6438. height:20px;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. color:#FFFFFF;
  6444. }
  6445. #u37767_div {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:76px;
  6451. height:20px;
  6452. background:inherit;
  6453. background-color:rgba(255, 255, 255, 0);
  6454. border:none;
  6455. border-radius:0px;
  6456. -moz-box-shadow:none;
  6457. -webkit-box-shadow:none;
  6458. box-shadow:none;
  6459. }
  6460. #u37767 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:22px;
  6464. top:0px;
  6465. width:76px;
  6466. height:20px;
  6467. display:flex;
  6468. }
  6469. #u37767 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 3px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u37767_text {
  6477. border-width:0px;
  6478. white-space:nowrap;
  6479. text-transform:none;
  6480. }
  6481. #u37768 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:140px;
  6486. width:84px;
  6487. height:20px;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:14px;
  6492. color:#FFFFFF;
  6493. }
  6494. #u37769_img {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:9px;
  6500. height:9px;
  6501. }
  6502. #u37769 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:6px;
  6506. top:6px;
  6507. width:9px;
  6508. height:9px;
  6509. display:flex;
  6510. }
  6511. #u37769 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 2px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u37769_img.selected {
  6519. }
  6520. #u37769.selected {
  6521. }
  6522. #u37769_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. visibility:hidden;
  6527. }
  6528. #u37770_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:62px;
  6534. height:20px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 0);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. }
  6543. #u37770 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:22px;
  6547. top:0px;
  6548. width:62px;
  6549. height:20px;
  6550. display:flex;
  6551. }
  6552. #u37770 .text {
  6553. position:absolute;
  6554. align-self:center;
  6555. padding:2px 2px 2px 3px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u37770_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u37768_children {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:0px;
  6570. height:0px;
  6571. visibility:hidden;
  6572. }
  6573. #u37771 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:20px;
  6577. top:20px;
  6578. width:84px;
  6579. height:20px;
  6580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:14px;
  6584. color:#FFFFFF;
  6585. }
  6586. #u37772_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:62px;
  6592. height:20px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 0);
  6595. border:none;
  6596. border-radius:0px;
  6597. -moz-box-shadow:none;
  6598. -webkit-box-shadow:none;
  6599. box-shadow:none;
  6600. }
  6601. #u37772 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:22px;
  6605. top:0px;
  6606. width:62px;
  6607. height:20px;
  6608. display:flex;
  6609. }
  6610. #u37772 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:2px 2px 2px 3px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u37772_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u37773 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:20px;
  6626. top:40px;
  6627. width:84px;
  6628. height:20px;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:14px;
  6633. color:#FFFFFF;
  6634. }
  6635. #u37774_div {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:62px;
  6641. height:20px;
  6642. background:inherit;
  6643. background-color:rgba(255, 255, 255, 0);
  6644. border:none;
  6645. border-radius:0px;
  6646. -moz-box-shadow:none;
  6647. -webkit-box-shadow:none;
  6648. box-shadow:none;
  6649. }
  6650. #u37774 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:22px;
  6654. top:0px;
  6655. width:62px;
  6656. height:20px;
  6657. display:flex;
  6658. }
  6659. #u37774 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 3px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u37774_text {
  6667. border-width:0px;
  6668. white-space:nowrap;
  6669. text-transform:none;
  6670. }
  6671. #u37775 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:20px;
  6675. top:60px;
  6676. width:84px;
  6677. height:20px;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:14px;
  6682. color:#FFFFFF;
  6683. }
  6684. #u37776_div {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:62px;
  6690. height:20px;
  6691. background:inherit;
  6692. background-color:rgba(255, 255, 255, 0);
  6693. border:none;
  6694. border-radius:0px;
  6695. -moz-box-shadow:none;
  6696. -webkit-box-shadow:none;
  6697. box-shadow:none;
  6698. }
  6699. #u37776 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:22px;
  6703. top:0px;
  6704. width:62px;
  6705. height:20px;
  6706. display:flex;
  6707. }
  6708. #u37776 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 3px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u37776_text {
  6716. border-width:0px;
  6717. white-space:nowrap;
  6718. text-transform:none;
  6719. }
  6720. #u37777 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:20px;
  6724. top:80px;
  6725. width:84px;
  6726. height:20px;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. color:#FFFFFF;
  6732. }
  6733. #u37778_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:62px;
  6739. height:20px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 0);
  6742. border:none;
  6743. border-radius:0px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. }
  6748. #u37778 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:22px;
  6752. top:0px;
  6753. width:62px;
  6754. height:20px;
  6755. display:flex;
  6756. }
  6757. #u37778 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:2px 2px 2px 3px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u37778_text {
  6765. border-width:0px;
  6766. white-space:nowrap;
  6767. text-transform:none;
  6768. }
  6769. #u37779 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:160px;
  6774. width:98px;
  6775. height:20px;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. color:#FFFFFF;
  6781. }
  6782. #u37780_img {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:9px;
  6788. height:9px;
  6789. }
  6790. #u37780 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:6px;
  6794. top:6px;
  6795. width:9px;
  6796. height:9px;
  6797. display:flex;
  6798. }
  6799. #u37780 .text {
  6800. position:absolute;
  6801. align-self:center;
  6802. padding:2px 2px 2px 2px;
  6803. box-sizing:border-box;
  6804. width:100%;
  6805. }
  6806. #u37780_img.selected {
  6807. }
  6808. #u37780.selected {
  6809. }
  6810. #u37780_text {
  6811. border-width:0px;
  6812. word-wrap:break-word;
  6813. text-transform:none;
  6814. visibility:hidden;
  6815. }
  6816. #u37781_div {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:76px;
  6822. height:20px;
  6823. background:inherit;
  6824. background-color:rgba(255, 255, 255, 0);
  6825. border:none;
  6826. border-radius:0px;
  6827. -moz-box-shadow:none;
  6828. -webkit-box-shadow:none;
  6829. box-shadow:none;
  6830. }
  6831. #u37781 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:22px;
  6835. top:0px;
  6836. width:76px;
  6837. height:20px;
  6838. display:flex;
  6839. }
  6840. #u37781 .text {
  6841. position:absolute;
  6842. align-self:center;
  6843. padding:2px 2px 2px 3px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u37781_text {
  6848. border-width:0px;
  6849. white-space:nowrap;
  6850. text-transform:none;
  6851. }
  6852. #u37779_children {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:0px;
  6858. height:0px;
  6859. visibility:hidden;
  6860. }
  6861. #u37782 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:20px;
  6865. top:20px;
  6866. width:98px;
  6867. height:20px;
  6868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:14px;
  6872. color:#FFFFFF;
  6873. }
  6874. #u37783_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:76px;
  6880. height:20px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 0);
  6883. border:none;
  6884. border-radius:0px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. }
  6889. #u37783 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:22px;
  6893. top:0px;
  6894. width:76px;
  6895. height:20px;
  6896. display:flex;
  6897. }
  6898. #u37783 .text {
  6899. position:absolute;
  6900. align-self:center;
  6901. padding:2px 2px 2px 3px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u37783_text {
  6906. border-width:0px;
  6907. white-space:nowrap;
  6908. text-transform:none;
  6909. }
  6910. #u37784 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:20px;
  6914. top:40px;
  6915. width:98px;
  6916. height:20px;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:14px;
  6921. color:#FFFFFF;
  6922. }
  6923. #u37785_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:76px;
  6929. height:20px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 0);
  6932. border:none;
  6933. border-radius:0px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. }
  6938. #u37785 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:22px;
  6942. top:0px;
  6943. width:76px;
  6944. height:20px;
  6945. display:flex;
  6946. }
  6947. #u37785 .text {
  6948. position:absolute;
  6949. align-self:center;
  6950. padding:2px 2px 2px 3px;
  6951. box-sizing:border-box;
  6952. width:100%;
  6953. }
  6954. #u37785_text {
  6955. border-width:0px;
  6956. white-space:nowrap;
  6957. text-transform:none;
  6958. }
  6959. #u37786 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:180px;
  6964. width:84px;
  6965. height:20px;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:14px;
  6970. color:#FFFFFF;
  6971. }
  6972. #u37787_img {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:9px;
  6978. height:9px;
  6979. }
  6980. #u37787 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:6px;
  6984. top:6px;
  6985. width:9px;
  6986. height:9px;
  6987. display:flex;
  6988. }
  6989. #u37787 .text {
  6990. position:absolute;
  6991. align-self:center;
  6992. padding:2px 2px 2px 2px;
  6993. box-sizing:border-box;
  6994. width:100%;
  6995. }
  6996. #u37787_img.selected {
  6997. }
  6998. #u37787.selected {
  6999. }
  7000. #u37787_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. visibility:hidden;
  7005. }
  7006. #u37788_div {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:62px;
  7012. height:20px;
  7013. background:inherit;
  7014. background-color:rgba(255, 255, 255, 0);
  7015. border:none;
  7016. border-radius:0px;
  7017. -moz-box-shadow:none;
  7018. -webkit-box-shadow:none;
  7019. box-shadow:none;
  7020. }
  7021. #u37788 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:22px;
  7025. top:0px;
  7026. width:62px;
  7027. height:20px;
  7028. display:flex;
  7029. }
  7030. #u37788 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:2px 2px 2px 3px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u37788_text {
  7038. border-width:0px;
  7039. white-space:nowrap;
  7040. text-transform:none;
  7041. }
  7042. #u37786_children {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:0px;
  7048. height:0px;
  7049. visibility:hidden;
  7050. }
  7051. #u37789 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:20px;
  7055. top:20px;
  7056. width:98px;
  7057. height:20px;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:14px;
  7062. color:#FFFFFF;
  7063. }
  7064. #u37790_div {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:76px;
  7070. height:20px;
  7071. background:inherit;
  7072. background-color:rgba(255, 255, 255, 0);
  7073. border:none;
  7074. border-radius:0px;
  7075. -moz-box-shadow:none;
  7076. -webkit-box-shadow:none;
  7077. box-shadow:none;
  7078. }
  7079. #u37790 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:22px;
  7083. top:0px;
  7084. width:76px;
  7085. height:20px;
  7086. display:flex;
  7087. }
  7088. #u37790 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:2px 2px 2px 3px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u37790_text {
  7096. border-width:0px;
  7097. white-space:nowrap;
  7098. text-transform:none;
  7099. }
  7100. #u37791 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:20px;
  7104. top:40px;
  7105. width:84px;
  7106. height:20px;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:14px;
  7111. color:#FFFFFF;
  7112. }
  7113. #u37792_div {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:62px;
  7119. height:20px;
  7120. background:inherit;
  7121. background-color:rgba(255, 255, 255, 0);
  7122. border:none;
  7123. border-radius:0px;
  7124. -moz-box-shadow:none;
  7125. -webkit-box-shadow:none;
  7126. box-shadow:none;
  7127. }
  7128. #u37792 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:22px;
  7132. top:0px;
  7133. width:62px;
  7134. height:20px;
  7135. display:flex;
  7136. }
  7137. #u37792 .text {
  7138. position:absolute;
  7139. align-self:center;
  7140. padding:2px 2px 2px 3px;
  7141. box-sizing:border-box;
  7142. width:100%;
  7143. }
  7144. #u37792_text {
  7145. border-width:0px;
  7146. white-space:nowrap;
  7147. text-transform:none;
  7148. }
  7149. #u37793 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:200px;
  7154. width:84px;
  7155. height:20px;
  7156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7157. font-weight:400;
  7158. font-style:normal;
  7159. font-size:14px;
  7160. color:#FFFFFF;
  7161. }
  7162. #u37794_img {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:9px;
  7168. height:9px;
  7169. }
  7170. #u37794 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:6px;
  7174. top:6px;
  7175. width:9px;
  7176. height:9px;
  7177. display:flex;
  7178. }
  7179. #u37794 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:2px 2px 2px 2px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u37794_img.selected {
  7187. }
  7188. #u37794.selected {
  7189. }
  7190. #u37794_text {
  7191. border-width:0px;
  7192. word-wrap:break-word;
  7193. text-transform:none;
  7194. visibility:hidden;
  7195. }
  7196. #u37795_div {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:62px;
  7202. height:20px;
  7203. background:inherit;
  7204. background-color:rgba(255, 255, 255, 0);
  7205. border:none;
  7206. border-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. }
  7211. #u37795 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:22px;
  7215. top:0px;
  7216. width:62px;
  7217. height:20px;
  7218. display:flex;
  7219. }
  7220. #u37795 .text {
  7221. position:absolute;
  7222. align-self:center;
  7223. padding:2px 2px 2px 3px;
  7224. box-sizing:border-box;
  7225. width:100%;
  7226. }
  7227. #u37795_text {
  7228. border-width:0px;
  7229. white-space:nowrap;
  7230. text-transform:none;
  7231. }
  7232. #u37793_children {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:0px;
  7238. height:0px;
  7239. visibility:hidden;
  7240. }
  7241. #u37796 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:20px;
  7245. top:20px;
  7246. width:84px;
  7247. height:20px;
  7248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:14px;
  7252. color:#FFFFFF;
  7253. }
  7254. #u37797_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:62px;
  7260. height:20px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 0);
  7263. border:none;
  7264. border-radius:0px;
  7265. -moz-box-shadow:none;
  7266. -webkit-box-shadow:none;
  7267. box-shadow:none;
  7268. }
  7269. #u37797 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:22px;
  7273. top:0px;
  7274. width:62px;
  7275. height:20px;
  7276. display:flex;
  7277. }
  7278. #u37797 .text {
  7279. position:absolute;
  7280. align-self:center;
  7281. padding:2px 2px 2px 3px;
  7282. box-sizing:border-box;
  7283. width:100%;
  7284. }
  7285. #u37797_text {
  7286. border-width:0px;
  7287. white-space:nowrap;
  7288. text-transform:none;
  7289. }
  7290. #u37798 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:20px;
  7294. top:40px;
  7295. width:84px;
  7296. height:20px;
  7297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:14px;
  7301. color:#FFFFFF;
  7302. }
  7303. #u37799_div {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:62px;
  7309. height:20px;
  7310. background:inherit;
  7311. background-color:rgba(255, 255, 255, 0);
  7312. border:none;
  7313. border-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. }
  7318. #u37799 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:22px;
  7322. top:0px;
  7323. width:62px;
  7324. height:20px;
  7325. display:flex;
  7326. }
  7327. #u37799 .text {
  7328. position:absolute;
  7329. align-self:center;
  7330. padding:2px 2px 2px 3px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u37799_text {
  7335. border-width:0px;
  7336. white-space:nowrap;
  7337. text-transform:none;
  7338. }
  7339. #u37800 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:20px;
  7343. top:60px;
  7344. width:84px;
  7345. height:20px;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:14px;
  7350. color:#FFFFFF;
  7351. }
  7352. #u37801_div {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:62px;
  7358. height:20px;
  7359. background:inherit;
  7360. background-color:rgba(255, 255, 255, 0);
  7361. border:none;
  7362. border-radius:0px;
  7363. -moz-box-shadow:none;
  7364. -webkit-box-shadow:none;
  7365. box-shadow:none;
  7366. }
  7367. #u37801 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:22px;
  7371. top:0px;
  7372. width:62px;
  7373. height:20px;
  7374. display:flex;
  7375. }
  7376. #u37801 .text {
  7377. position:absolute;
  7378. align-self:center;
  7379. padding:2px 2px 2px 3px;
  7380. box-sizing:border-box;
  7381. width:100%;
  7382. }
  7383. #u37801_text {
  7384. border-width:0px;
  7385. white-space:nowrap;
  7386. text-transform:none;
  7387. }
  7388. #u37802 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:0px;
  7394. height:0px;
  7395. }
  7396. #u37803_input {
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:141px;
  7401. height:22px;
  7402. padding:2px 2px 2px 2px;
  7403. font-family:'ArialMT', 'Arial', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:14px;
  7407. letter-spacing:normal;
  7408. color:#FFFFFF;
  7409. vertical-align:none;
  7410. text-align:left;
  7411. text-transform:none;
  7412. background-color:transparent;
  7413. border-color:transparent;
  7414. }
  7415. #u37803_input.disabled {
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:141px;
  7420. height:22px;
  7421. padding:2px 2px 2px 2px;
  7422. font-family:'ArialMT', 'Arial', sans-serif;
  7423. font-weight:400;
  7424. font-style:normal;
  7425. font-size:14px;
  7426. letter-spacing:normal;
  7427. color:#FFFFFF;
  7428. vertical-align:none;
  7429. text-align:left;
  7430. text-transform:none;
  7431. background-color:transparent;
  7432. border-color:transparent;
  7433. }
  7434. #u37803_div {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:141px;
  7440. height:22px;
  7441. background:inherit;
  7442. background-color:rgba(255, 255, 255, 0);
  7443. border:none;
  7444. border-radius:0px;
  7445. -moz-box-shadow:none;
  7446. -webkit-box-shadow:none;
  7447. box-shadow:none;
  7448. font-size:14px;
  7449. color:#FFFFFF;
  7450. }
  7451. #u37803 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:243px;
  7455. top:14px;
  7456. width:141px;
  7457. height:22px;
  7458. display:flex;
  7459. font-size:14px;
  7460. color:#FFFFFF;
  7461. }
  7462. #u37803 .text {
  7463. position:absolute;
  7464. align-self:flex-start;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u37803_div.disabled {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:141px;
  7475. height:22px;
  7476. background:inherit;
  7477. background-color:rgba(240, 240, 240, 1);
  7478. border:none;
  7479. border-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-size:14px;
  7484. color:#FFFFFF;
  7485. }
  7486. #u37803.disabled {
  7487. }
  7488. .u37803_input_option {
  7489. font-size:14px;
  7490. }
  7491. #u37804_img {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:0px;
  7495. top:0px;
  7496. width:22px;
  7497. height:22px;
  7498. }
  7499. #u37804 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:216px;
  7503. top:15px;
  7504. width:22px;
  7505. height:22px;
  7506. display:flex;
  7507. }
  7508. #u37804 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u37804_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. visibility:hidden;
  7520. }
  7521. #u37805_div {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:136px;
  7527. height:16px;
  7528. background:inherit;
  7529. background-color:rgba(255, 255, 255, 0);
  7530. border:none;
  7531. border-radius:0px;
  7532. -moz-box-shadow:none;
  7533. -webkit-box-shadow:none;
  7534. box-shadow:none;
  7535. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  7536. font-weight:200;
  7537. font-style:normal;
  7538. font-size:11px;
  7539. color:#555555;
  7540. }
  7541. #u37805 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:208px;
  7545. top:53px;
  7546. width:136px;
  7547. height:16px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  7550. font-weight:200;
  7551. font-style:normal;
  7552. font-size:11px;
  7553. color:#555555;
  7554. }
  7555. #u37805 .text {
  7556. position:absolute;
  7557. align-self:flex-start;
  7558. padding:0px 0px 0px 0px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u37805_text {
  7563. border-width:0px;
  7564. white-space:nowrap;
  7565. text-transform:none;
  7566. }
  7567. #u37806_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:140px;
  7573. height:24px;
  7574. background:inherit;
  7575. background-color:rgba(242, 242, 242, 0.2);
  7576. border:none;
  7577. border-radius:25px;
  7578. -moz-box-shadow:none;
  7579. -webkit-box-shadow:none;
  7580. box-shadow:none;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. color:#FFFFFF;
  7585. text-align:center;
  7586. }
  7587. #u37806 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:417px;
  7591. top:13px;
  7592. width:140px;
  7593. height:24px;
  7594. display:flex;
  7595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. color:#FFFFFF;
  7599. text-align:center;
  7600. }
  7601. #u37806 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:0px 0px 0px 0px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u37806_text {
  7609. border-width:0px;
  7610. word-wrap:break-word;
  7611. text-transform:none;
  7612. }
  7613. #u37807_div {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:85px;
  7619. height:20px;
  7620. background:inherit;
  7621. background-color:rgba(30, 42, 68, 1);
  7622. border:none;
  7623. border-radius:0px;
  7624. -moz-box-shadow:none;
  7625. -webkit-box-shadow:none;
  7626. box-shadow:none;
  7627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7628. font-weight:400;
  7629. font-style:normal;
  7630. color:#FFFFFF;
  7631. }
  7632. #u37807 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:1374px;
  7636. top:15px;
  7637. width:85px;
  7638. height:20px;
  7639. display:flex;
  7640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. color:#FFFFFF;
  7644. }
  7645. #u37807 .text {
  7646. position:absolute;
  7647. align-self:flex-start;
  7648. padding:0px 0px 0px 0px;
  7649. box-sizing:border-box;
  7650. width:100%;
  7651. }
  7652. #u37807_text {
  7653. border-width:0px;
  7654. white-space:nowrap;
  7655. text-transform:none;
  7656. }
  7657. #u37808_div {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:1600px;
  7663. height:1200px;
  7664. background:inherit;
  7665. background-color:rgba(242, 242, 242, 1);
  7666. border:none;
  7667. border-radius:0px;
  7668. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7669. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7670. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7671. }
  7672. #u37808 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:50px;
  7677. width:1600px;
  7678. height:1200px;
  7679. display:flex;
  7680. }
  7681. #u37808 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:2px 2px 2px 2px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u37808_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. visibility:hidden;
  7693. }
  7694. #u37809_div {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:280px;
  7700. height:1184px;
  7701. background:inherit;
  7702. background-color:rgba(255, 255, 255, 1);
  7703. box-sizing:border-box;
  7704. border-width:1px;
  7705. border-style:solid;
  7706. border-color:rgba(215, 215, 215, 1);
  7707. border-radius:0px;
  7708. -moz-box-shadow:none;
  7709. -webkit-box-shadow:none;
  7710. box-shadow:none;
  7711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:14px;
  7715. color:#AAAAAA;
  7716. text-align:center;
  7717. line-height:30px;
  7718. }
  7719. #u37809 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:50px;
  7724. width:280px;
  7725. height:1184px;
  7726. display:flex;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:14px;
  7731. color:#AAAAAA;
  7732. text-align:center;
  7733. line-height:30px;
  7734. }
  7735. #u37809 .text {
  7736. position:absolute;
  7737. align-self:center;
  7738. padding:5px 10px 5px 10px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u37809_text {
  7743. border-width:0px;
  7744. word-wrap:break-word;
  7745. text-transform:none;
  7746. visibility:hidden;
  7747. }
  7748. #u37810_div {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:93px;
  7754. height:60px;
  7755. background:inherit;
  7756. background-color:rgba(255, 255, 255, 0);
  7757. border:none;
  7758. border-left:0px;
  7759. border-top:0px;
  7760. border-right:0px;
  7761. border-radius:0px;
  7762. border-bottom-right-radius:0px;
  7763. border-bottom-left-radius:0px;
  7764. -moz-box-shadow:none;
  7765. -webkit-box-shadow:none;
  7766. box-shadow:none;
  7767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. font-size:18px;
  7771. text-align:right;
  7772. line-height:50px;
  7773. }
  7774. #u37810 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:155px;
  7778. top:200px;
  7779. width:93px;
  7780. height:60px;
  7781. display:flex;
  7782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:18px;
  7786. text-align:right;
  7787. line-height:50px;
  7788. }
  7789. #u37810 .text {
  7790. position:absolute;
  7791. align-self:center;
  7792. padding:5px 0px 5px 20px;
  7793. box-sizing:border-box;
  7794. width:100%;
  7795. }
  7796. #u37810_text {
  7797. border-width:0px;
  7798. white-space:nowrap;
  7799. text-transform:none;
  7800. }
  7801. #u37811_div {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:1320px;
  7807. height:1184px;
  7808. background:inherit;
  7809. background-color:rgba(255, 255, 255, 1);
  7810. box-sizing:border-box;
  7811. border-width:1px;
  7812. border-style:solid;
  7813. border-color:rgba(215, 215, 215, 1);
  7814. border-radius:0px;
  7815. -moz-box-shadow:none;
  7816. -webkit-box-shadow:none;
  7817. box-shadow:none;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:14px;
  7822. color:#AAAAAA;
  7823. text-align:center;
  7824. line-height:30px;
  7825. }
  7826. #u37811 {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:280px;
  7830. top:50px;
  7831. width:1320px;
  7832. height:1184px;
  7833. display:flex;
  7834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7835. font-weight:400;
  7836. font-style:normal;
  7837. font-size:14px;
  7838. color:#AAAAAA;
  7839. text-align:center;
  7840. line-height:30px;
  7841. }
  7842. #u37811 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:5px 10px 5px 10px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u37811_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. visibility:hidden;
  7854. }
  7855. #u37812_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:73px;
  7861. height:60px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 0);
  7864. border:none;
  7865. border-left:0px;
  7866. border-top:0px;
  7867. border-right:0px;
  7868. border-radius:0px;
  7869. border-bottom-right-radius:0px;
  7870. border-bottom-left-radius:0px;
  7871. -moz-box-shadow:none;
  7872. -webkit-box-shadow:none;
  7873. box-shadow:none;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:18px;
  7878. line-height:50px;
  7879. }
  7880. #u37812 {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:310px;
  7884. top:130px;
  7885. width:73px;
  7886. height:60px;
  7887. display:flex;
  7888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:18px;
  7892. line-height:50px;
  7893. }
  7894. #u37812 .text {
  7895. position:absolute;
  7896. align-self:center;
  7897. padding:5px 0px 5px 0px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u37812_text {
  7902. border-width:0px;
  7903. white-space:nowrap;
  7904. text-transform:none;
  7905. }
  7906. #u37813_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:1600px;
  7912. height:60px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 1);
  7915. border:none;
  7916. border-radius:0px;
  7917. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7918. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7919. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:14px;
  7924. color:#AAAAAA;
  7925. text-align:center;
  7926. line-height:30px;
  7927. }
  7928. #u37813 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:50px;
  7933. width:1600px;
  7934. height:60px;
  7935. display:flex;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:14px;
  7940. color:#AAAAAA;
  7941. text-align:center;
  7942. line-height:30px;
  7943. }
  7944. #u37813 .text {
  7945. position:absolute;
  7946. align-self:center;
  7947. padding:5px 10px 5px 10px;
  7948. box-sizing:border-box;
  7949. width:100%;
  7950. }
  7951. #u37813_text {
  7952. border-width:0px;
  7953. word-wrap:break-word;
  7954. text-transform:none;
  7955. visibility:hidden;
  7956. }
  7957. #u37814_div {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:73px;
  7963. height:60px;
  7964. background:inherit;
  7965. background-color:rgba(255, 255, 255, 0);
  7966. border:none;
  7967. border-left:0px;
  7968. border-top:0px;
  7969. border-right:0px;
  7970. border-radius:0px;
  7971. border-bottom-right-radius:0px;
  7972. border-bottom-left-radius:0px;
  7973. -moz-box-shadow:none;
  7974. -webkit-box-shadow:none;
  7975. box-shadow:none;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:18px;
  7980. }
  7981. #u37814 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:585px;
  7985. top:50px;
  7986. width:73px;
  7987. height:60px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:18px;
  7993. }
  7994. #u37814 .text {
  7995. position:absolute;
  7996. align-self:center;
  7997. padding:5px 0px 5px 0px;
  7998. box-sizing:border-box;
  7999. width:100%;
  8000. }
  8001. #u37814_text {
  8002. border-width:0px;
  8003. white-space:nowrap;
  8004. text-transform:none;
  8005. }
  8006. #u37815_div {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:73px;
  8012. height:60px;
  8013. background:inherit;
  8014. background-color:rgba(255, 255, 255, 0);
  8015. border:none;
  8016. border-left:0px;
  8017. border-top:0px;
  8018. border-right:0px;
  8019. border-radius:0px;
  8020. border-bottom-right-radius:0px;
  8021. border-bottom-left-radius:0px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. font-size:18px;
  8029. }
  8030. #u37815 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:697px;
  8034. top:50px;
  8035. width:73px;
  8036. height:60px;
  8037. display:flex;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. font-size:18px;
  8042. }
  8043. #u37815 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:5px 0px 5px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u37815_text {
  8051. border-width:0px;
  8052. white-space:nowrap;
  8053. text-transform:none;
  8054. }
  8055. #u37816_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:60px;
  8061. height:30px;
  8062. background:inherit;
  8063. background-color:rgba(25, 140, 251, 1);
  8064. border:none;
  8065. border-radius:4px;
  8066. -moz-box-shadow:none;
  8067. -webkit-box-shadow:none;
  8068. box-shadow:none;
  8069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:14px;
  8073. color:#FFFFFF;
  8074. }
  8075. #u37816 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:1500px;
  8079. top:65px;
  8080. width:60px;
  8081. height:30px;
  8082. display:flex;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:14px;
  8087. color:#FFFFFF;
  8088. }
  8089. #u37816 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:2px 2px 2px 2px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u37816_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. }
  8101. #u37817_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:70px;
  8107. height:35px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 0);
  8110. border:none;
  8111. border-left:0px;
  8112. border-top:0px;
  8113. border-right:0px;
  8114. border-radius:0px;
  8115. border-bottom-right-radius:0px;
  8116. border-bottom-left-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8121. font-weight:500;
  8122. font-style:normal;
  8123. font-size:18px;
  8124. }
  8125. #u37817 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:23px;
  8129. top:63px;
  8130. width:70px;
  8131. height:35px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8134. font-weight:500;
  8135. font-style:normal;
  8136. font-size:18px;
  8137. }
  8138. #u37817 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:5px 10px 5px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u37817_text {
  8146. border-width:0px;
  8147. white-space:nowrap;
  8148. text-transform:none;
  8149. }
  8150. #u37818_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:505px;
  8156. height:60px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 0);
  8159. border:none;
  8160. border-left:0px;
  8161. border-top:0px;
  8162. border-right:0px;
  8163. border-radius:0px;
  8164. border-bottom-right-radius:0px;
  8165. border-bottom-left-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:14px;
  8173. line-height:50px;
  8174. }
  8175. #u37818 {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:310px;
  8179. top:190px;
  8180. width:505px;
  8181. height:60px;
  8182. display:flex;
  8183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:14px;
  8187. line-height:50px;
  8188. }
  8189. #u37818 .text {
  8190. position:absolute;
  8191. align-self:center;
  8192. padding:5px 0px 5px 0px;
  8193. box-sizing:border-box;
  8194. width:100%;
  8195. }
  8196. #u37818_text {
  8197. border-width:0px;
  8198. white-space:nowrap;
  8199. text-transform:none;
  8200. }
  8201. #u37819 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:0px;
  8207. height:0px;
  8208. }
  8209. #u37820_img {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:50px;
  8215. height:31px;
  8216. }
  8217. #u37820 {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:416px;
  8221. top:254px;
  8222. width:50px;
  8223. height:31px;
  8224. display:flex;
  8225. }
  8226. #u37820 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 2px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u37820_text {
  8234. border-width:0px;
  8235. word-wrap:break-word;
  8236. text-transform:none;
  8237. visibility:hidden;
  8238. }
  8239. #u37821_div {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:73px;
  8245. height:40px;
  8246. background:inherit;
  8247. background-color:rgba(255, 255, 255, 0);
  8248. border:none;
  8249. border-left:0px;
  8250. border-top:0px;
  8251. border-right:0px;
  8252. border-radius:0px;
  8253. border-bottom-right-radius:0px;
  8254. border-bottom-left-radius:0px;
  8255. -moz-box-shadow:none;
  8256. -webkit-box-shadow:none;
  8257. box-shadow:none;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:18px;
  8262. }
  8263. #u37821 {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:310px;
  8267. top:250px;
  8268. width:73px;
  8269. height:40px;
  8270. display:flex;
  8271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8272. font-weight:400;
  8273. font-style:normal;
  8274. font-size:18px;
  8275. }
  8276. #u37821 .text {
  8277. position:absolute;
  8278. align-self:center;
  8279. padding:0px 0px 0px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u37821_text {
  8284. border-width:0px;
  8285. white-space:nowrap;
  8286. text-transform:none;
  8287. }
  8288. #u37822_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:101px;
  8294. height:35px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 0);
  8297. border:none;
  8298. border-top:0px;
  8299. border-right:0px;
  8300. border-bottom:0px;
  8301. border-radius:0px;
  8302. border-top-left-radius:0px;
  8303. border-bottom-left-radius:0px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:18px;
  8311. }
  8312. #u37822 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:310px;
  8316. top:308px;
  8317. width:101px;
  8318. height:35px;
  8319. display:flex;
  8320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8321. font-weight:400;
  8322. font-style:normal;
  8323. font-size:18px;
  8324. }
  8325. #u37822 .text {
  8326. position:absolute;
  8327. align-self:center;
  8328. padding:5px 10px 5px 0px;
  8329. box-sizing:border-box;
  8330. width:100%;
  8331. }
  8332. #u37822_text {
  8333. border-width:0px;
  8334. white-space:nowrap;
  8335. text-transform:none;
  8336. }
  8337. #u37823 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:0px;
  8341. top:0px;
  8342. width:0px;
  8343. height:0px;
  8344. }
  8345. #u37824_div {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:1149px;
  8351. height:140px;
  8352. background:inherit;
  8353. background-color:rgba(255, 255, 255, 1);
  8354. box-sizing:border-box;
  8355. border-width:1px;
  8356. border-style:solid;
  8357. border-color:rgba(201, 201, 201, 1);
  8358. border-radius:4px;
  8359. -moz-box-shadow:none;
  8360. -webkit-box-shadow:none;
  8361. box-shadow:none;
  8362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8363. font-weight:400;
  8364. font-style:normal;
  8365. font-size:14px;
  8366. text-align:right;
  8367. }
  8368. #u37824 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:411px;
  8372. top:305px;
  8373. width:1149px;
  8374. height:140px;
  8375. display:flex;
  8376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:14px;
  8380. text-align:right;
  8381. }
  8382. #u37824 .text {
  8383. position:absolute;
  8384. align-self:center;
  8385. padding:2px 8px 2px 8px;
  8386. box-sizing:border-box;
  8387. width:100%;
  8388. }
  8389. #u37824_text {
  8390. border-width:0px;
  8391. word-wrap:break-word;
  8392. text-transform:none;
  8393. visibility:hidden;
  8394. }
  8395. #u37825_input {
  8396. position:absolute;
  8397. left:0px;
  8398. top:0px;
  8399. width:1120px;
  8400. height:136px;
  8401. padding:2px 2px 2px 2px;
  8402. font-family:'ArialMT', 'Arial', sans-serif;
  8403. font-weight:400;
  8404. font-style:normal;
  8405. font-size:14px;
  8406. letter-spacing:normal;
  8407. color:#000000;
  8408. vertical-align:none;
  8409. text-align:left;
  8410. text-transform:none;
  8411. background-color:transparent;
  8412. border-color:transparent;
  8413. resize:none;
  8414. }
  8415. #u37825_input.disabled {
  8416. position:absolute;
  8417. left:0px;
  8418. top:0px;
  8419. width:1120px;
  8420. height:136px;
  8421. padding:2px 2px 2px 2px;
  8422. font-family:'ArialMT', 'Arial', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:14px;
  8426. letter-spacing:normal;
  8427. color:#000000;
  8428. vertical-align:none;
  8429. text-align:left;
  8430. text-transform:none;
  8431. background-color:transparent;
  8432. border-color:transparent;
  8433. resize:none;
  8434. }
  8435. #u37825_div {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:1120px;
  8441. height:136px;
  8442. background:inherit;
  8443. background-color:rgba(255, 255, 255, 1);
  8444. border:none;
  8445. border-radius:0px;
  8446. -moz-box-shadow:none;
  8447. -webkit-box-shadow:none;
  8448. box-shadow:none;
  8449. font-size:14px;
  8450. }
  8451. #u37825 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:426px;
  8455. top:306px;
  8456. width:1120px;
  8457. height:136px;
  8458. display:flex;
  8459. font-size:14px;
  8460. }
  8461. #u37825 .text {
  8462. position:absolute;
  8463. align-self:flex-start;
  8464. padding:2px 2px 2px 2px;
  8465. box-sizing:border-box;
  8466. width:100%;
  8467. }
  8468. #u37825_div.disabled {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:1120px;
  8474. height:136px;
  8475. background:inherit;
  8476. background-color:rgba(240, 240, 240, 1);
  8477. border:none;
  8478. border-radius:0px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. font-size:14px;
  8483. }
  8484. #u37825.disabled {
  8485. }
  8486. #u37826_div {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:93px;
  8492. height:60px;
  8493. background:inherit;
  8494. background-color:rgba(255, 255, 255, 0);
  8495. border:none;
  8496. border-left:0px;
  8497. border-top:0px;
  8498. border-right:0px;
  8499. border-radius:0px;
  8500. border-bottom-right-radius:0px;
  8501. border-bottom-left-radius:0px;
  8502. -moz-box-shadow:none;
  8503. -webkit-box-shadow:none;
  8504. box-shadow:none;
  8505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:18px;
  8509. text-align:right;
  8510. line-height:50px;
  8511. }
  8512. #u37826 {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:155px;
  8516. top:320px;
  8517. width:93px;
  8518. height:60px;
  8519. display:flex;
  8520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8521. font-weight:400;
  8522. font-style:normal;
  8523. font-size:18px;
  8524. text-align:right;
  8525. line-height:50px;
  8526. }
  8527. #u37826 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:5px 0px 5px 20px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u37826_text {
  8535. border-width:0px;
  8536. white-space:nowrap;
  8537. text-transform:none;
  8538. }
  8539. #u37827_div {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:93px;
  8545. height:60px;
  8546. background:inherit;
  8547. background-color:rgba(255, 255, 255, 0);
  8548. border:none;
  8549. border-left:0px;
  8550. border-top:0px;
  8551. border-right:0px;
  8552. border-radius:0px;
  8553. border-bottom-right-radius:0px;
  8554. border-bottom-left-radius:0px;
  8555. -moz-box-shadow:none;
  8556. -webkit-box-shadow:none;
  8557. box-shadow:none;
  8558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:18px;
  8562. color:#198CFB;
  8563. text-align:right;
  8564. line-height:50px;
  8565. }
  8566. #u37827 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:155px;
  8570. top:140px;
  8571. width:93px;
  8572. height:60px;
  8573. display:flex;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:18px;
  8578. color:#198CFB;
  8579. text-align:right;
  8580. line-height:50px;
  8581. }
  8582. #u37827 .text {
  8583. position:absolute;
  8584. align-self:center;
  8585. padding:5px 0px 5px 20px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u37827_text {
  8590. border-width:0px;
  8591. white-space:nowrap;
  8592. text-transform:none;
  8593. }
  8594. #u37828_div {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:129px;
  8600. height:60px;
  8601. background:inherit;
  8602. background-color:rgba(255, 255, 255, 0);
  8603. border:none;
  8604. border-left:0px;
  8605. border-top:0px;
  8606. border-right:0px;
  8607. border-radius:0px;
  8608. border-bottom-right-radius:0px;
  8609. border-bottom-left-radius:0px;
  8610. -moz-box-shadow:none;
  8611. -webkit-box-shadow:none;
  8612. box-shadow:none;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:18px;
  8617. text-align:right;
  8618. line-height:50px;
  8619. }
  8620. #u37828 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:119px;
  8624. top:260px;
  8625. width:129px;
  8626. height:60px;
  8627. display:flex;
  8628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8629. font-weight:400;
  8630. font-style:normal;
  8631. font-size:18px;
  8632. text-align:right;
  8633. line-height:50px;
  8634. }
  8635. #u37828 .text {
  8636. position:absolute;
  8637. align-self:center;
  8638. padding:5px 0px 5px 20px;
  8639. box-sizing:border-box;
  8640. width:100%;
  8641. }
  8642. #u37828_text {
  8643. border-width:0px;
  8644. white-space:nowrap;
  8645. text-transform:none;
  8646. }
  8647. #u37829_div {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:93px;
  8653. height:60px;
  8654. background:inherit;
  8655. background-color:rgba(255, 255, 255, 0);
  8656. border:none;
  8657. border-left:0px;
  8658. border-top:0px;
  8659. border-right:0px;
  8660. border-radius:0px;
  8661. border-bottom-right-radius:0px;
  8662. border-bottom-left-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:18px;
  8670. text-align:right;
  8671. line-height:50px;
  8672. }
  8673. #u37829 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:1814px;
  8677. top:310px;
  8678. width:93px;
  8679. height:60px;
  8680. display:flex;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:18px;
  8685. text-align:right;
  8686. line-height:50px;
  8687. }
  8688. #u37829 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:5px 0px 5px 20px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u37829_text {
  8696. border-width:0px;
  8697. white-space:nowrap;
  8698. text-transform:none;
  8699. }
  8700. #u37830_div {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:93px;
  8706. height:60px;
  8707. background:inherit;
  8708. background-color:rgba(255, 255, 255, 0);
  8709. border:none;
  8710. border-left:0px;
  8711. border-top:0px;
  8712. border-right:0px;
  8713. border-radius:0px;
  8714. border-bottom-right-radius:0px;
  8715. border-bottom-left-radius:0px;
  8716. -moz-box-shadow:none;
  8717. -webkit-box-shadow:none;
  8718. box-shadow:none;
  8719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8720. font-weight:400;
  8721. font-style:normal;
  8722. font-size:18px;
  8723. text-align:right;
  8724. line-height:50px;
  8725. }
  8726. #u37830 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:3473px;
  8730. top:165px;
  8731. width:93px;
  8732. height:60px;
  8733. display:flex;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:18px;
  8738. text-align:right;
  8739. line-height:50px;
  8740. }
  8741. #u37830 .text {
  8742. position:absolute;
  8743. align-self:center;
  8744. padding:5px 0px 5px 20px;
  8745. box-sizing:border-box;
  8746. width:100%;
  8747. }
  8748. #u37830_text {
  8749. border-width:0px;
  8750. white-space:nowrap;
  8751. text-transform:none;
  8752. }
  8753. #u37831_div {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:129px;
  8759. height:60px;
  8760. background:inherit;
  8761. background-color:rgba(255, 255, 255, 0);
  8762. border:none;
  8763. border-left:0px;
  8764. border-top:0px;
  8765. border-right:0px;
  8766. border-radius:0px;
  8767. border-bottom-right-radius:0px;
  8768. border-bottom-left-radius:0px;
  8769. -moz-box-shadow:none;
  8770. -webkit-box-shadow:none;
  8771. box-shadow:none;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:18px;
  8776. color:#1890FF;
  8777. text-align:right;
  8778. line-height:50px;
  8779. }
  8780. #u37831 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:3437px;
  8784. top:285px;
  8785. width:129px;
  8786. height:60px;
  8787. display:flex;
  8788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8789. font-weight:400;
  8790. font-style:normal;
  8791. font-size:18px;
  8792. color:#1890FF;
  8793. text-align:right;
  8794. line-height:50px;
  8795. }
  8796. #u37831 .text {
  8797. position:absolute;
  8798. align-self:center;
  8799. padding:5px 0px 5px 20px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u37831_text {
  8804. border-width:0px;
  8805. white-space:nowrap;
  8806. text-transform:none;
  8807. }
  8808. #u37832 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:0px;
  8814. height:0px;
  8815. }
  8816. #u37834 {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:0px;
  8822. height:0px;
  8823. }
  8824. #u37835_div {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:129px;
  8830. height:22px;
  8831. background:inherit;
  8832. background-color:rgba(255, 255, 255, 0);
  8833. border:none;
  8834. border-radius:0px;
  8835. -moz-box-shadow:none;
  8836. -webkit-box-shadow:none;
  8837. box-shadow:none;
  8838. font-size:16px;
  8839. color:#FFFFFF;
  8840. }
  8841. #u37835 {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:4993px;
  8845. top:14px;
  8846. width:129px;
  8847. height:22px;
  8848. display:flex;
  8849. font-size:16px;
  8850. color:#FFFFFF;
  8851. }
  8852. #u37835 .text {
  8853. position:absolute;
  8854. align-self:flex-start;
  8855. padding:0px 0px 0px 0px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u37835_text {
  8860. border-width:0px;
  8861. white-space:nowrap;
  8862. text-transform:none;
  8863. }
  8864. #u37836_div {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:1600px;
  8870. height:50px;
  8871. background:inherit;
  8872. background-color:rgba(30, 42, 68, 1);
  8873. border:none;
  8874. border-radius:0px;
  8875. -moz-box-shadow:none;
  8876. -webkit-box-shadow:none;
  8877. box-shadow:none;
  8878. color:#AFB3B6;
  8879. }
  8880. #u37836 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:4944px;
  8884. top:0px;
  8885. width:1600px;
  8886. height:50px;
  8887. display:flex;
  8888. color:#AFB3B6;
  8889. }
  8890. #u37836 .text {
  8891. position:absolute;
  8892. align-self:center;
  8893. padding:2px 2px 2px 2px;
  8894. box-sizing:border-box;
  8895. width:100%;
  8896. }
  8897. #u37836_text {
  8898. border-width:0px;
  8899. word-wrap:break-word;
  8900. text-transform:none;
  8901. visibility:hidden;
  8902. }
  8903. #u37837 {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:0px;
  8907. top:0px;
  8908. width:0px;
  8909. height:0px;
  8910. }
  8911. #u37838_img {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:31px;
  8917. height:31px;
  8918. }
  8919. #u37838 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:4963px;
  8923. top:10px;
  8924. width:31px;
  8925. height:31px;
  8926. display:flex;
  8927. }
  8928. #u37838 .text {
  8929. position:absolute;
  8930. align-self:center;
  8931. padding:2px 2px 2px 2px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u37838_text {
  8936. border-width:0px;
  8937. word-wrap:break-word;
  8938. text-transform:none;
  8939. }
  8940. #u37839_div {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:129px;
  8946. height:22px;
  8947. background:inherit;
  8948. background-color:rgba(255, 255, 255, 0);
  8949. border:none;
  8950. border-radius:0px;
  8951. -moz-box-shadow:none;
  8952. -webkit-box-shadow:none;
  8953. box-shadow:none;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:16px;
  8958. color:#FFFFFF;
  8959. }
  8960. #u37839 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:5006px;
  8964. top:14px;
  8965. width:129px;
  8966. height:22px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:16px;
  8972. color:#FFFFFF;
  8973. }
  8974. #u37839 .text {
  8975. position:absolute;
  8976. align-self:flex-start;
  8977. padding:0px 0px 0px 0px;
  8978. box-sizing:border-box;
  8979. width:100%;
  8980. }
  8981. #u37839_text {
  8982. border-width:0px;
  8983. white-space:nowrap;
  8984. text-transform:none;
  8985. }
  8986. #u37840_div {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:200px;
  8992. height:1200px;
  8993. background:inherit;
  8994. background-color:rgba(30, 42, 68, 1);
  8995. border:none;
  8996. border-radius:0px;
  8997. -moz-box-shadow:none;
  8998. -webkit-box-shadow:none;
  8999. box-shadow:none;
  9000. color:#AFB3B6;
  9001. }
  9002. #u37840 {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:4944px;
  9006. top:47px;
  9007. width:200px;
  9008. height:1200px;
  9009. display:flex;
  9010. color:#AFB3B6;
  9011. }
  9012. #u37840 .text {
  9013. position:absolute;
  9014. align-self:center;
  9015. padding:2px 2px 2px 2px;
  9016. box-sizing:border-box;
  9017. width:100%;
  9018. }
  9019. #u37840_text {
  9020. border-width:0px;
  9021. word-wrap:break-word;
  9022. text-transform:none;
  9023. visibility:hidden;
  9024. }
  9025. #u37841_img {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:0px;
  9029. top:0px;
  9030. width:15px;
  9031. height:15px;
  9032. }
  9033. #u37841 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:6467px;
  9037. top:18px;
  9038. width:15px;
  9039. height:15px;
  9040. display:flex;
  9041. }
  9042. #u37841 .text {
  9043. position:absolute;
  9044. align-self:center;
  9045. padding:2px 2px 2px 2px;
  9046. box-sizing:border-box;
  9047. width:100%;
  9048. }
  9049. #u37841_text {
  9050. border-width:0px;
  9051. word-wrap:break-word;
  9052. text-transform:none;
  9053. visibility:hidden;
  9054. }
  9055. #u37842_img {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:15px;
  9061. height:15px;
  9062. }
  9063. #u37842 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:6437px;
  9067. top:18px;
  9068. width:15px;
  9069. height:15px;
  9070. display:flex;
  9071. }
  9072. #u37842 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:2px 2px 2px 2px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u37842_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u37843 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:0px;
  9091. height:0px;
  9092. }
  9093. #u37844_img {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:14px;
  9099. height:14px;
  9100. }
  9101. #u37844 {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:6497px;
  9105. top:18px;
  9106. width:14px;
  9107. height:14px;
  9108. display:flex;
  9109. }
  9110. #u37844 .text {
  9111. position:absolute;
  9112. align-self:center;
  9113. padding:2px 2px 2px 2px;
  9114. box-sizing:border-box;
  9115. width:100%;
  9116. }
  9117. #u37844_text {
  9118. border-width:0px;
  9119. word-wrap:break-word;
  9120. text-transform:none;
  9121. visibility:hidden;
  9122. }
  9123. #u37845_img {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:8px;
  9129. height:5px;
  9130. }
  9131. #u37845 {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:6516px;
  9135. top:23px;
  9136. width:8px;
  9137. height:5px;
  9138. display:flex;
  9139. }
  9140. #u37845 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:2px 2px 2px 2px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u37845_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. visibility:hidden;
  9152. }
  9153. #u37846_div {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:1402px;
  9159. height:1200px;
  9160. background:inherit;
  9161. background-color:rgba(242, 242, 242, 1);
  9162. border:none;
  9163. border-radius:0px;
  9164. -moz-box-shadow:none;
  9165. -webkit-box-shadow:none;
  9166. box-shadow:none;
  9167. }
  9168. #u37846 {
  9169. border-width:0px;
  9170. position:absolute;
  9171. left:5142px;
  9172. top:47px;
  9173. width:1402px;
  9174. height:1200px;
  9175. display:flex;
  9176. }
  9177. #u37846 .text {
  9178. position:absolute;
  9179. align-self:center;
  9180. padding:2px 2px 2px 2px;
  9181. box-sizing:border-box;
  9182. width:100%;
  9183. }
  9184. #u37846_text {
  9185. border-width:0px;
  9186. word-wrap:break-word;
  9187. text-transform:none;
  9188. visibility:hidden;
  9189. }
  9190. #u37847 {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:4979px;
  9194. top:81px;
  9195. width:118px;
  9196. height:220px;
  9197. }
  9198. #u37847_children {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:0px;
  9202. top:0px;
  9203. width:0px;
  9204. height:0px;
  9205. }
  9206. #u37848 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:0px;
  9210. top:0px;
  9211. width:98px;
  9212. height:20px;
  9213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9214. font-weight:400;
  9215. font-style:normal;
  9216. font-size:14px;
  9217. color:#FFFFFF;
  9218. }
  9219. #u37849_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:76px;
  9225. height:20px;
  9226. background:inherit;
  9227. background-color:rgba(255, 255, 255, 0);
  9228. border:none;
  9229. border-radius:0px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. }
  9234. #u37849 {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:22px;
  9238. top:0px;
  9239. width:76px;
  9240. height:20px;
  9241. display:flex;
  9242. }
  9243. #u37849 .text {
  9244. position:absolute;
  9245. align-self:center;
  9246. padding:2px 2px 2px 3px;
  9247. box-sizing:border-box;
  9248. width:100%;
  9249. }
  9250. #u37849_text {
  9251. border-width:0px;
  9252. white-space:nowrap;
  9253. text-transform:none;
  9254. }
  9255. #u37850 {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:20px;
  9260. width:84px;
  9261. height:20px;
  9262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:14px;
  9266. color:#FFFFFF;
  9267. }
  9268. #u37851_img {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:9px;
  9274. height:9px;
  9275. }
  9276. #u37851 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:6px;
  9280. top:6px;
  9281. width:9px;
  9282. height:9px;
  9283. display:flex;
  9284. }
  9285. #u37851 .text {
  9286. position:absolute;
  9287. align-self:center;
  9288. padding:2px 2px 2px 2px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u37851_img.selected {
  9293. }
  9294. #u37851.selected {
  9295. }
  9296. #u37851_text {
  9297. border-width:0px;
  9298. word-wrap:break-word;
  9299. text-transform:none;
  9300. visibility:hidden;
  9301. }
  9302. #u37852_div {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:0px;
  9306. top:0px;
  9307. width:62px;
  9308. height:20px;
  9309. background:inherit;
  9310. background-color:rgba(255, 255, 255, 0);
  9311. border:none;
  9312. border-radius:0px;
  9313. -moz-box-shadow:none;
  9314. -webkit-box-shadow:none;
  9315. box-shadow:none;
  9316. }
  9317. #u37852 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:22px;
  9321. top:0px;
  9322. width:62px;
  9323. height:20px;
  9324. display:flex;
  9325. }
  9326. #u37852 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:2px 2px 2px 3px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u37852_text {
  9334. border-width:0px;
  9335. white-space:nowrap;
  9336. text-transform:none;
  9337. }
  9338. #u37850_children {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:0px;
  9344. height:0px;
  9345. }
  9346. #u37853 {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:20px;
  9350. top:20px;
  9351. width:98px;
  9352. height:20px;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:14px;
  9357. color:#FFFFFF;
  9358. }
  9359. #u37854_div {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:76px;
  9365. height:20px;
  9366. background:inherit;
  9367. background-color:rgba(255, 255, 255, 0);
  9368. border:none;
  9369. border-radius:0px;
  9370. -moz-box-shadow:none;
  9371. -webkit-box-shadow:none;
  9372. box-shadow:none;
  9373. }
  9374. #u37854 {
  9375. border-width:0px;
  9376. position:absolute;
  9377. left:22px;
  9378. top:0px;
  9379. width:76px;
  9380. height:20px;
  9381. display:flex;
  9382. }
  9383. #u37854 .text {
  9384. position:absolute;
  9385. align-self:center;
  9386. padding:2px 2px 2px 3px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u37854_text {
  9391. border-width:0px;
  9392. white-space:nowrap;
  9393. text-transform:none;
  9394. }
  9395. #u37855 {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:20px;
  9399. top:40px;
  9400. width:98px;
  9401. height:20px;
  9402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:14px;
  9406. color:#FFFFFF;
  9407. }
  9408. #u37856_div {
  9409. border-width:0px;
  9410. position:absolute;
  9411. left:0px;
  9412. top:0px;
  9413. width:76px;
  9414. height:20px;
  9415. background:inherit;
  9416. background-color:rgba(255, 255, 255, 0);
  9417. border:none;
  9418. border-radius:0px;
  9419. -moz-box-shadow:none;
  9420. -webkit-box-shadow:none;
  9421. box-shadow:none;
  9422. }
  9423. #u37856 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:22px;
  9427. top:0px;
  9428. width:76px;
  9429. height:20px;
  9430. display:flex;
  9431. }
  9432. #u37856 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:2px 2px 2px 3px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u37856_text {
  9440. border-width:0px;
  9441. white-space:nowrap;
  9442. text-transform:none;
  9443. }
  9444. #u37857 {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:80px;
  9449. width:84px;
  9450. height:20px;
  9451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9452. font-weight:400;
  9453. font-style:normal;
  9454. font-size:14px;
  9455. color:#FFFFFF;
  9456. }
  9457. #u37858_img {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:9px;
  9463. height:9px;
  9464. }
  9465. #u37858 {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:6px;
  9469. top:6px;
  9470. width:9px;
  9471. height:9px;
  9472. display:flex;
  9473. }
  9474. #u37858 .text {
  9475. position:absolute;
  9476. align-self:center;
  9477. padding:2px 2px 2px 2px;
  9478. box-sizing:border-box;
  9479. width:100%;
  9480. }
  9481. #u37858_img.selected {
  9482. }
  9483. #u37858.selected {
  9484. }
  9485. #u37858_text {
  9486. border-width:0px;
  9487. word-wrap:break-word;
  9488. text-transform:none;
  9489. visibility:hidden;
  9490. }
  9491. #u37859_div {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:62px;
  9497. height:20px;
  9498. background:inherit;
  9499. background-color:rgba(255, 255, 255, 0);
  9500. border:none;
  9501. border-radius:0px;
  9502. -moz-box-shadow:none;
  9503. -webkit-box-shadow:none;
  9504. box-shadow:none;
  9505. }
  9506. #u37859 {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:22px;
  9510. top:0px;
  9511. width:62px;
  9512. height:20px;
  9513. display:flex;
  9514. }
  9515. #u37859 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:2px 2px 2px 3px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u37859_text {
  9523. border-width:0px;
  9524. white-space:nowrap;
  9525. text-transform:none;
  9526. }
  9527. #u37857_children {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:0px;
  9533. height:0px;
  9534. }
  9535. #u37860 {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:20px;
  9539. top:20px;
  9540. width:98px;
  9541. height:20px;
  9542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:14px;
  9546. color:#FFFFFF;
  9547. }
  9548. #u37861_div {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:76px;
  9554. height:20px;
  9555. background:inherit;
  9556. background-color:rgba(255, 255, 255, 0);
  9557. border:none;
  9558. border-radius:0px;
  9559. -moz-box-shadow:none;
  9560. -webkit-box-shadow:none;
  9561. box-shadow:none;
  9562. }
  9563. #u37861 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:22px;
  9567. top:0px;
  9568. width:76px;
  9569. height:20px;
  9570. display:flex;
  9571. }
  9572. #u37861 .text {
  9573. position:absolute;
  9574. align-self:center;
  9575. padding:2px 2px 2px 3px;
  9576. box-sizing:border-box;
  9577. width:100%;
  9578. }
  9579. #u37861_text {
  9580. border-width:0px;
  9581. white-space:nowrap;
  9582. text-transform:none;
  9583. }
  9584. #u37862 {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:20px;
  9588. top:40px;
  9589. width:98px;
  9590. height:20px;
  9591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9592. font-weight:400;
  9593. font-style:normal;
  9594. font-size:14px;
  9595. color:#FFFFFF;
  9596. }
  9597. #u37863_div {
  9598. border-width:0px;
  9599. position:absolute;
  9600. left:0px;
  9601. top:0px;
  9602. width:76px;
  9603. height:20px;
  9604. background:inherit;
  9605. background-color:rgba(255, 255, 255, 0);
  9606. border:none;
  9607. border-radius:0px;
  9608. -moz-box-shadow:none;
  9609. -webkit-box-shadow:none;
  9610. box-shadow:none;
  9611. }
  9612. #u37863 {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:22px;
  9616. top:0px;
  9617. width:76px;
  9618. height:20px;
  9619. display:flex;
  9620. }
  9621. #u37863 .text {
  9622. position:absolute;
  9623. align-self:center;
  9624. padding:2px 2px 2px 3px;
  9625. box-sizing:border-box;
  9626. width:100%;
  9627. }
  9628. #u37863_text {
  9629. border-width:0px;
  9630. white-space:nowrap;
  9631. text-transform:none;
  9632. }
  9633. #u37864 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:140px;
  9638. width:84px;
  9639. height:20px;
  9640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9641. font-weight:400;
  9642. font-style:normal;
  9643. font-size:14px;
  9644. color:#FFFFFF;
  9645. }
  9646. #u37865_img {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:0px;
  9650. top:0px;
  9651. width:9px;
  9652. height:9px;
  9653. }
  9654. #u37865 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:6px;
  9658. top:6px;
  9659. width:9px;
  9660. height:9px;
  9661. display:flex;
  9662. }
  9663. #u37865 .text {
  9664. position:absolute;
  9665. align-self:center;
  9666. padding:2px 2px 2px 2px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u37865_img.selected {
  9671. }
  9672. #u37865.selected {
  9673. }
  9674. #u37865_text {
  9675. border-width:0px;
  9676. word-wrap:break-word;
  9677. text-transform:none;
  9678. visibility:hidden;
  9679. }
  9680. #u37866_div {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:0px;
  9684. top:0px;
  9685. width:62px;
  9686. height:20px;
  9687. background:inherit;
  9688. background-color:rgba(255, 255, 255, 0);
  9689. border:none;
  9690. border-radius:0px;
  9691. -moz-box-shadow:none;
  9692. -webkit-box-shadow:none;
  9693. box-shadow:none;
  9694. }
  9695. #u37866 {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:22px;
  9699. top:0px;
  9700. width:62px;
  9701. height:20px;
  9702. display:flex;
  9703. }
  9704. #u37866 .text {
  9705. position:absolute;
  9706. align-self:center;
  9707. padding:2px 2px 2px 3px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u37866_text {
  9712. border-width:0px;
  9713. white-space:nowrap;
  9714. text-transform:none;
  9715. }
  9716. #u37864_children {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:0px;
  9722. height:0px;
  9723. visibility:hidden;
  9724. }
  9725. #u37867 {
  9726. border-width:0px;
  9727. position:absolute;
  9728. left:20px;
  9729. top:20px;
  9730. width:84px;
  9731. height:20px;
  9732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9733. font-weight:400;
  9734. font-style:normal;
  9735. font-size:14px;
  9736. color:#FFFFFF;
  9737. }
  9738. #u37868_div {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:62px;
  9744. height:20px;
  9745. background:inherit;
  9746. background-color:rgba(255, 255, 255, 0);
  9747. border:none;
  9748. border-radius:0px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. }
  9753. #u37868 {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:22px;
  9757. top:0px;
  9758. width:62px;
  9759. height:20px;
  9760. display:flex;
  9761. }
  9762. #u37868 .text {
  9763. position:absolute;
  9764. align-self:center;
  9765. padding:2px 2px 2px 3px;
  9766. box-sizing:border-box;
  9767. width:100%;
  9768. }
  9769. #u37868_text {
  9770. border-width:0px;
  9771. white-space:nowrap;
  9772. text-transform:none;
  9773. }
  9774. #u37869 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:20px;
  9778. top:40px;
  9779. width:84px;
  9780. height:20px;
  9781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9782. font-weight:400;
  9783. font-style:normal;
  9784. font-size:14px;
  9785. color:#FFFFFF;
  9786. }
  9787. #u37870_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:62px;
  9793. height:20px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 0);
  9796. border:none;
  9797. border-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. }
  9802. #u37870 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:22px;
  9806. top:0px;
  9807. width:62px;
  9808. height:20px;
  9809. display:flex;
  9810. }
  9811. #u37870 .text {
  9812. position:absolute;
  9813. align-self:center;
  9814. padding:2px 2px 2px 3px;
  9815. box-sizing:border-box;
  9816. width:100%;
  9817. }
  9818. #u37870_text {
  9819. border-width:0px;
  9820. white-space:nowrap;
  9821. text-transform:none;
  9822. }
  9823. #u37871 {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:20px;
  9827. top:60px;
  9828. width:84px;
  9829. height:20px;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. font-size:14px;
  9834. color:#FFFFFF;
  9835. }
  9836. #u37872_div {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:62px;
  9842. height:20px;
  9843. background:inherit;
  9844. background-color:rgba(255, 255, 255, 0);
  9845. border:none;
  9846. border-radius:0px;
  9847. -moz-box-shadow:none;
  9848. -webkit-box-shadow:none;
  9849. box-shadow:none;
  9850. }
  9851. #u37872 {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:22px;
  9855. top:0px;
  9856. width:62px;
  9857. height:20px;
  9858. display:flex;
  9859. }
  9860. #u37872 .text {
  9861. position:absolute;
  9862. align-self:center;
  9863. padding:2px 2px 2px 3px;
  9864. box-sizing:border-box;
  9865. width:100%;
  9866. }
  9867. #u37872_text {
  9868. border-width:0px;
  9869. white-space:nowrap;
  9870. text-transform:none;
  9871. }
  9872. #u37873 {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:20px;
  9876. top:80px;
  9877. width:84px;
  9878. height:20px;
  9879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9880. font-weight:400;
  9881. font-style:normal;
  9882. font-size:14px;
  9883. color:#FFFFFF;
  9884. }
  9885. #u37874_div {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:62px;
  9891. height:20px;
  9892. background:inherit;
  9893. background-color:rgba(255, 255, 255, 0);
  9894. border:none;
  9895. border-radius:0px;
  9896. -moz-box-shadow:none;
  9897. -webkit-box-shadow:none;
  9898. box-shadow:none;
  9899. }
  9900. #u37874 {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:22px;
  9904. top:0px;
  9905. width:62px;
  9906. height:20px;
  9907. display:flex;
  9908. }
  9909. #u37874 .text {
  9910. position:absolute;
  9911. align-self:center;
  9912. padding:2px 2px 2px 3px;
  9913. box-sizing:border-box;
  9914. width:100%;
  9915. }
  9916. #u37874_text {
  9917. border-width:0px;
  9918. white-space:nowrap;
  9919. text-transform:none;
  9920. }
  9921. #u37875 {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:0px;
  9925. top:160px;
  9926. width:98px;
  9927. height:20px;
  9928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:14px;
  9932. color:#FFFFFF;
  9933. }
  9934. #u37876_img {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:9px;
  9940. height:9px;
  9941. }
  9942. #u37876 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:6px;
  9946. top:6px;
  9947. width:9px;
  9948. height:9px;
  9949. display:flex;
  9950. }
  9951. #u37876 .text {
  9952. position:absolute;
  9953. align-self:center;
  9954. padding:2px 2px 2px 2px;
  9955. box-sizing:border-box;
  9956. width:100%;
  9957. }
  9958. #u37876_img.selected {
  9959. }
  9960. #u37876.selected {
  9961. }
  9962. #u37876_text {
  9963. border-width:0px;
  9964. word-wrap:break-word;
  9965. text-transform:none;
  9966. visibility:hidden;
  9967. }
  9968. #u37877_div {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:0px;
  9972. top:0px;
  9973. width:76px;
  9974. height:20px;
  9975. background:inherit;
  9976. background-color:rgba(255, 255, 255, 0);
  9977. border:none;
  9978. border-radius:0px;
  9979. -moz-box-shadow:none;
  9980. -webkit-box-shadow:none;
  9981. box-shadow:none;
  9982. }
  9983. #u37877 {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:22px;
  9987. top:0px;
  9988. width:76px;
  9989. height:20px;
  9990. display:flex;
  9991. }
  9992. #u37877 .text {
  9993. position:absolute;
  9994. align-self:center;
  9995. padding:2px 2px 2px 3px;
  9996. box-sizing:border-box;
  9997. width:100%;
  9998. }
  9999. #u37877_text {
  10000. border-width:0px;
  10001. white-space:nowrap;
  10002. text-transform:none;
  10003. }
  10004. #u37875_children {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:0px;
  10010. height:0px;
  10011. visibility:hidden;
  10012. }
  10013. #u37878 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:20px;
  10017. top:20px;
  10018. width:98px;
  10019. height:20px;
  10020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10021. font-weight:400;
  10022. font-style:normal;
  10023. font-size:14px;
  10024. color:#FFFFFF;
  10025. }
  10026. #u37879_div {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:0px;
  10030. top:0px;
  10031. width:76px;
  10032. height:20px;
  10033. background:inherit;
  10034. background-color:rgba(255, 255, 255, 0);
  10035. border:none;
  10036. border-radius:0px;
  10037. -moz-box-shadow:none;
  10038. -webkit-box-shadow:none;
  10039. box-shadow:none;
  10040. }
  10041. #u37879 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:22px;
  10045. top:0px;
  10046. width:76px;
  10047. height:20px;
  10048. display:flex;
  10049. }
  10050. #u37879 .text {
  10051. position:absolute;
  10052. align-self:center;
  10053. padding:2px 2px 2px 3px;
  10054. box-sizing:border-box;
  10055. width:100%;
  10056. }
  10057. #u37879_text {
  10058. border-width:0px;
  10059. white-space:nowrap;
  10060. text-transform:none;
  10061. }
  10062. #u37880 {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:20px;
  10066. top:40px;
  10067. width:98px;
  10068. height:20px;
  10069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10070. font-weight:400;
  10071. font-style:normal;
  10072. font-size:14px;
  10073. color:#FFFFFF;
  10074. }
  10075. #u37881_div {
  10076. border-width:0px;
  10077. position:absolute;
  10078. left:0px;
  10079. top:0px;
  10080. width:76px;
  10081. height:20px;
  10082. background:inherit;
  10083. background-color:rgba(255, 255, 255, 0);
  10084. border:none;
  10085. border-radius:0px;
  10086. -moz-box-shadow:none;
  10087. -webkit-box-shadow:none;
  10088. box-shadow:none;
  10089. }
  10090. #u37881 {
  10091. border-width:0px;
  10092. position:absolute;
  10093. left:22px;
  10094. top:0px;
  10095. width:76px;
  10096. height:20px;
  10097. display:flex;
  10098. }
  10099. #u37881 .text {
  10100. position:absolute;
  10101. align-self:center;
  10102. padding:2px 2px 2px 3px;
  10103. box-sizing:border-box;
  10104. width:100%;
  10105. }
  10106. #u37881_text {
  10107. border-width:0px;
  10108. white-space:nowrap;
  10109. text-transform:none;
  10110. }
  10111. #u37882 {
  10112. border-width:0px;
  10113. position:absolute;
  10114. left:0px;
  10115. top:180px;
  10116. width:84px;
  10117. height:20px;
  10118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10119. font-weight:400;
  10120. font-style:normal;
  10121. font-size:14px;
  10122. color:#FFFFFF;
  10123. }
  10124. #u37883_img {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:9px;
  10130. height:9px;
  10131. }
  10132. #u37883 {
  10133. border-width:0px;
  10134. position:absolute;
  10135. left:6px;
  10136. top:6px;
  10137. width:9px;
  10138. height:9px;
  10139. display:flex;
  10140. }
  10141. #u37883 .text {
  10142. position:absolute;
  10143. align-self:center;
  10144. padding:2px 2px 2px 2px;
  10145. box-sizing:border-box;
  10146. width:100%;
  10147. }
  10148. #u37883_img.selected {
  10149. }
  10150. #u37883.selected {
  10151. }
  10152. #u37883_text {
  10153. border-width:0px;
  10154. word-wrap:break-word;
  10155. text-transform:none;
  10156. visibility:hidden;
  10157. }
  10158. #u37884_div {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:0px;
  10162. top:0px;
  10163. width:62px;
  10164. height:20px;
  10165. background:inherit;
  10166. background-color:rgba(255, 255, 255, 0);
  10167. border:none;
  10168. border-radius:0px;
  10169. -moz-box-shadow:none;
  10170. -webkit-box-shadow:none;
  10171. box-shadow:none;
  10172. }
  10173. #u37884 {
  10174. border-width:0px;
  10175. position:absolute;
  10176. left:22px;
  10177. top:0px;
  10178. width:62px;
  10179. height:20px;
  10180. display:flex;
  10181. }
  10182. #u37884 .text {
  10183. position:absolute;
  10184. align-self:center;
  10185. padding:2px 2px 2px 3px;
  10186. box-sizing:border-box;
  10187. width:100%;
  10188. }
  10189. #u37884_text {
  10190. border-width:0px;
  10191. white-space:nowrap;
  10192. text-transform:none;
  10193. }
  10194. #u37882_children {
  10195. border-width:0px;
  10196. position:absolute;
  10197. left:0px;
  10198. top:0px;
  10199. width:0px;
  10200. height:0px;
  10201. visibility:hidden;
  10202. }
  10203. #u37885 {
  10204. border-width:0px;
  10205. position:absolute;
  10206. left:20px;
  10207. top:20px;
  10208. width:98px;
  10209. height:20px;
  10210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10211. font-weight:400;
  10212. font-style:normal;
  10213. font-size:14px;
  10214. color:#FFFFFF;
  10215. }
  10216. #u37886_div {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:76px;
  10222. height:20px;
  10223. background:inherit;
  10224. background-color:rgba(255, 255, 255, 0);
  10225. border:none;
  10226. border-radius:0px;
  10227. -moz-box-shadow:none;
  10228. -webkit-box-shadow:none;
  10229. box-shadow:none;
  10230. }
  10231. #u37886 {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:22px;
  10235. top:0px;
  10236. width:76px;
  10237. height:20px;
  10238. display:flex;
  10239. }
  10240. #u37886 .text {
  10241. position:absolute;
  10242. align-self:center;
  10243. padding:2px 2px 2px 3px;
  10244. box-sizing:border-box;
  10245. width:100%;
  10246. }
  10247. #u37886_text {
  10248. border-width:0px;
  10249. white-space:nowrap;
  10250. text-transform:none;
  10251. }
  10252. #u37887 {
  10253. border-width:0px;
  10254. position:absolute;
  10255. left:20px;
  10256. top:40px;
  10257. width:84px;
  10258. height:20px;
  10259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. font-size:14px;
  10263. color:#FFFFFF;
  10264. }
  10265. #u37888_div {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:0px;
  10269. top:0px;
  10270. width:62px;
  10271. height:20px;
  10272. background:inherit;
  10273. background-color:rgba(255, 255, 255, 0);
  10274. border:none;
  10275. border-radius:0px;
  10276. -moz-box-shadow:none;
  10277. -webkit-box-shadow:none;
  10278. box-shadow:none;
  10279. }
  10280. #u37888 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:22px;
  10284. top:0px;
  10285. width:62px;
  10286. height:20px;
  10287. display:flex;
  10288. }
  10289. #u37888 .text {
  10290. position:absolute;
  10291. align-self:center;
  10292. padding:2px 2px 2px 3px;
  10293. box-sizing:border-box;
  10294. width:100%;
  10295. }
  10296. #u37888_text {
  10297. border-width:0px;
  10298. white-space:nowrap;
  10299. text-transform:none;
  10300. }
  10301. #u37889 {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:0px;
  10305. top:200px;
  10306. width:84px;
  10307. height:20px;
  10308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10309. font-weight:400;
  10310. font-style:normal;
  10311. font-size:14px;
  10312. color:#FFFFFF;
  10313. }
  10314. #u37890_img {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:0px;
  10318. top:0px;
  10319. width:9px;
  10320. height:9px;
  10321. }
  10322. #u37890 {
  10323. border-width:0px;
  10324. position:absolute;
  10325. left:6px;
  10326. top:6px;
  10327. width:9px;
  10328. height:9px;
  10329. display:flex;
  10330. }
  10331. #u37890 .text {
  10332. position:absolute;
  10333. align-self:center;
  10334. padding:2px 2px 2px 2px;
  10335. box-sizing:border-box;
  10336. width:100%;
  10337. }
  10338. #u37890_img.selected {
  10339. }
  10340. #u37890.selected {
  10341. }
  10342. #u37890_text {
  10343. border-width:0px;
  10344. word-wrap:break-word;
  10345. text-transform:none;
  10346. visibility:hidden;
  10347. }
  10348. #u37891_div {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:0px;
  10352. top:0px;
  10353. width:62px;
  10354. height:20px;
  10355. background:inherit;
  10356. background-color:rgba(255, 255, 255, 0);
  10357. border:none;
  10358. border-radius:0px;
  10359. -moz-box-shadow:none;
  10360. -webkit-box-shadow:none;
  10361. box-shadow:none;
  10362. }
  10363. #u37891 {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:22px;
  10367. top:0px;
  10368. width:62px;
  10369. height:20px;
  10370. display:flex;
  10371. }
  10372. #u37891 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:2px 2px 2px 3px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u37891_text {
  10380. border-width:0px;
  10381. white-space:nowrap;
  10382. text-transform:none;
  10383. }
  10384. #u37889_children {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:0px;
  10390. height:0px;
  10391. visibility:hidden;
  10392. }
  10393. #u37892 {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:20px;
  10397. top:20px;
  10398. width:84px;
  10399. height:20px;
  10400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10401. font-weight:400;
  10402. font-style:normal;
  10403. font-size:14px;
  10404. color:#FFFFFF;
  10405. }
  10406. #u37893_div {
  10407. border-width:0px;
  10408. position:absolute;
  10409. left:0px;
  10410. top:0px;
  10411. width:62px;
  10412. height:20px;
  10413. background:inherit;
  10414. background-color:rgba(255, 255, 255, 0);
  10415. border:none;
  10416. border-radius:0px;
  10417. -moz-box-shadow:none;
  10418. -webkit-box-shadow:none;
  10419. box-shadow:none;
  10420. }
  10421. #u37893 {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:22px;
  10425. top:0px;
  10426. width:62px;
  10427. height:20px;
  10428. display:flex;
  10429. }
  10430. #u37893 .text {
  10431. position:absolute;
  10432. align-self:center;
  10433. padding:2px 2px 2px 3px;
  10434. box-sizing:border-box;
  10435. width:100%;
  10436. }
  10437. #u37893_text {
  10438. border-width:0px;
  10439. white-space:nowrap;
  10440. text-transform:none;
  10441. }
  10442. #u37894 {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:20px;
  10446. top:40px;
  10447. width:84px;
  10448. height:20px;
  10449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10450. font-weight:400;
  10451. font-style:normal;
  10452. font-size:14px;
  10453. color:#FFFFFF;
  10454. }
  10455. #u37895_div {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:0px;
  10459. top:0px;
  10460. width:62px;
  10461. height:20px;
  10462. background:inherit;
  10463. background-color:rgba(255, 255, 255, 0);
  10464. border:none;
  10465. border-radius:0px;
  10466. -moz-box-shadow:none;
  10467. -webkit-box-shadow:none;
  10468. box-shadow:none;
  10469. }
  10470. #u37895 {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:22px;
  10474. top:0px;
  10475. width:62px;
  10476. height:20px;
  10477. display:flex;
  10478. }
  10479. #u37895 .text {
  10480. position:absolute;
  10481. align-self:center;
  10482. padding:2px 2px 2px 3px;
  10483. box-sizing:border-box;
  10484. width:100%;
  10485. }
  10486. #u37895_text {
  10487. border-width:0px;
  10488. white-space:nowrap;
  10489. text-transform:none;
  10490. }
  10491. #u37896 {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:20px;
  10495. top:60px;
  10496. width:84px;
  10497. height:20px;
  10498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10499. font-weight:400;
  10500. font-style:normal;
  10501. font-size:14px;
  10502. color:#FFFFFF;
  10503. }
  10504. #u37897_div {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:62px;
  10510. height:20px;
  10511. background:inherit;
  10512. background-color:rgba(255, 255, 255, 0);
  10513. border:none;
  10514. border-radius:0px;
  10515. -moz-box-shadow:none;
  10516. -webkit-box-shadow:none;
  10517. box-shadow:none;
  10518. }
  10519. #u37897 {
  10520. border-width:0px;
  10521. position:absolute;
  10522. left:22px;
  10523. top:0px;
  10524. width:62px;
  10525. height:20px;
  10526. display:flex;
  10527. }
  10528. #u37897 .text {
  10529. position:absolute;
  10530. align-self:center;
  10531. padding:2px 2px 2px 3px;
  10532. box-sizing:border-box;
  10533. width:100%;
  10534. }
  10535. #u37897_text {
  10536. border-width:0px;
  10537. white-space:nowrap;
  10538. text-transform:none;
  10539. }
  10540. #u37898 {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:0px;
  10544. top:0px;
  10545. width:0px;
  10546. height:0px;
  10547. }
  10548. #u37899_input {
  10549. position:absolute;
  10550. left:0px;
  10551. top:0px;
  10552. width:141px;
  10553. height:22px;
  10554. padding:2px 2px 2px 2px;
  10555. font-family:'ArialMT', 'Arial', sans-serif;
  10556. font-weight:400;
  10557. font-style:normal;
  10558. font-size:14px;
  10559. letter-spacing:normal;
  10560. color:#FFFFFF;
  10561. vertical-align:none;
  10562. text-align:left;
  10563. text-transform:none;
  10564. background-color:transparent;
  10565. border-color:transparent;
  10566. }
  10567. #u37899_input.disabled {
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:141px;
  10572. height:22px;
  10573. padding:2px 2px 2px 2px;
  10574. font-family:'ArialMT', 'Arial', sans-serif;
  10575. font-weight:400;
  10576. font-style:normal;
  10577. font-size:14px;
  10578. letter-spacing:normal;
  10579. color:#FFFFFF;
  10580. vertical-align:none;
  10581. text-align:left;
  10582. text-transform:none;
  10583. background-color:transparent;
  10584. border-color:transparent;
  10585. }
  10586. #u37899_div {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:0px;
  10590. top:0px;
  10591. width:141px;
  10592. height:22px;
  10593. background:inherit;
  10594. background-color:rgba(255, 255, 255, 0);
  10595. border:none;
  10596. border-radius:0px;
  10597. -moz-box-shadow:none;
  10598. -webkit-box-shadow:none;
  10599. box-shadow:none;
  10600. font-size:14px;
  10601. color:#FFFFFF;
  10602. }
  10603. #u37899 {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:5187px;
  10607. top:14px;
  10608. width:141px;
  10609. height:22px;
  10610. display:flex;
  10611. font-size:14px;
  10612. color:#FFFFFF;
  10613. }
  10614. #u37899 .text {
  10615. position:absolute;
  10616. align-self:flex-start;
  10617. padding:2px 2px 2px 2px;
  10618. box-sizing:border-box;
  10619. width:100%;
  10620. }
  10621. #u37899_div.disabled {
  10622. border-width:0px;
  10623. position:absolute;
  10624. left:0px;
  10625. top:0px;
  10626. width:141px;
  10627. height:22px;
  10628. background:inherit;
  10629. background-color:rgba(240, 240, 240, 1);
  10630. border:none;
  10631. border-radius:0px;
  10632. -moz-box-shadow:none;
  10633. -webkit-box-shadow:none;
  10634. box-shadow:none;
  10635. font-size:14px;
  10636. color:#FFFFFF;
  10637. }
  10638. #u37899.disabled {
  10639. }
  10640. .u37899_input_option {
  10641. font-size:14px;
  10642. }
  10643. #u37900_img {
  10644. border-width:0px;
  10645. position:absolute;
  10646. left:0px;
  10647. top:0px;
  10648. width:22px;
  10649. height:22px;
  10650. }
  10651. #u37900 {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:5160px;
  10655. top:15px;
  10656. width:22px;
  10657. height:22px;
  10658. display:flex;
  10659. }
  10660. #u37900 .text {
  10661. position:absolute;
  10662. align-self:center;
  10663. padding:2px 2px 2px 2px;
  10664. box-sizing:border-box;
  10665. width:100%;
  10666. }
  10667. #u37900_text {
  10668. border-width:0px;
  10669. word-wrap:break-word;
  10670. text-transform:none;
  10671. visibility:hidden;
  10672. }
  10673. #u37901_div {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:0px;
  10677. top:0px;
  10678. width:136px;
  10679. height:16px;
  10680. background:inherit;
  10681. background-color:rgba(255, 255, 255, 0);
  10682. border:none;
  10683. border-radius:0px;
  10684. -moz-box-shadow:none;
  10685. -webkit-box-shadow:none;
  10686. box-shadow:none;
  10687. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  10688. font-weight:200;
  10689. font-style:normal;
  10690. font-size:11px;
  10691. color:#555555;
  10692. }
  10693. #u37901 {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:5152px;
  10697. top:53px;
  10698. width:136px;
  10699. height:16px;
  10700. display:flex;
  10701. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  10702. font-weight:200;
  10703. font-style:normal;
  10704. font-size:11px;
  10705. color:#555555;
  10706. }
  10707. #u37901 .text {
  10708. position:absolute;
  10709. align-self:flex-start;
  10710. padding:0px 0px 0px 0px;
  10711. box-sizing:border-box;
  10712. width:100%;
  10713. }
  10714. #u37901_text {
  10715. border-width:0px;
  10716. white-space:nowrap;
  10717. text-transform:none;
  10718. }
  10719. #u37902_div {
  10720. border-width:0px;
  10721. position:absolute;
  10722. left:0px;
  10723. top:0px;
  10724. width:140px;
  10725. height:24px;
  10726. background:inherit;
  10727. background-color:rgba(242, 242, 242, 0.2);
  10728. border:none;
  10729. border-radius:25px;
  10730. -moz-box-shadow:none;
  10731. -webkit-box-shadow:none;
  10732. box-shadow:none;
  10733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10734. font-weight:400;
  10735. font-style:normal;
  10736. color:#FFFFFF;
  10737. text-align:center;
  10738. }
  10739. #u37902 {
  10740. border-width:0px;
  10741. position:absolute;
  10742. left:5361px;
  10743. top:13px;
  10744. width:140px;
  10745. height:24px;
  10746. display:flex;
  10747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10748. font-weight:400;
  10749. font-style:normal;
  10750. color:#FFFFFF;
  10751. text-align:center;
  10752. }
  10753. #u37902 .text {
  10754. position:absolute;
  10755. align-self:center;
  10756. padding:0px 0px 0px 0px;
  10757. box-sizing:border-box;
  10758. width:100%;
  10759. }
  10760. #u37902_text {
  10761. border-width:0px;
  10762. word-wrap:break-word;
  10763. text-transform:none;
  10764. }
  10765. #u37903_div {
  10766. border-width:0px;
  10767. position:absolute;
  10768. left:0px;
  10769. top:0px;
  10770. width:85px;
  10771. height:20px;
  10772. background:inherit;
  10773. background-color:rgba(30, 42, 68, 1);
  10774. border:none;
  10775. border-radius:0px;
  10776. -moz-box-shadow:none;
  10777. -webkit-box-shadow:none;
  10778. box-shadow:none;
  10779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10780. font-weight:400;
  10781. font-style:normal;
  10782. color:#FFFFFF;
  10783. }
  10784. #u37903 {
  10785. border-width:0px;
  10786. position:absolute;
  10787. left:6318px;
  10788. top:15px;
  10789. width:85px;
  10790. height:20px;
  10791. display:flex;
  10792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10793. font-weight:400;
  10794. font-style:normal;
  10795. color:#FFFFFF;
  10796. }
  10797. #u37903 .text {
  10798. position:absolute;
  10799. align-self:flex-start;
  10800. padding:0px 0px 0px 0px;
  10801. box-sizing:border-box;
  10802. width:100%;
  10803. }
  10804. #u37903_text {
  10805. border-width:0px;
  10806. white-space:nowrap;
  10807. text-transform:none;
  10808. }
  10809. #u37904_div {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:1600px;
  10815. height:1200px;
  10816. background:inherit;
  10817. background-color:rgba(242, 242, 242, 1);
  10818. border:none;
  10819. border-radius:0px;
  10820. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  10821. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  10822. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  10823. }
  10824. #u37904 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:4944px;
  10828. top:50px;
  10829. width:1600px;
  10830. height:1200px;
  10831. display:flex;
  10832. }
  10833. #u37904 .text {
  10834. position:absolute;
  10835. align-self:center;
  10836. padding:2px 2px 2px 2px;
  10837. box-sizing:border-box;
  10838. width:100%;
  10839. }
  10840. #u37904_text {
  10841. border-width:0px;
  10842. word-wrap:break-word;
  10843. text-transform:none;
  10844. visibility:hidden;
  10845. }
  10846. #u37905_div {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:0px;
  10850. top:0px;
  10851. width:280px;
  10852. height:1184px;
  10853. background:inherit;
  10854. background-color:rgba(255, 255, 255, 1);
  10855. box-sizing:border-box;
  10856. border-width:1px;
  10857. border-style:solid;
  10858. border-color:rgba(215, 215, 215, 1);
  10859. border-radius:0px;
  10860. -moz-box-shadow:none;
  10861. -webkit-box-shadow:none;
  10862. box-shadow:none;
  10863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10864. font-weight:400;
  10865. font-style:normal;
  10866. font-size:14px;
  10867. color:#AAAAAA;
  10868. text-align:center;
  10869. line-height:30px;
  10870. }
  10871. #u37905 {
  10872. border-width:0px;
  10873. position:absolute;
  10874. left:4944px;
  10875. top:50px;
  10876. width:280px;
  10877. height:1184px;
  10878. display:flex;
  10879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10880. font-weight:400;
  10881. font-style:normal;
  10882. font-size:14px;
  10883. color:#AAAAAA;
  10884. text-align:center;
  10885. line-height:30px;
  10886. }
  10887. #u37905 .text {
  10888. position:absolute;
  10889. align-self:center;
  10890. padding:5px 10px 5px 10px;
  10891. box-sizing:border-box;
  10892. width:100%;
  10893. }
  10894. #u37905_text {
  10895. border-width:0px;
  10896. word-wrap:break-word;
  10897. text-transform:none;
  10898. visibility:hidden;
  10899. }
  10900. #u37906_div {
  10901. border-width:0px;
  10902. position:absolute;
  10903. left:0px;
  10904. top:0px;
  10905. width:93px;
  10906. height:60px;
  10907. background:inherit;
  10908. background-color:rgba(255, 255, 255, 0);
  10909. border:none;
  10910. border-left:0px;
  10911. border-top:0px;
  10912. border-right:0px;
  10913. border-radius:0px;
  10914. border-bottom-right-radius:0px;
  10915. border-bottom-left-radius:0px;
  10916. -moz-box-shadow:none;
  10917. -webkit-box-shadow:none;
  10918. box-shadow:none;
  10919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10920. font-weight:400;
  10921. font-style:normal;
  10922. font-size:18px;
  10923. text-align:right;
  10924. line-height:50px;
  10925. }
  10926. #u37906 {
  10927. border-width:0px;
  10928. position:absolute;
  10929. left:5101px;
  10930. top:225px;
  10931. width:93px;
  10932. height:60px;
  10933. display:flex;
  10934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10935. font-weight:400;
  10936. font-style:normal;
  10937. font-size:18px;
  10938. text-align:right;
  10939. line-height:50px;
  10940. }
  10941. #u37906 .text {
  10942. position:absolute;
  10943. align-self:center;
  10944. padding:5px 0px 5px 20px;
  10945. box-sizing:border-box;
  10946. width:100%;
  10947. }
  10948. #u37906_text {
  10949. border-width:0px;
  10950. white-space:nowrap;
  10951. text-transform:none;
  10952. }
  10953. #u37907_div {
  10954. border-width:0px;
  10955. position:absolute;
  10956. left:0px;
  10957. top:0px;
  10958. width:1320px;
  10959. height:1184px;
  10960. background:inherit;
  10961. background-color:rgba(255, 255, 255, 1);
  10962. box-sizing:border-box;
  10963. border-width:1px;
  10964. border-style:solid;
  10965. border-color:rgba(215, 215, 215, 1);
  10966. border-radius:0px;
  10967. -moz-box-shadow:none;
  10968. -webkit-box-shadow:none;
  10969. box-shadow:none;
  10970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10971. font-weight:400;
  10972. font-style:normal;
  10973. font-size:14px;
  10974. color:#AAAAAA;
  10975. text-align:center;
  10976. line-height:30px;
  10977. }
  10978. #u37907 {
  10979. border-width:0px;
  10980. position:absolute;
  10981. left:5224px;
  10982. top:50px;
  10983. width:1320px;
  10984. height:1184px;
  10985. display:flex;
  10986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10987. font-weight:400;
  10988. font-style:normal;
  10989. font-size:14px;
  10990. color:#AAAAAA;
  10991. text-align:center;
  10992. line-height:30px;
  10993. }
  10994. #u37907 .text {
  10995. position:absolute;
  10996. align-self:center;
  10997. padding:5px 10px 5px 10px;
  10998. box-sizing:border-box;
  10999. width:100%;
  11000. }
  11001. #u37907_text {
  11002. border-width:0px;
  11003. word-wrap:break-word;
  11004. text-transform:none;
  11005. visibility:hidden;
  11006. }
  11007. #u37908_div {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:73px;
  11013. height:60px;
  11014. background:inherit;
  11015. background-color:rgba(255, 255, 255, 0);
  11016. border:none;
  11017. border-left:0px;
  11018. border-top:0px;
  11019. border-right:0px;
  11020. border-radius:0px;
  11021. border-bottom-right-radius:0px;
  11022. border-bottom-left-radius:0px;
  11023. -moz-box-shadow:none;
  11024. -webkit-box-shadow:none;
  11025. box-shadow:none;
  11026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11027. font-weight:400;
  11028. font-style:normal;
  11029. font-size:18px;
  11030. line-height:50px;
  11031. }
  11032. #u37908 {
  11033. border-width:0px;
  11034. position:absolute;
  11035. left:5254px;
  11036. top:130px;
  11037. width:73px;
  11038. height:60px;
  11039. display:flex;
  11040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11041. font-weight:400;
  11042. font-style:normal;
  11043. font-size:18px;
  11044. line-height:50px;
  11045. }
  11046. #u37908 .text {
  11047. position:absolute;
  11048. align-self:center;
  11049. padding:5px 0px 5px 0px;
  11050. box-sizing:border-box;
  11051. width:100%;
  11052. }
  11053. #u37908_text {
  11054. border-width:0px;
  11055. white-space:nowrap;
  11056. text-transform:none;
  11057. }
  11058. #u37909_div {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:1600px;
  11064. height:60px;
  11065. background:inherit;
  11066. background-color:rgba(255, 255, 255, 1);
  11067. border:none;
  11068. border-radius:0px;
  11069. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  11070. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  11071. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  11072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11073. font-weight:400;
  11074. font-style:normal;
  11075. font-size:14px;
  11076. color:#AAAAAA;
  11077. text-align:center;
  11078. line-height:30px;
  11079. }
  11080. #u37909 {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:4944px;
  11084. top:50px;
  11085. width:1600px;
  11086. height:60px;
  11087. display:flex;
  11088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11089. font-weight:400;
  11090. font-style:normal;
  11091. font-size:14px;
  11092. color:#AAAAAA;
  11093. text-align:center;
  11094. line-height:30px;
  11095. }
  11096. #u37909 .text {
  11097. position:absolute;
  11098. align-self:center;
  11099. padding:5px 10px 5px 10px;
  11100. box-sizing:border-box;
  11101. width:100%;
  11102. }
  11103. #u37909_text {
  11104. border-width:0px;
  11105. word-wrap:break-word;
  11106. text-transform:none;
  11107. visibility:hidden;
  11108. }
  11109. #u37910_div {
  11110. border-width:0px;
  11111. position:absolute;
  11112. left:0px;
  11113. top:0px;
  11114. width:60px;
  11115. height:30px;
  11116. background:inherit;
  11117. background-color:rgba(25, 140, 251, 1);
  11118. border:none;
  11119. border-radius:4px;
  11120. -moz-box-shadow:none;
  11121. -webkit-box-shadow:none;
  11122. box-shadow:none;
  11123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11124. font-weight:400;
  11125. font-style:normal;
  11126. font-size:14px;
  11127. color:#FFFFFF;
  11128. }
  11129. #u37910 {
  11130. border-width:0px;
  11131. position:absolute;
  11132. left:6444px;
  11133. top:65px;
  11134. width:60px;
  11135. height:30px;
  11136. display:flex;
  11137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11138. font-weight:400;
  11139. font-style:normal;
  11140. font-size:14px;
  11141. color:#FFFFFF;
  11142. }
  11143. #u37910 .text {
  11144. position:absolute;
  11145. align-self:center;
  11146. padding:2px 2px 2px 2px;
  11147. box-sizing:border-box;
  11148. width:100%;
  11149. }
  11150. #u37910_text {
  11151. border-width:0px;
  11152. word-wrap:break-word;
  11153. text-transform:none;
  11154. }
  11155. #u37911_div {
  11156. border-width:0px;
  11157. position:absolute;
  11158. left:0px;
  11159. top:0px;
  11160. width:70px;
  11161. height:35px;
  11162. background:inherit;
  11163. background-color:rgba(255, 255, 255, 0);
  11164. border:none;
  11165. border-left:0px;
  11166. border-top:0px;
  11167. border-right:0px;
  11168. border-radius:0px;
  11169. border-bottom-right-radius:0px;
  11170. border-bottom-left-radius:0px;
  11171. -moz-box-shadow:none;
  11172. -webkit-box-shadow:none;
  11173. box-shadow:none;
  11174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11175. font-weight:500;
  11176. font-style:normal;
  11177. font-size:18px;
  11178. }
  11179. #u37911 {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:4967px;
  11183. top:63px;
  11184. width:70px;
  11185. height:35px;
  11186. display:flex;
  11187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11188. font-weight:500;
  11189. font-style:normal;
  11190. font-size:18px;
  11191. }
  11192. #u37911 .text {
  11193. position:absolute;
  11194. align-self:center;
  11195. padding:5px 10px 5px 0px;
  11196. box-sizing:border-box;
  11197. width:100%;
  11198. }
  11199. #u37911_text {
  11200. border-width:0px;
  11201. white-space:nowrap;
  11202. text-transform:none;
  11203. }
  11204. #u37912 {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:0px;
  11208. top:0px;
  11209. width:0px;
  11210. height:0px;
  11211. }
  11212. #u37913_div {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:0px;
  11216. top:0px;
  11217. width:91px;
  11218. height:40px;
  11219. background:inherit;
  11220. background-color:rgba(255, 255, 255, 0);
  11221. border:none;
  11222. border-left:0px;
  11223. border-top:0px;
  11224. border-right:0px;
  11225. border-radius:0px;
  11226. border-bottom-right-radius:0px;
  11227. border-bottom-left-radius:0px;
  11228. -moz-box-shadow:none;
  11229. -webkit-box-shadow:none;
  11230. box-shadow:none;
  11231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11232. font-weight:400;
  11233. font-style:normal;
  11234. font-size:18px;
  11235. }
  11236. #u37913 {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:5254px;
  11240. top:210px;
  11241. width:91px;
  11242. height:40px;
  11243. display:flex;
  11244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11245. font-weight:400;
  11246. font-style:normal;
  11247. font-size:18px;
  11248. }
  11249. #u37913 .text {
  11250. position:absolute;
  11251. align-self:center;
  11252. padding:0px 0px 0px 0px;
  11253. box-sizing:border-box;
  11254. width:100%;
  11255. }
  11256. #u37913_text {
  11257. border-width:0px;
  11258. white-space:nowrap;
  11259. text-transform:none;
  11260. }
  11261. #u37914 label {
  11262. left:0px;
  11263. width:100%;
  11264. }
  11265. #u37914_img {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:7px;
  11270. width:12px;
  11271. height:12px;
  11272. }
  11273. #u37914 {
  11274. border-width:0px;
  11275. position:absolute;
  11276. left:5355px;
  11277. top:218px;
  11278. width:100px;
  11279. height:25px;
  11280. display:flex;
  11281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11282. font-weight:400;
  11283. font-style:normal;
  11284. font-size:18px;
  11285. }
  11286. #u37914 .text {
  11287. position:absolute;
  11288. align-self:center;
  11289. padding:0px 2px 0px 2px;
  11290. box-sizing:border-box;
  11291. }
  11292. #u37914_img.selected {
  11293. }
  11294. #u37914.selected {
  11295. }
  11296. #u37914_img.disabled {
  11297. }
  11298. #u37914.disabled {
  11299. }
  11300. #u37914_img.selectedDisabled {
  11301. }
  11302. #u37914.selectedDisabled {
  11303. }
  11304. #u37914_text {
  11305. border-width:0px;
  11306. position:absolute;
  11307. left:14px;
  11308. top:0px;
  11309. width:84px;
  11310. word-wrap:break-word;
  11311. text-transform:none;
  11312. }
  11313. #u37914_input {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:0px;
  11317. top:0px;
  11318. width:0px;
  11319. height:0px;
  11320. opacity:0;
  11321. }
  11322. #u37915 label {
  11323. left:0px;
  11324. width:100%;
  11325. }
  11326. #u37915_img {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:0px;
  11330. top:7px;
  11331. width:12px;
  11332. height:12px;
  11333. }
  11334. #u37915 {
  11335. border-width:0px;
  11336. position:absolute;
  11337. left:5532px;
  11338. top:218px;
  11339. width:100px;
  11340. height:25px;
  11341. display:flex;
  11342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11343. font-weight:400;
  11344. font-style:normal;
  11345. font-size:18px;
  11346. }
  11347. #u37915 .text {
  11348. position:absolute;
  11349. align-self:center;
  11350. padding:0px 2px 0px 2px;
  11351. box-sizing:border-box;
  11352. }
  11353. #u37915_img.selected {
  11354. }
  11355. #u37915.selected {
  11356. }
  11357. #u37915_img.disabled {
  11358. }
  11359. #u37915.disabled {
  11360. }
  11361. #u37915_img.selectedDisabled {
  11362. }
  11363. #u37915.selectedDisabled {
  11364. }
  11365. #u37915_text {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:14px;
  11369. top:0px;
  11370. width:84px;
  11371. word-wrap:break-word;
  11372. text-transform:none;
  11373. }
  11374. #u37915_input {
  11375. border-width:0px;
  11376. position:absolute;
  11377. left:0px;
  11378. top:0px;
  11379. width:0px;
  11380. height:0px;
  11381. opacity:0;
  11382. }
  11383. #u37916_div {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:93px;
  11389. height:60px;
  11390. background:inherit;
  11391. background-color:rgba(255, 255, 255, 0);
  11392. border:none;
  11393. border-left:0px;
  11394. border-top:0px;
  11395. border-right:0px;
  11396. border-radius:0px;
  11397. border-bottom-right-radius:0px;
  11398. border-bottom-left-radius:0px;
  11399. -moz-box-shadow:none;
  11400. -webkit-box-shadow:none;
  11401. box-shadow:none;
  11402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11403. font-weight:400;
  11404. font-style:normal;
  11405. font-size:18px;
  11406. color:#198CFB;
  11407. text-align:right;
  11408. line-height:50px;
  11409. }
  11410. #u37916 {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:5101px;
  11414. top:345px;
  11415. width:93px;
  11416. height:60px;
  11417. display:flex;
  11418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11419. font-weight:400;
  11420. font-style:normal;
  11421. font-size:18px;
  11422. color:#198CFB;
  11423. text-align:right;
  11424. line-height:50px;
  11425. }
  11426. #u37916 .text {
  11427. position:absolute;
  11428. align-self:center;
  11429. padding:5px 0px 5px 20px;
  11430. box-sizing:border-box;
  11431. width:100%;
  11432. }
  11433. #u37916_text {
  11434. border-width:0px;
  11435. white-space:nowrap;
  11436. text-transform:none;
  11437. }
  11438. #u37917 {
  11439. border-width:0px;
  11440. position:absolute;
  11441. left:0px;
  11442. top:0px;
  11443. width:0px;
  11444. height:0px;
  11445. }
  11446. #u37918_div {
  11447. border-width:0px;
  11448. position:absolute;
  11449. left:0px;
  11450. top:0px;
  11451. width:91px;
  11452. height:40px;
  11453. background:inherit;
  11454. background-color:rgba(255, 255, 255, 0);
  11455. border:none;
  11456. border-left:0px;
  11457. border-top:0px;
  11458. border-right:0px;
  11459. border-radius:0px;
  11460. border-bottom-right-radius:0px;
  11461. border-bottom-left-radius:0px;
  11462. -moz-box-shadow:none;
  11463. -webkit-box-shadow:none;
  11464. box-shadow:none;
  11465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11466. font-weight:400;
  11467. font-style:normal;
  11468. font-size:18px;
  11469. }
  11470. #u37918 {
  11471. border-width:0px;
  11472. position:absolute;
  11473. left:5254px;
  11474. top:270px;
  11475. width:91px;
  11476. height:40px;
  11477. display:flex;
  11478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11479. font-weight:400;
  11480. font-style:normal;
  11481. font-size:18px;
  11482. }
  11483. #u37918 .text {
  11484. position:absolute;
  11485. align-self:center;
  11486. padding:0px 0px 0px 0px;
  11487. box-sizing:border-box;
  11488. width:100%;
  11489. }
  11490. #u37918_text {
  11491. border-width:0px;
  11492. white-space:nowrap;
  11493. text-transform:none;
  11494. }
  11495. #u37919 label {
  11496. left:0px;
  11497. width:100%;
  11498. }
  11499. #u37919_img {
  11500. border-width:0px;
  11501. position:absolute;
  11502. left:0px;
  11503. top:7px;
  11504. width:12px;
  11505. height:12px;
  11506. }
  11507. #u37919 {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:5355px;
  11511. top:278px;
  11512. width:147px;
  11513. height:25px;
  11514. display:flex;
  11515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11516. font-weight:400;
  11517. font-style:normal;
  11518. font-size:18px;
  11519. }
  11520. #u37919 .text {
  11521. position:absolute;
  11522. align-self:center;
  11523. padding:0px 2px 0px 2px;
  11524. box-sizing:border-box;
  11525. }
  11526. #u37919_img.selected {
  11527. }
  11528. #u37919.selected {
  11529. }
  11530. #u37919_img.disabled {
  11531. }
  11532. #u37919.disabled {
  11533. }
  11534. #u37919_img.selectedDisabled {
  11535. }
  11536. #u37919.selectedDisabled {
  11537. }
  11538. #u37919_text {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:14px;
  11542. top:0px;
  11543. width:131px;
  11544. word-wrap:break-word;
  11545. text-transform:none;
  11546. }
  11547. #u37919_input {
  11548. border-width:0px;
  11549. position:absolute;
  11550. left:0px;
  11551. top:0px;
  11552. width:0px;
  11553. height:0px;
  11554. opacity:0;
  11555. }
  11556. #u37920 label {
  11557. left:0px;
  11558. width:100%;
  11559. }
  11560. #u37920_img {
  11561. border-width:0px;
  11562. position:absolute;
  11563. left:0px;
  11564. top:7px;
  11565. width:12px;
  11566. height:12px;
  11567. }
  11568. #u37920 {
  11569. border-width:0px;
  11570. position:absolute;
  11571. left:5532px;
  11572. top:278px;
  11573. width:166px;
  11574. height:25px;
  11575. display:flex;
  11576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11577. font-weight:400;
  11578. font-style:normal;
  11579. font-size:18px;
  11580. }
  11581. #u37920 .text {
  11582. position:absolute;
  11583. align-self:center;
  11584. padding:0px 2px 0px 2px;
  11585. box-sizing:border-box;
  11586. }
  11587. #u37920_img.selected {
  11588. }
  11589. #u37920.selected {
  11590. }
  11591. #u37920_img.disabled {
  11592. }
  11593. #u37920.disabled {
  11594. }
  11595. #u37920_img.selectedDisabled {
  11596. }
  11597. #u37920.selectedDisabled {
  11598. }
  11599. #u37920_text {
  11600. border-width:0px;
  11601. position:absolute;
  11602. left:14px;
  11603. top:0px;
  11604. width:150px;
  11605. word-wrap:break-word;
  11606. text-transform:none;
  11607. }
  11608. #u37920_input {
  11609. border-width:0px;
  11610. position:absolute;
  11611. left:0px;
  11612. top:0px;
  11613. width:0px;
  11614. height:0px;
  11615. opacity:0;
  11616. }
  11617. #u37921_div {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:0px;
  11621. top:0px;
  11622. width:93px;
  11623. height:60px;
  11624. background:inherit;
  11625. background-color:rgba(255, 255, 255, 0);
  11626. border:none;
  11627. border-left:0px;
  11628. border-top:0px;
  11629. border-right:0px;
  11630. border-radius:0px;
  11631. border-bottom-right-radius:0px;
  11632. border-bottom-left-radius:0px;
  11633. -moz-box-shadow:none;
  11634. -webkit-box-shadow:none;
  11635. box-shadow:none;
  11636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:18px;
  11640. text-align:right;
  11641. line-height:50px;
  11642. }
  11643. #u37921 {
  11644. border-width:0px;
  11645. position:absolute;
  11646. left:5101px;
  11647. top:165px;
  11648. width:93px;
  11649. height:60px;
  11650. display:flex;
  11651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11652. font-weight:400;
  11653. font-style:normal;
  11654. font-size:18px;
  11655. text-align:right;
  11656. line-height:50px;
  11657. }
  11658. #u37921 .text {
  11659. position:absolute;
  11660. align-self:center;
  11661. padding:5px 0px 5px 20px;
  11662. box-sizing:border-box;
  11663. width:100%;
  11664. }
  11665. #u37921_text {
  11666. border-width:0px;
  11667. white-space:nowrap;
  11668. text-transform:none;
  11669. }
  11670. #u37922_div {
  11671. border-width:0px;
  11672. position:absolute;
  11673. left:0px;
  11674. top:0px;
  11675. width:129px;
  11676. height:60px;
  11677. background:inherit;
  11678. background-color:rgba(255, 255, 255, 0);
  11679. border:none;
  11680. border-left:0px;
  11681. border-top:0px;
  11682. border-right:0px;
  11683. border-radius:0px;
  11684. border-bottom-right-radius:0px;
  11685. border-bottom-left-radius:0px;
  11686. -moz-box-shadow:none;
  11687. -webkit-box-shadow:none;
  11688. box-shadow:none;
  11689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11690. font-weight:400;
  11691. font-style:normal;
  11692. font-size:18px;
  11693. text-align:right;
  11694. line-height:50px;
  11695. }
  11696. #u37922 {
  11697. border-width:0px;
  11698. position:absolute;
  11699. left:5065px;
  11700. top:285px;
  11701. width:129px;
  11702. height:60px;
  11703. display:flex;
  11704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11705. font-weight:400;
  11706. font-style:normal;
  11707. font-size:18px;
  11708. text-align:right;
  11709. line-height:50px;
  11710. }
  11711. #u37922 .text {
  11712. position:absolute;
  11713. align-self:center;
  11714. padding:5px 0px 5px 20px;
  11715. box-sizing:border-box;
  11716. width:100%;
  11717. }
  11718. #u37922_text {
  11719. border-width:0px;
  11720. white-space:nowrap;
  11721. text-transform:none;
  11722. }
  11723. #u37923_div {
  11724. border-width:0px;
  11725. position:absolute;
  11726. left:0px;
  11727. top:0px;
  11728. width:71px;
  11729. height:60px;
  11730. background:inherit;
  11731. background-color:rgba(255, 255, 255, 0);
  11732. border:none;
  11733. border-left:0px;
  11734. border-top:0px;
  11735. border-right:0px;
  11736. border-radius:0px;
  11737. border-bottom-right-radius:0px;
  11738. border-bottom-left-radius:0px;
  11739. -moz-box-shadow:none;
  11740. -webkit-box-shadow:none;
  11741. box-shadow:none;
  11742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11743. font-weight:400;
  11744. font-style:normal;
  11745. font-size:14px;
  11746. }
  11747. #u37923 {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:3626px;
  11751. top:190px;
  11752. width:71px;
  11753. height:60px;
  11754. display:flex;
  11755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11756. font-weight:400;
  11757. font-style:normal;
  11758. font-size:14px;
  11759. }
  11760. #u37923 .text {
  11761. position:absolute;
  11762. align-self:center;
  11763. padding:0px 0px 0px 0px;
  11764. box-sizing:border-box;
  11765. width:100%;
  11766. }
  11767. #u37923_text {
  11768. border-width:0px;
  11769. white-space:nowrap;
  11770. text-transform:none;
  11771. }
  11772. #u37924 {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:0px;
  11776. top:0px;
  11777. width:0px;
  11778. height:0px;
  11779. }
  11780. #u37925 label {
  11781. left:0px;
  11782. width:100%;
  11783. }
  11784. #u37925_img {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:0px;
  11788. top:4px;
  11789. width:12px;
  11790. height:12px;
  11791. }
  11792. #u37925 {
  11793. border-width:0px;
  11794. position:absolute;
  11795. left:3730px;
  11796. top:213px;
  11797. width:650px;
  11798. height:20px;
  11799. display:flex;
  11800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11801. font-weight:400;
  11802. font-style:normal;
  11803. font-size:14px;
  11804. }
  11805. #u37925 .text {
  11806. position:absolute;
  11807. align-self:center;
  11808. padding:0px 2px 0px 2px;
  11809. box-sizing:border-box;
  11810. }
  11811. #u37925_img.selected {
  11812. }
  11813. #u37925.selected {
  11814. }
  11815. #u37925_img.disabled {
  11816. }
  11817. #u37925.disabled {
  11818. }
  11819. #u37925_img.selectedDisabled {
  11820. }
  11821. #u37925.selectedDisabled {
  11822. }
  11823. #u37925_text {
  11824. border-width:0px;
  11825. position:absolute;
  11826. left:14px;
  11827. top:0px;
  11828. width:634px;
  11829. word-wrap:break-word;
  11830. text-transform:none;
  11831. }
  11832. #u37925_input {
  11833. border-width:0px;
  11834. position:absolute;
  11835. left:0px;
  11836. top:0px;
  11837. width:0px;
  11838. height:0px;
  11839. opacity:0;
  11840. }
  11841. #u37926_img {
  11842. border-width:0px;
  11843. position:absolute;
  11844. left:0px;
  11845. top:0px;
  11846. width:10px;
  11847. height:10px;
  11848. }
  11849. #u37926 {
  11850. border-width:0px;
  11851. position:absolute;
  11852. left:4019px;
  11853. top:218px;
  11854. width:10px;
  11855. height:10px;
  11856. display:flex;
  11857. }
  11858. #u37926 .text {
  11859. position:absolute;
  11860. align-self:center;
  11861. padding:2px 2px 2px 2px;
  11862. box-sizing:border-box;
  11863. width:100%;
  11864. }
  11865. #u37926_text {
  11866. border-width:0px;
  11867. word-wrap:break-word;
  11868. text-transform:none;
  11869. visibility:hidden;
  11870. }
  11871. #u37927 {
  11872. border-width:0px;
  11873. position:absolute;
  11874. left:0px;
  11875. top:0px;
  11876. width:0px;
  11877. height:0px;
  11878. }
  11879. #u37928 label {
  11880. left:0px;
  11881. width:100%;
  11882. }
  11883. #u37928_img {
  11884. border-width:0px;
  11885. position:absolute;
  11886. left:0px;
  11887. top:4px;
  11888. width:12px;
  11889. height:12px;
  11890. }
  11891. #u37928 {
  11892. border-width:0px;
  11893. position:absolute;
  11894. left:3730px;
  11895. top:253px;
  11896. width:650px;
  11897. height:20px;
  11898. display:flex;
  11899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11900. font-weight:400;
  11901. font-style:normal;
  11902. font-size:14px;
  11903. }
  11904. #u37928 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:0px 2px 0px 2px;
  11908. box-sizing:border-box;
  11909. }
  11910. #u37928_img.selected {
  11911. }
  11912. #u37928.selected {
  11913. }
  11914. #u37928_img.disabled {
  11915. }
  11916. #u37928.disabled {
  11917. }
  11918. #u37928_img.selectedDisabled {
  11919. }
  11920. #u37928.selectedDisabled {
  11921. }
  11922. #u37928_text {
  11923. border-width:0px;
  11924. position:absolute;
  11925. left:14px;
  11926. top:0px;
  11927. width:634px;
  11928. word-wrap:break-word;
  11929. text-transform:none;
  11930. }
  11931. #u37928_input {
  11932. border-width:0px;
  11933. position:absolute;
  11934. left:0px;
  11935. top:0px;
  11936. width:0px;
  11937. height:0px;
  11938. opacity:0;
  11939. }
  11940. #u37929_img {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:0px;
  11944. top:0px;
  11945. width:10px;
  11946. height:10px;
  11947. }
  11948. #u37929 {
  11949. border-width:0px;
  11950. position:absolute;
  11951. left:4115px;
  11952. top:258px;
  11953. width:10px;
  11954. height:10px;
  11955. display:flex;
  11956. }
  11957. #u37929 .text {
  11958. position:absolute;
  11959. align-self:center;
  11960. padding:2px 2px 2px 2px;
  11961. box-sizing:border-box;
  11962. width:100%;
  11963. }
  11964. #u37929_text {
  11965. border-width:0px;
  11966. word-wrap:break-word;
  11967. text-transform:none;
  11968. visibility:hidden;
  11969. }
  11970. #u37930 {
  11971. border-width:0px;
  11972. position:absolute;
  11973. left:0px;
  11974. top:0px;
  11975. width:0px;
  11976. height:0px;
  11977. }
  11978. #u37931 label {
  11979. left:0px;
  11980. width:100%;
  11981. }
  11982. #u37931_img {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:0px;
  11986. top:4px;
  11987. width:12px;
  11988. height:12px;
  11989. }
  11990. #u37931 {
  11991. border-width:0px;
  11992. position:absolute;
  11993. left:3730px;
  11994. top:319px;
  11995. width:650px;
  11996. height:20px;
  11997. display:flex;
  11998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11999. font-weight:400;
  12000. font-style:normal;
  12001. font-size:14px;
  12002. }
  12003. #u37931 .text {
  12004. position:absolute;
  12005. align-self:center;
  12006. padding:0px 2px 0px 2px;
  12007. box-sizing:border-box;
  12008. }
  12009. #u37931_img.selected {
  12010. }
  12011. #u37931.selected {
  12012. }
  12013. #u37931_img.disabled {
  12014. }
  12015. #u37931.disabled {
  12016. }
  12017. #u37931_img.selectedDisabled {
  12018. }
  12019. #u37931.selectedDisabled {
  12020. }
  12021. #u37931_text {
  12022. border-width:0px;
  12023. position:absolute;
  12024. left:14px;
  12025. top:0px;
  12026. width:634px;
  12027. word-wrap:break-word;
  12028. text-transform:none;
  12029. }
  12030. #u37931_input {
  12031. border-width:0px;
  12032. position:absolute;
  12033. left:0px;
  12034. top:0px;
  12035. width:0px;
  12036. height:0px;
  12037. opacity:0;
  12038. }
  12039. #u37932_img {
  12040. border-width:0px;
  12041. position:absolute;
  12042. left:0px;
  12043. top:0px;
  12044. width:10px;
  12045. height:10px;
  12046. }
  12047. #u37932 {
  12048. border-width:0px;
  12049. position:absolute;
  12050. left:3918px;
  12051. top:324px;
  12052. width:10px;
  12053. height:10px;
  12054. display:flex;
  12055. }
  12056. #u37932 .text {
  12057. position:absolute;
  12058. align-self:center;
  12059. padding:2px 2px 2px 2px;
  12060. box-sizing:border-box;
  12061. width:100%;
  12062. }
  12063. #u37932_text {
  12064. border-width:0px;
  12065. word-wrap:break-word;
  12066. text-transform:none;
  12067. visibility:hidden;
  12068. }
  12069. #u37933 {
  12070. border-width:0px;
  12071. position:absolute;
  12072. left:0px;
  12073. top:0px;
  12074. width:0px;
  12075. height:0px;
  12076. }
  12077. #u37934 label {
  12078. left:0px;
  12079. width:100%;
  12080. }
  12081. #u37934_img {
  12082. border-width:0px;
  12083. position:absolute;
  12084. left:0px;
  12085. top:4px;
  12086. width:12px;
  12087. height:12px;
  12088. }
  12089. #u37934 {
  12090. border-width:0px;
  12091. position:absolute;
  12092. left:3730px;
  12093. top:359px;
  12094. width:650px;
  12095. height:20px;
  12096. display:flex;
  12097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:14px;
  12101. }
  12102. #u37934 .text {
  12103. position:absolute;
  12104. align-self:center;
  12105. padding:0px 2px 0px 2px;
  12106. box-sizing:border-box;
  12107. }
  12108. #u37934_img.selected {
  12109. }
  12110. #u37934.selected {
  12111. }
  12112. #u37934_img.disabled {
  12113. }
  12114. #u37934.disabled {
  12115. }
  12116. #u37934_img.selectedDisabled {
  12117. }
  12118. #u37934.selectedDisabled {
  12119. }
  12120. #u37934_text {
  12121. border-width:0px;
  12122. position:absolute;
  12123. left:14px;
  12124. top:0px;
  12125. width:634px;
  12126. word-wrap:break-word;
  12127. text-transform:none;
  12128. }
  12129. #u37934_input {
  12130. border-width:0px;
  12131. position:absolute;
  12132. left:0px;
  12133. top:0px;
  12134. width:0px;
  12135. height:0px;
  12136. opacity:0;
  12137. }
  12138. #u37935_img {
  12139. border-width:0px;
  12140. position:absolute;
  12141. left:0px;
  12142. top:0px;
  12143. width:10px;
  12144. height:10px;
  12145. }
  12146. #u37935 {
  12147. border-width:0px;
  12148. position:absolute;
  12149. left:3878px;
  12150. top:365px;
  12151. width:10px;
  12152. height:10px;
  12153. display:flex;
  12154. }
  12155. #u37935 .text {
  12156. position:absolute;
  12157. align-self:center;
  12158. padding:2px 2px 2px 2px;
  12159. box-sizing:border-box;
  12160. width:100%;
  12161. }
  12162. #u37935_text {
  12163. border-width:0px;
  12164. word-wrap:break-word;
  12165. text-transform:none;
  12166. visibility:hidden;
  12167. }
  12168. #u37936_div {
  12169. border-width:0px;
  12170. position:absolute;
  12171. left:0px;
  12172. top:0px;
  12173. width:57px;
  12174. height:60px;
  12175. background:inherit;
  12176. background-color:rgba(255, 255, 255, 0);
  12177. border:none;
  12178. border-left:0px;
  12179. border-top:0px;
  12180. border-right:0px;
  12181. border-radius:0px;
  12182. border-bottom-right-radius:0px;
  12183. border-bottom-left-radius:0px;
  12184. -moz-box-shadow:none;
  12185. -webkit-box-shadow:none;
  12186. box-shadow:none;
  12187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12188. font-weight:400;
  12189. font-style:normal;
  12190. font-size:14px;
  12191. }
  12192. #u37936 {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:3626px;
  12196. top:299px;
  12197. width:57px;
  12198. height:60px;
  12199. display:flex;
  12200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12201. font-weight:400;
  12202. font-style:normal;
  12203. font-size:14px;
  12204. }
  12205. #u37936 .text {
  12206. position:absolute;
  12207. align-self:center;
  12208. padding:0px 0px 0px 0px;
  12209. box-sizing:border-box;
  12210. width:100%;
  12211. }
  12212. #u37936_text {
  12213. border-width:0px;
  12214. white-space:nowrap;
  12215. text-transform:none;
  12216. }
  12217. #u37937_div {
  12218. border-width:0px;
  12219. position:absolute;
  12220. left:0px;
  12221. top:0px;
  12222. width:73px;
  12223. height:60px;
  12224. background:inherit;
  12225. background-color:rgba(255, 255, 255, 0);
  12226. box-sizing:border-box;
  12227. border-width:2px;
  12228. border-style:solid;
  12229. border-color:rgba(24, 144, 255, 1);
  12230. border-left:0px;
  12231. border-top:0px;
  12232. border-right:0px;
  12233. border-radius:0px;
  12234. border-bottom-right-radius:0px;
  12235. border-bottom-left-radius:0px;
  12236. -moz-box-shadow:none;
  12237. -webkit-box-shadow:none;
  12238. box-shadow:none;
  12239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12240. font-weight:400;
  12241. font-style:normal;
  12242. font-size:18px;
  12243. color:#1890FF;
  12244. }
  12245. #u37937 {
  12246. border-width:0px;
  12247. position:absolute;
  12248. left:923px;
  12249. top:50px;
  12250. width:73px;
  12251. height:60px;
  12252. display:flex;
  12253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12254. font-weight:400;
  12255. font-style:normal;
  12256. font-size:18px;
  12257. color:#1890FF;
  12258. }
  12259. #u37937 .text {
  12260. position:absolute;
  12261. align-self:center;
  12262. padding:5px 0px 5px 0px;
  12263. box-sizing:border-box;
  12264. width:100%;
  12265. }
  12266. #u37937_text {
  12267. border-width:0px;
  12268. white-space:nowrap;
  12269. text-transform:none;
  12270. }
  12271. #u37938_div {
  12272. border-width:0px;
  12273. position:absolute;
  12274. left:0px;
  12275. top:0px;
  12276. width:73px;
  12277. height:60px;
  12278. background:inherit;
  12279. background-color:rgba(255, 255, 255, 0);
  12280. border:none;
  12281. border-left:0px;
  12282. border-top:0px;
  12283. border-right:0px;
  12284. border-radius:0px;
  12285. border-bottom-right-radius:0px;
  12286. border-bottom-left-radius:0px;
  12287. -moz-box-shadow:none;
  12288. -webkit-box-shadow:none;
  12289. box-shadow:none;
  12290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12291. font-weight:400;
  12292. font-style:normal;
  12293. font-size:18px;
  12294. }
  12295. #u37938 {
  12296. border-width:0px;
  12297. position:absolute;
  12298. left:810px;
  12299. top:50px;
  12300. width:73px;
  12301. height:60px;
  12302. display:flex;
  12303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12304. font-weight:400;
  12305. font-style:normal;
  12306. font-size:18px;
  12307. }
  12308. #u37938 .text {
  12309. position:absolute;
  12310. align-self:center;
  12311. padding:5px 0px 5px 0px;
  12312. box-sizing:border-box;
  12313. width:100%;
  12314. }
  12315. #u37938_text {
  12316. border-width:0px;
  12317. white-space:nowrap;
  12318. text-transform:none;
  12319. }
  12320. #u37939_div {
  12321. border-width:0px;
  12322. position:absolute;
  12323. left:0px;
  12324. top:0px;
  12325. width:73px;
  12326. height:60px;
  12327. background:inherit;
  12328. background-color:rgba(255, 255, 255, 0);
  12329. border:none;
  12330. border-left:0px;
  12331. border-top:0px;
  12332. border-right:0px;
  12333. border-radius:0px;
  12334. border-bottom-right-radius:0px;
  12335. border-bottom-left-radius:0px;
  12336. -moz-box-shadow:none;
  12337. -webkit-box-shadow:none;
  12338. box-shadow:none;
  12339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12340. font-weight:400;
  12341. font-style:normal;
  12342. font-size:18px;
  12343. }
  12344. #u37939 {
  12345. border-width:0px;
  12346. position:absolute;
  12347. left:2252px;
  12348. top:50px;
  12349. width:73px;
  12350. height:60px;
  12351. display:flex;
  12352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12353. font-weight:400;
  12354. font-style:normal;
  12355. font-size:18px;
  12356. }
  12357. #u37939 .text {
  12358. position:absolute;
  12359. align-self:center;
  12360. padding:5px 0px 5px 0px;
  12361. box-sizing:border-box;
  12362. width:100%;
  12363. }
  12364. #u37939_text {
  12365. border-width:0px;
  12366. white-space:nowrap;
  12367. text-transform:none;
  12368. }
  12369. #u37940_div {
  12370. border-width:0px;
  12371. position:absolute;
  12372. left:0px;
  12373. top:0px;
  12374. width:73px;
  12375. height:60px;
  12376. background:inherit;
  12377. background-color:rgba(255, 255, 255, 0);
  12378. border:none;
  12379. border-left:0px;
  12380. border-top:0px;
  12381. border-right:0px;
  12382. border-radius:0px;
  12383. border-bottom-right-radius:0px;
  12384. border-bottom-left-radius:0px;
  12385. -moz-box-shadow:none;
  12386. -webkit-box-shadow:none;
  12387. box-shadow:none;
  12388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12389. font-weight:400;
  12390. font-style:normal;
  12391. font-size:18px;
  12392. }
  12393. #u37940 {
  12394. border-width:0px;
  12395. position:absolute;
  12396. left:2364px;
  12397. top:50px;
  12398. width:73px;
  12399. height:60px;
  12400. display:flex;
  12401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12402. font-weight:400;
  12403. font-style:normal;
  12404. font-size:18px;
  12405. }
  12406. #u37940 .text {
  12407. position:absolute;
  12408. align-self:center;
  12409. padding:5px 0px 5px 0px;
  12410. box-sizing:border-box;
  12411. width:100%;
  12412. }
  12413. #u37940_text {
  12414. border-width:0px;
  12415. white-space:nowrap;
  12416. text-transform:none;
  12417. }
  12418. #u37941_div {
  12419. border-width:0px;
  12420. position:absolute;
  12421. left:0px;
  12422. top:0px;
  12423. width:73px;
  12424. height:60px;
  12425. background:inherit;
  12426. background-color:rgba(255, 255, 255, 0);
  12427. box-sizing:border-box;
  12428. border-width:2px;
  12429. border-style:solid;
  12430. border-color:rgba(24, 144, 255, 1);
  12431. border-left:0px;
  12432. border-top:0px;
  12433. border-right:0px;
  12434. border-radius:0px;
  12435. border-bottom-right-radius:0px;
  12436. border-bottom-left-radius:0px;
  12437. -moz-box-shadow:none;
  12438. -webkit-box-shadow:none;
  12439. box-shadow:none;
  12440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12441. font-weight:400;
  12442. font-style:normal;
  12443. font-size:18px;
  12444. color:#1890FF;
  12445. }
  12446. #u37941 {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:2590px;
  12450. top:50px;
  12451. width:73px;
  12452. height:60px;
  12453. display:flex;
  12454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12455. font-weight:400;
  12456. font-style:normal;
  12457. font-size:18px;
  12458. color:#1890FF;
  12459. }
  12460. #u37941 .text {
  12461. position:absolute;
  12462. align-self:center;
  12463. padding:5px 0px 5px 0px;
  12464. box-sizing:border-box;
  12465. width:100%;
  12466. }
  12467. #u37941_text {
  12468. border-width:0px;
  12469. white-space:nowrap;
  12470. text-transform:none;
  12471. }
  12472. #u37942_div {
  12473. border-width:0px;
  12474. position:absolute;
  12475. left:0px;
  12476. top:0px;
  12477. width:73px;
  12478. height:60px;
  12479. background:inherit;
  12480. background-color:rgba(255, 255, 255, 0);
  12481. border:none;
  12482. border-left:0px;
  12483. border-top:0px;
  12484. border-right:0px;
  12485. border-radius:0px;
  12486. border-bottom-right-radius:0px;
  12487. border-bottom-left-radius:0px;
  12488. -moz-box-shadow:none;
  12489. -webkit-box-shadow:none;
  12490. box-shadow:none;
  12491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12492. font-weight:400;
  12493. font-style:normal;
  12494. font-size:18px;
  12495. }
  12496. #u37942 {
  12497. border-width:0px;
  12498. position:absolute;
  12499. left:2477px;
  12500. top:50px;
  12501. width:73px;
  12502. height:60px;
  12503. display:flex;
  12504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12505. font-weight:400;
  12506. font-style:normal;
  12507. font-size:18px;
  12508. }
  12509. #u37942 .text {
  12510. position:absolute;
  12511. align-self:center;
  12512. padding:5px 0px 5px 0px;
  12513. box-sizing:border-box;
  12514. width:100%;
  12515. }
  12516. #u37942_text {
  12517. border-width:0px;
  12518. white-space:nowrap;
  12519. text-transform:none;
  12520. }
  12521. #u37943_div {
  12522. border-width:0px;
  12523. position:absolute;
  12524. left:0px;
  12525. top:0px;
  12526. width:73px;
  12527. height:60px;
  12528. background:inherit;
  12529. background-color:rgba(255, 255, 255, 0);
  12530. border:none;
  12531. border-left:0px;
  12532. border-top:0px;
  12533. border-right:0px;
  12534. border-radius:0px;
  12535. border-bottom-right-radius:0px;
  12536. border-bottom-left-radius:0px;
  12537. -moz-box-shadow:none;
  12538. -webkit-box-shadow:none;
  12539. box-shadow:none;
  12540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12541. font-weight:400;
  12542. font-style:normal;
  12543. font-size:18px;
  12544. }
  12545. #u37943 {
  12546. border-width:0px;
  12547. position:absolute;
  12548. left:3911px;
  12549. top:50px;
  12550. width:73px;
  12551. height:60px;
  12552. display:flex;
  12553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12554. font-weight:400;
  12555. font-style:normal;
  12556. font-size:18px;
  12557. }
  12558. #u37943 .text {
  12559. position:absolute;
  12560. align-self:center;
  12561. padding:5px 0px 5px 0px;
  12562. box-sizing:border-box;
  12563. width:100%;
  12564. }
  12565. #u37943_text {
  12566. border-width:0px;
  12567. white-space:nowrap;
  12568. text-transform:none;
  12569. }
  12570. #u37944_div {
  12571. border-width:0px;
  12572. position:absolute;
  12573. left:0px;
  12574. top:0px;
  12575. width:73px;
  12576. height:60px;
  12577. background:inherit;
  12578. background-color:rgba(255, 255, 255, 0);
  12579. border:none;
  12580. border-left:0px;
  12581. border-top:0px;
  12582. border-right:0px;
  12583. border-radius:0px;
  12584. border-bottom-right-radius:0px;
  12585. border-bottom-left-radius:0px;
  12586. -moz-box-shadow:none;
  12587. -webkit-box-shadow:none;
  12588. box-shadow:none;
  12589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12590. font-weight:400;
  12591. font-style:normal;
  12592. font-size:18px;
  12593. }
  12594. #u37944 {
  12595. border-width:0px;
  12596. position:absolute;
  12597. left:4023px;
  12598. top:50px;
  12599. width:73px;
  12600. height:60px;
  12601. display:flex;
  12602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12603. font-weight:400;
  12604. font-style:normal;
  12605. font-size:18px;
  12606. }
  12607. #u37944 .text {
  12608. position:absolute;
  12609. align-self:center;
  12610. padding:5px 0px 5px 0px;
  12611. box-sizing:border-box;
  12612. width:100%;
  12613. }
  12614. #u37944_text {
  12615. border-width:0px;
  12616. white-space:nowrap;
  12617. text-transform:none;
  12618. }
  12619. #u37945_div {
  12620. border-width:0px;
  12621. position:absolute;
  12622. left:0px;
  12623. top:0px;
  12624. width:73px;
  12625. height:60px;
  12626. background:inherit;
  12627. background-color:rgba(255, 255, 255, 0);
  12628. box-sizing:border-box;
  12629. border-width:2px;
  12630. border-style:solid;
  12631. border-color:rgba(24, 144, 255, 1);
  12632. border-left:0px;
  12633. border-top:0px;
  12634. border-right:0px;
  12635. border-radius:0px;
  12636. border-bottom-right-radius:0px;
  12637. border-bottom-left-radius:0px;
  12638. -moz-box-shadow:none;
  12639. -webkit-box-shadow:none;
  12640. box-shadow:none;
  12641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12642. font-weight:400;
  12643. font-style:normal;
  12644. font-size:18px;
  12645. color:#1890FF;
  12646. }
  12647. #u37945 {
  12648. border-width:0px;
  12649. position:absolute;
  12650. left:4249px;
  12651. top:50px;
  12652. width:73px;
  12653. height:60px;
  12654. display:flex;
  12655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12656. font-weight:400;
  12657. font-style:normal;
  12658. font-size:18px;
  12659. color:#1890FF;
  12660. }
  12661. #u37945 .text {
  12662. position:absolute;
  12663. align-self:center;
  12664. padding:5px 0px 5px 0px;
  12665. box-sizing:border-box;
  12666. width:100%;
  12667. }
  12668. #u37945_text {
  12669. border-width:0px;
  12670. white-space:nowrap;
  12671. text-transform:none;
  12672. }
  12673. #u37946_div {
  12674. border-width:0px;
  12675. position:absolute;
  12676. left:0px;
  12677. top:0px;
  12678. width:73px;
  12679. height:60px;
  12680. background:inherit;
  12681. background-color:rgba(255, 255, 255, 0);
  12682. border:none;
  12683. border-left:0px;
  12684. border-top:0px;
  12685. border-right:0px;
  12686. border-radius:0px;
  12687. border-bottom-right-radius:0px;
  12688. border-bottom-left-radius:0px;
  12689. -moz-box-shadow:none;
  12690. -webkit-box-shadow:none;
  12691. box-shadow:none;
  12692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12693. font-weight:400;
  12694. font-style:normal;
  12695. font-size:18px;
  12696. }
  12697. #u37946 {
  12698. border-width:0px;
  12699. position:absolute;
  12700. left:4136px;
  12701. top:50px;
  12702. width:73px;
  12703. height:60px;
  12704. display:flex;
  12705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12706. font-weight:400;
  12707. font-style:normal;
  12708. font-size:18px;
  12709. }
  12710. #u37946 .text {
  12711. position:absolute;
  12712. align-self:center;
  12713. padding:5px 0px 5px 0px;
  12714. box-sizing:border-box;
  12715. width:100%;
  12716. }
  12717. #u37946_text {
  12718. border-width:0px;
  12719. white-space:nowrap;
  12720. text-transform:none;
  12721. }
  12722. #u37947_div {
  12723. border-width:0px;
  12724. position:absolute;
  12725. left:0px;
  12726. top:0px;
  12727. width:73px;
  12728. height:60px;
  12729. background:inherit;
  12730. background-color:rgba(255, 255, 255, 0);
  12731. border:none;
  12732. border-left:0px;
  12733. border-top:0px;
  12734. border-right:0px;
  12735. border-radius:0px;
  12736. border-bottom-right-radius:0px;
  12737. border-bottom-left-radius:0px;
  12738. -moz-box-shadow:none;
  12739. -webkit-box-shadow:none;
  12740. box-shadow:none;
  12741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12742. font-weight:400;
  12743. font-style:normal;
  12744. font-size:18px;
  12745. }
  12746. #u37947 {
  12747. border-width:0px;
  12748. position:absolute;
  12749. left:5679px;
  12750. top:50px;
  12751. width:73px;
  12752. height:60px;
  12753. display:flex;
  12754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12755. font-weight:400;
  12756. font-style:normal;
  12757. font-size:18px;
  12758. }
  12759. #u37947 .text {
  12760. position:absolute;
  12761. align-self:center;
  12762. padding:5px 0px 5px 0px;
  12763. box-sizing:border-box;
  12764. width:100%;
  12765. }
  12766. #u37947_text {
  12767. border-width:0px;
  12768. white-space:nowrap;
  12769. text-transform:none;
  12770. }
  12771. #u37948_div {
  12772. border-width:0px;
  12773. position:absolute;
  12774. left:0px;
  12775. top:0px;
  12776. width:73px;
  12777. height:60px;
  12778. background:inherit;
  12779. background-color:rgba(255, 255, 255, 0);
  12780. border:none;
  12781. border-left:0px;
  12782. border-top:0px;
  12783. border-right:0px;
  12784. border-radius:0px;
  12785. border-bottom-right-radius:0px;
  12786. border-bottom-left-radius:0px;
  12787. -moz-box-shadow:none;
  12788. -webkit-box-shadow:none;
  12789. box-shadow:none;
  12790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12791. font-weight:400;
  12792. font-style:normal;
  12793. font-size:18px;
  12794. }
  12795. #u37948 {
  12796. border-width:0px;
  12797. position:absolute;
  12798. left:5791px;
  12799. top:50px;
  12800. width:73px;
  12801. height:60px;
  12802. display:flex;
  12803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12804. font-weight:400;
  12805. font-style:normal;
  12806. font-size:18px;
  12807. }
  12808. #u37948 .text {
  12809. position:absolute;
  12810. align-self:center;
  12811. padding:5px 0px 5px 0px;
  12812. box-sizing:border-box;
  12813. width:100%;
  12814. }
  12815. #u37948_text {
  12816. border-width:0px;
  12817. white-space:nowrap;
  12818. text-transform:none;
  12819. }
  12820. #u37949_div {
  12821. border-width:0px;
  12822. position:absolute;
  12823. left:0px;
  12824. top:0px;
  12825. width:73px;
  12826. height:60px;
  12827. background:inherit;
  12828. background-color:rgba(255, 255, 255, 0);
  12829. box-sizing:border-box;
  12830. border-width:2px;
  12831. border-style:solid;
  12832. border-color:rgba(24, 144, 255, 1);
  12833. border-left:0px;
  12834. border-top:0px;
  12835. border-right:0px;
  12836. border-radius:0px;
  12837. border-bottom-right-radius:0px;
  12838. border-bottom-left-radius:0px;
  12839. -moz-box-shadow:none;
  12840. -webkit-box-shadow:none;
  12841. box-shadow:none;
  12842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12843. font-weight:400;
  12844. font-style:normal;
  12845. font-size:18px;
  12846. color:#1890FF;
  12847. }
  12848. #u37949 {
  12849. border-width:0px;
  12850. position:absolute;
  12851. left:6017px;
  12852. top:50px;
  12853. width:73px;
  12854. height:60px;
  12855. display:flex;
  12856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12857. font-weight:400;
  12858. font-style:normal;
  12859. font-size:18px;
  12860. color:#1890FF;
  12861. }
  12862. #u37949 .text {
  12863. position:absolute;
  12864. align-self:center;
  12865. padding:5px 0px 5px 0px;
  12866. box-sizing:border-box;
  12867. width:100%;
  12868. }
  12869. #u37949_text {
  12870. border-width:0px;
  12871. white-space:nowrap;
  12872. text-transform:none;
  12873. }
  12874. #u37950_div {
  12875. border-width:0px;
  12876. position:absolute;
  12877. left:0px;
  12878. top:0px;
  12879. width:73px;
  12880. height:60px;
  12881. background:inherit;
  12882. background-color:rgba(255, 255, 255, 0);
  12883. border:none;
  12884. border-left:0px;
  12885. border-top:0px;
  12886. border-right:0px;
  12887. border-radius:0px;
  12888. border-bottom-right-radius:0px;
  12889. border-bottom-left-radius:0px;
  12890. -moz-box-shadow:none;
  12891. -webkit-box-shadow:none;
  12892. box-shadow:none;
  12893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12894. font-weight:400;
  12895. font-style:normal;
  12896. font-size:18px;
  12897. }
  12898. #u37950 {
  12899. border-width:0px;
  12900. position:absolute;
  12901. left:5904px;
  12902. top:50px;
  12903. width:73px;
  12904. height:60px;
  12905. display:flex;
  12906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12907. font-weight:400;
  12908. font-style:normal;
  12909. font-size:18px;
  12910. }
  12911. #u37950 .text {
  12912. position:absolute;
  12913. align-self:center;
  12914. padding:5px 0px 5px 0px;
  12915. box-sizing:border-box;
  12916. width:100%;
  12917. }
  12918. #u37950_text {
  12919. border-width:0px;
  12920. white-space:nowrap;
  12921. text-transform:none;
  12922. }