styles.css 127 KB

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