styles.css 211 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-88px;
  6. width:3140px;
  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. #u23179 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u23180_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u23180 {
  52. border-width:0px;
  53. position:absolute;
  54. left:88px;
  55. top:59px;
  56. width:1000px;
  57. height:1200px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u23180 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u23180_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u23181_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:1000px;
  88. height:1200px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(215, 215, 215, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u23181 {
  107. border-width:0px;
  108. position:absolute;
  109. left:88px;
  110. top:59px;
  111. width:1000px;
  112. height:1200px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u23181 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u23181_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u23182 {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:0px;
  143. height:0px;
  144. }
  145. #u23183_div {
  146. border-width:0px;
  147. position:absolute;
  148. left:0px;
  149. top:0px;
  150. width:40px;
  151. height:40px;
  152. background:inherit;
  153. background-color:rgba(255, 255, 255, 0);
  154. border-top:0px;
  155. border-right:0px;
  156. border-bottom:0px;
  157. border-radius:0px;
  158. border-top-left-radius:0px;
  159. border-bottom-left-radius:0px;
  160. filter:drop-shadow(none);
  161. transition:none;
  162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  163. font-weight:500;
  164. font-style:normal;
  165. font-size:14px;
  166. text-align:center;
  167. }
  168. #u23183 {
  169. border-width:0px;
  170. position:absolute;
  171. left:1048px;
  172. top:59px;
  173. width:40px;
  174. height:40px;
  175. display:flex;
  176. transition:none;
  177. transform-origin:50% 50%;
  178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  179. font-weight:500;
  180. font-style:normal;
  181. font-size:14px;
  182. text-align:center;
  183. }
  184. #u23183 .text {
  185. position:absolute;
  186. align-self:center;
  187. padding:5px 10px 5px 0px;
  188. box-sizing:border-box;
  189. width:100%;
  190. }
  191. #u23183_text {
  192. border-width:0px;
  193. word-wrap:break-word;
  194. text-transform:none;
  195. }
  196. #u23184 {
  197. border-width:0px;
  198. position:absolute;
  199. left:1036px;
  200. top:75px;
  201. width:13px;
  202. height:13px;
  203. display:flex;
  204. transition:none;
  205. font-size:14px;
  206. }
  207. #u23184 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u23184_img {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:13px;
  220. height:13px;
  221. }
  222. #u23184_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u23185 {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:0px;
  234. height:0px;
  235. }
  236. #u23186_div {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:1000px;
  242. height:60px;
  243. background:inherit;
  244. background-color:rgba(255, 255, 255, 1);
  245. box-sizing:border-box;
  246. border-width:1px;
  247. border-style:solid;
  248. border-color:rgba(215, 215, 215, 1);
  249. border-radius:0px;
  250. filter:drop-shadow(none);
  251. transition:none;
  252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  253. font-weight:400;
  254. font-style:normal;
  255. font-size:14px;
  256. color:#AAAAAA;
  257. text-align:center;
  258. line-height:30px;
  259. }
  260. #u23186 {
  261. border-width:0px;
  262. position:absolute;
  263. left:88px;
  264. top:1199px;
  265. width:1000px;
  266. height:60px;
  267. display:flex;
  268. transition:none;
  269. transform-origin:50% 50%;
  270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  271. font-weight:400;
  272. font-style:normal;
  273. font-size:14px;
  274. color:#AAAAAA;
  275. text-align:center;
  276. line-height:30px;
  277. }
  278. #u23186 .text {
  279. position:absolute;
  280. align-self:center;
  281. padding:5px 10px 5px 10px;
  282. box-sizing:border-box;
  283. width:100%;
  284. }
  285. #u23186_text {
  286. border-width:0px;
  287. word-wrap:break-word;
  288. text-transform:none;
  289. visibility:hidden;
  290. }
  291. #u23187_div {
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:80px;
  297. height:30px;
  298. background:inherit;
  299. background-color:rgba(255, 255, 255, 1);
  300. box-sizing:border-box;
  301. border-width:1px;
  302. border-style:solid;
  303. border-color:rgba(170, 170, 170, 1);
  304. border-radius:4px;
  305. filter:drop-shadow(none);
  306. transition:none;
  307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  308. font-weight:400;
  309. font-style:normal;
  310. font-size:14px;
  311. }
  312. #u23187 {
  313. border-width:0px;
  314. position:absolute;
  315. left:988px;
  316. top:1214px;
  317. width:80px;
  318. height:30px;
  319. display:flex;
  320. transition:none;
  321. transform-origin:50% 50%;
  322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  323. font-weight:400;
  324. font-style:normal;
  325. font-size:14px;
  326. }
  327. #u23187 .text {
  328. position:absolute;
  329. align-self:center;
  330. padding:2px 2px 2px 2px;
  331. box-sizing:border-box;
  332. width:100%;
  333. }
  334. #u23187_text {
  335. border-width:0px;
  336. word-wrap:break-word;
  337. text-transform:none;
  338. }
  339. #u23188 {
  340. border-width:0px;
  341. position:absolute;
  342. left:154px;
  343. top:431px;
  344. width:908px;
  345. height:177px;
  346. }
  347. #u23189 {
  348. border-width:0px;
  349. position:absolute;
  350. left:0px;
  351. top:0px;
  352. width:101px;
  353. height:27px;
  354. display:flex;
  355. transition:none;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. color:#FFFFFF;
  360. }
  361. #u23189 .text {
  362. position:absolute;
  363. align-self:center;
  364. padding:2px 2px 2px 2px;
  365. box-sizing:border-box;
  366. width:100%;
  367. }
  368. #u23189_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:101px;
  374. height:27px;
  375. }
  376. #u23189_text {
  377. border-width:0px;
  378. word-wrap:break-word;
  379. text-transform:none;
  380. }
  381. #u23190 {
  382. border-width:0px;
  383. position:absolute;
  384. left:101px;
  385. top:0px;
  386. width:121px;
  387. height:27px;
  388. display:flex;
  389. transition:none;
  390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  391. font-weight:400;
  392. font-style:normal;
  393. color:#FFFFFF;
  394. }
  395. #u23190 .text {
  396. position:absolute;
  397. align-self:center;
  398. padding:2px 2px 2px 2px;
  399. box-sizing:border-box;
  400. width:100%;
  401. }
  402. #u23190_img {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:121px;
  408. height:27px;
  409. }
  410. #u23190_text {
  411. border-width:0px;
  412. word-wrap:break-word;
  413. text-transform:none;
  414. }
  415. #u23191 {
  416. border-width:0px;
  417. position:absolute;
  418. left:222px;
  419. top:0px;
  420. width:121px;
  421. height:27px;
  422. display:flex;
  423. transition:none;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. color:#FFFFFF;
  428. }
  429. #u23191 .text {
  430. position:absolute;
  431. align-self:center;
  432. padding:2px 2px 2px 2px;
  433. box-sizing:border-box;
  434. width:100%;
  435. }
  436. #u23191_img {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:121px;
  442. height:27px;
  443. }
  444. #u23191_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u23192 {
  450. border-width:0px;
  451. position:absolute;
  452. left:343px;
  453. top:0px;
  454. width:121px;
  455. height:27px;
  456. display:flex;
  457. transition:none;
  458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  459. font-weight:400;
  460. font-style:normal;
  461. color:#FFFFFF;
  462. }
  463. #u23192 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:2px 2px 2px 2px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u23192_img {
  471. border-width:0px;
  472. position:absolute;
  473. left:0px;
  474. top:0px;
  475. width:121px;
  476. height:27px;
  477. }
  478. #u23192_text {
  479. border-width:0px;
  480. word-wrap:break-word;
  481. text-transform:none;
  482. }
  483. #u23193 {
  484. border-width:0px;
  485. position:absolute;
  486. left:463px;
  487. top:0px;
  488. width:103px;
  489. height:27px;
  490. display:flex;
  491. transition:none;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. color:#FFFFFF;
  496. }
  497. #u23193 .text {
  498. position:absolute;
  499. align-self:center;
  500. padding:2px 2px 2px 2px;
  501. box-sizing:border-box;
  502. width:100%;
  503. }
  504. #u23193_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:103px;
  510. height:27px;
  511. }
  512. #u23193_text {
  513. border-width:0px;
  514. word-wrap:break-word;
  515. text-transform:none;
  516. }
  517. #u23194 {
  518. border-width:0px;
  519. position:absolute;
  520. left:566px;
  521. top:0px;
  522. width:115px;
  523. height:27px;
  524. display:flex;
  525. transition:none;
  526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  527. font-weight:400;
  528. font-style:normal;
  529. color:#FFFFFF;
  530. }
  531. #u23194 .text {
  532. position:absolute;
  533. align-self:center;
  534. padding:2px 2px 2px 2px;
  535. box-sizing:border-box;
  536. width:100%;
  537. }
  538. #u23194_img {
  539. border-width:0px;
  540. position:absolute;
  541. left:0px;
  542. top:0px;
  543. width:115px;
  544. height:27px;
  545. }
  546. #u23194_text {
  547. border-width:0px;
  548. word-wrap:break-word;
  549. text-transform:none;
  550. }
  551. #u23195 {
  552. border-width:0px;
  553. position:absolute;
  554. left:681px;
  555. top:0px;
  556. width:113px;
  557. height:27px;
  558. display:flex;
  559. transition:none;
  560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  561. font-weight:400;
  562. font-style:normal;
  563. color:#FFFFFF;
  564. }
  565. #u23195 .text {
  566. position:absolute;
  567. align-self:center;
  568. padding:2px 2px 2px 2px;
  569. box-sizing:border-box;
  570. width:100%;
  571. }
  572. #u23195_img {
  573. border-width:0px;
  574. position:absolute;
  575. left:0px;
  576. top:0px;
  577. width:113px;
  578. height:27px;
  579. }
  580. #u23195_text {
  581. border-width:0px;
  582. word-wrap:break-word;
  583. text-transform:none;
  584. }
  585. #u23196 {
  586. border-width:0px;
  587. position:absolute;
  588. left:794px;
  589. top:0px;
  590. width:114px;
  591. height:27px;
  592. display:flex;
  593. transition:none;
  594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  595. font-weight:400;
  596. font-style:normal;
  597. color:#FFFFFF;
  598. }
  599. #u23196 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u23196_img {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:114px;
  612. height:27px;
  613. }
  614. #u23196_text {
  615. border-width:0px;
  616. word-wrap:break-word;
  617. text-transform:none;
  618. }
  619. #u23197 {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:27px;
  624. width:101px;
  625. height:30px;
  626. display:flex;
  627. transition:none;
  628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  629. font-weight:400;
  630. font-style:normal;
  631. }
  632. #u23197 .text {
  633. position:absolute;
  634. align-self:center;
  635. padding:2px 2px 2px 2px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u23197_img {
  640. border-width:0px;
  641. position:absolute;
  642. left:0px;
  643. top:0px;
  644. width:101px;
  645. height:30px;
  646. }
  647. #u23197_text {
  648. border-width:0px;
  649. word-wrap:break-word;
  650. text-transform:none;
  651. visibility:hidden;
  652. }
  653. #u23198 {
  654. border-width:0px;
  655. position:absolute;
  656. left:101px;
  657. top:27px;
  658. width:121px;
  659. height:30px;
  660. display:flex;
  661. transition:none;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. }
  666. #u23198 .text {
  667. position:absolute;
  668. align-self:center;
  669. padding:2px 2px 2px 2px;
  670. box-sizing:border-box;
  671. width:100%;
  672. }
  673. #u23198_img {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:121px;
  679. height:30px;
  680. }
  681. #u23198_text {
  682. border-width:0px;
  683. word-wrap:break-word;
  684. text-transform:none;
  685. visibility:hidden;
  686. }
  687. #u23199 {
  688. border-width:0px;
  689. position:absolute;
  690. left:222px;
  691. top:27px;
  692. width:121px;
  693. height:30px;
  694. display:flex;
  695. transition:none;
  696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  697. font-weight:400;
  698. font-style:normal;
  699. }
  700. #u23199 .text {
  701. position:absolute;
  702. align-self:center;
  703. padding:2px 2px 2px 2px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u23199_img {
  708. border-width:0px;
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:121px;
  713. height:30px;
  714. }
  715. #u23199_text {
  716. border-width:0px;
  717. word-wrap:break-word;
  718. text-transform:none;
  719. visibility:hidden;
  720. }
  721. #u23200 {
  722. border-width:0px;
  723. position:absolute;
  724. left:343px;
  725. top:27px;
  726. width:121px;
  727. height:30px;
  728. display:flex;
  729. transition:none;
  730. }
  731. #u23200 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u23200_img {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:121px;
  744. height:30px;
  745. }
  746. #u23200_text {
  747. border-width:0px;
  748. word-wrap:break-word;
  749. text-transform:none;
  750. visibility:hidden;
  751. }
  752. #u23201 {
  753. border-width:0px;
  754. position:absolute;
  755. left:463px;
  756. top:27px;
  757. width:103px;
  758. height:30px;
  759. display:flex;
  760. transition:none;
  761. }
  762. #u23201 .text {
  763. position:absolute;
  764. align-self:center;
  765. padding:2px 2px 2px 2px;
  766. box-sizing:border-box;
  767. width:100%;
  768. }
  769. #u23201_img {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:103px;
  775. height:30px;
  776. }
  777. #u23201_text {
  778. border-width:0px;
  779. word-wrap:break-word;
  780. text-transform:none;
  781. visibility:hidden;
  782. }
  783. #u23202 {
  784. border-width:0px;
  785. position:absolute;
  786. left:566px;
  787. top:27px;
  788. width:115px;
  789. height:30px;
  790. display:flex;
  791. transition:none;
  792. }
  793. #u23202 .text {
  794. position:absolute;
  795. align-self:center;
  796. padding:2px 2px 2px 2px;
  797. box-sizing:border-box;
  798. width:100%;
  799. }
  800. #u23202_img {
  801. border-width:0px;
  802. position:absolute;
  803. left:0px;
  804. top:0px;
  805. width:115px;
  806. height:30px;
  807. }
  808. #u23202_text {
  809. border-width:0px;
  810. word-wrap:break-word;
  811. text-transform:none;
  812. visibility:hidden;
  813. }
  814. #u23203 {
  815. border-width:0px;
  816. position:absolute;
  817. left:681px;
  818. top:27px;
  819. width:113px;
  820. height:30px;
  821. display:flex;
  822. transition:none;
  823. }
  824. #u23203 .text {
  825. position:absolute;
  826. align-self:center;
  827. padding:2px 2px 2px 2px;
  828. box-sizing:border-box;
  829. width:100%;
  830. }
  831. #u23203_img {
  832. border-width:0px;
  833. position:absolute;
  834. left:0px;
  835. top:0px;
  836. width:113px;
  837. height:30px;
  838. }
  839. #u23203_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u23204 {
  846. border-width:0px;
  847. position:absolute;
  848. left:794px;
  849. top:27px;
  850. width:114px;
  851. height:30px;
  852. display:flex;
  853. transition:none;
  854. }
  855. #u23204 .text {
  856. position:absolute;
  857. align-self:center;
  858. padding:2px 2px 2px 2px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u23204_img {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:114px;
  868. height:30px;
  869. }
  870. #u23204_text {
  871. border-width:0px;
  872. word-wrap:break-word;
  873. text-transform:none;
  874. visibility:hidden;
  875. }
  876. #u23205 {
  877. border-width:0px;
  878. position:absolute;
  879. left:0px;
  880. top:57px;
  881. width:101px;
  882. height:30px;
  883. display:flex;
  884. transition:none;
  885. }
  886. #u23205 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u23205_img {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:101px;
  899. height:30px;
  900. }
  901. #u23205_text {
  902. border-width:0px;
  903. word-wrap:break-word;
  904. text-transform:none;
  905. visibility:hidden;
  906. }
  907. #u23206 {
  908. border-width:0px;
  909. position:absolute;
  910. left:101px;
  911. top:57px;
  912. width:121px;
  913. height:30px;
  914. display:flex;
  915. transition:none;
  916. }
  917. #u23206 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u23206_img {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:121px;
  930. height:30px;
  931. }
  932. #u23206_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. visibility:hidden;
  937. }
  938. #u23207 {
  939. border-width:0px;
  940. position:absolute;
  941. left:222px;
  942. top:57px;
  943. width:121px;
  944. height:30px;
  945. display:flex;
  946. transition:none;
  947. }
  948. #u23207 .text {
  949. position:absolute;
  950. align-self:center;
  951. padding:2px 2px 2px 2px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u23207_img {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:121px;
  961. height:30px;
  962. }
  963. #u23207_text {
  964. border-width:0px;
  965. word-wrap:break-word;
  966. text-transform:none;
  967. visibility:hidden;
  968. }
  969. #u23208 {
  970. border-width:0px;
  971. position:absolute;
  972. left:343px;
  973. top:57px;
  974. width:121px;
  975. height:30px;
  976. display:flex;
  977. transition:none;
  978. }
  979. #u23208 .text {
  980. position:absolute;
  981. align-self:center;
  982. padding:2px 2px 2px 2px;
  983. box-sizing:border-box;
  984. width:100%;
  985. }
  986. #u23208_img {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:121px;
  992. height:30px;
  993. }
  994. #u23208_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. visibility:hidden;
  999. }
  1000. #u23209 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:463px;
  1004. top:57px;
  1005. width:103px;
  1006. height:30px;
  1007. display:flex;
  1008. transition:none;
  1009. }
  1010. #u23209 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u23209_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:103px;
  1023. height:30px;
  1024. }
  1025. #u23209_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u23210 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:566px;
  1035. top:57px;
  1036. width:115px;
  1037. height:30px;
  1038. display:flex;
  1039. transition:none;
  1040. }
  1041. #u23210 .text {
  1042. position:absolute;
  1043. align-self:center;
  1044. padding:2px 2px 2px 2px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u23210_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:115px;
  1054. height:30px;
  1055. }
  1056. #u23210_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. visibility:hidden;
  1061. }
  1062. #u23211 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:681px;
  1066. top:57px;
  1067. width:113px;
  1068. height:30px;
  1069. display:flex;
  1070. transition:none;
  1071. }
  1072. #u23211 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 2px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u23211_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:113px;
  1085. height:30px;
  1086. }
  1087. #u23211_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u23212 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:794px;
  1097. top:57px;
  1098. width:114px;
  1099. height:30px;
  1100. display:flex;
  1101. transition:none;
  1102. }
  1103. #u23212 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u23212_img {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:114px;
  1116. height:30px;
  1117. }
  1118. #u23212_text {
  1119. border-width:0px;
  1120. word-wrap:break-word;
  1121. text-transform:none;
  1122. visibility:hidden;
  1123. }
  1124. #u23213 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:87px;
  1129. width:101px;
  1130. height:30px;
  1131. display:flex;
  1132. transition:none;
  1133. }
  1134. #u23213 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u23213_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:101px;
  1147. height:30px;
  1148. }
  1149. #u23213_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u23214 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:101px;
  1159. top:87px;
  1160. width:121px;
  1161. height:30px;
  1162. display:flex;
  1163. transition:none;
  1164. }
  1165. #u23214 .text {
  1166. position:absolute;
  1167. align-self:center;
  1168. padding:2px 2px 2px 2px;
  1169. box-sizing:border-box;
  1170. width:100%;
  1171. }
  1172. #u23214_img {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:121px;
  1178. height:30px;
  1179. }
  1180. #u23214_text {
  1181. border-width:0px;
  1182. word-wrap:break-word;
  1183. text-transform:none;
  1184. visibility:hidden;
  1185. }
  1186. #u23215 {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:222px;
  1190. top:87px;
  1191. width:121px;
  1192. height:30px;
  1193. display:flex;
  1194. transition:none;
  1195. }
  1196. #u23215 .text {
  1197. position:absolute;
  1198. align-self:center;
  1199. padding:2px 2px 2px 2px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u23215_img {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:121px;
  1209. height:30px;
  1210. }
  1211. #u23215_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. visibility:hidden;
  1216. }
  1217. #u23216 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:343px;
  1221. top:87px;
  1222. width:121px;
  1223. height:30px;
  1224. display:flex;
  1225. transition:none;
  1226. }
  1227. #u23216 .text {
  1228. position:absolute;
  1229. align-self:center;
  1230. padding:2px 2px 2px 2px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u23216_img {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:121px;
  1240. height:30px;
  1241. }
  1242. #u23216_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u23217 {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:463px;
  1252. top:87px;
  1253. width:103px;
  1254. height:30px;
  1255. display:flex;
  1256. transition:none;
  1257. }
  1258. #u23217 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u23217_img {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:0px;
  1269. top:0px;
  1270. width:103px;
  1271. height:30px;
  1272. }
  1273. #u23217_text {
  1274. border-width:0px;
  1275. word-wrap:break-word;
  1276. text-transform:none;
  1277. visibility:hidden;
  1278. }
  1279. #u23218 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:566px;
  1283. top:87px;
  1284. width:115px;
  1285. height:30px;
  1286. display:flex;
  1287. transition:none;
  1288. }
  1289. #u23218 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u23218_img {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:115px;
  1302. height:30px;
  1303. }
  1304. #u23218_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u23219 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:681px;
  1314. top:87px;
  1315. width:113px;
  1316. height:30px;
  1317. display:flex;
  1318. transition:none;
  1319. }
  1320. #u23219 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:2px 2px 2px 2px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u23219_img {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:113px;
  1333. height:30px;
  1334. }
  1335. #u23219_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u23220 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:794px;
  1345. top:87px;
  1346. width:114px;
  1347. height:30px;
  1348. display:flex;
  1349. transition:none;
  1350. }
  1351. #u23220 .text {
  1352. position:absolute;
  1353. align-self:center;
  1354. padding:2px 2px 2px 2px;
  1355. box-sizing:border-box;
  1356. width:100%;
  1357. }
  1358. #u23220_img {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:114px;
  1364. height:30px;
  1365. }
  1366. #u23220_text {
  1367. border-width:0px;
  1368. word-wrap:break-word;
  1369. text-transform:none;
  1370. visibility:hidden;
  1371. }
  1372. #u23221 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:0px;
  1376. top:117px;
  1377. width:101px;
  1378. height:30px;
  1379. display:flex;
  1380. transition:none;
  1381. }
  1382. #u23221 .text {
  1383. position:absolute;
  1384. align-self:center;
  1385. padding:2px 2px 2px 2px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u23221_img {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:101px;
  1395. height:30px;
  1396. }
  1397. #u23221_text {
  1398. border-width:0px;
  1399. word-wrap:break-word;
  1400. text-transform:none;
  1401. visibility:hidden;
  1402. }
  1403. #u23222 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:101px;
  1407. top:117px;
  1408. width:121px;
  1409. height:30px;
  1410. display:flex;
  1411. transition:none;
  1412. }
  1413. #u23222 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:2px 2px 2px 2px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u23222_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:121px;
  1426. height:30px;
  1427. }
  1428. #u23222_text {
  1429. border-width:0px;
  1430. word-wrap:break-word;
  1431. text-transform:none;
  1432. visibility:hidden;
  1433. }
  1434. #u23223 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:222px;
  1438. top:117px;
  1439. width:121px;
  1440. height:30px;
  1441. display:flex;
  1442. transition:none;
  1443. }
  1444. #u23223 .text {
  1445. position:absolute;
  1446. align-self:center;
  1447. padding:2px 2px 2px 2px;
  1448. box-sizing:border-box;
  1449. width:100%;
  1450. }
  1451. #u23223_img {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:121px;
  1457. height:30px;
  1458. }
  1459. #u23223_text {
  1460. border-width:0px;
  1461. word-wrap:break-word;
  1462. text-transform:none;
  1463. visibility:hidden;
  1464. }
  1465. #u23224 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:343px;
  1469. top:117px;
  1470. width:121px;
  1471. height:30px;
  1472. display:flex;
  1473. transition:none;
  1474. }
  1475. #u23224 .text {
  1476. position:absolute;
  1477. align-self:center;
  1478. padding:2px 2px 2px 2px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u23224_img {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:121px;
  1488. height:30px;
  1489. }
  1490. #u23224_text {
  1491. border-width:0px;
  1492. word-wrap:break-word;
  1493. text-transform:none;
  1494. visibility:hidden;
  1495. }
  1496. #u23225 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:463px;
  1500. top:117px;
  1501. width:103px;
  1502. height:30px;
  1503. display:flex;
  1504. transition:none;
  1505. }
  1506. #u23225 .text {
  1507. position:absolute;
  1508. align-self:center;
  1509. padding:2px 2px 2px 2px;
  1510. box-sizing:border-box;
  1511. width:100%;
  1512. }
  1513. #u23225_img {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:0px;
  1517. top:0px;
  1518. width:103px;
  1519. height:30px;
  1520. }
  1521. #u23225_text {
  1522. border-width:0px;
  1523. word-wrap:break-word;
  1524. text-transform:none;
  1525. visibility:hidden;
  1526. }
  1527. #u23226 {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:566px;
  1531. top:117px;
  1532. width:115px;
  1533. height:30px;
  1534. display:flex;
  1535. transition:none;
  1536. }
  1537. #u23226 .text {
  1538. position:absolute;
  1539. align-self:center;
  1540. padding:2px 2px 2px 2px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u23226_img {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:115px;
  1550. height:30px;
  1551. }
  1552. #u23226_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u23227 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:681px;
  1562. top:117px;
  1563. width:113px;
  1564. height:30px;
  1565. display:flex;
  1566. transition:none;
  1567. }
  1568. #u23227 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:2px 2px 2px 2px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u23227_img {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:113px;
  1581. height:30px;
  1582. }
  1583. #u23227_text {
  1584. border-width:0px;
  1585. word-wrap:break-word;
  1586. text-transform:none;
  1587. visibility:hidden;
  1588. }
  1589. #u23228 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:794px;
  1593. top:117px;
  1594. width:114px;
  1595. height:30px;
  1596. display:flex;
  1597. transition:none;
  1598. }
  1599. #u23228 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u23228_img {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:114px;
  1612. height:30px;
  1613. }
  1614. #u23228_text {
  1615. border-width:0px;
  1616. word-wrap:break-word;
  1617. text-transform:none;
  1618. visibility:hidden;
  1619. }
  1620. #u23229 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:147px;
  1625. width:101px;
  1626. height:30px;
  1627. display:flex;
  1628. transition:none;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. }
  1633. #u23229 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u23229_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:101px;
  1646. height:30px;
  1647. }
  1648. #u23229_text {
  1649. border-width:0px;
  1650. word-wrap:break-word;
  1651. text-transform:none;
  1652. }
  1653. #u23230 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:101px;
  1657. top:147px;
  1658. width:121px;
  1659. height:30px;
  1660. display:flex;
  1661. transition:none;
  1662. }
  1663. #u23230 .text {
  1664. position:absolute;
  1665. align-self:center;
  1666. padding:2px 2px 2px 2px;
  1667. box-sizing:border-box;
  1668. width:100%;
  1669. }
  1670. #u23230_img {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:121px;
  1676. height:30px;
  1677. }
  1678. #u23230_text {
  1679. border-width:0px;
  1680. word-wrap:break-word;
  1681. text-transform:none;
  1682. visibility:hidden;
  1683. }
  1684. #u23231 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:222px;
  1688. top:147px;
  1689. width:121px;
  1690. height:30px;
  1691. display:flex;
  1692. transition:none;
  1693. }
  1694. #u23231 .text {
  1695. position:absolute;
  1696. align-self:center;
  1697. padding:2px 2px 2px 2px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u23231_img {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:121px;
  1707. height:30px;
  1708. }
  1709. #u23231_text {
  1710. border-width:0px;
  1711. word-wrap:break-word;
  1712. text-transform:none;
  1713. visibility:hidden;
  1714. }
  1715. #u23232 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:343px;
  1719. top:147px;
  1720. width:121px;
  1721. height:30px;
  1722. display:flex;
  1723. transition:none;
  1724. }
  1725. #u23232 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:2px 2px 2px 2px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u23232_img {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:121px;
  1738. height:30px;
  1739. }
  1740. #u23232_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u23233 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:463px;
  1750. top:147px;
  1751. width:103px;
  1752. height:30px;
  1753. display:flex;
  1754. transition:none;
  1755. }
  1756. #u23233 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 2px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u23233_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:103px;
  1769. height:30px;
  1770. }
  1771. #u23233_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. visibility:hidden;
  1776. }
  1777. #u23234 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:566px;
  1781. top:147px;
  1782. width:115px;
  1783. height:30px;
  1784. display:flex;
  1785. transition:none;
  1786. }
  1787. #u23234 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u23234_img {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:115px;
  1800. height:30px;
  1801. }
  1802. #u23234_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. visibility:hidden;
  1807. }
  1808. #u23235 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:681px;
  1812. top:147px;
  1813. width:113px;
  1814. height:30px;
  1815. display:flex;
  1816. transition:none;
  1817. }
  1818. #u23235 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u23235_img {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:113px;
  1831. height:30px;
  1832. }
  1833. #u23235_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. visibility:hidden;
  1838. }
  1839. #u23236 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:794px;
  1843. top:147px;
  1844. width:114px;
  1845. height:30px;
  1846. display:flex;
  1847. transition:none;
  1848. }
  1849. #u23236 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u23236_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:114px;
  1862. height:30px;
  1863. }
  1864. #u23236_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. visibility:hidden;
  1869. }
  1870. #u23237_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:67px;
  1876. height:30px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 0);
  1879. border-top:0px;
  1880. border-right:0px;
  1881. border-bottom:0px;
  1882. border-radius:0px;
  1883. border-top-left-radius:0px;
  1884. border-bottom-left-radius:0px;
  1885. filter:drop-shadow(none);
  1886. transition:none;
  1887. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1888. font-weight:500;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. }
  1892. #u23237 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:134px;
  1896. top:136px;
  1897. width:67px;
  1898. height:30px;
  1899. display:flex;
  1900. transition:none;
  1901. transform-origin:50% 50%;
  1902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1903. font-weight:500;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. }
  1907. #u23237 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:5px 10px 5px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u23237_text {
  1915. border-width:0px;
  1916. white-space:nowrap;
  1917. text-transform:none;
  1918. }
  1919. #u23238_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:43px;
  1925. height:30px;
  1926. background:inherit;
  1927. background-color:rgba(255, 255, 255, 0);
  1928. border-top:0px;
  1929. border-right:0px;
  1930. border-bottom:0px;
  1931. border-radius:0px;
  1932. border-top-left-radius:0px;
  1933. border-bottom-left-radius:0px;
  1934. filter:drop-shadow(none);
  1935. transition:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:14px;
  1940. color:#7F7F7F;
  1941. }
  1942. #u23238 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:154px;
  1946. top:179px;
  1947. width:43px;
  1948. height:30px;
  1949. display:flex;
  1950. transition:none;
  1951. transform-origin:50% 50%;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:14px;
  1956. color:#7F7F7F;
  1957. }
  1958. #u23238 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:5px 0px 5px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u23238_text {
  1966. border-width:0px;
  1967. white-space:nowrap;
  1968. text-transform:none;
  1969. }
  1970. #u23239_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:113px;
  1976. height:30px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 0);
  1979. border-top:0px;
  1980. border-right:0px;
  1981. border-bottom:0px;
  1982. border-radius:0px;
  1983. border-top-left-radius:0px;
  1984. border-bottom-left-radius:0px;
  1985. filter:drop-shadow(none);
  1986. transition:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. }
  1992. #u23239 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:230px;
  1996. top:179px;
  1997. width:113px;
  1998. height:30px;
  1999. display:flex;
  2000. transition:none;
  2001. transform-origin:50% 50%;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. }
  2007. #u23239 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:5px 0px 5px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u23239_text {
  2015. border-width:0px;
  2016. white-space:nowrap;
  2017. text-transform:none;
  2018. }
  2019. #u23240_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:43px;
  2025. height:30px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border-top:0px;
  2029. border-right:0px;
  2030. border-bottom:0px;
  2031. border-radius:0px;
  2032. border-top-left-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. filter:drop-shadow(none);
  2035. transition:none;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:14px;
  2040. color:#7F7F7F;
  2041. }
  2042. #u23240 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:520px;
  2046. top:179px;
  2047. width:43px;
  2048. height:30px;
  2049. display:flex;
  2050. transition:none;
  2051. transform-origin:50% 50%;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. color:#7F7F7F;
  2057. }
  2058. #u23240 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:5px 0px 5px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u23240_text {
  2066. border-width:0px;
  2067. white-space:nowrap;
  2068. text-transform:none;
  2069. }
  2070. #u23241_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:86px;
  2076. height:30px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 0);
  2079. border-top:0px;
  2080. border-right:0px;
  2081. border-bottom:0px;
  2082. border-radius:0px;
  2083. border-top-left-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. filter:drop-shadow(none);
  2086. transition:none;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:14px;
  2091. }
  2092. #u23241 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:596px;
  2096. top:179px;
  2097. width:86px;
  2098. height:30px;
  2099. display:flex;
  2100. transition:none;
  2101. transform-origin:50% 50%;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:14px;
  2106. }
  2107. #u23241 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:5px 0px 5px 0px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u23241_text {
  2115. border-width:0px;
  2116. white-space:nowrap;
  2117. text-transform:none;
  2118. }
  2119. #u23242_div {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:71px;
  2125. height:30px;
  2126. background:inherit;
  2127. background-color:rgba(255, 255, 255, 0);
  2128. border-top:0px;
  2129. border-right:0px;
  2130. border-bottom:0px;
  2131. border-radius:0px;
  2132. border-top-left-radius:0px;
  2133. border-bottom-left-radius:0px;
  2134. filter:drop-shadow(none);
  2135. transition:none;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. color:#7F7F7F;
  2141. }
  2142. #u23242 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:154px;
  2146. top:219px;
  2147. width:71px;
  2148. height:30px;
  2149. display:flex;
  2150. transition:none;
  2151. transform-origin:50% 50%;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:14px;
  2156. color:#7F7F7F;
  2157. }
  2158. #u23242 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:5px 0px 5px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u23242_text {
  2166. border-width:0px;
  2167. white-space:nowrap;
  2168. text-transform:none;
  2169. }
  2170. #u23243_div {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:89px;
  2176. height:30px;
  2177. background:inherit;
  2178. background-color:rgba(255, 255, 255, 0);
  2179. border-top:0px;
  2180. border-right:0px;
  2181. border-bottom:0px;
  2182. border-radius:0px;
  2183. border-top-left-radius:0px;
  2184. border-bottom-left-radius:0px;
  2185. filter:drop-shadow(none);
  2186. transition:none;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:14px;
  2191. }
  2192. #u23243 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:230px;
  2196. top:219px;
  2197. width:89px;
  2198. height:30px;
  2199. display:flex;
  2200. transition:none;
  2201. transform-origin:50% 50%;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. }
  2207. #u23243 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:5px 0px 5px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u23243_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u23244_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:71px;
  2225. height:30px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border-top:0px;
  2229. border-right:0px;
  2230. border-bottom:0px;
  2231. border-radius:0px;
  2232. border-top-left-radius:0px;
  2233. border-bottom-left-radius:0px;
  2234. filter:drop-shadow(none);
  2235. transition:none;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:14px;
  2240. color:#7F7F7F;
  2241. }
  2242. #u23244 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:520px;
  2246. top:219px;
  2247. width:71px;
  2248. height:30px;
  2249. display:flex;
  2250. transition:none;
  2251. transform-origin:50% 50%;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:14px;
  2256. color:#7F7F7F;
  2257. }
  2258. #u23244 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:5px 0px 5px 0px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u23244_text {
  2266. border-width:0px;
  2267. white-space:nowrap;
  2268. text-transform:none;
  2269. }
  2270. #u23245_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:89px;
  2276. height:30px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border-top:0px;
  2280. border-right:0px;
  2281. border-bottom:0px;
  2282. border-radius:0px;
  2283. border-top-left-radius:0px;
  2284. border-bottom-left-radius:0px;
  2285. filter:drop-shadow(none);
  2286. transition:none;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:14px;
  2291. }
  2292. #u23245 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:596px;
  2296. top:219px;
  2297. width:89px;
  2298. height:30px;
  2299. display:flex;
  2300. transition:none;
  2301. transform-origin:50% 50%;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:14px;
  2306. }
  2307. #u23245 .text {
  2308. position:absolute;
  2309. align-self:center;
  2310. padding:5px 0px 5px 0px;
  2311. box-sizing:border-box;
  2312. width:100%;
  2313. }
  2314. #u23245_text {
  2315. border-width:0px;
  2316. white-space:nowrap;
  2317. text-transform:none;
  2318. }
  2319. #u23246_div {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:71px;
  2325. height:30px;
  2326. background:inherit;
  2327. background-color:rgba(255, 255, 255, 0);
  2328. border-top:0px;
  2329. border-right:0px;
  2330. border-bottom:0px;
  2331. border-radius:0px;
  2332. border-top-left-radius:0px;
  2333. border-bottom-left-radius:0px;
  2334. filter:drop-shadow(none);
  2335. transition:none;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:14px;
  2340. color:#7F7F7F;
  2341. }
  2342. #u23246 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:154px;
  2346. top:259px;
  2347. width:71px;
  2348. height:30px;
  2349. display:flex;
  2350. transition:none;
  2351. transform-origin:50% 50%;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. color:#7F7F7F;
  2357. }
  2358. #u23246 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:5px 0px 5px 0px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u23246_text {
  2366. border-width:0px;
  2367. white-space:nowrap;
  2368. text-transform:none;
  2369. }
  2370. #u23247_div {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:89px;
  2376. height:30px;
  2377. background:inherit;
  2378. background-color:rgba(255, 255, 255, 0);
  2379. border-top:0px;
  2380. border-right:0px;
  2381. border-bottom:0px;
  2382. border-radius:0px;
  2383. border-top-left-radius:0px;
  2384. border-bottom-left-radius:0px;
  2385. filter:drop-shadow(none);
  2386. transition:none;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:14px;
  2391. }
  2392. #u23247 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:230px;
  2396. top:259px;
  2397. width:89px;
  2398. height:30px;
  2399. display:flex;
  2400. transition:none;
  2401. transform-origin:50% 50%;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:14px;
  2406. }
  2407. #u23247 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:5px 0px 5px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u23247_text {
  2415. border-width:0px;
  2416. white-space:nowrap;
  2417. text-transform:none;
  2418. }
  2419. #u23248_div {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:71px;
  2425. height:30px;
  2426. background:inherit;
  2427. background-color:rgba(255, 255, 255, 0);
  2428. border-top:0px;
  2429. border-right:0px;
  2430. border-bottom:0px;
  2431. border-radius:0px;
  2432. border-top-left-radius:0px;
  2433. border-bottom-left-radius:0px;
  2434. filter:drop-shadow(none);
  2435. transition:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. color:#7F7F7F;
  2441. }
  2442. #u23248 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:520px;
  2446. top:259px;
  2447. width:71px;
  2448. height:30px;
  2449. display:flex;
  2450. transition:none;
  2451. transform-origin:50% 50%;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:14px;
  2456. color:#7F7F7F;
  2457. }
  2458. #u23248 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:5px 0px 5px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u23248_text {
  2466. border-width:0px;
  2467. white-space:nowrap;
  2468. text-transform:none;
  2469. }
  2470. #u23249_div {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:29px;
  2476. height:30px;
  2477. background:inherit;
  2478. background-color:rgba(255, 255, 255, 0);
  2479. border-top:0px;
  2480. border-right:0px;
  2481. border-bottom:0px;
  2482. border-radius:0px;
  2483. border-top-left-radius:0px;
  2484. border-bottom-left-radius:0px;
  2485. filter:drop-shadow(none);
  2486. transition:none;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:14px;
  2491. }
  2492. #u23249 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:596px;
  2496. top:259px;
  2497. width:29px;
  2498. height:30px;
  2499. display:flex;
  2500. transition:none;
  2501. transform-origin:50% 50%;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. }
  2507. #u23249 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:5px 0px 5px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u23249_text {
  2515. border-width:0px;
  2516. white-space:nowrap;
  2517. text-transform:none;
  2518. }
  2519. #u23250_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:71px;
  2525. height:30px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border-top:0px;
  2529. border-right:0px;
  2530. border-bottom:0px;
  2531. border-radius:0px;
  2532. border-top-left-radius:0px;
  2533. border-bottom-left-radius:0px;
  2534. filter:drop-shadow(none);
  2535. transition:none;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:14px;
  2540. color:#7F7F7F;
  2541. }
  2542. #u23250 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:154px;
  2546. top:299px;
  2547. width:71px;
  2548. height:30px;
  2549. display:flex;
  2550. transition:none;
  2551. transform-origin:50% 50%;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. color:#7F7F7F;
  2557. }
  2558. #u23250 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:5px 0px 5px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u23250_text {
  2566. border-width:0px;
  2567. white-space:nowrap;
  2568. text-transform:none;
  2569. }
  2570. #u23251_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:81px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border-top:0px;
  2580. border-right:0px;
  2581. border-bottom:0px;
  2582. border-radius:0px;
  2583. border-top-left-radius:0px;
  2584. border-bottom-left-radius:0px;
  2585. filter:drop-shadow(none);
  2586. transition:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:14px;
  2591. }
  2592. #u23251 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:230px;
  2596. top:299px;
  2597. width:81px;
  2598. height:30px;
  2599. display:flex;
  2600. transition:none;
  2601. transform-origin:50% 50%;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. }
  2607. #u23251 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:5px 0px 5px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u23251_text {
  2615. border-width:0px;
  2616. white-space:nowrap;
  2617. text-transform:none;
  2618. }
  2619. #u23252_div {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:85px;
  2625. height:30px;
  2626. background:inherit;
  2627. background-color:rgba(255, 255, 255, 0);
  2628. border-top:0px;
  2629. border-right:0px;
  2630. border-bottom:0px;
  2631. border-radius:0px;
  2632. border-top-left-radius:0px;
  2633. border-bottom-left-radius:0px;
  2634. filter:drop-shadow(none);
  2635. transition:none;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:14px;
  2640. color:#7F7F7F;
  2641. }
  2642. #u23252 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:520px;
  2646. top:299px;
  2647. width:85px;
  2648. height:30px;
  2649. display:flex;
  2650. transition:none;
  2651. transform-origin:50% 50%;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:14px;
  2656. color:#7F7F7F;
  2657. }
  2658. #u23252 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:5px 0px 5px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u23252_text {
  2666. border-width:0px;
  2667. white-space:nowrap;
  2668. text-transform:none;
  2669. }
  2670. #u23253_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:82px;
  2676. height:30px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 0);
  2679. border-top:0px;
  2680. border-right:0px;
  2681. border-bottom:0px;
  2682. border-radius:0px;
  2683. border-top-left-radius:0px;
  2684. border-bottom-left-radius:0px;
  2685. filter:drop-shadow(none);
  2686. transition:none;
  2687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2688. font-weight:400;
  2689. font-style:normal;
  2690. font-size:14px;
  2691. }
  2692. #u23253 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:596px;
  2696. top:299px;
  2697. width:82px;
  2698. height:30px;
  2699. display:flex;
  2700. transition:none;
  2701. transform-origin:50% 50%;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:14px;
  2706. }
  2707. #u23253 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:5px 0px 5px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u23253_text {
  2715. border-width:0px;
  2716. white-space:nowrap;
  2717. text-transform:none;
  2718. }
  2719. #u23254_div {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:71px;
  2725. height:30px;
  2726. background:inherit;
  2727. background-color:rgba(255, 255, 255, 0);
  2728. border-top:0px;
  2729. border-right:0px;
  2730. border-bottom:0px;
  2731. border-radius:0px;
  2732. border-top-left-radius:0px;
  2733. border-bottom-left-radius:0px;
  2734. filter:drop-shadow(none);
  2735. transition:none;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:14px;
  2740. color:#7F7F7F;
  2741. }
  2742. #u23254 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:154px;
  2746. top:339px;
  2747. width:71px;
  2748. height:30px;
  2749. display:flex;
  2750. transition:none;
  2751. transform-origin:50% 50%;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. color:#7F7F7F;
  2757. }
  2758. #u23254 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:5px 0px 5px 0px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u23254_text {
  2766. border-width:0px;
  2767. white-space:nowrap;
  2768. text-transform:none;
  2769. }
  2770. #u23255_div {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:589px;
  2776. height:30px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 0);
  2779. border-top:0px;
  2780. border-right:0px;
  2781. border-bottom:0px;
  2782. border-radius:0px;
  2783. border-top-left-radius:0px;
  2784. border-bottom-left-radius:0px;
  2785. filter:drop-shadow(none);
  2786. transition:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:14px;
  2791. }
  2792. #u23255 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:230px;
  2796. top:339px;
  2797. width:589px;
  2798. height:30px;
  2799. display:flex;
  2800. transition:none;
  2801. transform-origin:50% 50%;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:14px;
  2806. }
  2807. #u23255 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:5px 0px 5px 0px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u23255_text {
  2815. border-width:0px;
  2816. white-space:nowrap;
  2817. text-transform:none;
  2818. }
  2819. #u23256_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:95px;
  2825. height:30px;
  2826. background:inherit;
  2827. background-color:rgba(255, 255, 255, 0);
  2828. border-top:0px;
  2829. border-right:0px;
  2830. border-bottom:0px;
  2831. border-radius:0px;
  2832. border-top-left-radius:0px;
  2833. border-bottom-left-radius:0px;
  2834. filter:drop-shadow(none);
  2835. transition:none;
  2836. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2837. font-weight:500;
  2838. font-style:normal;
  2839. font-size:14px;
  2840. }
  2841. #u23256 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:134px;
  2845. top:389px;
  2846. width:95px;
  2847. height:30px;
  2848. display:flex;
  2849. transition:none;
  2850. transform-origin:50% 50%;
  2851. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2852. font-weight:500;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. }
  2856. #u23256 .text {
  2857. position:absolute;
  2858. align-self:center;
  2859. padding:5px 10px 5px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u23256_text {
  2864. border-width:0px;
  2865. white-space:nowrap;
  2866. text-transform:none;
  2867. }
  2868. #u23257_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:119px;
  2874. height:35px;
  2875. background:inherit;
  2876. background-color:rgba(255, 255, 255, 0);
  2877. border-top:0px;
  2878. border-right:0px;
  2879. border-bottom:0px;
  2880. border-radius:0px;
  2881. border-top-left-radius:0px;
  2882. border-bottom-left-radius:0px;
  2883. filter:drop-shadow(none);
  2884. transition:none;
  2885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2886. font-weight:500;
  2887. font-style:normal;
  2888. font-size:18px;
  2889. }
  2890. #u23257 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:108px;
  2894. top:77px;
  2895. width:119px;
  2896. height:35px;
  2897. display:flex;
  2898. transition:none;
  2899. transform-origin:50% 50%;
  2900. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2901. font-weight:500;
  2902. font-style:normal;
  2903. font-size:18px;
  2904. }
  2905. #u23257 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:5px 10px 5px 0px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u23257_text {
  2913. border-width:0px;
  2914. white-space:nowrap;
  2915. text-transform:none;
  2916. }
  2917. #u23258 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:936px;
  2921. top:130px;
  2922. width:90px;
  2923. height:90px;
  2924. display:flex;
  2925. -webkit-transform:rotate(330deg);
  2926. -moz-transform:rotate(330deg);
  2927. -ms-transform:rotate(330deg);
  2928. transform:rotate(330deg);
  2929. transition:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:18px;
  2934. }
  2935. #u23258 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u23258_img {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:90px;
  2948. height:90px;
  2949. }
  2950. #u23258_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. }
  2955. #u23259 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:0px;
  2961. height:0px;
  2962. }
  2963. #u23260_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:1000px;
  2969. height:1200px;
  2970. background:inherit;
  2971. background-color:rgba(242, 242, 242, 1);
  2972. box-sizing:border-box;
  2973. border-width:1px;
  2974. border-style:solid;
  2975. border-color:rgba(215, 215, 215, 1);
  2976. border-radius:0px;
  2977. filter:drop-shadow(none);
  2978. transition:none;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:14px;
  2983. color:#AAAAAA;
  2984. text-align:center;
  2985. line-height:30px;
  2986. }
  2987. #u23260 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:1161px;
  2991. top:59px;
  2992. width:1000px;
  2993. height:1200px;
  2994. display:flex;
  2995. transition:none;
  2996. transform-origin:50% 50%;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:14px;
  3001. color:#AAAAAA;
  3002. text-align:center;
  3003. line-height:30px;
  3004. }
  3005. #u23260 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:5px 10px 5px 10px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u23260_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u23261_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:1000px;
  3024. height:1200px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 1);
  3027. box-sizing:border-box;
  3028. border-width:1px;
  3029. border-style:solid;
  3030. border-color:rgba(215, 215, 215, 1);
  3031. border-radius:0px;
  3032. filter:drop-shadow(none);
  3033. transition:none;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:14px;
  3038. color:#AAAAAA;
  3039. text-align:center;
  3040. line-height:30px;
  3041. }
  3042. #u23261 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:1161px;
  3046. top:59px;
  3047. width:1000px;
  3048. height:1200px;
  3049. display:flex;
  3050. transition:none;
  3051. transform-origin:50% 50%;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:14px;
  3056. color:#AAAAAA;
  3057. text-align:center;
  3058. line-height:30px;
  3059. }
  3060. #u23261 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:5px 10px 5px 10px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u23261_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u23262 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:0px;
  3079. height:0px;
  3080. }
  3081. #u23263_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:40px;
  3087. height:40px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 0);
  3090. border-top:0px;
  3091. border-right:0px;
  3092. border-bottom:0px;
  3093. border-radius:0px;
  3094. border-top-left-radius:0px;
  3095. border-bottom-left-radius:0px;
  3096. filter:drop-shadow(none);
  3097. transition:none;
  3098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3099. font-weight:500;
  3100. font-style:normal;
  3101. font-size:14px;
  3102. text-align:center;
  3103. }
  3104. #u23263 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:2121px;
  3108. top:59px;
  3109. width:40px;
  3110. height:40px;
  3111. display:flex;
  3112. transition:none;
  3113. transform-origin:50% 50%;
  3114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3115. font-weight:500;
  3116. font-style:normal;
  3117. font-size:14px;
  3118. text-align:center;
  3119. }
  3120. #u23263 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:5px 10px 5px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u23263_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. }
  3132. #u23264 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:2109px;
  3136. top:75px;
  3137. width:13px;
  3138. height:13px;
  3139. display:flex;
  3140. transition:none;
  3141. font-size:14px;
  3142. }
  3143. #u23264 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u23264_img {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:13px;
  3156. height:13px;
  3157. }
  3158. #u23264_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u23265 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:0px;
  3170. height:0px;
  3171. }
  3172. #u23266_div {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:1000px;
  3178. height:60px;
  3179. background:inherit;
  3180. background-color:rgba(255, 255, 255, 1);
  3181. box-sizing:border-box;
  3182. border-width:1px;
  3183. border-style:solid;
  3184. border-color:rgba(215, 215, 215, 1);
  3185. border-radius:0px;
  3186. filter:drop-shadow(none);
  3187. transition:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:14px;
  3192. color:#AAAAAA;
  3193. text-align:center;
  3194. line-height:30px;
  3195. }
  3196. #u23266 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1161px;
  3200. top:1199px;
  3201. width:1000px;
  3202. height:60px;
  3203. display:flex;
  3204. transition:none;
  3205. transform-origin:50% 50%;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. color:#AAAAAA;
  3211. text-align:center;
  3212. line-height:30px;
  3213. }
  3214. #u23266 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:5px 10px 5px 10px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u23266_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u23267_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:80px;
  3233. height:30px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 1);
  3236. box-sizing:border-box;
  3237. border-width:1px;
  3238. border-style:solid;
  3239. border-color:rgba(170, 170, 170, 1);
  3240. border-radius:4px;
  3241. filter:drop-shadow(none);
  3242. transition:none;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:14px;
  3247. }
  3248. #u23267 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:2061px;
  3252. top:1214px;
  3253. width:80px;
  3254. height:30px;
  3255. display:flex;
  3256. transition:none;
  3257. transform-origin:50% 50%;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:14px;
  3262. }
  3263. #u23267 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u23267_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. }
  3275. #u23268 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:1227px;
  3279. top:431px;
  3280. width:902px;
  3281. height:180px;
  3282. }
  3283. #u23269 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:101px;
  3289. height:30px;
  3290. display:flex;
  3291. transition:none;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. color:#FFFFFF;
  3296. }
  3297. #u23269 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u23269_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:101px;
  3310. height:30px;
  3311. }
  3312. #u23269_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. }
  3317. #u23270 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:101px;
  3321. top:0px;
  3322. width:120px;
  3323. height:30px;
  3324. display:flex;
  3325. transition:none;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. color:#FFFFFF;
  3330. }
  3331. #u23270 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u23270_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:120px;
  3344. height:30px;
  3345. }
  3346. #u23270_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u23271 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:220px;
  3355. top:0px;
  3356. width:120px;
  3357. height:30px;
  3358. display:flex;
  3359. transition:none;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. color:#FFFFFF;
  3364. }
  3365. #u23271 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 2px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u23271_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:120px;
  3378. height:30px;
  3379. }
  3380. #u23271_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. }
  3385. #u23272 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:340px;
  3389. top:0px;
  3390. width:120px;
  3391. height:30px;
  3392. display:flex;
  3393. transition:none;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. color:#FFFFFF;
  3398. }
  3399. #u23272 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 2px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u23272_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:120px;
  3412. height:30px;
  3413. }
  3414. #u23272_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. }
  3419. #u23273 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:460px;
  3423. top:0px;
  3424. width:102px;
  3425. height:30px;
  3426. display:flex;
  3427. transition:none;
  3428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. color:#FFFFFF;
  3432. }
  3433. #u23273 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u23273_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:102px;
  3446. height:30px;
  3447. }
  3448. #u23273_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. }
  3453. #u23274 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:562px;
  3457. top:0px;
  3458. width:114px;
  3459. height:30px;
  3460. display:flex;
  3461. transition:none;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. color:#FFFFFF;
  3466. }
  3467. #u23274 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:2px 2px 2px 2px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u23274_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:114px;
  3480. height:30px;
  3481. }
  3482. #u23274_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. }
  3487. #u23275 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:676px;
  3491. top:0px;
  3492. width:113px;
  3493. height:30px;
  3494. display:flex;
  3495. transition:none;
  3496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3497. font-weight:400;
  3498. font-style:normal;
  3499. color:#FFFFFF;
  3500. }
  3501. #u23275 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u23275_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:113px;
  3514. height:30px;
  3515. }
  3516. #u23275_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. }
  3521. #u23276 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:789px;
  3525. top:0px;
  3526. width:113px;
  3527. height:30px;
  3528. display:flex;
  3529. transition:none;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. color:#FFFFFF;
  3534. }
  3535. #u23276 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 2px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u23276_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:113px;
  3548. height:30px;
  3549. }
  3550. #u23276_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. }
  3555. #u23277 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:30px;
  3560. width:101px;
  3561. height:30px;
  3562. display:flex;
  3563. transition:none;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. }
  3568. #u23277 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 2px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u23277_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:101px;
  3581. height:30px;
  3582. }
  3583. #u23277_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u23278 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:101px;
  3593. top:30px;
  3594. width:120px;
  3595. height:30px;
  3596. display:flex;
  3597. transition:none;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. }
  3602. #u23278 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 2px 2px 2px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u23278_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:120px;
  3615. height:30px;
  3616. }
  3617. #u23278_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u23279 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:220px;
  3627. top:30px;
  3628. width:120px;
  3629. height:30px;
  3630. display:flex;
  3631. transition:none;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. }
  3636. #u23279 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 2px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u23279_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:120px;
  3649. height:30px;
  3650. }
  3651. #u23279_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u23280 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:340px;
  3661. top:30px;
  3662. width:120px;
  3663. height:30px;
  3664. display:flex;
  3665. transition:none;
  3666. }
  3667. #u23280 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 2px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u23280_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:120px;
  3680. height:30px;
  3681. }
  3682. #u23280_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u23281 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:460px;
  3692. top:30px;
  3693. width:102px;
  3694. height:30px;
  3695. display:flex;
  3696. transition:none;
  3697. }
  3698. #u23281 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 2px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u23281_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:102px;
  3711. height:30px;
  3712. }
  3713. #u23281_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. visibility:hidden;
  3718. }
  3719. #u23282 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:562px;
  3723. top:30px;
  3724. width:114px;
  3725. height:30px;
  3726. display:flex;
  3727. transition:none;
  3728. }
  3729. #u23282 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:2px 2px 2px 2px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u23282_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:114px;
  3742. height:30px;
  3743. }
  3744. #u23282_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u23283 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:676px;
  3754. top:30px;
  3755. width:113px;
  3756. height:30px;
  3757. display:flex;
  3758. transition:none;
  3759. }
  3760. #u23283 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 2px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u23283_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:113px;
  3773. height:30px;
  3774. }
  3775. #u23283_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u23284 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:789px;
  3785. top:30px;
  3786. width:113px;
  3787. height:30px;
  3788. display:flex;
  3789. transition:none;
  3790. }
  3791. #u23284 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u23284_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:113px;
  3804. height:30px;
  3805. }
  3806. #u23284_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u23285 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:60px;
  3817. width:101px;
  3818. height:30px;
  3819. display:flex;
  3820. transition:none;
  3821. }
  3822. #u23285 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 2px 2px 2px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u23285_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:101px;
  3835. height:30px;
  3836. }
  3837. #u23285_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u23286 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:101px;
  3847. top:60px;
  3848. width:120px;
  3849. height:30px;
  3850. display:flex;
  3851. transition:none;
  3852. }
  3853. #u23286 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 2px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u23286_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:120px;
  3866. height:30px;
  3867. }
  3868. #u23286_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u23287 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:220px;
  3878. top:60px;
  3879. width:120px;
  3880. height:30px;
  3881. display:flex;
  3882. transition:none;
  3883. }
  3884. #u23287 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u23287_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:120px;
  3897. height:30px;
  3898. }
  3899. #u23287_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u23288 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:340px;
  3909. top:60px;
  3910. width:120px;
  3911. height:30px;
  3912. display:flex;
  3913. transition:none;
  3914. }
  3915. #u23288 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u23288_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:120px;
  3928. height:30px;
  3929. }
  3930. #u23288_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u23289 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:460px;
  3940. top:60px;
  3941. width:102px;
  3942. height:30px;
  3943. display:flex;
  3944. transition:none;
  3945. }
  3946. #u23289 .text {
  3947. position:absolute;
  3948. align-self:center;
  3949. padding:2px 2px 2px 2px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u23289_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:102px;
  3959. height:30px;
  3960. }
  3961. #u23289_text {
  3962. border-width:0px;
  3963. word-wrap:break-word;
  3964. text-transform:none;
  3965. visibility:hidden;
  3966. }
  3967. #u23290 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:562px;
  3971. top:60px;
  3972. width:114px;
  3973. height:30px;
  3974. display:flex;
  3975. transition:none;
  3976. }
  3977. #u23290 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 2px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u23290_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:114px;
  3990. height:30px;
  3991. }
  3992. #u23290_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u23291 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:676px;
  4002. top:60px;
  4003. width:113px;
  4004. height:30px;
  4005. display:flex;
  4006. transition:none;
  4007. }
  4008. #u23291 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u23291_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:113px;
  4021. height:30px;
  4022. }
  4023. #u23291_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u23292 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:789px;
  4033. top:60px;
  4034. width:113px;
  4035. height:30px;
  4036. display:flex;
  4037. transition:none;
  4038. }
  4039. #u23292 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u23292_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:113px;
  4052. height:30px;
  4053. }
  4054. #u23292_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u23293 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:90px;
  4065. width:101px;
  4066. height:30px;
  4067. display:flex;
  4068. transition:none;
  4069. }
  4070. #u23293 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 2px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u23293_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:101px;
  4083. height:30px;
  4084. }
  4085. #u23293_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. visibility:hidden;
  4090. }
  4091. #u23294 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:101px;
  4095. top:90px;
  4096. width:120px;
  4097. height:30px;
  4098. display:flex;
  4099. transition:none;
  4100. }
  4101. #u23294 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 2px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u23294_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:120px;
  4114. height:30px;
  4115. }
  4116. #u23294_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u23295 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:220px;
  4126. top:90px;
  4127. width:120px;
  4128. height:30px;
  4129. display:flex;
  4130. transition:none;
  4131. }
  4132. #u23295 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 2px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u23295_img {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:120px;
  4145. height:30px;
  4146. }
  4147. #u23295_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u23296 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:340px;
  4157. top:90px;
  4158. width:120px;
  4159. height:30px;
  4160. display:flex;
  4161. transition:none;
  4162. }
  4163. #u23296 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u23296_img {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:120px;
  4176. height:30px;
  4177. }
  4178. #u23296_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u23297 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:460px;
  4188. top:90px;
  4189. width:102px;
  4190. height:30px;
  4191. display:flex;
  4192. transition:none;
  4193. }
  4194. #u23297 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 2px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u23297_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:102px;
  4207. height:30px;
  4208. }
  4209. #u23297_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u23298 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:562px;
  4219. top:90px;
  4220. width:114px;
  4221. height:30px;
  4222. display:flex;
  4223. transition:none;
  4224. }
  4225. #u23298 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 2px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u23298_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:114px;
  4238. height:30px;
  4239. }
  4240. #u23298_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u23299 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:676px;
  4250. top:90px;
  4251. width:113px;
  4252. height:30px;
  4253. display:flex;
  4254. transition:none;
  4255. }
  4256. #u23299 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 2px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u23299_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:113px;
  4269. height:30px;
  4270. }
  4271. #u23299_text {
  4272. border-width:0px;
  4273. word-wrap:break-word;
  4274. text-transform:none;
  4275. visibility:hidden;
  4276. }
  4277. #u23300 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:789px;
  4281. top:90px;
  4282. width:113px;
  4283. height:30px;
  4284. display:flex;
  4285. transition:none;
  4286. }
  4287. #u23300 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u23300_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:113px;
  4300. height:30px;
  4301. }
  4302. #u23300_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u23301 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:120px;
  4313. width:101px;
  4314. height:30px;
  4315. display:flex;
  4316. transition:none;
  4317. }
  4318. #u23301 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:2px 2px 2px 2px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u23301_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:101px;
  4331. height:30px;
  4332. }
  4333. #u23301_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u23302 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:101px;
  4343. top:120px;
  4344. width:120px;
  4345. height:30px;
  4346. display:flex;
  4347. transition:none;
  4348. }
  4349. #u23302 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 2px 2px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u23302_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:120px;
  4362. height:30px;
  4363. }
  4364. #u23302_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u23303 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:220px;
  4374. top:120px;
  4375. width:120px;
  4376. height:30px;
  4377. display:flex;
  4378. transition:none;
  4379. }
  4380. #u23303 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 2px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u23303_img {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:120px;
  4393. height:30px;
  4394. }
  4395. #u23303_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u23304 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:340px;
  4405. top:120px;
  4406. width:120px;
  4407. height:30px;
  4408. display:flex;
  4409. transition:none;
  4410. }
  4411. #u23304 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u23304_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:120px;
  4424. height:30px;
  4425. }
  4426. #u23304_text {
  4427. border-width:0px;
  4428. word-wrap:break-word;
  4429. text-transform:none;
  4430. visibility:hidden;
  4431. }
  4432. #u23305 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:460px;
  4436. top:120px;
  4437. width:102px;
  4438. height:30px;
  4439. display:flex;
  4440. transition:none;
  4441. }
  4442. #u23305 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 2px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u23305_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:102px;
  4455. height:30px;
  4456. }
  4457. #u23305_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u23306 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:562px;
  4467. top:120px;
  4468. width:114px;
  4469. height:30px;
  4470. display:flex;
  4471. transition:none;
  4472. }
  4473. #u23306 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u23306_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:114px;
  4486. height:30px;
  4487. }
  4488. #u23306_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. visibility:hidden;
  4493. }
  4494. #u23307 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:676px;
  4498. top:120px;
  4499. width:113px;
  4500. height:30px;
  4501. display:flex;
  4502. transition:none;
  4503. }
  4504. #u23307 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u23307_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:113px;
  4517. height:30px;
  4518. }
  4519. #u23307_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u23308 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:789px;
  4529. top:120px;
  4530. width:113px;
  4531. height:30px;
  4532. display:flex;
  4533. transition:none;
  4534. }
  4535. #u23308 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u23308_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:113px;
  4548. height:30px;
  4549. }
  4550. #u23308_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u23309 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:150px;
  4561. width:101px;
  4562. height:30px;
  4563. display:flex;
  4564. transition:none;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. }
  4569. #u23309 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 2px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u23309_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:101px;
  4582. height:30px;
  4583. }
  4584. #u23309_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. }
  4589. #u23310 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:101px;
  4593. top:150px;
  4594. width:120px;
  4595. height:30px;
  4596. display:flex;
  4597. transition:none;
  4598. }
  4599. #u23310 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 2px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u23310_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:120px;
  4612. height:30px;
  4613. }
  4614. #u23310_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u23311 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:220px;
  4624. top:150px;
  4625. width:120px;
  4626. height:30px;
  4627. display:flex;
  4628. transition:none;
  4629. }
  4630. #u23311 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u23311_img {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:120px;
  4643. height:30px;
  4644. }
  4645. #u23311_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u23312 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:340px;
  4655. top:150px;
  4656. width:120px;
  4657. height:30px;
  4658. display:flex;
  4659. transition:none;
  4660. }
  4661. #u23312 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 2px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u23312_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:120px;
  4674. height:30px;
  4675. }
  4676. #u23312_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u23313 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:460px;
  4686. top:150px;
  4687. width:102px;
  4688. height:30px;
  4689. display:flex;
  4690. transition:none;
  4691. }
  4692. #u23313 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u23313_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:102px;
  4705. height:30px;
  4706. }
  4707. #u23313_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u23314 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:562px;
  4717. top:150px;
  4718. width:114px;
  4719. height:30px;
  4720. display:flex;
  4721. transition:none;
  4722. }
  4723. #u23314 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 2px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u23314_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:114px;
  4736. height:30px;
  4737. }
  4738. #u23314_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u23315 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:676px;
  4748. top:150px;
  4749. width:113px;
  4750. height:30px;
  4751. display:flex;
  4752. transition:none;
  4753. }
  4754. #u23315 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 2px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u23315_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:113px;
  4767. height:30px;
  4768. }
  4769. #u23315_text {
  4770. border-width:0px;
  4771. word-wrap:break-word;
  4772. text-transform:none;
  4773. visibility:hidden;
  4774. }
  4775. #u23316 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:789px;
  4779. top:150px;
  4780. width:113px;
  4781. height:30px;
  4782. display:flex;
  4783. transition:none;
  4784. }
  4785. #u23316 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 2px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u23316_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:113px;
  4798. height:30px;
  4799. }
  4800. #u23316_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u23317_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:67px;
  4812. height:30px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 0);
  4815. border-top:0px;
  4816. border-right:0px;
  4817. border-bottom:0px;
  4818. border-radius:0px;
  4819. border-top-left-radius:0px;
  4820. border-bottom-left-radius:0px;
  4821. filter:drop-shadow(none);
  4822. transition:none;
  4823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4824. font-weight:500;
  4825. font-style:normal;
  4826. font-size:14px;
  4827. }
  4828. #u23317 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:1207px;
  4832. top:136px;
  4833. width:67px;
  4834. height:30px;
  4835. display:flex;
  4836. transition:none;
  4837. transform-origin:50% 50%;
  4838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4839. font-weight:500;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. }
  4843. #u23317 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:5px 10px 5px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u23317_text {
  4851. border-width:0px;
  4852. white-space:nowrap;
  4853. text-transform:none;
  4854. }
  4855. #u23318_div {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:43px;
  4861. height:30px;
  4862. background:inherit;
  4863. background-color:rgba(255, 255, 255, 0);
  4864. border-top:0px;
  4865. border-right:0px;
  4866. border-bottom:0px;
  4867. border-radius:0px;
  4868. border-top-left-radius:0px;
  4869. border-bottom-left-radius:0px;
  4870. filter:drop-shadow(none);
  4871. transition:none;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:14px;
  4876. color:#7F7F7F;
  4877. }
  4878. #u23318 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:1227px;
  4882. top:179px;
  4883. width:43px;
  4884. height:30px;
  4885. display:flex;
  4886. transition:none;
  4887. transform-origin:50% 50%;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:14px;
  4892. color:#7F7F7F;
  4893. }
  4894. #u23318 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:5px 0px 5px 0px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u23318_text {
  4902. border-width:0px;
  4903. white-space:nowrap;
  4904. text-transform:none;
  4905. }
  4906. #u23319_div {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:113px;
  4912. height:30px;
  4913. background:inherit;
  4914. background-color:rgba(255, 255, 255, 0);
  4915. border-top:0px;
  4916. border-right:0px;
  4917. border-bottom:0px;
  4918. border-radius:0px;
  4919. border-top-left-radius:0px;
  4920. border-bottom-left-radius:0px;
  4921. filter:drop-shadow(none);
  4922. transition:none;
  4923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:14px;
  4927. }
  4928. #u23319 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:1303px;
  4932. top:179px;
  4933. width:113px;
  4934. height:30px;
  4935. display:flex;
  4936. transition:none;
  4937. transform-origin:50% 50%;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. }
  4943. #u23319 .text {
  4944. position:absolute;
  4945. align-self:center;
  4946. padding:5px 0px 5px 0px;
  4947. box-sizing:border-box;
  4948. width:100%;
  4949. }
  4950. #u23319_text {
  4951. border-width:0px;
  4952. white-space:nowrap;
  4953. text-transform:none;
  4954. }
  4955. #u23320_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:43px;
  4961. height:30px;
  4962. background:inherit;
  4963. background-color:rgba(255, 255, 255, 0);
  4964. border-top:0px;
  4965. border-right:0px;
  4966. border-bottom:0px;
  4967. border-radius:0px;
  4968. border-top-left-radius:0px;
  4969. border-bottom-left-radius:0px;
  4970. filter:drop-shadow(none);
  4971. transition:none;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:14px;
  4976. color:#7F7F7F;
  4977. }
  4978. #u23320 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:1593px;
  4982. top:179px;
  4983. width:43px;
  4984. height:30px;
  4985. display:flex;
  4986. transition:none;
  4987. transform-origin:50% 50%;
  4988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:14px;
  4992. color:#7F7F7F;
  4993. }
  4994. #u23320 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:5px 0px 5px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u23320_text {
  5002. border-width:0px;
  5003. white-space:nowrap;
  5004. text-transform:none;
  5005. }
  5006. #u23321_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:86px;
  5012. height:30px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 0);
  5015. border-top:0px;
  5016. border-right:0px;
  5017. border-bottom:0px;
  5018. border-radius:0px;
  5019. border-top-left-radius:0px;
  5020. border-bottom-left-radius:0px;
  5021. filter:drop-shadow(none);
  5022. transition:none;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:14px;
  5027. }
  5028. #u23321 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:1669px;
  5032. top:179px;
  5033. width:86px;
  5034. height:30px;
  5035. display:flex;
  5036. transition:none;
  5037. transform-origin:50% 50%;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:14px;
  5042. }
  5043. #u23321 .text {
  5044. position:absolute;
  5045. align-self:center;
  5046. padding:5px 0px 5px 0px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u23321_text {
  5051. border-width:0px;
  5052. white-space:nowrap;
  5053. text-transform:none;
  5054. }
  5055. #u23322_div {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:71px;
  5061. height:30px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 0);
  5064. border-top:0px;
  5065. border-right:0px;
  5066. border-bottom:0px;
  5067. border-radius:0px;
  5068. border-top-left-radius:0px;
  5069. border-bottom-left-radius:0px;
  5070. filter:drop-shadow(none);
  5071. transition:none;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:14px;
  5076. color:#7F7F7F;
  5077. }
  5078. #u23322 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:1227px;
  5082. top:219px;
  5083. width:71px;
  5084. height:30px;
  5085. display:flex;
  5086. transition:none;
  5087. transform-origin:50% 50%;
  5088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:14px;
  5092. color:#7F7F7F;
  5093. }
  5094. #u23322 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:5px 0px 5px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u23322_text {
  5102. border-width:0px;
  5103. white-space:nowrap;
  5104. text-transform:none;
  5105. }
  5106. #u23323_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:89px;
  5112. height:30px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 0);
  5115. border-top:0px;
  5116. border-right:0px;
  5117. border-bottom:0px;
  5118. border-radius:0px;
  5119. border-top-left-radius:0px;
  5120. border-bottom-left-radius:0px;
  5121. filter:drop-shadow(none);
  5122. transition:none;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:14px;
  5127. }
  5128. #u23323 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1303px;
  5132. top:219px;
  5133. width:89px;
  5134. height:30px;
  5135. display:flex;
  5136. transition:none;
  5137. transform-origin:50% 50%;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. }
  5143. #u23323 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:5px 0px 5px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u23323_text {
  5151. border-width:0px;
  5152. white-space:nowrap;
  5153. text-transform:none;
  5154. }
  5155. #u23324_div {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:71px;
  5161. height:30px;
  5162. background:inherit;
  5163. background-color:rgba(255, 255, 255, 0);
  5164. border-top:0px;
  5165. border-right:0px;
  5166. border-bottom:0px;
  5167. border-radius:0px;
  5168. border-top-left-radius:0px;
  5169. border-bottom-left-radius:0px;
  5170. filter:drop-shadow(none);
  5171. transition:none;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. color:#7F7F7F;
  5177. }
  5178. #u23324 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:1593px;
  5182. top:219px;
  5183. width:71px;
  5184. height:30px;
  5185. display:flex;
  5186. transition:none;
  5187. transform-origin:50% 50%;
  5188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#7F7F7F;
  5193. }
  5194. #u23324 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:5px 0px 5px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u23324_text {
  5202. border-width:0px;
  5203. white-space:nowrap;
  5204. text-transform:none;
  5205. }
  5206. #u23325_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:89px;
  5212. height:30px;
  5213. background:inherit;
  5214. background-color:rgba(255, 255, 255, 0);
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-bottom:0px;
  5218. border-radius:0px;
  5219. border-top-left-radius:0px;
  5220. border-bottom-left-radius:0px;
  5221. filter:drop-shadow(none);
  5222. transition:none;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:14px;
  5227. }
  5228. #u23325 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:1669px;
  5232. top:219px;
  5233. width:89px;
  5234. height:30px;
  5235. display:flex;
  5236. transition:none;
  5237. transform-origin:50% 50%;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:14px;
  5242. }
  5243. #u23325 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:5px 0px 5px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u23325_text {
  5251. border-width:0px;
  5252. white-space:nowrap;
  5253. text-transform:none;
  5254. }
  5255. #u23326_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:71px;
  5261. height:30px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 0);
  5264. border-top:0px;
  5265. border-right:0px;
  5266. border-bottom:0px;
  5267. border-radius:0px;
  5268. border-top-left-radius:0px;
  5269. border-bottom-left-radius:0px;
  5270. filter:drop-shadow(none);
  5271. transition:none;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. color:#7F7F7F;
  5277. }
  5278. #u23326 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:1227px;
  5282. top:259px;
  5283. width:71px;
  5284. height:30px;
  5285. display:flex;
  5286. transition:none;
  5287. transform-origin:50% 50%;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:14px;
  5292. color:#7F7F7F;
  5293. }
  5294. #u23326 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:5px 0px 5px 0px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u23326_text {
  5302. border-width:0px;
  5303. white-space:nowrap;
  5304. text-transform:none;
  5305. }
  5306. #u23327_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:89px;
  5312. height:30px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border-top:0px;
  5316. border-right:0px;
  5317. border-bottom:0px;
  5318. border-radius:0px;
  5319. border-top-left-radius:0px;
  5320. border-bottom-left-radius:0px;
  5321. filter:drop-shadow(none);
  5322. transition:none;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:14px;
  5327. }
  5328. #u23327 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:1303px;
  5332. top:259px;
  5333. width:89px;
  5334. height:30px;
  5335. display:flex;
  5336. transition:none;
  5337. transform-origin:50% 50%;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. }
  5343. #u23327 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:5px 0px 5px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u23327_text {
  5351. border-width:0px;
  5352. white-space:nowrap;
  5353. text-transform:none;
  5354. }
  5355. #u23328_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:71px;
  5361. height:30px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border-top:0px;
  5365. border-right:0px;
  5366. border-bottom:0px;
  5367. border-radius:0px;
  5368. border-top-left-radius:0px;
  5369. border-bottom-left-radius:0px;
  5370. filter:drop-shadow(none);
  5371. transition:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:14px;
  5376. color:#7F7F7F;
  5377. }
  5378. #u23328 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:1593px;
  5382. top:259px;
  5383. width:71px;
  5384. height:30px;
  5385. display:flex;
  5386. transition:none;
  5387. transform-origin:50% 50%;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. color:#7F7F7F;
  5393. }
  5394. #u23328 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:5px 0px 5px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u23328_text {
  5402. border-width:0px;
  5403. white-space:nowrap;
  5404. text-transform:none;
  5405. }
  5406. #u23329_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:29px;
  5412. height:30px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border-top:0px;
  5416. border-right:0px;
  5417. border-bottom:0px;
  5418. border-radius:0px;
  5419. border-top-left-radius:0px;
  5420. border-bottom-left-radius:0px;
  5421. filter:drop-shadow(none);
  5422. transition:none;
  5423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. font-size:14px;
  5427. }
  5428. #u23329 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:1669px;
  5432. top:259px;
  5433. width:29px;
  5434. height:30px;
  5435. display:flex;
  5436. transition:none;
  5437. transform-origin:50% 50%;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:14px;
  5442. }
  5443. #u23329 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:5px 0px 5px 0px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u23329_text {
  5451. border-width:0px;
  5452. white-space:nowrap;
  5453. text-transform:none;
  5454. }
  5455. #u23330_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:71px;
  5461. height:30px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 255, 0);
  5464. border-top:0px;
  5465. border-right:0px;
  5466. border-bottom:0px;
  5467. border-radius:0px;
  5468. border-top-left-radius:0px;
  5469. border-bottom-left-radius:0px;
  5470. filter:drop-shadow(none);
  5471. transition:none;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:14px;
  5476. color:#7F7F7F;
  5477. }
  5478. #u23330 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1227px;
  5482. top:299px;
  5483. width:71px;
  5484. height:30px;
  5485. display:flex;
  5486. transition:none;
  5487. transform-origin:50% 50%;
  5488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:14px;
  5492. color:#7F7F7F;
  5493. }
  5494. #u23330 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:5px 0px 5px 0px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u23330_text {
  5502. border-width:0px;
  5503. white-space:nowrap;
  5504. text-transform:none;
  5505. }
  5506. #u23331_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:81px;
  5512. height:30px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 0);
  5515. border-top:0px;
  5516. border-right:0px;
  5517. border-bottom:0px;
  5518. border-radius:0px;
  5519. border-top-left-radius:0px;
  5520. border-bottom-left-radius:0px;
  5521. filter:drop-shadow(none);
  5522. transition:none;
  5523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5524. font-weight:400;
  5525. font-style:normal;
  5526. font-size:14px;
  5527. }
  5528. #u23331 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:1303px;
  5532. top:299px;
  5533. width:81px;
  5534. height:30px;
  5535. display:flex;
  5536. transition:none;
  5537. transform-origin:50% 50%;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:14px;
  5542. }
  5543. #u23331 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:5px 0px 5px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u23331_text {
  5551. border-width:0px;
  5552. white-space:nowrap;
  5553. text-transform:none;
  5554. }
  5555. #u23332_div {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:85px;
  5561. height:30px;
  5562. background:inherit;
  5563. background-color:rgba(255, 255, 255, 0);
  5564. border-top:0px;
  5565. border-right:0px;
  5566. border-bottom:0px;
  5567. border-radius:0px;
  5568. border-top-left-radius:0px;
  5569. border-bottom-left-radius:0px;
  5570. filter:drop-shadow(none);
  5571. transition:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#7F7F7F;
  5577. }
  5578. #u23332 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:1593px;
  5582. top:299px;
  5583. width:85px;
  5584. height:30px;
  5585. display:flex;
  5586. transition:none;
  5587. transform-origin:50% 50%;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:14px;
  5592. color:#7F7F7F;
  5593. }
  5594. #u23332 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:5px 0px 5px 0px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u23332_text {
  5602. border-width:0px;
  5603. white-space:nowrap;
  5604. text-transform:none;
  5605. }
  5606. #u23333_div {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:82px;
  5612. height:30px;
  5613. background:inherit;
  5614. background-color:rgba(255, 255, 255, 0);
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-bottom:0px;
  5618. border-radius:0px;
  5619. border-top-left-radius:0px;
  5620. border-bottom-left-radius:0px;
  5621. filter:drop-shadow(none);
  5622. transition:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. }
  5628. #u23333 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:1669px;
  5632. top:299px;
  5633. width:82px;
  5634. height:30px;
  5635. display:flex;
  5636. transition:none;
  5637. transform-origin:50% 50%;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:14px;
  5642. }
  5643. #u23333 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:5px 0px 5px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u23333_text {
  5651. border-width:0px;
  5652. white-space:nowrap;
  5653. text-transform:none;
  5654. }
  5655. #u23334_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:71px;
  5661. height:30px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 0);
  5664. border-top:0px;
  5665. border-right:0px;
  5666. border-bottom:0px;
  5667. border-radius:0px;
  5668. border-top-left-radius:0px;
  5669. border-bottom-left-radius:0px;
  5670. filter:drop-shadow(none);
  5671. transition:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:14px;
  5676. color:#7F7F7F;
  5677. }
  5678. #u23334 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:1227px;
  5682. top:339px;
  5683. width:71px;
  5684. height:30px;
  5685. display:flex;
  5686. transition:none;
  5687. transform-origin:50% 50%;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. color:#7F7F7F;
  5693. }
  5694. #u23334 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:5px 0px 5px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u23334_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u23335_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:589px;
  5712. height:30px;
  5713. background:inherit;
  5714. background-color:rgba(255, 255, 255, 0);
  5715. border-top:0px;
  5716. border-right:0px;
  5717. border-bottom:0px;
  5718. border-radius:0px;
  5719. border-top-left-radius:0px;
  5720. border-bottom-left-radius:0px;
  5721. filter:drop-shadow(none);
  5722. transition:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. }
  5728. #u23335 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:1303px;
  5732. top:339px;
  5733. width:589px;
  5734. height:30px;
  5735. display:flex;
  5736. transition:none;
  5737. transform-origin:50% 50%;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. }
  5743. #u23335 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:5px 0px 5px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u23335_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u23336_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:95px;
  5761. height:30px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border-top:0px;
  5765. border-right:0px;
  5766. border-bottom:0px;
  5767. border-radius:0px;
  5768. border-top-left-radius:0px;
  5769. border-bottom-left-radius:0px;
  5770. filter:drop-shadow(none);
  5771. transition:none;
  5772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5773. font-weight:500;
  5774. font-style:normal;
  5775. font-size:14px;
  5776. }
  5777. #u23336 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:1207px;
  5781. top:389px;
  5782. width:95px;
  5783. height:30px;
  5784. display:flex;
  5785. transition:none;
  5786. transform-origin:50% 50%;
  5787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5788. font-weight:500;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. }
  5792. #u23336 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:5px 10px 5px 0px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u23336_text {
  5800. border-width:0px;
  5801. white-space:nowrap;
  5802. text-transform:none;
  5803. }
  5804. #u23337_div {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:119px;
  5810. height:35px;
  5811. background:inherit;
  5812. background-color:rgba(255, 255, 255, 0);
  5813. border-top:0px;
  5814. border-right:0px;
  5815. border-bottom:0px;
  5816. border-radius:0px;
  5817. border-top-left-radius:0px;
  5818. border-bottom-left-radius:0px;
  5819. filter:drop-shadow(none);
  5820. transition:none;
  5821. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5822. font-weight:500;
  5823. font-style:normal;
  5824. font-size:18px;
  5825. }
  5826. #u23337 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:1181px;
  5830. top:77px;
  5831. width:119px;
  5832. height:35px;
  5833. display:flex;
  5834. transition:none;
  5835. transform-origin:50% 50%;
  5836. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5837. font-weight:500;
  5838. font-style:normal;
  5839. font-size:18px;
  5840. }
  5841. #u23337 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:5px 10px 5px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u23337_text {
  5849. border-width:0px;
  5850. white-space:nowrap;
  5851. text-transform:none;
  5852. }
  5853. #u23338 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:2009px;
  5857. top:130px;
  5858. width:90px;
  5859. height:90px;
  5860. display:flex;
  5861. -webkit-transform:rotate(330deg);
  5862. -moz-transform:rotate(330deg);
  5863. -ms-transform:rotate(330deg);
  5864. transform:rotate(330deg);
  5865. transition:none;
  5866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:18px;
  5870. }
  5871. #u23338 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:2px 2px 2px 2px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u23338_img {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:90px;
  5884. height:90px;
  5885. }
  5886. #u23338_text {
  5887. border-width:0px;
  5888. word-wrap:break-word;
  5889. text-transform:none;
  5890. }
  5891. #u23339_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:67px;
  5897. height:30px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border-top:0px;
  5901. border-right:0px;
  5902. border-bottom:0px;
  5903. border-radius:0px;
  5904. border-top-left-radius:0px;
  5905. border-bottom-left-radius:0px;
  5906. filter:drop-shadow(none);
  5907. transition:none;
  5908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5909. font-weight:500;
  5910. font-style:normal;
  5911. font-size:14px;
  5912. }
  5913. #u23339 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:1207px;
  5917. top:641px;
  5918. width:67px;
  5919. height:30px;
  5920. display:flex;
  5921. transition:none;
  5922. transform-origin:50% 50%;
  5923. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5924. font-weight:500;
  5925. font-style:normal;
  5926. font-size:14px;
  5927. }
  5928. #u23339 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:5px 10px 5px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u23339_text {
  5936. border-width:0px;
  5937. white-space:nowrap;
  5938. text-transform:none;
  5939. }
  5940. #u23340_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:81px;
  5946. height:30px;
  5947. background:inherit;
  5948. background-color:rgba(255, 255, 255, 0);
  5949. border-top:0px;
  5950. border-right:0px;
  5951. border-bottom:0px;
  5952. border-radius:0px;
  5953. border-top-left-radius:0px;
  5954. border-bottom-left-radius:0px;
  5955. filter:drop-shadow(none);
  5956. transition:none;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. color:#7F7F7F;
  5962. text-align:right;
  5963. }
  5964. #u23340 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1227px;
  5968. top:686px;
  5969. width:81px;
  5970. height:30px;
  5971. display:flex;
  5972. transition:none;
  5973. transform-origin:50% 50%;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:14px;
  5978. color:#7F7F7F;
  5979. text-align:right;
  5980. }
  5981. #u23340 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:5px 10px 5px 0px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u23340_text {
  5989. border-width:0px;
  5990. white-space:nowrap;
  5991. text-transform:none;
  5992. }
  5993. #u23341_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:81px;
  5999. height:30px;
  6000. background:inherit;
  6001. background-color:rgba(255, 255, 255, 0);
  6002. border-top:0px;
  6003. border-right:0px;
  6004. border-bottom:0px;
  6005. border-radius:0px;
  6006. border-top-left-radius:0px;
  6007. border-bottom-left-radius:0px;
  6008. filter:drop-shadow(none);
  6009. transition:none;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. }
  6015. #u23341 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:1308px;
  6019. top:686px;
  6020. width:81px;
  6021. height:30px;
  6022. display:flex;
  6023. transition:none;
  6024. transform-origin:50% 50%;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:14px;
  6029. }
  6030. #u23341 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:5px 10px 5px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u23341_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u23342_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:160px;
  6048. height:30px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border-top:0px;
  6052. border-right:0px;
  6053. border-bottom:0px;
  6054. border-radius:0px;
  6055. border-top-left-radius:0px;
  6056. border-bottom-left-radius:0px;
  6057. filter:drop-shadow(none);
  6058. transition:none;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:14px;
  6063. color:#7F7F7F;
  6064. text-align:right;
  6065. }
  6066. #u23342 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:1605px;
  6070. top:807px;
  6071. width:160px;
  6072. height:30px;
  6073. display:flex;
  6074. transition:none;
  6075. transform-origin:50% 50%;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:14px;
  6080. color:#7F7F7F;
  6081. text-align:right;
  6082. }
  6083. #u23342 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:5px 10px 5px 0px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u23342_text {
  6091. border-width:0px;
  6092. white-space:nowrap;
  6093. text-transform:none;
  6094. }
  6095. #u23343_div {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:137px;
  6101. height:30px;
  6102. background:inherit;
  6103. background-color:rgba(255, 255, 255, 0);
  6104. border-top:0px;
  6105. border-right:0px;
  6106. border-bottom:0px;
  6107. border-radius:0px;
  6108. border-top-left-radius:0px;
  6109. border-bottom-left-radius:0px;
  6110. filter:drop-shadow(none);
  6111. transition:none;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:14px;
  6116. }
  6117. #u23343 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1765px;
  6121. top:807px;
  6122. width:137px;
  6123. height:30px;
  6124. display:flex;
  6125. transition:none;
  6126. transform-origin:50% 50%;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. }
  6132. #u23343 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:5px 10px 5px 0px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u23343_text {
  6140. border-width:0px;
  6141. white-space:nowrap;
  6142. text-transform:none;
  6143. }
  6144. #u23344_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:67px;
  6150. height:30px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 0);
  6153. border-top:0px;
  6154. border-right:0px;
  6155. border-bottom:0px;
  6156. border-radius:0px;
  6157. border-top-left-radius:0px;
  6158. border-bottom-left-radius:0px;
  6159. filter:drop-shadow(none);
  6160. transition:none;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:14px;
  6165. color:#7F7F7F;
  6166. text-align:right;
  6167. }
  6168. #u23344 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:1227px;
  6172. top:726px;
  6173. width:67px;
  6174. height:30px;
  6175. display:flex;
  6176. transition:none;
  6177. transform-origin:50% 50%;
  6178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. color:#7F7F7F;
  6183. text-align:right;
  6184. }
  6185. #u23344 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:5px 10px 5px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u23344_text {
  6193. border-width:0px;
  6194. white-space:nowrap;
  6195. text-transform:none;
  6196. }
  6197. #u23345_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:33px;
  6203. height:30px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border-top:0px;
  6207. border-right:0px;
  6208. border-bottom:0px;
  6209. border-radius:0px;
  6210. border-top-left-radius:0px;
  6211. border-bottom-left-radius:0px;
  6212. filter:drop-shadow(none);
  6213. transition:none;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. }
  6219. #u23345 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:1308px;
  6223. top:726px;
  6224. width:33px;
  6225. height:30px;
  6226. display:flex;
  6227. transition:none;
  6228. transform-origin:50% 50%;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:14px;
  6233. }
  6234. #u23345 .text {
  6235. position:absolute;
  6236. align-self:center;
  6237. padding:5px 10px 5px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u23345_text {
  6242. border-width:0px;
  6243. white-space:nowrap;
  6244. text-transform:none;
  6245. }
  6246. #u23346_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:81px;
  6252. height:30px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border-top:0px;
  6256. border-right:0px;
  6257. border-bottom:0px;
  6258. border-radius:0px;
  6259. border-top-left-radius:0px;
  6260. border-bottom-left-radius:0px;
  6261. filter:drop-shadow(none);
  6262. transition:none;
  6263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6264. font-weight:400;
  6265. font-style:normal;
  6266. font-size:14px;
  6267. color:#7F7F7F;
  6268. text-align:right;
  6269. }
  6270. #u23346 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:1227px;
  6274. top:967px;
  6275. width:81px;
  6276. height:30px;
  6277. display:flex;
  6278. transition:none;
  6279. transform-origin:50% 50%;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:14px;
  6284. color:#7F7F7F;
  6285. text-align:right;
  6286. }
  6287. #u23346 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:5px 10px 5px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u23346_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u23347_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:565px;
  6305. height:50px;
  6306. background:inherit;
  6307. background-color:rgba(255, 255, 255, 0);
  6308. border-top:0px;
  6309. border-right:0px;
  6310. border-bottom:0px;
  6311. border-radius:0px;
  6312. border-top-left-radius:0px;
  6313. border-bottom-left-radius:0px;
  6314. filter:drop-shadow(none);
  6315. transition:none;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:14px;
  6320. }
  6321. #u23347 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:1308px;
  6325. top:967px;
  6326. width:565px;
  6327. height:50px;
  6328. display:flex;
  6329. transition:none;
  6330. transform-origin:50% 50%;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. }
  6336. #u23347 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:5px 10px 5px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u23347_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. }
  6348. #u23348_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:81px;
  6354. height:30px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. border-top:0px;
  6358. border-right:0px;
  6359. border-bottom:0px;
  6360. border-radius:0px;
  6361. border-top-left-radius:0px;
  6362. border-bottom-left-radius:0px;
  6363. filter:drop-shadow(none);
  6364. transition:none;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:14px;
  6369. color:#7F7F7F;
  6370. text-align:right;
  6371. }
  6372. #u23348 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:1685px;
  6376. top:686px;
  6377. width:81px;
  6378. height:30px;
  6379. display:flex;
  6380. transition:none;
  6381. transform-origin:50% 50%;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#7F7F7F;
  6387. text-align:right;
  6388. }
  6389. #u23348 .text {
  6390. position:absolute;
  6391. align-self:center;
  6392. padding:5px 10px 5px 0px;
  6393. box-sizing:border-box;
  6394. width:100%;
  6395. }
  6396. #u23348_text {
  6397. border-width:0px;
  6398. white-space:nowrap;
  6399. text-transform:none;
  6400. }
  6401. #u23349_div {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:131px;
  6407. height:30px;
  6408. background:inherit;
  6409. background-color:rgba(255, 255, 255, 0);
  6410. border-top:0px;
  6411. border-right:0px;
  6412. border-bottom:0px;
  6413. border-radius:0px;
  6414. border-top-left-radius:0px;
  6415. border-bottom-left-radius:0px;
  6416. filter:drop-shadow(none);
  6417. transition:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. }
  6423. #u23349 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:1766px;
  6427. top:686px;
  6428. width:131px;
  6429. height:30px;
  6430. display:flex;
  6431. transition:none;
  6432. transform-origin:50% 50%;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. }
  6438. #u23349 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:5px 10px 5px 0px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u23349_text {
  6446. border-width:0px;
  6447. white-space:nowrap;
  6448. text-transform:none;
  6449. }
  6450. #u23350_div {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:67px;
  6456. height:30px;
  6457. background:inherit;
  6458. background-color:rgba(255, 255, 255, 0);
  6459. border-top:0px;
  6460. border-right:0px;
  6461. border-bottom:0px;
  6462. border-radius:0px;
  6463. border-top-left-radius:0px;
  6464. border-bottom-left-radius:0px;
  6465. filter:drop-shadow(none);
  6466. transition:none;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:14px;
  6471. color:#7F7F7F;
  6472. text-align:right;
  6473. }
  6474. #u23350 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:1227px;
  6478. top:768px;
  6479. width:67px;
  6480. height:30px;
  6481. display:flex;
  6482. transition:none;
  6483. transform-origin:50% 50%;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:14px;
  6488. color:#7F7F7F;
  6489. text-align:right;
  6490. }
  6491. #u23350 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:5px 10px 5px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u23350_text {
  6499. border-width:0px;
  6500. white-space:nowrap;
  6501. text-transform:none;
  6502. }
  6503. #u23351_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:179px;
  6509. height:30px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 0);
  6512. border-top:0px;
  6513. border-right:0px;
  6514. border-bottom:0px;
  6515. border-radius:0px;
  6516. border-top-left-radius:0px;
  6517. border-bottom-left-radius:0px;
  6518. filter:drop-shadow(none);
  6519. transition:none;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:14px;
  6524. }
  6525. #u23351 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:1307px;
  6529. top:768px;
  6530. width:179px;
  6531. height:30px;
  6532. display:flex;
  6533. transition:none;
  6534. transform-origin:50% 50%;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. }
  6540. #u23351 .text {
  6541. position:absolute;
  6542. align-self:center;
  6543. padding:5px 10px 5px 0px;
  6544. box-sizing:border-box;
  6545. width:100%;
  6546. }
  6547. #u23351_text {
  6548. border-width:0px;
  6549. white-space:nowrap;
  6550. text-transform:none;
  6551. }
  6552. #u23352_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:81px;
  6558. height:30px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 0);
  6561. border-top:0px;
  6562. border-right:0px;
  6563. border-bottom:0px;
  6564. border-radius:0px;
  6565. border-top-left-radius:0px;
  6566. border-bottom-left-radius:0px;
  6567. filter:drop-shadow(none);
  6568. transition:none;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:14px;
  6573. color:#7F7F7F;
  6574. text-align:right;
  6575. }
  6576. #u23352 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:1685px;
  6580. top:766px;
  6581. width:81px;
  6582. height:30px;
  6583. display:flex;
  6584. transition:none;
  6585. transform-origin:50% 50%;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:#7F7F7F;
  6591. text-align:right;
  6592. }
  6593. #u23352 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:5px 10px 5px 0px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u23352_text {
  6601. border-width:0px;
  6602. white-space:nowrap;
  6603. text-transform:none;
  6604. }
  6605. #u23353_div {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:109px;
  6611. height:30px;
  6612. background:inherit;
  6613. background-color:rgba(255, 255, 255, 0);
  6614. border-top:0px;
  6615. border-right:0px;
  6616. border-bottom:0px;
  6617. border-radius:0px;
  6618. border-top-left-radius:0px;
  6619. border-bottom-left-radius:0px;
  6620. filter:drop-shadow(none);
  6621. transition:none;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:14px;
  6626. }
  6627. #u23353 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:1766px;
  6631. top:766px;
  6632. width:109px;
  6633. height:30px;
  6634. display:flex;
  6635. transition:none;
  6636. transform-origin:50% 50%;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:14px;
  6641. }
  6642. #u23353 .text {
  6643. position:absolute;
  6644. align-self:center;
  6645. padding:5px 10px 5px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u23353_text {
  6650. border-width:0px;
  6651. white-space:nowrap;
  6652. text-transform:none;
  6653. }
  6654. #u23354_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:81px;
  6660. height:30px;
  6661. background:inherit;
  6662. background-color:rgba(255, 255, 255, 0);
  6663. border-top:0px;
  6664. border-right:0px;
  6665. border-bottom:0px;
  6666. border-radius:0px;
  6667. border-top-left-radius:0px;
  6668. border-bottom-left-radius:0px;
  6669. filter:drop-shadow(none);
  6670. transition:none;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:14px;
  6675. color:#7F7F7F;
  6676. text-align:right;
  6677. }
  6678. #u23354 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:1227px;
  6682. top:807px;
  6683. width:81px;
  6684. height:30px;
  6685. display:flex;
  6686. transition:none;
  6687. transform-origin:50% 50%;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. color:#7F7F7F;
  6693. text-align:right;
  6694. }
  6695. #u23354 .text {
  6696. position:absolute;
  6697. align-self:center;
  6698. padding:5px 10px 5px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u23354_text {
  6703. border-width:0px;
  6704. white-space:nowrap;
  6705. text-transform:none;
  6706. }
  6707. #u23355_div {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:71px;
  6713. height:30px;
  6714. background:inherit;
  6715. background-color:rgba(255, 255, 255, 0);
  6716. border-top:0px;
  6717. border-right:0px;
  6718. border-bottom:0px;
  6719. border-radius:0px;
  6720. border-top-left-radius:0px;
  6721. border-bottom-left-radius:0px;
  6722. filter:drop-shadow(none);
  6723. transition:none;
  6724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:14px;
  6728. }
  6729. #u23355 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:1308px;
  6733. top:807px;
  6734. width:71px;
  6735. height:30px;
  6736. display:flex;
  6737. transition:none;
  6738. transform-origin:50% 50%;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:14px;
  6743. }
  6744. #u23355 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:5px 10px 5px 0px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u23355_text {
  6752. border-width:0px;
  6753. white-space:nowrap;
  6754. text-transform:none;
  6755. }
  6756. #u23356_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:81px;
  6762. height:30px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 0);
  6765. border-top:0px;
  6766. border-right:0px;
  6767. border-bottom:0px;
  6768. border-radius:0px;
  6769. border-top-left-radius:0px;
  6770. border-bottom-left-radius:0px;
  6771. filter:drop-shadow(none);
  6772. transition:none;
  6773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:14px;
  6777. color:#7F7F7F;
  6778. text-align:right;
  6779. }
  6780. #u23356 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:1227px;
  6784. top:847px;
  6785. width:81px;
  6786. height:30px;
  6787. display:flex;
  6788. transition:none;
  6789. transform-origin:50% 50%;
  6790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:14px;
  6794. color:#7F7F7F;
  6795. text-align:right;
  6796. }
  6797. #u23356 .text {
  6798. position:absolute;
  6799. align-self:center;
  6800. padding:5px 10px 5px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u23356_text {
  6805. border-width:0px;
  6806. white-space:nowrap;
  6807. text-transform:none;
  6808. }
  6809. #u23357 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:1308px;
  6813. top:853px;
  6814. width:143px;
  6815. height:101px;
  6816. display:flex;
  6817. transition:none;
  6818. }
  6819. #u23357 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u23357_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:143px;
  6832. height:101px;
  6833. }
  6834. #u23357_text {
  6835. border-width:0px;
  6836. word-wrap:break-word;
  6837. text-transform:none;
  6838. visibility:hidden;
  6839. }
  6840. #u23358_div {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:81px;
  6846. height:30px;
  6847. background:inherit;
  6848. background-color:rgba(255, 255, 255, 0);
  6849. border-top:0px;
  6850. border-right:0px;
  6851. border-bottom:0px;
  6852. border-radius:0px;
  6853. border-top-left-radius:0px;
  6854. border-bottom-left-radius:0px;
  6855. filter:drop-shadow(none);
  6856. transition:none;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:14px;
  6861. color:#7F7F7F;
  6862. text-align:right;
  6863. }
  6864. #u23358 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:1685px;
  6868. top:726px;
  6869. width:81px;
  6870. height:30px;
  6871. display:flex;
  6872. transition:none;
  6873. transform-origin:50% 50%;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:14px;
  6878. color:#7F7F7F;
  6879. text-align:right;
  6880. }
  6881. #u23358 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:5px 10px 5px 0px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u23358_text {
  6889. border-width:0px;
  6890. white-space:nowrap;
  6891. text-transform:none;
  6892. }
  6893. #u23359_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:109px;
  6899. height:30px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 0);
  6902. border-top:0px;
  6903. border-right:0px;
  6904. border-bottom:0px;
  6905. border-radius:0px;
  6906. border-top-left-radius:0px;
  6907. border-bottom-left-radius:0px;
  6908. filter:drop-shadow(none);
  6909. transition:none;
  6910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:14px;
  6914. }
  6915. #u23359 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:1766px;
  6919. top:726px;
  6920. width:109px;
  6921. height:30px;
  6922. display:flex;
  6923. transition:none;
  6924. transform-origin:50% 50%;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:14px;
  6929. }
  6930. #u23359 .text {
  6931. position:absolute;
  6932. align-self:center;
  6933. padding:5px 10px 5px 0px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u23359_text {
  6938. border-width:0px;
  6939. white-space:nowrap;
  6940. text-transform:none;
  6941. }
  6942. #u23360_div {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:1000px;
  6948. height:1315px;
  6949. background:inherit;
  6950. background-color:rgba(242, 242, 242, 1);
  6951. box-sizing:border-box;
  6952. border-width:1px;
  6953. border-style:solid;
  6954. border-color:rgba(215, 215, 215, 1);
  6955. border-radius:0px;
  6956. filter:drop-shadow(none);
  6957. transition:none;
  6958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6959. font-weight:400;
  6960. font-style:normal;
  6961. font-size:14px;
  6962. color:#AAAAAA;
  6963. text-align:center;
  6964. line-height:30px;
  6965. }
  6966. #u23360 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:2228px;
  6970. top:59px;
  6971. width:1000px;
  6972. height:1315px;
  6973. display:flex;
  6974. transition:none;
  6975. transform-origin:50% 50%;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:14px;
  6980. color:#AAAAAA;
  6981. text-align:center;
  6982. line-height:30px;
  6983. }
  6984. #u23360 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:5px 10px 5px 10px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u23360_text {
  6992. border-width:0px;
  6993. word-wrap:break-word;
  6994. text-transform:none;
  6995. visibility:hidden;
  6996. }
  6997. #u23361_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:1000px;
  7003. height:1315px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 1);
  7006. box-sizing:border-box;
  7007. border-width:1px;
  7008. border-style:solid;
  7009. border-color:rgba(215, 215, 215, 1);
  7010. border-radius:0px;
  7011. filter:drop-shadow(none);
  7012. transition:none;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:14px;
  7017. color:#AAAAAA;
  7018. text-align:center;
  7019. line-height:30px;
  7020. }
  7021. #u23361 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:2228px;
  7025. top:59px;
  7026. width:1000px;
  7027. height:1315px;
  7028. display:flex;
  7029. transition:none;
  7030. transform-origin:50% 50%;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:14px;
  7035. color:#AAAAAA;
  7036. text-align:center;
  7037. line-height:30px;
  7038. }
  7039. #u23361 .text {
  7040. position:absolute;
  7041. align-self:center;
  7042. padding:5px 10px 5px 10px;
  7043. box-sizing:border-box;
  7044. width:100%;
  7045. }
  7046. #u23361_text {
  7047. border-width:0px;
  7048. word-wrap:break-word;
  7049. text-transform:none;
  7050. visibility:hidden;
  7051. }
  7052. #u23362 {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:0px;
  7058. height:0px;
  7059. }
  7060. #u23363_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:40px;
  7066. height:40px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border-top:0px;
  7070. border-right:0px;
  7071. border-bottom:0px;
  7072. border-radius:0px;
  7073. border-top-left-radius:0px;
  7074. border-bottom-left-radius:0px;
  7075. filter:drop-shadow(none);
  7076. transition:none;
  7077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7078. font-weight:500;
  7079. font-style:normal;
  7080. font-size:14px;
  7081. text-align:center;
  7082. }
  7083. #u23363 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:3188px;
  7087. top:59px;
  7088. width:40px;
  7089. height:40px;
  7090. display:flex;
  7091. transition:none;
  7092. transform-origin:50% 50%;
  7093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7094. font-weight:500;
  7095. font-style:normal;
  7096. font-size:14px;
  7097. text-align:center;
  7098. }
  7099. #u23363 .text {
  7100. position:absolute;
  7101. align-self:center;
  7102. padding:5px 10px 5px 0px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u23363_text {
  7107. border-width:0px;
  7108. word-wrap:break-word;
  7109. text-transform:none;
  7110. }
  7111. #u23364 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:3176px;
  7115. top:75px;
  7116. width:13px;
  7117. height:13px;
  7118. display:flex;
  7119. transition:none;
  7120. font-size:14px;
  7121. }
  7122. #u23364 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 2px 2px 2px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u23364_img {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:13px;
  7135. height:13px;
  7136. }
  7137. #u23364_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u23365 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:0px;
  7149. height:0px;
  7150. }
  7151. #u23366_div {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:1000px;
  7157. height:60px;
  7158. background:inherit;
  7159. background-color:rgba(255, 255, 255, 1);
  7160. box-sizing:border-box;
  7161. border-width:1px;
  7162. border-style:solid;
  7163. border-color:rgba(215, 215, 215, 1);
  7164. border-radius:0px;
  7165. filter:drop-shadow(none);
  7166. transition:none;
  7167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:14px;
  7171. color:#AAAAAA;
  7172. text-align:center;
  7173. line-height:30px;
  7174. }
  7175. #u23366 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:2228px;
  7179. top:1314px;
  7180. width:1000px;
  7181. height:60px;
  7182. display:flex;
  7183. transition:none;
  7184. transform-origin:50% 50%;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:14px;
  7189. color:#AAAAAA;
  7190. text-align:center;
  7191. line-height:30px;
  7192. }
  7193. #u23366 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:5px 10px 5px 10px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u23366_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. visibility:hidden;
  7205. }
  7206. #u23367_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:80px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(255, 255, 255, 1);
  7215. box-sizing:border-box;
  7216. border-width:1px;
  7217. border-style:solid;
  7218. border-color:rgba(170, 170, 170, 1);
  7219. border-radius:4px;
  7220. filter:drop-shadow(none);
  7221. transition:none;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:14px;
  7226. }
  7227. #u23367 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:3128px;
  7231. top:1329px;
  7232. width:80px;
  7233. height:30px;
  7234. display:flex;
  7235. transition:none;
  7236. transform-origin:50% 50%;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:14px;
  7241. }
  7242. #u23367 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:2px 2px 2px 2px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u23367_text {
  7250. border-width:0px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. }
  7254. #u23368 {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:2294px;
  7258. top:431px;
  7259. width:908px;
  7260. height:180px;
  7261. }
  7262. #u23369 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:101px;
  7268. height:30px;
  7269. display:flex;
  7270. transition:none;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. color:#FFFFFF;
  7275. }
  7276. #u23369 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 2px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u23369_img {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:101px;
  7289. height:30px;
  7290. }
  7291. #u23369_text {
  7292. border-width:0px;
  7293. word-wrap:break-word;
  7294. text-transform:none;
  7295. }
  7296. #u23370 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:101px;
  7300. top:0px;
  7301. width:121px;
  7302. height:30px;
  7303. display:flex;
  7304. transition:none;
  7305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. color:#FFFFFF;
  7309. }
  7310. #u23370 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 2px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u23370_img {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:121px;
  7323. height:30px;
  7324. }
  7325. #u23370_text {
  7326. border-width:0px;
  7327. word-wrap:break-word;
  7328. text-transform:none;
  7329. }
  7330. #u23371 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:222px;
  7334. top:0px;
  7335. width:121px;
  7336. height:30px;
  7337. display:flex;
  7338. transition:none;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. color:#FFFFFF;
  7343. }
  7344. #u23371 .text {
  7345. position:absolute;
  7346. align-self:center;
  7347. padding:2px 2px 2px 2px;
  7348. box-sizing:border-box;
  7349. width:100%;
  7350. }
  7351. #u23371_img {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:121px;
  7357. height:30px;
  7358. }
  7359. #u23371_text {
  7360. border-width:0px;
  7361. word-wrap:break-word;
  7362. text-transform:none;
  7363. }
  7364. #u23372 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:343px;
  7368. top:0px;
  7369. width:121px;
  7370. height:30px;
  7371. display:flex;
  7372. transition:none;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. color:#FFFFFF;
  7377. }
  7378. #u23372 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 2px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u23372_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:121px;
  7391. height:30px;
  7392. }
  7393. #u23372_text {
  7394. border-width:0px;
  7395. word-wrap:break-word;
  7396. text-transform:none;
  7397. }
  7398. #u23373 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:464px;
  7402. top:0px;
  7403. width:103px;
  7404. height:30px;
  7405. display:flex;
  7406. transition:none;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. color:#FFFFFF;
  7411. }
  7412. #u23373 .text {
  7413. position:absolute;
  7414. align-self:center;
  7415. padding:2px 2px 2px 2px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u23373_img {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:103px;
  7425. height:30px;
  7426. }
  7427. #u23373_text {
  7428. border-width:0px;
  7429. word-wrap:break-word;
  7430. text-transform:none;
  7431. }
  7432. #u23374 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:566px;
  7436. top:0px;
  7437. width:115px;
  7438. height:30px;
  7439. display:flex;
  7440. transition:none;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. color:#FFFFFF;
  7445. }
  7446. #u23374 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u23374_img {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:115px;
  7459. height:30px;
  7460. }
  7461. #u23374_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u23375 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:681px;
  7470. top:0px;
  7471. width:113px;
  7472. height:30px;
  7473. display:flex;
  7474. transition:none;
  7475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7476. font-weight:400;
  7477. font-style:normal;
  7478. color:#FFFFFF;
  7479. }
  7480. #u23375 .text {
  7481. position:absolute;
  7482. align-self:center;
  7483. padding:2px 2px 2px 2px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u23375_img {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:113px;
  7493. height:30px;
  7494. }
  7495. #u23375_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. }
  7500. #u23376 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:794px;
  7504. top:0px;
  7505. width:114px;
  7506. height:30px;
  7507. display:flex;
  7508. transition:none;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. color:#FFFFFF;
  7513. }
  7514. #u23376 .text {
  7515. position:absolute;
  7516. align-self:center;
  7517. padding:2px 2px 2px 2px;
  7518. box-sizing:border-box;
  7519. width:100%;
  7520. }
  7521. #u23376_img {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:114px;
  7527. height:30px;
  7528. }
  7529. #u23376_text {
  7530. border-width:0px;
  7531. word-wrap:break-word;
  7532. text-transform:none;
  7533. }
  7534. #u23377 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:30px;
  7539. width:101px;
  7540. height:30px;
  7541. display:flex;
  7542. transition:none;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. }
  7547. #u23377 .text {
  7548. position:absolute;
  7549. align-self:center;
  7550. padding:2px 2px 2px 2px;
  7551. box-sizing:border-box;
  7552. width:100%;
  7553. }
  7554. #u23377_img {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:101px;
  7560. height:30px;
  7561. }
  7562. #u23377_text {
  7563. border-width:0px;
  7564. word-wrap:break-word;
  7565. text-transform:none;
  7566. visibility:hidden;
  7567. }
  7568. #u23378 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:101px;
  7572. top:30px;
  7573. width:121px;
  7574. height:30px;
  7575. display:flex;
  7576. transition:none;
  7577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. }
  7581. #u23378 .text {
  7582. position:absolute;
  7583. align-self:center;
  7584. padding:2px 2px 2px 2px;
  7585. box-sizing:border-box;
  7586. width:100%;
  7587. }
  7588. #u23378_img {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:121px;
  7594. height:30px;
  7595. }
  7596. #u23378_text {
  7597. border-width:0px;
  7598. word-wrap:break-word;
  7599. text-transform:none;
  7600. visibility:hidden;
  7601. }
  7602. #u23379 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:222px;
  7606. top:30px;
  7607. width:121px;
  7608. height:30px;
  7609. display:flex;
  7610. transition:none;
  7611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. }
  7615. #u23379 .text {
  7616. position:absolute;
  7617. align-self:center;
  7618. padding:2px 2px 2px 2px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u23379_img {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:121px;
  7628. height:30px;
  7629. }
  7630. #u23379_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u23380 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:343px;
  7640. top:30px;
  7641. width:121px;
  7642. height:30px;
  7643. display:flex;
  7644. transition:none;
  7645. }
  7646. #u23380 .text {
  7647. position:absolute;
  7648. align-self:center;
  7649. padding:2px 2px 2px 2px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u23380_img {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:121px;
  7659. height:30px;
  7660. }
  7661. #u23380_text {
  7662. border-width:0px;
  7663. word-wrap:break-word;
  7664. text-transform:none;
  7665. visibility:hidden;
  7666. }
  7667. #u23381 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:464px;
  7671. top:30px;
  7672. width:103px;
  7673. height:30px;
  7674. display:flex;
  7675. transition:none;
  7676. }
  7677. #u23381 .text {
  7678. position:absolute;
  7679. align-self:center;
  7680. padding:2px 2px 2px 2px;
  7681. box-sizing:border-box;
  7682. width:100%;
  7683. }
  7684. #u23381_img {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:103px;
  7690. height:30px;
  7691. }
  7692. #u23381_text {
  7693. border-width:0px;
  7694. word-wrap:break-word;
  7695. text-transform:none;
  7696. visibility:hidden;
  7697. }
  7698. #u23382 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:566px;
  7702. top:30px;
  7703. width:115px;
  7704. height:30px;
  7705. display:flex;
  7706. transition:none;
  7707. }
  7708. #u23382 .text {
  7709. position:absolute;
  7710. align-self:center;
  7711. padding:2px 2px 2px 2px;
  7712. box-sizing:border-box;
  7713. width:100%;
  7714. }
  7715. #u23382_img {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:115px;
  7721. height:30px;
  7722. }
  7723. #u23382_text {
  7724. border-width:0px;
  7725. word-wrap:break-word;
  7726. text-transform:none;
  7727. visibility:hidden;
  7728. }
  7729. #u23383 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:681px;
  7733. top:30px;
  7734. width:113px;
  7735. height:30px;
  7736. display:flex;
  7737. transition:none;
  7738. }
  7739. #u23383 .text {
  7740. position:absolute;
  7741. align-self:center;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u23383_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:113px;
  7752. height:30px;
  7753. }
  7754. #u23383_text {
  7755. border-width:0px;
  7756. word-wrap:break-word;
  7757. text-transform:none;
  7758. visibility:hidden;
  7759. }
  7760. #u23384 {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:794px;
  7764. top:30px;
  7765. width:114px;
  7766. height:30px;
  7767. display:flex;
  7768. transition:none;
  7769. }
  7770. #u23384 .text {
  7771. position:absolute;
  7772. align-self:center;
  7773. padding:2px 2px 2px 2px;
  7774. box-sizing:border-box;
  7775. width:100%;
  7776. }
  7777. #u23384_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:114px;
  7783. height:30px;
  7784. }
  7785. #u23384_text {
  7786. border-width:0px;
  7787. word-wrap:break-word;
  7788. text-transform:none;
  7789. visibility:hidden;
  7790. }
  7791. #u23385 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:60px;
  7796. width:101px;
  7797. height:30px;
  7798. display:flex;
  7799. transition:none;
  7800. }
  7801. #u23385 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 2px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u23385_img {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:101px;
  7814. height:30px;
  7815. }
  7816. #u23385_text {
  7817. border-width:0px;
  7818. word-wrap:break-word;
  7819. text-transform:none;
  7820. visibility:hidden;
  7821. }
  7822. #u23386 {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:101px;
  7826. top:60px;
  7827. width:121px;
  7828. height:30px;
  7829. display:flex;
  7830. transition:none;
  7831. }
  7832. #u23386 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 2px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u23386_img {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:121px;
  7845. height:30px;
  7846. }
  7847. #u23386_text {
  7848. border-width:0px;
  7849. word-wrap:break-word;
  7850. text-transform:none;
  7851. visibility:hidden;
  7852. }
  7853. #u23387 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:222px;
  7857. top:60px;
  7858. width:121px;
  7859. height:30px;
  7860. display:flex;
  7861. transition:none;
  7862. }
  7863. #u23387 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:2px 2px 2px 2px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u23387_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:121px;
  7876. height:30px;
  7877. }
  7878. #u23387_text {
  7879. border-width:0px;
  7880. word-wrap:break-word;
  7881. text-transform:none;
  7882. visibility:hidden;
  7883. }
  7884. #u23388 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:343px;
  7888. top:60px;
  7889. width:121px;
  7890. height:30px;
  7891. display:flex;
  7892. transition:none;
  7893. }
  7894. #u23388 .text {
  7895. position:absolute;
  7896. align-self:center;
  7897. padding:2px 2px 2px 2px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u23388_img {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:121px;
  7907. height:30px;
  7908. }
  7909. #u23388_text {
  7910. border-width:0px;
  7911. word-wrap:break-word;
  7912. text-transform:none;
  7913. visibility:hidden;
  7914. }
  7915. #u23389 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:464px;
  7919. top:60px;
  7920. width:103px;
  7921. height:30px;
  7922. display:flex;
  7923. transition:none;
  7924. }
  7925. #u23389 .text {
  7926. position:absolute;
  7927. align-self:center;
  7928. padding:2px 2px 2px 2px;
  7929. box-sizing:border-box;
  7930. width:100%;
  7931. }
  7932. #u23389_img {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:103px;
  7938. height:30px;
  7939. }
  7940. #u23389_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. visibility:hidden;
  7945. }
  7946. #u23390 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:566px;
  7950. top:60px;
  7951. width:115px;
  7952. height:30px;
  7953. display:flex;
  7954. transition:none;
  7955. }
  7956. #u23390 .text {
  7957. position:absolute;
  7958. align-self:center;
  7959. padding:2px 2px 2px 2px;
  7960. box-sizing:border-box;
  7961. width:100%;
  7962. }
  7963. #u23390_img {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:115px;
  7969. height:30px;
  7970. }
  7971. #u23390_text {
  7972. border-width:0px;
  7973. word-wrap:break-word;
  7974. text-transform:none;
  7975. visibility:hidden;
  7976. }
  7977. #u23391 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:681px;
  7981. top:60px;
  7982. width:113px;
  7983. height:30px;
  7984. display:flex;
  7985. transition:none;
  7986. }
  7987. #u23391 .text {
  7988. position:absolute;
  7989. align-self:center;
  7990. padding:2px 2px 2px 2px;
  7991. box-sizing:border-box;
  7992. width:100%;
  7993. }
  7994. #u23391_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:113px;
  8000. height:30px;
  8001. }
  8002. #u23391_text {
  8003. border-width:0px;
  8004. word-wrap:break-word;
  8005. text-transform:none;
  8006. visibility:hidden;
  8007. }
  8008. #u23392 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:794px;
  8012. top:60px;
  8013. width:114px;
  8014. height:30px;
  8015. display:flex;
  8016. transition:none;
  8017. }
  8018. #u23392 .text {
  8019. position:absolute;
  8020. align-self:center;
  8021. padding:2px 2px 2px 2px;
  8022. box-sizing:border-box;
  8023. width:100%;
  8024. }
  8025. #u23392_img {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:0px;
  8029. top:0px;
  8030. width:114px;
  8031. height:30px;
  8032. }
  8033. #u23392_text {
  8034. border-width:0px;
  8035. word-wrap:break-word;
  8036. text-transform:none;
  8037. visibility:hidden;
  8038. }
  8039. #u23393 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:90px;
  8044. width:101px;
  8045. height:30px;
  8046. display:flex;
  8047. transition:none;
  8048. }
  8049. #u23393 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:2px 2px 2px 2px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u23393_img {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:101px;
  8062. height:30px;
  8063. }
  8064. #u23393_text {
  8065. border-width:0px;
  8066. word-wrap:break-word;
  8067. text-transform:none;
  8068. visibility:hidden;
  8069. }
  8070. #u23394 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:101px;
  8074. top:90px;
  8075. width:121px;
  8076. height:30px;
  8077. display:flex;
  8078. transition:none;
  8079. }
  8080. #u23394 .text {
  8081. position:absolute;
  8082. align-self:center;
  8083. padding:2px 2px 2px 2px;
  8084. box-sizing:border-box;
  8085. width:100%;
  8086. }
  8087. #u23394_img {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:121px;
  8093. height:30px;
  8094. }
  8095. #u23394_text {
  8096. border-width:0px;
  8097. word-wrap:break-word;
  8098. text-transform:none;
  8099. visibility:hidden;
  8100. }
  8101. #u23395 {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:222px;
  8105. top:90px;
  8106. width:121px;
  8107. height:30px;
  8108. display:flex;
  8109. transition:none;
  8110. }
  8111. #u23395 .text {
  8112. position:absolute;
  8113. align-self:center;
  8114. padding:2px 2px 2px 2px;
  8115. box-sizing:border-box;
  8116. width:100%;
  8117. }
  8118. #u23395_img {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:0px;
  8122. top:0px;
  8123. width:121px;
  8124. height:30px;
  8125. }
  8126. #u23395_text {
  8127. border-width:0px;
  8128. word-wrap:break-word;
  8129. text-transform:none;
  8130. visibility:hidden;
  8131. }
  8132. #u23396 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:343px;
  8136. top:90px;
  8137. width:121px;
  8138. height:30px;
  8139. display:flex;
  8140. transition:none;
  8141. }
  8142. #u23396 .text {
  8143. position:absolute;
  8144. align-self:center;
  8145. padding:2px 2px 2px 2px;
  8146. box-sizing:border-box;
  8147. width:100%;
  8148. }
  8149. #u23396_img {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:121px;
  8155. height:30px;
  8156. }
  8157. #u23396_text {
  8158. border-width:0px;
  8159. word-wrap:break-word;
  8160. text-transform:none;
  8161. visibility:hidden;
  8162. }
  8163. #u23397 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:464px;
  8167. top:90px;
  8168. width:103px;
  8169. height:30px;
  8170. display:flex;
  8171. transition:none;
  8172. }
  8173. #u23397 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 2px 2px 2px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u23397_img {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:0px;
  8184. top:0px;
  8185. width:103px;
  8186. height:30px;
  8187. }
  8188. #u23397_text {
  8189. border-width:0px;
  8190. word-wrap:break-word;
  8191. text-transform:none;
  8192. visibility:hidden;
  8193. }
  8194. #u23398 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:566px;
  8198. top:90px;
  8199. width:115px;
  8200. height:30px;
  8201. display:flex;
  8202. transition:none;
  8203. }
  8204. #u23398 .text {
  8205. position:absolute;
  8206. align-self:center;
  8207. padding:2px 2px 2px 2px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u23398_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:115px;
  8217. height:30px;
  8218. }
  8219. #u23398_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. visibility:hidden;
  8224. }
  8225. #u23399 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:681px;
  8229. top:90px;
  8230. width:113px;
  8231. height:30px;
  8232. display:flex;
  8233. transition:none;
  8234. }
  8235. #u23399 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u23399_img {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:113px;
  8248. height:30px;
  8249. }
  8250. #u23399_text {
  8251. border-width:0px;
  8252. word-wrap:break-word;
  8253. text-transform:none;
  8254. visibility:hidden;
  8255. }
  8256. #u23400 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:794px;
  8260. top:90px;
  8261. width:114px;
  8262. height:30px;
  8263. display:flex;
  8264. transition:none;
  8265. }
  8266. #u23400 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:2px 2px 2px 2px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u23400_img {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:114px;
  8279. height:30px;
  8280. }
  8281. #u23400_text {
  8282. border-width:0px;
  8283. word-wrap:break-word;
  8284. text-transform:none;
  8285. visibility:hidden;
  8286. }
  8287. #u23401 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:120px;
  8292. width:101px;
  8293. height:30px;
  8294. display:flex;
  8295. transition:none;
  8296. }
  8297. #u23401 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 2px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u23401_img {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:101px;
  8310. height:30px;
  8311. }
  8312. #u23401_text {
  8313. border-width:0px;
  8314. word-wrap:break-word;
  8315. text-transform:none;
  8316. visibility:hidden;
  8317. }
  8318. #u23402 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:101px;
  8322. top:120px;
  8323. width:121px;
  8324. height:30px;
  8325. display:flex;
  8326. transition:none;
  8327. }
  8328. #u23402 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:2px 2px 2px 2px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u23402_img {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:0px;
  8339. top:0px;
  8340. width:121px;
  8341. height:30px;
  8342. }
  8343. #u23402_text {
  8344. border-width:0px;
  8345. word-wrap:break-word;
  8346. text-transform:none;
  8347. visibility:hidden;
  8348. }
  8349. #u23403 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:222px;
  8353. top:120px;
  8354. width:121px;
  8355. height:30px;
  8356. display:flex;
  8357. transition:none;
  8358. }
  8359. #u23403 .text {
  8360. position:absolute;
  8361. align-self:center;
  8362. padding:2px 2px 2px 2px;
  8363. box-sizing:border-box;
  8364. width:100%;
  8365. }
  8366. #u23403_img {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:121px;
  8372. height:30px;
  8373. }
  8374. #u23403_text {
  8375. border-width:0px;
  8376. word-wrap:break-word;
  8377. text-transform:none;
  8378. visibility:hidden;
  8379. }
  8380. #u23404 {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:343px;
  8384. top:120px;
  8385. width:121px;
  8386. height:30px;
  8387. display:flex;
  8388. transition:none;
  8389. }
  8390. #u23404 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:2px 2px 2px 2px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u23404_img {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:121px;
  8403. height:30px;
  8404. }
  8405. #u23404_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u23405 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:464px;
  8415. top:120px;
  8416. width:103px;
  8417. height:30px;
  8418. display:flex;
  8419. transition:none;
  8420. }
  8421. #u23405 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:2px 2px 2px 2px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u23405_img {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:103px;
  8434. height:30px;
  8435. }
  8436. #u23405_text {
  8437. border-width:0px;
  8438. word-wrap:break-word;
  8439. text-transform:none;
  8440. visibility:hidden;
  8441. }
  8442. #u23406 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:566px;
  8446. top:120px;
  8447. width:115px;
  8448. height:30px;
  8449. display:flex;
  8450. transition:none;
  8451. }
  8452. #u23406 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 2px 2px 2px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u23406_img {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:0px;
  8463. top:0px;
  8464. width:115px;
  8465. height:30px;
  8466. }
  8467. #u23406_text {
  8468. border-width:0px;
  8469. word-wrap:break-word;
  8470. text-transform:none;
  8471. visibility:hidden;
  8472. }
  8473. #u23407 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:681px;
  8477. top:120px;
  8478. width:113px;
  8479. height:30px;
  8480. display:flex;
  8481. transition:none;
  8482. }
  8483. #u23407 .text {
  8484. position:absolute;
  8485. align-self:center;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u23407_img {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:113px;
  8496. height:30px;
  8497. }
  8498. #u23407_text {
  8499. border-width:0px;
  8500. word-wrap:break-word;
  8501. text-transform:none;
  8502. visibility:hidden;
  8503. }
  8504. #u23408 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:794px;
  8508. top:120px;
  8509. width:114px;
  8510. height:30px;
  8511. display:flex;
  8512. transition:none;
  8513. }
  8514. #u23408 .text {
  8515. position:absolute;
  8516. align-self:center;
  8517. padding:2px 2px 2px 2px;
  8518. box-sizing:border-box;
  8519. width:100%;
  8520. }
  8521. #u23408_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:114px;
  8527. height:30px;
  8528. }
  8529. #u23408_text {
  8530. border-width:0px;
  8531. word-wrap:break-word;
  8532. text-transform:none;
  8533. visibility:hidden;
  8534. }
  8535. #u23409 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:150px;
  8540. width:101px;
  8541. height:30px;
  8542. display:flex;
  8543. transition:none;
  8544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8545. font-weight:400;
  8546. font-style:normal;
  8547. }
  8548. #u23409 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:2px 2px 2px 2px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u23409_img {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:101px;
  8561. height:30px;
  8562. }
  8563. #u23409_text {
  8564. border-width:0px;
  8565. word-wrap:break-word;
  8566. text-transform:none;
  8567. }
  8568. #u23410 {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:101px;
  8572. top:150px;
  8573. width:121px;
  8574. height:30px;
  8575. display:flex;
  8576. transition:none;
  8577. }
  8578. #u23410 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:2px 2px 2px 2px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u23410_img {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:121px;
  8591. height:30px;
  8592. }
  8593. #u23410_text {
  8594. border-width:0px;
  8595. word-wrap:break-word;
  8596. text-transform:none;
  8597. visibility:hidden;
  8598. }
  8599. #u23411 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:222px;
  8603. top:150px;
  8604. width:121px;
  8605. height:30px;
  8606. display:flex;
  8607. transition:none;
  8608. }
  8609. #u23411 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u23411_img {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:121px;
  8622. height:30px;
  8623. }
  8624. #u23411_text {
  8625. border-width:0px;
  8626. word-wrap:break-word;
  8627. text-transform:none;
  8628. visibility:hidden;
  8629. }
  8630. #u23412 {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:343px;
  8634. top:150px;
  8635. width:121px;
  8636. height:30px;
  8637. display:flex;
  8638. transition:none;
  8639. }
  8640. #u23412 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:2px 2px 2px 2px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u23412_img {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:121px;
  8653. height:30px;
  8654. }
  8655. #u23412_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. visibility:hidden;
  8660. }
  8661. #u23413 {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:464px;
  8665. top:150px;
  8666. width:103px;
  8667. height:30px;
  8668. display:flex;
  8669. transition:none;
  8670. }
  8671. #u23413 .text {
  8672. position:absolute;
  8673. align-self:center;
  8674. padding:2px 2px 2px 2px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u23413_img {
  8679. border-width:0px;
  8680. position:absolute;
  8681. left:0px;
  8682. top:0px;
  8683. width:103px;
  8684. height:30px;
  8685. }
  8686. #u23413_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. visibility:hidden;
  8691. }
  8692. #u23414 {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:566px;
  8696. top:150px;
  8697. width:115px;
  8698. height:30px;
  8699. display:flex;
  8700. transition:none;
  8701. }
  8702. #u23414 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 2px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u23414_img {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:115px;
  8715. height:30px;
  8716. }
  8717. #u23414_text {
  8718. border-width:0px;
  8719. word-wrap:break-word;
  8720. text-transform:none;
  8721. visibility:hidden;
  8722. }
  8723. #u23415 {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:681px;
  8727. top:150px;
  8728. width:113px;
  8729. height:30px;
  8730. display:flex;
  8731. transition:none;
  8732. }
  8733. #u23415 .text {
  8734. position:absolute;
  8735. align-self:center;
  8736. padding:2px 2px 2px 2px;
  8737. box-sizing:border-box;
  8738. width:100%;
  8739. }
  8740. #u23415_img {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:113px;
  8746. height:30px;
  8747. }
  8748. #u23415_text {
  8749. border-width:0px;
  8750. word-wrap:break-word;
  8751. text-transform:none;
  8752. visibility:hidden;
  8753. }
  8754. #u23416 {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:794px;
  8758. top:150px;
  8759. width:114px;
  8760. height:30px;
  8761. display:flex;
  8762. transition:none;
  8763. }
  8764. #u23416 .text {
  8765. position:absolute;
  8766. align-self:center;
  8767. padding:2px 2px 2px 2px;
  8768. box-sizing:border-box;
  8769. width:100%;
  8770. }
  8771. #u23416_img {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:114px;
  8777. height:30px;
  8778. }
  8779. #u23416_text {
  8780. border-width:0px;
  8781. word-wrap:break-word;
  8782. text-transform:none;
  8783. visibility:hidden;
  8784. }
  8785. #u23417_div {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:67px;
  8791. height:30px;
  8792. background:inherit;
  8793. background-color:rgba(255, 255, 255, 0);
  8794. border-top:0px;
  8795. border-right:0px;
  8796. border-bottom:0px;
  8797. border-radius:0px;
  8798. border-top-left-radius:0px;
  8799. border-bottom-left-radius:0px;
  8800. filter:drop-shadow(none);
  8801. transition:none;
  8802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8803. font-weight:500;
  8804. font-style:normal;
  8805. font-size:14px;
  8806. }
  8807. #u23417 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:2274px;
  8811. top:136px;
  8812. width:67px;
  8813. height:30px;
  8814. display:flex;
  8815. transition:none;
  8816. transform-origin:50% 50%;
  8817. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8818. font-weight:500;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. }
  8822. #u23417 .text {
  8823. position:absolute;
  8824. align-self:center;
  8825. padding:5px 10px 5px 0px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u23417_text {
  8830. border-width:0px;
  8831. white-space:nowrap;
  8832. text-transform:none;
  8833. }
  8834. #u23418_div {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:43px;
  8840. height:30px;
  8841. background:inherit;
  8842. background-color:rgba(255, 255, 255, 0);
  8843. border-top:0px;
  8844. border-right:0px;
  8845. border-bottom:0px;
  8846. border-radius:0px;
  8847. border-top-left-radius:0px;
  8848. border-bottom-left-radius:0px;
  8849. filter:drop-shadow(none);
  8850. transition:none;
  8851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:14px;
  8855. color:#7F7F7F;
  8856. }
  8857. #u23418 {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:2294px;
  8861. top:179px;
  8862. width:43px;
  8863. height:30px;
  8864. display:flex;
  8865. transition:none;
  8866. transform-origin:50% 50%;
  8867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8868. font-weight:400;
  8869. font-style:normal;
  8870. font-size:14px;
  8871. color:#7F7F7F;
  8872. }
  8873. #u23418 .text {
  8874. position:absolute;
  8875. align-self:center;
  8876. padding:5px 0px 5px 0px;
  8877. box-sizing:border-box;
  8878. width:100%;
  8879. }
  8880. #u23418_text {
  8881. border-width:0px;
  8882. white-space:nowrap;
  8883. text-transform:none;
  8884. }
  8885. #u23419_div {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:113px;
  8891. height:30px;
  8892. background:inherit;
  8893. background-color:rgba(255, 255, 255, 0);
  8894. border-top:0px;
  8895. border-right:0px;
  8896. border-bottom:0px;
  8897. border-radius:0px;
  8898. border-top-left-radius:0px;
  8899. border-bottom-left-radius:0px;
  8900. filter:drop-shadow(none);
  8901. transition:none;
  8902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8903. font-weight:400;
  8904. font-style:normal;
  8905. font-size:14px;
  8906. }
  8907. #u23419 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:2370px;
  8911. top:179px;
  8912. width:113px;
  8913. height:30px;
  8914. display:flex;
  8915. transition:none;
  8916. transform-origin:50% 50%;
  8917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:14px;
  8921. }
  8922. #u23419 .text {
  8923. position:absolute;
  8924. align-self:center;
  8925. padding:5px 0px 5px 0px;
  8926. box-sizing:border-box;
  8927. width:100%;
  8928. }
  8929. #u23419_text {
  8930. border-width:0px;
  8931. white-space:nowrap;
  8932. text-transform:none;
  8933. }
  8934. #u23420_div {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:43px;
  8940. height:30px;
  8941. background:inherit;
  8942. background-color:rgba(255, 255, 255, 0);
  8943. border-top:0px;
  8944. border-right:0px;
  8945. border-bottom:0px;
  8946. border-radius:0px;
  8947. border-top-left-radius:0px;
  8948. border-bottom-left-radius:0px;
  8949. filter:drop-shadow(none);
  8950. transition:none;
  8951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8952. font-weight:400;
  8953. font-style:normal;
  8954. font-size:14px;
  8955. color:#7F7F7F;
  8956. }
  8957. #u23420 {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:2660px;
  8961. top:179px;
  8962. width:43px;
  8963. height:30px;
  8964. display:flex;
  8965. transition:none;
  8966. transform-origin:50% 50%;
  8967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8968. font-weight:400;
  8969. font-style:normal;
  8970. font-size:14px;
  8971. color:#7F7F7F;
  8972. }
  8973. #u23420 .text {
  8974. position:absolute;
  8975. align-self:center;
  8976. padding:5px 0px 5px 0px;
  8977. box-sizing:border-box;
  8978. width:100%;
  8979. }
  8980. #u23420_text {
  8981. border-width:0px;
  8982. white-space:nowrap;
  8983. text-transform:none;
  8984. }
  8985. #u23421_div {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:0px;
  8989. top:0px;
  8990. width:86px;
  8991. height:30px;
  8992. background:inherit;
  8993. background-color:rgba(255, 255, 255, 0);
  8994. border-top:0px;
  8995. border-right:0px;
  8996. border-bottom:0px;
  8997. border-radius:0px;
  8998. border-top-left-radius:0px;
  8999. border-bottom-left-radius:0px;
  9000. filter:drop-shadow(none);
  9001. transition:none;
  9002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. font-size:14px;
  9006. }
  9007. #u23421 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:2736px;
  9011. top:179px;
  9012. width:86px;
  9013. height:30px;
  9014. display:flex;
  9015. transition:none;
  9016. transform-origin:50% 50%;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:14px;
  9021. }
  9022. #u23421 .text {
  9023. position:absolute;
  9024. align-self:center;
  9025. padding:5px 0px 5px 0px;
  9026. box-sizing:border-box;
  9027. width:100%;
  9028. }
  9029. #u23421_text {
  9030. border-width:0px;
  9031. white-space:nowrap;
  9032. text-transform:none;
  9033. }
  9034. #u23422_div {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:71px;
  9040. height:30px;
  9041. background:inherit;
  9042. background-color:rgba(255, 255, 255, 0);
  9043. border-top:0px;
  9044. border-right:0px;
  9045. border-bottom:0px;
  9046. border-radius:0px;
  9047. border-top-left-radius:0px;
  9048. border-bottom-left-radius:0px;
  9049. filter:drop-shadow(none);
  9050. transition:none;
  9051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9052. font-weight:400;
  9053. font-style:normal;
  9054. font-size:14px;
  9055. color:#7F7F7F;
  9056. }
  9057. #u23422 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:2294px;
  9061. top:219px;
  9062. width:71px;
  9063. height:30px;
  9064. display:flex;
  9065. transition:none;
  9066. transform-origin:50% 50%;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:14px;
  9071. color:#7F7F7F;
  9072. }
  9073. #u23422 .text {
  9074. position:absolute;
  9075. align-self:center;
  9076. padding:5px 0px 5px 0px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u23422_text {
  9081. border-width:0px;
  9082. white-space:nowrap;
  9083. text-transform:none;
  9084. }
  9085. #u23423_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:89px;
  9091. height:30px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border-top:0px;
  9095. border-right:0px;
  9096. border-bottom:0px;
  9097. border-radius:0px;
  9098. border-top-left-radius:0px;
  9099. border-bottom-left-radius:0px;
  9100. filter:drop-shadow(none);
  9101. transition:none;
  9102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9103. font-weight:400;
  9104. font-style:normal;
  9105. font-size:14px;
  9106. }
  9107. #u23423 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:2370px;
  9111. top:219px;
  9112. width:89px;
  9113. height:30px;
  9114. display:flex;
  9115. transition:none;
  9116. transform-origin:50% 50%;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:14px;
  9121. }
  9122. #u23423 .text {
  9123. position:absolute;
  9124. align-self:center;
  9125. padding:5px 0px 5px 0px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u23423_text {
  9130. border-width:0px;
  9131. white-space:nowrap;
  9132. text-transform:none;
  9133. }
  9134. #u23424_div {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:71px;
  9140. height:30px;
  9141. background:inherit;
  9142. background-color:rgba(255, 255, 255, 0);
  9143. border-top:0px;
  9144. border-right:0px;
  9145. border-bottom:0px;
  9146. border-radius:0px;
  9147. border-top-left-radius:0px;
  9148. border-bottom-left-radius:0px;
  9149. filter:drop-shadow(none);
  9150. transition:none;
  9151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9152. font-weight:400;
  9153. font-style:normal;
  9154. font-size:14px;
  9155. color:#7F7F7F;
  9156. }
  9157. #u23424 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:2660px;
  9161. top:219px;
  9162. width:71px;
  9163. height:30px;
  9164. display:flex;
  9165. transition:none;
  9166. transform-origin:50% 50%;
  9167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9168. font-weight:400;
  9169. font-style:normal;
  9170. font-size:14px;
  9171. color:#7F7F7F;
  9172. }
  9173. #u23424 .text {
  9174. position:absolute;
  9175. align-self:center;
  9176. padding:5px 0px 5px 0px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u23424_text {
  9181. border-width:0px;
  9182. white-space:nowrap;
  9183. text-transform:none;
  9184. }
  9185. #u23425_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:89px;
  9191. height:30px;
  9192. background:inherit;
  9193. background-color:rgba(255, 255, 255, 0);
  9194. border-top:0px;
  9195. border-right:0px;
  9196. border-bottom:0px;
  9197. border-radius:0px;
  9198. border-top-left-radius:0px;
  9199. border-bottom-left-radius:0px;
  9200. filter:drop-shadow(none);
  9201. transition:none;
  9202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9203. font-weight:400;
  9204. font-style:normal;
  9205. font-size:14px;
  9206. }
  9207. #u23425 {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:2736px;
  9211. top:219px;
  9212. width:89px;
  9213. height:30px;
  9214. display:flex;
  9215. transition:none;
  9216. transform-origin:50% 50%;
  9217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9218. font-weight:400;
  9219. font-style:normal;
  9220. font-size:14px;
  9221. }
  9222. #u23425 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:5px 0px 5px 0px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u23425_text {
  9230. border-width:0px;
  9231. white-space:nowrap;
  9232. text-transform:none;
  9233. }
  9234. #u23426_div {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:0px;
  9238. top:0px;
  9239. width:71px;
  9240. height:30px;
  9241. background:inherit;
  9242. background-color:rgba(255, 255, 255, 0);
  9243. border-top:0px;
  9244. border-right:0px;
  9245. border-bottom:0px;
  9246. border-radius:0px;
  9247. border-top-left-radius:0px;
  9248. border-bottom-left-radius:0px;
  9249. filter:drop-shadow(none);
  9250. transition:none;
  9251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:14px;
  9255. color:#7F7F7F;
  9256. }
  9257. #u23426 {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:2294px;
  9261. top:259px;
  9262. width:71px;
  9263. height:30px;
  9264. display:flex;
  9265. transition:none;
  9266. transform-origin:50% 50%;
  9267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9268. font-weight:400;
  9269. font-style:normal;
  9270. font-size:14px;
  9271. color:#7F7F7F;
  9272. }
  9273. #u23426 .text {
  9274. position:absolute;
  9275. align-self:center;
  9276. padding:5px 0px 5px 0px;
  9277. box-sizing:border-box;
  9278. width:100%;
  9279. }
  9280. #u23426_text {
  9281. border-width:0px;
  9282. white-space:nowrap;
  9283. text-transform:none;
  9284. }
  9285. #u23427_div {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:89px;
  9291. height:30px;
  9292. background:inherit;
  9293. background-color:rgba(255, 255, 255, 0);
  9294. border-top:0px;
  9295. border-right:0px;
  9296. border-bottom:0px;
  9297. border-radius:0px;
  9298. border-top-left-radius:0px;
  9299. border-bottom-left-radius:0px;
  9300. filter:drop-shadow(none);
  9301. transition:none;
  9302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9303. font-weight:400;
  9304. font-style:normal;
  9305. font-size:14px;
  9306. }
  9307. #u23427 {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:2370px;
  9311. top:259px;
  9312. width:89px;
  9313. height:30px;
  9314. display:flex;
  9315. transition:none;
  9316. transform-origin:50% 50%;
  9317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9318. font-weight:400;
  9319. font-style:normal;
  9320. font-size:14px;
  9321. }
  9322. #u23427 .text {
  9323. position:absolute;
  9324. align-self:center;
  9325. padding:5px 0px 5px 0px;
  9326. box-sizing:border-box;
  9327. width:100%;
  9328. }
  9329. #u23427_text {
  9330. border-width:0px;
  9331. white-space:nowrap;
  9332. text-transform:none;
  9333. }
  9334. #u23428_div {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:0px;
  9338. top:0px;
  9339. width:71px;
  9340. height:30px;
  9341. background:inherit;
  9342. background-color:rgba(255, 255, 255, 0);
  9343. border-top:0px;
  9344. border-right:0px;
  9345. border-bottom:0px;
  9346. border-radius:0px;
  9347. border-top-left-radius:0px;
  9348. border-bottom-left-radius:0px;
  9349. filter:drop-shadow(none);
  9350. transition:none;
  9351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9352. font-weight:400;
  9353. font-style:normal;
  9354. font-size:14px;
  9355. color:#7F7F7F;
  9356. }
  9357. #u23428 {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:2660px;
  9361. top:259px;
  9362. width:71px;
  9363. height:30px;
  9364. display:flex;
  9365. transition:none;
  9366. transform-origin:50% 50%;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:14px;
  9371. color:#7F7F7F;
  9372. }
  9373. #u23428 .text {
  9374. position:absolute;
  9375. align-self:center;
  9376. padding:5px 0px 5px 0px;
  9377. box-sizing:border-box;
  9378. width:100%;
  9379. }
  9380. #u23428_text {
  9381. border-width:0px;
  9382. white-space:nowrap;
  9383. text-transform:none;
  9384. }
  9385. #u23429_div {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:0px;
  9389. top:0px;
  9390. width:29px;
  9391. height:30px;
  9392. background:inherit;
  9393. background-color:rgba(255, 255, 255, 0);
  9394. border-top:0px;
  9395. border-right:0px;
  9396. border-bottom:0px;
  9397. border-radius:0px;
  9398. border-top-left-radius:0px;
  9399. border-bottom-left-radius:0px;
  9400. filter:drop-shadow(none);
  9401. transition:none;
  9402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:14px;
  9406. }
  9407. #u23429 {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:2736px;
  9411. top:259px;
  9412. width:29px;
  9413. height:30px;
  9414. display:flex;
  9415. transition:none;
  9416. transform-origin:50% 50%;
  9417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9418. font-weight:400;
  9419. font-style:normal;
  9420. font-size:14px;
  9421. }
  9422. #u23429 .text {
  9423. position:absolute;
  9424. align-self:center;
  9425. padding:5px 0px 5px 0px;
  9426. box-sizing:border-box;
  9427. width:100%;
  9428. }
  9429. #u23429_text {
  9430. border-width:0px;
  9431. white-space:nowrap;
  9432. text-transform:none;
  9433. }
  9434. #u23430_div {
  9435. border-width:0px;
  9436. position:absolute;
  9437. left:0px;
  9438. top:0px;
  9439. width:71px;
  9440. height:30px;
  9441. background:inherit;
  9442. background-color:rgba(255, 255, 255, 0);
  9443. border-top:0px;
  9444. border-right:0px;
  9445. border-bottom:0px;
  9446. border-radius:0px;
  9447. border-top-left-radius:0px;
  9448. border-bottom-left-radius:0px;
  9449. filter:drop-shadow(none);
  9450. transition:none;
  9451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9452. font-weight:400;
  9453. font-style:normal;
  9454. font-size:14px;
  9455. color:#7F7F7F;
  9456. }
  9457. #u23430 {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:2294px;
  9461. top:299px;
  9462. width:71px;
  9463. height:30px;
  9464. display:flex;
  9465. transition:none;
  9466. transform-origin:50% 50%;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:14px;
  9471. color:#7F7F7F;
  9472. }
  9473. #u23430 .text {
  9474. position:absolute;
  9475. align-self:center;
  9476. padding:5px 0px 5px 0px;
  9477. box-sizing:border-box;
  9478. width:100%;
  9479. }
  9480. #u23430_text {
  9481. border-width:0px;
  9482. white-space:nowrap;
  9483. text-transform:none;
  9484. }
  9485. #u23431_div {
  9486. border-width:0px;
  9487. position:absolute;
  9488. left:0px;
  9489. top:0px;
  9490. width:81px;
  9491. height:30px;
  9492. background:inherit;
  9493. background-color:rgba(255, 255, 255, 0);
  9494. border-top:0px;
  9495. border-right:0px;
  9496. border-bottom:0px;
  9497. border-radius:0px;
  9498. border-top-left-radius:0px;
  9499. border-bottom-left-radius:0px;
  9500. filter:drop-shadow(none);
  9501. transition:none;
  9502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9503. font-weight:400;
  9504. font-style:normal;
  9505. font-size:14px;
  9506. }
  9507. #u23431 {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:2370px;
  9511. top:299px;
  9512. width:81px;
  9513. height:30px;
  9514. display:flex;
  9515. transition:none;
  9516. transform-origin:50% 50%;
  9517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9518. font-weight:400;
  9519. font-style:normal;
  9520. font-size:14px;
  9521. }
  9522. #u23431 .text {
  9523. position:absolute;
  9524. align-self:center;
  9525. padding:5px 0px 5px 0px;
  9526. box-sizing:border-box;
  9527. width:100%;
  9528. }
  9529. #u23431_text {
  9530. border-width:0px;
  9531. white-space:nowrap;
  9532. text-transform:none;
  9533. }
  9534. #u23432_div {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:85px;
  9540. height:30px;
  9541. background:inherit;
  9542. background-color:rgba(255, 255, 255, 0);
  9543. border-top:0px;
  9544. border-right:0px;
  9545. border-bottom:0px;
  9546. border-radius:0px;
  9547. border-top-left-radius:0px;
  9548. border-bottom-left-radius:0px;
  9549. filter:drop-shadow(none);
  9550. transition:none;
  9551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9552. font-weight:400;
  9553. font-style:normal;
  9554. font-size:14px;
  9555. color:#7F7F7F;
  9556. }
  9557. #u23432 {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:2660px;
  9561. top:299px;
  9562. width:85px;
  9563. height:30px;
  9564. display:flex;
  9565. transition:none;
  9566. transform-origin:50% 50%;
  9567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9568. font-weight:400;
  9569. font-style:normal;
  9570. font-size:14px;
  9571. color:#7F7F7F;
  9572. }
  9573. #u23432 .text {
  9574. position:absolute;
  9575. align-self:center;
  9576. padding:5px 0px 5px 0px;
  9577. box-sizing:border-box;
  9578. width:100%;
  9579. }
  9580. #u23432_text {
  9581. border-width:0px;
  9582. white-space:nowrap;
  9583. text-transform:none;
  9584. }
  9585. #u23433_div {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:0px;
  9589. top:0px;
  9590. width:82px;
  9591. height:30px;
  9592. background:inherit;
  9593. background-color:rgba(255, 255, 255, 0);
  9594. border-top:0px;
  9595. border-right:0px;
  9596. border-bottom:0px;
  9597. border-radius:0px;
  9598. border-top-left-radius:0px;
  9599. border-bottom-left-radius:0px;
  9600. filter:drop-shadow(none);
  9601. transition:none;
  9602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:14px;
  9606. }
  9607. #u23433 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:2736px;
  9611. top:299px;
  9612. width:82px;
  9613. height:30px;
  9614. display:flex;
  9615. transition:none;
  9616. transform-origin:50% 50%;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:14px;
  9621. }
  9622. #u23433 .text {
  9623. position:absolute;
  9624. align-self:center;
  9625. padding:5px 0px 5px 0px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u23433_text {
  9630. border-width:0px;
  9631. white-space:nowrap;
  9632. text-transform:none;
  9633. }
  9634. #u23434_div {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:71px;
  9640. height:30px;
  9641. background:inherit;
  9642. background-color:rgba(255, 255, 255, 0);
  9643. border-top:0px;
  9644. border-right:0px;
  9645. border-bottom:0px;
  9646. border-radius:0px;
  9647. border-top-left-radius:0px;
  9648. border-bottom-left-radius:0px;
  9649. filter:drop-shadow(none);
  9650. transition:none;
  9651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9652. font-weight:400;
  9653. font-style:normal;
  9654. font-size:14px;
  9655. color:#7F7F7F;
  9656. }
  9657. #u23434 {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:2294px;
  9661. top:339px;
  9662. width:71px;
  9663. height:30px;
  9664. display:flex;
  9665. transition:none;
  9666. transform-origin:50% 50%;
  9667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9668. font-weight:400;
  9669. font-style:normal;
  9670. font-size:14px;
  9671. color:#7F7F7F;
  9672. }
  9673. #u23434 .text {
  9674. position:absolute;
  9675. align-self:center;
  9676. padding:5px 0px 5px 0px;
  9677. box-sizing:border-box;
  9678. width:100%;
  9679. }
  9680. #u23434_text {
  9681. border-width:0px;
  9682. white-space:nowrap;
  9683. text-transform:none;
  9684. }
  9685. #u23435_div {
  9686. border-width:0px;
  9687. position:absolute;
  9688. left:0px;
  9689. top:0px;
  9690. width:589px;
  9691. height:30px;
  9692. background:inherit;
  9693. background-color:rgba(255, 255, 255, 0);
  9694. border-top:0px;
  9695. border-right:0px;
  9696. border-bottom:0px;
  9697. border-radius:0px;
  9698. border-top-left-radius:0px;
  9699. border-bottom-left-radius:0px;
  9700. filter:drop-shadow(none);
  9701. transition:none;
  9702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9703. font-weight:400;
  9704. font-style:normal;
  9705. font-size:14px;
  9706. }
  9707. #u23435 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:2370px;
  9711. top:339px;
  9712. width:589px;
  9713. height:30px;
  9714. display:flex;
  9715. transition:none;
  9716. transform-origin:50% 50%;
  9717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:14px;
  9721. }
  9722. #u23435 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:5px 0px 5px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u23435_text {
  9730. border-width:0px;
  9731. white-space:nowrap;
  9732. text-transform:none;
  9733. }
  9734. #u23436_div {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:95px;
  9740. height:30px;
  9741. background:inherit;
  9742. background-color:rgba(255, 255, 255, 0);
  9743. border-top:0px;
  9744. border-right:0px;
  9745. border-bottom:0px;
  9746. border-radius:0px;
  9747. border-top-left-radius:0px;
  9748. border-bottom-left-radius:0px;
  9749. filter:drop-shadow(none);
  9750. transition:none;
  9751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9752. font-weight:500;
  9753. font-style:normal;
  9754. font-size:14px;
  9755. }
  9756. #u23436 {
  9757. border-width:0px;
  9758. position:absolute;
  9759. left:2274px;
  9760. top:389px;
  9761. width:95px;
  9762. height:30px;
  9763. display:flex;
  9764. transition:none;
  9765. transform-origin:50% 50%;
  9766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9767. font-weight:500;
  9768. font-style:normal;
  9769. font-size:14px;
  9770. }
  9771. #u23436 .text {
  9772. position:absolute;
  9773. align-self:center;
  9774. padding:5px 10px 5px 0px;
  9775. box-sizing:border-box;
  9776. width:100%;
  9777. }
  9778. #u23436_text {
  9779. border-width:0px;
  9780. white-space:nowrap;
  9781. text-transform:none;
  9782. }
  9783. #u23437_div {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:0px;
  9787. top:0px;
  9788. width:119px;
  9789. height:35px;
  9790. background:inherit;
  9791. background-color:rgba(255, 255, 255, 0);
  9792. border-top:0px;
  9793. border-right:0px;
  9794. border-bottom:0px;
  9795. border-radius:0px;
  9796. border-top-left-radius:0px;
  9797. border-bottom-left-radius:0px;
  9798. filter:drop-shadow(none);
  9799. transition:none;
  9800. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9801. font-weight:500;
  9802. font-style:normal;
  9803. font-size:18px;
  9804. }
  9805. #u23437 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:2248px;
  9809. top:77px;
  9810. width:119px;
  9811. height:35px;
  9812. display:flex;
  9813. transition:none;
  9814. transform-origin:50% 50%;
  9815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9816. font-weight:500;
  9817. font-style:normal;
  9818. font-size:18px;
  9819. }
  9820. #u23437 .text {
  9821. position:absolute;
  9822. align-self:center;
  9823. padding:5px 10px 5px 0px;
  9824. box-sizing:border-box;
  9825. width:100%;
  9826. }
  9827. #u23437_text {
  9828. border-width:0px;
  9829. white-space:nowrap;
  9830. text-transform:none;
  9831. }
  9832. #u23438 {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:3076px;
  9836. top:130px;
  9837. width:90px;
  9838. height:90px;
  9839. display:flex;
  9840. -webkit-transform:rotate(330deg);
  9841. -moz-transform:rotate(330deg);
  9842. -ms-transform:rotate(330deg);
  9843. transform:rotate(330deg);
  9844. transition:none;
  9845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9846. font-weight:400;
  9847. font-style:normal;
  9848. font-size:18px;
  9849. }
  9850. #u23438 .text {
  9851. position:absolute;
  9852. align-self:center;
  9853. padding:2px 2px 2px 2px;
  9854. box-sizing:border-box;
  9855. width:100%;
  9856. }
  9857. #u23438_img {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:0px;
  9861. top:0px;
  9862. width:90px;
  9863. height:90px;
  9864. }
  9865. #u23438_text {
  9866. border-width:0px;
  9867. word-wrap:break-word;
  9868. text-transform:none;
  9869. }
  9870. #u23439_div {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:67px;
  9876. height:30px;
  9877. background:inherit;
  9878. background-color:rgba(255, 255, 255, 0);
  9879. border-top:0px;
  9880. border-right:0px;
  9881. border-bottom:0px;
  9882. border-radius:0px;
  9883. border-top-left-radius:0px;
  9884. border-bottom-left-radius:0px;
  9885. filter:drop-shadow(none);
  9886. transition:none;
  9887. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9888. font-weight:500;
  9889. font-style:normal;
  9890. font-size:14px;
  9891. }
  9892. #u23439 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:2274px;
  9896. top:641px;
  9897. width:67px;
  9898. height:30px;
  9899. display:flex;
  9900. transition:none;
  9901. transform-origin:50% 50%;
  9902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9903. font-weight:500;
  9904. font-style:normal;
  9905. font-size:14px;
  9906. }
  9907. #u23439 .text {
  9908. position:absolute;
  9909. align-self:center;
  9910. padding:5px 10px 5px 0px;
  9911. box-sizing:border-box;
  9912. width:100%;
  9913. }
  9914. #u23439_text {
  9915. border-width:0px;
  9916. white-space:nowrap;
  9917. text-transform:none;
  9918. }
  9919. #u23440_div {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:0px;
  9923. top:0px;
  9924. width:81px;
  9925. height:30px;
  9926. background:inherit;
  9927. background-color:rgba(255, 255, 255, 0);
  9928. border-top:0px;
  9929. border-right:0px;
  9930. border-bottom:0px;
  9931. border-radius:0px;
  9932. border-top-left-radius:0px;
  9933. border-bottom-left-radius:0px;
  9934. filter:drop-shadow(none);
  9935. transition:none;
  9936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9937. font-weight:400;
  9938. font-style:normal;
  9939. font-size:14px;
  9940. color:#7F7F7F;
  9941. text-align:right;
  9942. }
  9943. #u23440 {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:2294px;
  9947. top:726px;
  9948. width:81px;
  9949. height:30px;
  9950. display:flex;
  9951. transition:none;
  9952. transform-origin:50% 50%;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:14px;
  9957. color:#7F7F7F;
  9958. text-align:right;
  9959. }
  9960. #u23440 .text {
  9961. position:absolute;
  9962. align-self:center;
  9963. padding:5px 10px 5px 0px;
  9964. box-sizing:border-box;
  9965. width:100%;
  9966. }
  9967. #u23440_text {
  9968. border-width:0px;
  9969. white-space:nowrap;
  9970. text-transform:none;
  9971. }
  9972. #u23441_div {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:81px;
  9978. height:30px;
  9979. background:inherit;
  9980. background-color:rgba(255, 255, 255, 0);
  9981. border-top:0px;
  9982. border-right:0px;
  9983. border-bottom:0px;
  9984. border-radius:0px;
  9985. border-top-left-radius:0px;
  9986. border-bottom-left-radius:0px;
  9987. filter:drop-shadow(none);
  9988. transition:none;
  9989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9990. font-weight:400;
  9991. font-style:normal;
  9992. font-size:14px;
  9993. }
  9994. #u23441 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:2375px;
  9998. top:726px;
  9999. width:81px;
  10000. height:30px;
  10001. display:flex;
  10002. transition:none;
  10003. transform-origin:50% 50%;
  10004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10005. font-weight:400;
  10006. font-style:normal;
  10007. font-size:14px;
  10008. }
  10009. #u23441 .text {
  10010. position:absolute;
  10011. align-self:center;
  10012. padding:5px 10px 5px 0px;
  10013. box-sizing:border-box;
  10014. width:100%;
  10015. }
  10016. #u23441_text {
  10017. border-width:0px;
  10018. white-space:nowrap;
  10019. text-transform:none;
  10020. }
  10021. #u23442_div {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:0px;
  10025. top:0px;
  10026. width:160px;
  10027. height:30px;
  10028. background:inherit;
  10029. background-color:rgba(255, 255, 255, 0);
  10030. border-top:0px;
  10031. border-right:0px;
  10032. border-bottom:0px;
  10033. border-radius:0px;
  10034. border-top-left-radius:0px;
  10035. border-bottom-left-radius:0px;
  10036. filter:drop-shadow(none);
  10037. transition:none;
  10038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10039. font-weight:400;
  10040. font-style:normal;
  10041. font-size:14px;
  10042. color:#7F7F7F;
  10043. text-align:right;
  10044. }
  10045. #u23442 {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:2672px;
  10049. top:847px;
  10050. width:160px;
  10051. height:30px;
  10052. display:flex;
  10053. transition:none;
  10054. transform-origin:50% 50%;
  10055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10056. font-weight:400;
  10057. font-style:normal;
  10058. font-size:14px;
  10059. color:#7F7F7F;
  10060. text-align:right;
  10061. }
  10062. #u23442 .text {
  10063. position:absolute;
  10064. align-self:center;
  10065. padding:5px 10px 5px 0px;
  10066. box-sizing:border-box;
  10067. width:100%;
  10068. }
  10069. #u23442_text {
  10070. border-width:0px;
  10071. white-space:nowrap;
  10072. text-transform:none;
  10073. }
  10074. #u23443_div {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:137px;
  10080. height:30px;
  10081. background:inherit;
  10082. background-color:rgba(255, 255, 255, 0);
  10083. border-top:0px;
  10084. border-right:0px;
  10085. border-bottom:0px;
  10086. border-radius:0px;
  10087. border-top-left-radius:0px;
  10088. border-bottom-left-radius:0px;
  10089. filter:drop-shadow(none);
  10090. transition:none;
  10091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10092. font-weight:400;
  10093. font-style:normal;
  10094. font-size:14px;
  10095. }
  10096. #u23443 {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:2832px;
  10100. top:847px;
  10101. width:137px;
  10102. height:30px;
  10103. display:flex;
  10104. transition:none;
  10105. transform-origin:50% 50%;
  10106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. font-size:14px;
  10110. }
  10111. #u23443 .text {
  10112. position:absolute;
  10113. align-self:center;
  10114. padding:5px 10px 5px 0px;
  10115. box-sizing:border-box;
  10116. width:100%;
  10117. }
  10118. #u23443_text {
  10119. border-width:0px;
  10120. white-space:nowrap;
  10121. text-transform:none;
  10122. }
  10123. #u23444_div {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:0px;
  10127. top:0px;
  10128. width:67px;
  10129. height:30px;
  10130. background:inherit;
  10131. background-color:rgba(255, 255, 255, 0);
  10132. border-top:0px;
  10133. border-right:0px;
  10134. border-bottom:0px;
  10135. border-radius:0px;
  10136. border-top-left-radius:0px;
  10137. border-bottom-left-radius:0px;
  10138. filter:drop-shadow(none);
  10139. transition:none;
  10140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10141. font-weight:400;
  10142. font-style:normal;
  10143. font-size:14px;
  10144. color:#7F7F7F;
  10145. text-align:right;
  10146. }
  10147. #u23444 {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:2294px;
  10151. top:766px;
  10152. width:67px;
  10153. height:30px;
  10154. display:flex;
  10155. transition:none;
  10156. transform-origin:50% 50%;
  10157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10158. font-weight:400;
  10159. font-style:normal;
  10160. font-size:14px;
  10161. color:#7F7F7F;
  10162. text-align:right;
  10163. }
  10164. #u23444 .text {
  10165. position:absolute;
  10166. align-self:center;
  10167. padding:5px 10px 5px 0px;
  10168. box-sizing:border-box;
  10169. width:100%;
  10170. }
  10171. #u23444_text {
  10172. border-width:0px;
  10173. white-space:nowrap;
  10174. text-transform:none;
  10175. }
  10176. #u23445_div {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:0px;
  10180. top:0px;
  10181. width:33px;
  10182. height:30px;
  10183. background:inherit;
  10184. background-color:rgba(255, 255, 255, 0);
  10185. border-top:0px;
  10186. border-right:0px;
  10187. border-bottom:0px;
  10188. border-radius:0px;
  10189. border-top-left-radius:0px;
  10190. border-bottom-left-radius:0px;
  10191. filter:drop-shadow(none);
  10192. transition:none;
  10193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10194. font-weight:400;
  10195. font-style:normal;
  10196. font-size:14px;
  10197. }
  10198. #u23445 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:2375px;
  10202. top:766px;
  10203. width:33px;
  10204. height:30px;
  10205. display:flex;
  10206. transition:none;
  10207. transform-origin:50% 50%;
  10208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10209. font-weight:400;
  10210. font-style:normal;
  10211. font-size:14px;
  10212. }
  10213. #u23445 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:5px 10px 5px 0px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u23445_text {
  10221. border-width:0px;
  10222. white-space:nowrap;
  10223. text-transform:none;
  10224. }
  10225. #u23446_div {
  10226. border-width:0px;
  10227. position:absolute;
  10228. left:0px;
  10229. top:0px;
  10230. width:81px;
  10231. height:30px;
  10232. background:inherit;
  10233. background-color:rgba(255, 255, 255, 0);
  10234. border-top:0px;
  10235. border-right:0px;
  10236. border-bottom:0px;
  10237. border-radius:0px;
  10238. border-top-left-radius:0px;
  10239. border-bottom-left-radius:0px;
  10240. filter:drop-shadow(none);
  10241. transition:none;
  10242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:14px;
  10246. color:#7F7F7F;
  10247. text-align:right;
  10248. }
  10249. #u23446 {
  10250. border-width:0px;
  10251. position:absolute;
  10252. left:2294px;
  10253. top:1007px;
  10254. width:81px;
  10255. height:30px;
  10256. display:flex;
  10257. transition:none;
  10258. transform-origin:50% 50%;
  10259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. font-size:14px;
  10263. color:#7F7F7F;
  10264. text-align:right;
  10265. }
  10266. #u23446 .text {
  10267. position:absolute;
  10268. align-self:center;
  10269. padding:5px 10px 5px 0px;
  10270. box-sizing:border-box;
  10271. width:100%;
  10272. }
  10273. #u23446_text {
  10274. border-width:0px;
  10275. white-space:nowrap;
  10276. text-transform:none;
  10277. }
  10278. #u23447_div {
  10279. border-width:0px;
  10280. position:absolute;
  10281. left:0px;
  10282. top:0px;
  10283. width:565px;
  10284. height:50px;
  10285. background:inherit;
  10286. background-color:rgba(255, 255, 255, 0);
  10287. border-top:0px;
  10288. border-right:0px;
  10289. border-bottom:0px;
  10290. border-radius:0px;
  10291. border-top-left-radius:0px;
  10292. border-bottom-left-radius:0px;
  10293. filter:drop-shadow(none);
  10294. transition:none;
  10295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10296. font-weight:400;
  10297. font-style:normal;
  10298. font-size:14px;
  10299. }
  10300. #u23447 {
  10301. border-width:0px;
  10302. position:absolute;
  10303. left:2375px;
  10304. top:1007px;
  10305. width:565px;
  10306. height:50px;
  10307. display:flex;
  10308. transition:none;
  10309. transform-origin:50% 50%;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:14px;
  10314. }
  10315. #u23447 .text {
  10316. position:absolute;
  10317. align-self:center;
  10318. padding:5px 10px 5px 0px;
  10319. box-sizing:border-box;
  10320. width:100%;
  10321. }
  10322. #u23447_text {
  10323. border-width:0px;
  10324. word-wrap:break-word;
  10325. text-transform:none;
  10326. }
  10327. #u23448_div {
  10328. border-width:0px;
  10329. position:absolute;
  10330. left:0px;
  10331. top:0px;
  10332. width:81px;
  10333. height:30px;
  10334. background:inherit;
  10335. background-color:rgba(255, 255, 255, 0);
  10336. border-top:0px;
  10337. border-right:0px;
  10338. border-bottom:0px;
  10339. border-radius:0px;
  10340. border-top-left-radius:0px;
  10341. border-bottom-left-radius:0px;
  10342. filter:drop-shadow(none);
  10343. transition:none;
  10344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10345. font-weight:400;
  10346. font-style:normal;
  10347. font-size:14px;
  10348. color:#7F7F7F;
  10349. text-align:right;
  10350. }
  10351. #u23448 {
  10352. border-width:0px;
  10353. position:absolute;
  10354. left:2752px;
  10355. top:726px;
  10356. width:81px;
  10357. height:30px;
  10358. display:flex;
  10359. transition:none;
  10360. transform-origin:50% 50%;
  10361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10362. font-weight:400;
  10363. font-style:normal;
  10364. font-size:14px;
  10365. color:#7F7F7F;
  10366. text-align:right;
  10367. }
  10368. #u23448 .text {
  10369. position:absolute;
  10370. align-self:center;
  10371. padding:5px 10px 5px 0px;
  10372. box-sizing:border-box;
  10373. width:100%;
  10374. }
  10375. #u23448_text {
  10376. border-width:0px;
  10377. white-space:nowrap;
  10378. text-transform:none;
  10379. }
  10380. #u23449_div {
  10381. border-width:0px;
  10382. position:absolute;
  10383. left:0px;
  10384. top:0px;
  10385. width:131px;
  10386. height:30px;
  10387. background:inherit;
  10388. background-color:rgba(255, 255, 255, 0);
  10389. border-top:0px;
  10390. border-right:0px;
  10391. border-bottom:0px;
  10392. border-radius:0px;
  10393. border-top-left-radius:0px;
  10394. border-bottom-left-radius:0px;
  10395. filter:drop-shadow(none);
  10396. transition:none;
  10397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10398. font-weight:400;
  10399. font-style:normal;
  10400. font-size:14px;
  10401. }
  10402. #u23449 {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:2833px;
  10406. top:726px;
  10407. width:131px;
  10408. height:30px;
  10409. display:flex;
  10410. transition:none;
  10411. transform-origin:50% 50%;
  10412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10413. font-weight:400;
  10414. font-style:normal;
  10415. font-size:14px;
  10416. }
  10417. #u23449 .text {
  10418. position:absolute;
  10419. align-self:center;
  10420. padding:5px 10px 5px 0px;
  10421. box-sizing:border-box;
  10422. width:100%;
  10423. }
  10424. #u23449_text {
  10425. border-width:0px;
  10426. white-space:nowrap;
  10427. text-transform:none;
  10428. }
  10429. #u23450_div {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:67px;
  10435. height:30px;
  10436. background:inherit;
  10437. background-color:rgba(255, 255, 255, 0);
  10438. border-top:0px;
  10439. border-right:0px;
  10440. border-bottom:0px;
  10441. border-radius:0px;
  10442. border-top-left-radius:0px;
  10443. border-bottom-left-radius:0px;
  10444. filter:drop-shadow(none);
  10445. transition:none;
  10446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. font-size:14px;
  10450. color:#7F7F7F;
  10451. text-align:right;
  10452. }
  10453. #u23450 {
  10454. border-width:0px;
  10455. position:absolute;
  10456. left:2294px;
  10457. top:808px;
  10458. width:67px;
  10459. height:30px;
  10460. display:flex;
  10461. transition:none;
  10462. transform-origin:50% 50%;
  10463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10464. font-weight:400;
  10465. font-style:normal;
  10466. font-size:14px;
  10467. color:#7F7F7F;
  10468. text-align:right;
  10469. }
  10470. #u23450 .text {
  10471. position:absolute;
  10472. align-self:center;
  10473. padding:5px 10px 5px 0px;
  10474. box-sizing:border-box;
  10475. width:100%;
  10476. }
  10477. #u23450_text {
  10478. border-width:0px;
  10479. white-space:nowrap;
  10480. text-transform:none;
  10481. }
  10482. #u23451_div {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:0px;
  10486. top:0px;
  10487. width:179px;
  10488. height:30px;
  10489. background:inherit;
  10490. background-color:rgba(255, 255, 255, 0);
  10491. border-top:0px;
  10492. border-right:0px;
  10493. border-bottom:0px;
  10494. border-radius:0px;
  10495. border-top-left-radius:0px;
  10496. border-bottom-left-radius:0px;
  10497. filter:drop-shadow(none);
  10498. transition:none;
  10499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10500. font-weight:400;
  10501. font-style:normal;
  10502. font-size:14px;
  10503. }
  10504. #u23451 {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:2374px;
  10508. top:808px;
  10509. width:179px;
  10510. height:30px;
  10511. display:flex;
  10512. transition:none;
  10513. transform-origin:50% 50%;
  10514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10515. font-weight:400;
  10516. font-style:normal;
  10517. font-size:14px;
  10518. }
  10519. #u23451 .text {
  10520. position:absolute;
  10521. align-self:center;
  10522. padding:5px 10px 5px 0px;
  10523. box-sizing:border-box;
  10524. width:100%;
  10525. }
  10526. #u23451_text {
  10527. border-width:0px;
  10528. white-space:nowrap;
  10529. text-transform:none;
  10530. }
  10531. #u23452_div {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:0px;
  10535. top:0px;
  10536. width:81px;
  10537. height:30px;
  10538. background:inherit;
  10539. background-color:rgba(255, 255, 255, 0);
  10540. border-top:0px;
  10541. border-right:0px;
  10542. border-bottom:0px;
  10543. border-radius:0px;
  10544. border-top-left-radius:0px;
  10545. border-bottom-left-radius:0px;
  10546. filter:drop-shadow(none);
  10547. transition:none;
  10548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10549. font-weight:400;
  10550. font-style:normal;
  10551. font-size:14px;
  10552. color:#7F7F7F;
  10553. text-align:right;
  10554. }
  10555. #u23452 {
  10556. border-width:0px;
  10557. position:absolute;
  10558. left:2752px;
  10559. top:806px;
  10560. width:81px;
  10561. height:30px;
  10562. display:flex;
  10563. transition:none;
  10564. transform-origin:50% 50%;
  10565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10566. font-weight:400;
  10567. font-style:normal;
  10568. font-size:14px;
  10569. color:#7F7F7F;
  10570. text-align:right;
  10571. }
  10572. #u23452 .text {
  10573. position:absolute;
  10574. align-self:center;
  10575. padding:5px 10px 5px 0px;
  10576. box-sizing:border-box;
  10577. width:100%;
  10578. }
  10579. #u23452_text {
  10580. border-width:0px;
  10581. white-space:nowrap;
  10582. text-transform:none;
  10583. }
  10584. #u23453_div {
  10585. border-width:0px;
  10586. position:absolute;
  10587. left:0px;
  10588. top:0px;
  10589. width:109px;
  10590. height:30px;
  10591. background:inherit;
  10592. background-color:rgba(255, 255, 255, 0);
  10593. border-top:0px;
  10594. border-right:0px;
  10595. border-bottom:0px;
  10596. border-radius:0px;
  10597. border-top-left-radius:0px;
  10598. border-bottom-left-radius:0px;
  10599. filter:drop-shadow(none);
  10600. transition:none;
  10601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10602. font-weight:400;
  10603. font-style:normal;
  10604. font-size:14px;
  10605. }
  10606. #u23453 {
  10607. border-width:0px;
  10608. position:absolute;
  10609. left:2833px;
  10610. top:806px;
  10611. width:109px;
  10612. height:30px;
  10613. display:flex;
  10614. transition:none;
  10615. transform-origin:50% 50%;
  10616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10617. font-weight:400;
  10618. font-style:normal;
  10619. font-size:14px;
  10620. }
  10621. #u23453 .text {
  10622. position:absolute;
  10623. align-self:center;
  10624. padding:5px 10px 5px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u23453_text {
  10629. border-width:0px;
  10630. white-space:nowrap;
  10631. text-transform:none;
  10632. }
  10633. #u23454_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:81px;
  10639. height:30px;
  10640. background:inherit;
  10641. background-color:rgba(255, 255, 255, 0);
  10642. border-top:0px;
  10643. border-right:0px;
  10644. border-bottom:0px;
  10645. border-radius:0px;
  10646. border-top-left-radius:0px;
  10647. border-bottom-left-radius:0px;
  10648. filter:drop-shadow(none);
  10649. transition:none;
  10650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10651. font-weight:400;
  10652. font-style:normal;
  10653. font-size:14px;
  10654. color:#7F7F7F;
  10655. text-align:right;
  10656. }
  10657. #u23454 {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:2294px;
  10661. top:847px;
  10662. width:81px;
  10663. height:30px;
  10664. display:flex;
  10665. transition:none;
  10666. transform-origin:50% 50%;
  10667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. font-size:14px;
  10671. color:#7F7F7F;
  10672. text-align:right;
  10673. }
  10674. #u23454 .text {
  10675. position:absolute;
  10676. align-self:center;
  10677. padding:5px 10px 5px 0px;
  10678. box-sizing:border-box;
  10679. width:100%;
  10680. }
  10681. #u23454_text {
  10682. border-width:0px;
  10683. white-space:nowrap;
  10684. text-transform:none;
  10685. }
  10686. #u23455_div {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:0px;
  10690. top:0px;
  10691. width:71px;
  10692. height:30px;
  10693. background:inherit;
  10694. background-color:rgba(255, 255, 255, 0);
  10695. border-top:0px;
  10696. border-right:0px;
  10697. border-bottom:0px;
  10698. border-radius:0px;
  10699. border-top-left-radius:0px;
  10700. border-bottom-left-radius:0px;
  10701. filter:drop-shadow(none);
  10702. transition:none;
  10703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10704. font-weight:400;
  10705. font-style:normal;
  10706. font-size:14px;
  10707. }
  10708. #u23455 {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:2375px;
  10712. top:847px;
  10713. width:71px;
  10714. height:30px;
  10715. display:flex;
  10716. transition:none;
  10717. transform-origin:50% 50%;
  10718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10719. font-weight:400;
  10720. font-style:normal;
  10721. font-size:14px;
  10722. }
  10723. #u23455 .text {
  10724. position:absolute;
  10725. align-self:center;
  10726. padding:5px 10px 5px 0px;
  10727. box-sizing:border-box;
  10728. width:100%;
  10729. }
  10730. #u23455_text {
  10731. border-width:0px;
  10732. white-space:nowrap;
  10733. text-transform:none;
  10734. }
  10735. #u23456_div {
  10736. border-width:0px;
  10737. position:absolute;
  10738. left:0px;
  10739. top:0px;
  10740. width:81px;
  10741. height:30px;
  10742. background:inherit;
  10743. background-color:rgba(255, 255, 255, 0);
  10744. border-top:0px;
  10745. border-right:0px;
  10746. border-bottom:0px;
  10747. border-radius:0px;
  10748. border-top-left-radius:0px;
  10749. border-bottom-left-radius:0px;
  10750. filter:drop-shadow(none);
  10751. transition:none;
  10752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10753. font-weight:400;
  10754. font-style:normal;
  10755. font-size:14px;
  10756. color:#7F7F7F;
  10757. text-align:right;
  10758. }
  10759. #u23456 {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:2294px;
  10763. top:887px;
  10764. width:81px;
  10765. height:30px;
  10766. display:flex;
  10767. transition:none;
  10768. transform-origin:50% 50%;
  10769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10770. font-weight:400;
  10771. font-style:normal;
  10772. font-size:14px;
  10773. color:#7F7F7F;
  10774. text-align:right;
  10775. }
  10776. #u23456 .text {
  10777. position:absolute;
  10778. align-self:center;
  10779. padding:5px 10px 5px 0px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u23456_text {
  10784. border-width:0px;
  10785. white-space:nowrap;
  10786. text-transform:none;
  10787. }
  10788. #u23457 {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:2375px;
  10792. top:893px;
  10793. width:143px;
  10794. height:101px;
  10795. display:flex;
  10796. transition:none;
  10797. }
  10798. #u23457 .text {
  10799. position:absolute;
  10800. align-self:center;
  10801. padding:2px 2px 2px 2px;
  10802. box-sizing:border-box;
  10803. width:100%;
  10804. }
  10805. #u23457_img {
  10806. border-width:0px;
  10807. position:absolute;
  10808. left:0px;
  10809. top:0px;
  10810. width:143px;
  10811. height:101px;
  10812. }
  10813. #u23457_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u23458_div {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:81px;
  10825. height:30px;
  10826. background:inherit;
  10827. background-color:rgba(255, 255, 255, 0);
  10828. border-top:0px;
  10829. border-right:0px;
  10830. border-bottom:0px;
  10831. border-radius:0px;
  10832. border-top-left-radius:0px;
  10833. border-bottom-left-radius:0px;
  10834. filter:drop-shadow(none);
  10835. transition:none;
  10836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10837. font-weight:400;
  10838. font-style:normal;
  10839. font-size:14px;
  10840. color:#7F7F7F;
  10841. text-align:right;
  10842. }
  10843. #u23458 {
  10844. border-width:0px;
  10845. position:absolute;
  10846. left:2752px;
  10847. top:766px;
  10848. width:81px;
  10849. height:30px;
  10850. display:flex;
  10851. transition:none;
  10852. transform-origin:50% 50%;
  10853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10854. font-weight:400;
  10855. font-style:normal;
  10856. font-size:14px;
  10857. color:#7F7F7F;
  10858. text-align:right;
  10859. }
  10860. #u23458 .text {
  10861. position:absolute;
  10862. align-self:center;
  10863. padding:5px 10px 5px 0px;
  10864. box-sizing:border-box;
  10865. width:100%;
  10866. }
  10867. #u23458_text {
  10868. border-width:0px;
  10869. white-space:nowrap;
  10870. text-transform:none;
  10871. }
  10872. #u23459_div {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:0px;
  10876. top:0px;
  10877. width:109px;
  10878. height:30px;
  10879. background:inherit;
  10880. background-color:rgba(255, 255, 255, 0);
  10881. border-top:0px;
  10882. border-right:0px;
  10883. border-bottom:0px;
  10884. border-radius:0px;
  10885. border-top-left-radius:0px;
  10886. border-bottom-left-radius:0px;
  10887. filter:drop-shadow(none);
  10888. transition:none;
  10889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:14px;
  10893. }
  10894. #u23459 {
  10895. border-width:0px;
  10896. position:absolute;
  10897. left:2833px;
  10898. top:766px;
  10899. width:109px;
  10900. height:30px;
  10901. display:flex;
  10902. transition:none;
  10903. transform-origin:50% 50%;
  10904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10905. font-weight:400;
  10906. font-style:normal;
  10907. font-size:14px;
  10908. }
  10909. #u23459 .text {
  10910. position:absolute;
  10911. align-self:center;
  10912. padding:5px 10px 5px 0px;
  10913. box-sizing:border-box;
  10914. width:100%;
  10915. }
  10916. #u23459_text {
  10917. border-width:0px;
  10918. white-space:nowrap;
  10919. text-transform:none;
  10920. }
  10921. #u23460_div {
  10922. border-width:0px;
  10923. position:absolute;
  10924. left:0px;
  10925. top:0px;
  10926. width:67px;
  10927. height:30px;
  10928. background:inherit;
  10929. background-color:rgba(255, 255, 255, 0);
  10930. border-top:0px;
  10931. border-right:0px;
  10932. border-bottom:0px;
  10933. border-radius:0px;
  10934. border-top-left-radius:0px;
  10935. border-bottom-left-radius:0px;
  10936. filter:drop-shadow(none);
  10937. transition:none;
  10938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10939. font-weight:500;
  10940. font-style:normal;
  10941. font-size:14px;
  10942. }
  10943. #u23460 {
  10944. border-width:0px;
  10945. position:absolute;
  10946. left:2274px;
  10947. top:1084px;
  10948. width:67px;
  10949. height:30px;
  10950. display:flex;
  10951. transition:none;
  10952. transform-origin:50% 50%;
  10953. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10954. font-weight:500;
  10955. font-style:normal;
  10956. font-size:14px;
  10957. }
  10958. #u23460 .text {
  10959. position:absolute;
  10960. align-self:center;
  10961. padding:5px 10px 5px 0px;
  10962. box-sizing:border-box;
  10963. width:100%;
  10964. }
  10965. #u23460_text {
  10966. border-width:0px;
  10967. white-space:nowrap;
  10968. text-transform:none;
  10969. }
  10970. #u23461_div {
  10971. border-width:0px;
  10972. position:absolute;
  10973. left:0px;
  10974. top:0px;
  10975. width:81px;
  10976. height:30px;
  10977. background:inherit;
  10978. background-color:rgba(255, 255, 255, 0);
  10979. border-top:0px;
  10980. border-right:0px;
  10981. border-bottom:0px;
  10982. border-radius:0px;
  10983. border-top-left-radius:0px;
  10984. border-bottom-left-radius:0px;
  10985. filter:drop-shadow(none);
  10986. transition:none;
  10987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10988. font-weight:400;
  10989. font-style:normal;
  10990. font-size:14px;
  10991. color:#7F7F7F;
  10992. text-align:right;
  10993. }
  10994. #u23461 {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:2294px;
  10998. top:686px;
  10999. width:81px;
  11000. height:30px;
  11001. display:flex;
  11002. transition:none;
  11003. transform-origin:50% 50%;
  11004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11005. font-weight:400;
  11006. font-style:normal;
  11007. font-size:14px;
  11008. color:#7F7F7F;
  11009. text-align:right;
  11010. }
  11011. #u23461 .text {
  11012. position:absolute;
  11013. align-self:center;
  11014. padding:5px 10px 5px 0px;
  11015. box-sizing:border-box;
  11016. width:100%;
  11017. }
  11018. #u23461_text {
  11019. border-width:0px;
  11020. white-space:nowrap;
  11021. text-transform:none;
  11022. }
  11023. #u23462_div {
  11024. border-width:0px;
  11025. position:absolute;
  11026. left:0px;
  11027. top:0px;
  11028. width:67px;
  11029. height:30px;
  11030. background:inherit;
  11031. background-color:rgba(255, 255, 255, 0);
  11032. border-top:0px;
  11033. border-right:0px;
  11034. border-bottom:0px;
  11035. border-radius:0px;
  11036. border-top-left-radius:0px;
  11037. border-bottom-left-radius:0px;
  11038. filter:drop-shadow(none);
  11039. transition:none;
  11040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11041. font-weight:400;
  11042. font-style:normal;
  11043. font-size:14px;
  11044. }
  11045. #u23462 {
  11046. border-width:0px;
  11047. position:absolute;
  11048. left:2375px;
  11049. top:686px;
  11050. width:67px;
  11051. height:30px;
  11052. display:flex;
  11053. transition:none;
  11054. transform-origin:50% 50%;
  11055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11056. font-weight:400;
  11057. font-style:normal;
  11058. font-size:14px;
  11059. }
  11060. #u23462 .text {
  11061. position:absolute;
  11062. align-self:center;
  11063. padding:5px 10px 5px 0px;
  11064. box-sizing:border-box;
  11065. width:100%;
  11066. }
  11067. #u23462_text {
  11068. border-width:0px;
  11069. white-space:nowrap;
  11070. text-transform:none;
  11071. }
  11072. #u23463_div {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:0px;
  11076. top:0px;
  11077. width:81px;
  11078. height:30px;
  11079. background:inherit;
  11080. background-color:rgba(255, 255, 255, 0);
  11081. border-top:0px;
  11082. border-right:0px;
  11083. border-bottom:0px;
  11084. border-radius:0px;
  11085. border-top-left-radius:0px;
  11086. border-bottom-left-radius:0px;
  11087. filter:drop-shadow(none);
  11088. transition:none;
  11089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11090. font-weight:400;
  11091. font-style:normal;
  11092. font-size:14px;
  11093. color:#7F7F7F;
  11094. text-align:right;
  11095. }
  11096. #u23463 {
  11097. border-width:0px;
  11098. position:absolute;
  11099. left:2294px;
  11100. top:1164px;
  11101. width:81px;
  11102. height:30px;
  11103. display:flex;
  11104. transition:none;
  11105. transform-origin:50% 50%;
  11106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11107. font-weight:400;
  11108. font-style:normal;
  11109. font-size:14px;
  11110. color:#7F7F7F;
  11111. text-align:right;
  11112. }
  11113. #u23463 .text {
  11114. position:absolute;
  11115. align-self:center;
  11116. padding:5px 10px 5px 0px;
  11117. box-sizing:border-box;
  11118. width:100%;
  11119. }
  11120. #u23463_text {
  11121. border-width:0px;
  11122. white-space:nowrap;
  11123. text-transform:none;
  11124. }
  11125. #u23464_div {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:0px;
  11129. top:0px;
  11130. width:81px;
  11131. height:30px;
  11132. background:inherit;
  11133. background-color:rgba(255, 255, 255, 0);
  11134. border-top:0px;
  11135. border-right:0px;
  11136. border-bottom:0px;
  11137. border-radius:0px;
  11138. border-top-left-radius:0px;
  11139. border-bottom-left-radius:0px;
  11140. filter:drop-shadow(none);
  11141. transition:none;
  11142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11143. font-weight:400;
  11144. font-style:normal;
  11145. font-size:14px;
  11146. }
  11147. #u23464 {
  11148. border-width:0px;
  11149. position:absolute;
  11150. left:2375px;
  11151. top:1164px;
  11152. width:81px;
  11153. height:30px;
  11154. display:flex;
  11155. transition:none;
  11156. transform-origin:50% 50%;
  11157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11158. font-weight:400;
  11159. font-style:normal;
  11160. font-size:14px;
  11161. }
  11162. #u23464 .text {
  11163. position:absolute;
  11164. align-self:center;
  11165. padding:5px 10px 5px 0px;
  11166. box-sizing:border-box;
  11167. width:100%;
  11168. }
  11169. #u23464_text {
  11170. border-width:0px;
  11171. white-space:nowrap;
  11172. text-transform:none;
  11173. }
  11174. #u23465_div {
  11175. border-width:0px;
  11176. position:absolute;
  11177. left:0px;
  11178. top:0px;
  11179. width:81px;
  11180. height:30px;
  11181. background:inherit;
  11182. background-color:rgba(255, 255, 255, 0);
  11183. border-top:0px;
  11184. border-right:0px;
  11185. border-bottom:0px;
  11186. border-radius:0px;
  11187. border-top-left-radius:0px;
  11188. border-bottom-left-radius:0px;
  11189. filter:drop-shadow(none);
  11190. transition:none;
  11191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11192. font-weight:400;
  11193. font-style:normal;
  11194. font-size:14px;
  11195. color:#7F7F7F;
  11196. text-align:right;
  11197. }
  11198. #u23465 {
  11199. border-width:0px;
  11200. position:absolute;
  11201. left:2752px;
  11202. top:1164px;
  11203. width:81px;
  11204. height:30px;
  11205. display:flex;
  11206. transition:none;
  11207. transform-origin:50% 50%;
  11208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11209. font-weight:400;
  11210. font-style:normal;
  11211. font-size:14px;
  11212. color:#7F7F7F;
  11213. text-align:right;
  11214. }
  11215. #u23465 .text {
  11216. position:absolute;
  11217. align-self:center;
  11218. padding:5px 10px 5px 0px;
  11219. box-sizing:border-box;
  11220. width:100%;
  11221. }
  11222. #u23465_text {
  11223. border-width:0px;
  11224. white-space:nowrap;
  11225. text-transform:none;
  11226. }
  11227. #u23466_div {
  11228. border-width:0px;
  11229. position:absolute;
  11230. left:0px;
  11231. top:0px;
  11232. width:68px;
  11233. height:30px;
  11234. background:inherit;
  11235. background-color:rgba(255, 255, 255, 0);
  11236. border-top:0px;
  11237. border-right:0px;
  11238. border-bottom:0px;
  11239. border-radius:0px;
  11240. border-top-left-radius:0px;
  11241. border-bottom-left-radius:0px;
  11242. filter:drop-shadow(none);
  11243. transition:none;
  11244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11245. font-weight:400;
  11246. font-style:normal;
  11247. font-size:14px;
  11248. }
  11249. #u23466 {
  11250. border-width:0px;
  11251. position:absolute;
  11252. left:2833px;
  11253. top:1164px;
  11254. width:68px;
  11255. height:30px;
  11256. display:flex;
  11257. transition:none;
  11258. transform-origin:50% 50%;
  11259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11260. font-weight:400;
  11261. font-style:normal;
  11262. font-size:14px;
  11263. }
  11264. #u23466 .text {
  11265. position:absolute;
  11266. align-self:center;
  11267. padding:5px 10px 5px 0px;
  11268. box-sizing:border-box;
  11269. width:100%;
  11270. }
  11271. #u23466_text {
  11272. border-width:0px;
  11273. white-space:nowrap;
  11274. text-transform:none;
  11275. }
  11276. #u23467_div {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:0px;
  11280. top:0px;
  11281. width:81px;
  11282. height:30px;
  11283. background:inherit;
  11284. background-color:rgba(255, 255, 255, 0);
  11285. border-top:0px;
  11286. border-right:0px;
  11287. border-bottom:0px;
  11288. border-radius:0px;
  11289. border-top-left-radius:0px;
  11290. border-bottom-left-radius:0px;
  11291. filter:drop-shadow(none);
  11292. transition:none;
  11293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11294. font-weight:400;
  11295. font-style:normal;
  11296. font-size:14px;
  11297. color:#7F7F7F;
  11298. text-align:right;
  11299. }
  11300. #u23467 {
  11301. border-width:0px;
  11302. position:absolute;
  11303. left:2294px;
  11304. top:1124px;
  11305. width:81px;
  11306. height:30px;
  11307. display:flex;
  11308. transition:none;
  11309. transform-origin:50% 50%;
  11310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11311. font-weight:400;
  11312. font-style:normal;
  11313. font-size:14px;
  11314. color:#7F7F7F;
  11315. text-align:right;
  11316. }
  11317. #u23467 .text {
  11318. position:absolute;
  11319. align-self:center;
  11320. padding:5px 10px 5px 0px;
  11321. box-sizing:border-box;
  11322. width:100%;
  11323. }
  11324. #u23467_text {
  11325. border-width:0px;
  11326. white-space:nowrap;
  11327. text-transform:none;
  11328. }
  11329. #u23468_div {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:0px;
  11333. top:0px;
  11334. width:25px;
  11335. height:30px;
  11336. background:inherit;
  11337. background-color:rgba(255, 255, 255, 0);
  11338. border-top:0px;
  11339. border-right:0px;
  11340. border-bottom:0px;
  11341. border-radius:0px;
  11342. border-top-left-radius:0px;
  11343. border-bottom-left-radius:0px;
  11344. filter:drop-shadow(none);
  11345. transition:none;
  11346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11347. font-weight:400;
  11348. font-style:normal;
  11349. font-size:14px;
  11350. }
  11351. #u23468 {
  11352. border-width:0px;
  11353. position:absolute;
  11354. left:2375px;
  11355. top:1124px;
  11356. width:25px;
  11357. height:30px;
  11358. display:flex;
  11359. transition:none;
  11360. transform-origin:50% 50%;
  11361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11362. font-weight:400;
  11363. font-style:normal;
  11364. font-size:14px;
  11365. }
  11366. #u23468 .text {
  11367. position:absolute;
  11368. align-self:center;
  11369. padding:5px 10px 5px 0px;
  11370. box-sizing:border-box;
  11371. width:100%;
  11372. }
  11373. #u23468_text {
  11374. border-width:0px;
  11375. white-space:nowrap;
  11376. text-transform:none;
  11377. }
  11378. #u23469_div {
  11379. border-width:0px;
  11380. position:absolute;
  11381. left:0px;
  11382. top:0px;
  11383. width:81px;
  11384. height:30px;
  11385. background:inherit;
  11386. background-color:rgba(255, 255, 255, 0);
  11387. border-top:0px;
  11388. border-right:0px;
  11389. border-bottom:0px;
  11390. border-radius:0px;
  11391. border-top-left-radius:0px;
  11392. border-bottom-left-radius:0px;
  11393. filter:drop-shadow(none);
  11394. transition:none;
  11395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11396. font-weight:400;
  11397. font-style:normal;
  11398. font-size:14px;
  11399. color:#7F7F7F;
  11400. text-align:right;
  11401. }
  11402. #u23469 {
  11403. border-width:0px;
  11404. position:absolute;
  11405. left:2294px;
  11406. top:1204px;
  11407. width:81px;
  11408. height:30px;
  11409. display:flex;
  11410. transition:none;
  11411. transform-origin:50% 50%;
  11412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11413. font-weight:400;
  11414. font-style:normal;
  11415. font-size:14px;
  11416. color:#7F7F7F;
  11417. text-align:right;
  11418. }
  11419. #u23469 .text {
  11420. position:absolute;
  11421. align-self:center;
  11422. padding:5px 10px 5px 0px;
  11423. box-sizing:border-box;
  11424. width:100%;
  11425. }
  11426. #u23469_text {
  11427. border-width:0px;
  11428. white-space:nowrap;
  11429. text-transform:none;
  11430. }
  11431. #u23470_div {
  11432. border-width:0px;
  11433. position:absolute;
  11434. left:0px;
  11435. top:0px;
  11436. width:81px;
  11437. height:30px;
  11438. background:inherit;
  11439. background-color:rgba(255, 255, 255, 0);
  11440. border-top:0px;
  11441. border-right:0px;
  11442. border-bottom:0px;
  11443. border-radius:0px;
  11444. border-top-left-radius:0px;
  11445. border-bottom-left-radius:0px;
  11446. filter:drop-shadow(none);
  11447. transition:none;
  11448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11449. font-weight:400;
  11450. font-style:normal;
  11451. font-size:14px;
  11452. }
  11453. #u23470 {
  11454. border-width:0px;
  11455. position:absolute;
  11456. left:2375px;
  11457. top:1204px;
  11458. width:81px;
  11459. height:30px;
  11460. display:flex;
  11461. transition:none;
  11462. transform-origin:50% 50%;
  11463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11464. font-weight:400;
  11465. font-style:normal;
  11466. font-size:14px;
  11467. }
  11468. #u23470 .text {
  11469. position:absolute;
  11470. align-self:center;
  11471. padding:5px 10px 5px 0px;
  11472. box-sizing:border-box;
  11473. width:100%;
  11474. }
  11475. #u23470_text {
  11476. border-width:0px;
  11477. white-space:nowrap;
  11478. text-transform:none;
  11479. }
  11480. #u23471_div {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:0px;
  11484. top:0px;
  11485. width:95px;
  11486. height:30px;
  11487. background:inherit;
  11488. background-color:rgba(255, 255, 255, 0);
  11489. border-top:0px;
  11490. border-right:0px;
  11491. border-bottom:0px;
  11492. border-radius:0px;
  11493. border-top-left-radius:0px;
  11494. border-bottom-left-radius:0px;
  11495. filter:drop-shadow(none);
  11496. transition:none;
  11497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11498. font-weight:400;
  11499. font-style:normal;
  11500. font-size:14px;
  11501. color:#7F7F7F;
  11502. text-align:right;
  11503. }
  11504. #u23471 {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:2738px;
  11508. top:1204px;
  11509. width:95px;
  11510. height:30px;
  11511. display:flex;
  11512. transition:none;
  11513. transform-origin:50% 50%;
  11514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11515. font-weight:400;
  11516. font-style:normal;
  11517. font-size:14px;
  11518. color:#7F7F7F;
  11519. text-align:right;
  11520. }
  11521. #u23471 .text {
  11522. position:absolute;
  11523. align-self:center;
  11524. padding:5px 10px 5px 0px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u23471_text {
  11529. border-width:0px;
  11530. white-space:nowrap;
  11531. text-transform:none;
  11532. }
  11533. #u23472_div {
  11534. border-width:0px;
  11535. position:absolute;
  11536. left:0px;
  11537. top:0px;
  11538. width:81px;
  11539. height:30px;
  11540. background:inherit;
  11541. background-color:rgba(255, 255, 255, 0);
  11542. border-top:0px;
  11543. border-right:0px;
  11544. border-bottom:0px;
  11545. border-radius:0px;
  11546. border-top-left-radius:0px;
  11547. border-bottom-left-radius:0px;
  11548. filter:drop-shadow(none);
  11549. transition:none;
  11550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11551. font-weight:400;
  11552. font-style:normal;
  11553. font-size:14px;
  11554. }
  11555. #u23472 {
  11556. border-width:0px;
  11557. position:absolute;
  11558. left:2833px;
  11559. top:1204px;
  11560. width:81px;
  11561. height:30px;
  11562. display:flex;
  11563. transition:none;
  11564. transform-origin:50% 50%;
  11565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11566. font-weight:400;
  11567. font-style:normal;
  11568. font-size:14px;
  11569. }
  11570. #u23472 .text {
  11571. position:absolute;
  11572. align-self:center;
  11573. padding:5px 10px 5px 0px;
  11574. box-sizing:border-box;
  11575. width:100%;
  11576. }
  11577. #u23472_text {
  11578. border-width:0px;
  11579. white-space:nowrap;
  11580. text-transform:none;
  11581. }
  11582. #u23473_div {
  11583. border-width:0px;
  11584. position:absolute;
  11585. left:0px;
  11586. top:0px;
  11587. width:81px;
  11588. height:30px;
  11589. background:inherit;
  11590. background-color:rgba(255, 255, 255, 0);
  11591. border-top:0px;
  11592. border-right:0px;
  11593. border-bottom:0px;
  11594. border-radius:0px;
  11595. border-top-left-radius:0px;
  11596. border-bottom-left-radius:0px;
  11597. filter:drop-shadow(none);
  11598. transition:none;
  11599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11600. font-weight:400;
  11601. font-style:normal;
  11602. font-size:14px;
  11603. color:#7F7F7F;
  11604. text-align:right;
  11605. }
  11606. #u23473 {
  11607. border-width:0px;
  11608. position:absolute;
  11609. left:2294px;
  11610. top:1244px;
  11611. width:81px;
  11612. height:30px;
  11613. display:flex;
  11614. transition:none;
  11615. transform-origin:50% 50%;
  11616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11617. font-weight:400;
  11618. font-style:normal;
  11619. font-size:14px;
  11620. color:#7F7F7F;
  11621. text-align:right;
  11622. }
  11623. #u23473 .text {
  11624. position:absolute;
  11625. align-self:center;
  11626. padding:5px 10px 5px 0px;
  11627. box-sizing:border-box;
  11628. width:100%;
  11629. }
  11630. #u23473_text {
  11631. border-width:0px;
  11632. white-space:nowrap;
  11633. text-transform:none;
  11634. }
  11635. #u23474_div {
  11636. border-width:0px;
  11637. position:absolute;
  11638. left:0px;
  11639. top:0px;
  11640. width:751px;
  11641. height:50px;
  11642. background:inherit;
  11643. background-color:rgba(255, 255, 255, 0);
  11644. border-top:0px;
  11645. border-right:0px;
  11646. border-bottom:0px;
  11647. border-radius:0px;
  11648. border-top-left-radius:0px;
  11649. border-bottom-left-radius:0px;
  11650. filter:drop-shadow(none);
  11651. transition:none;
  11652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:14px;
  11656. }
  11657. #u23474 {
  11658. border-width:0px;
  11659. position:absolute;
  11660. left:2375px;
  11661. top:1244px;
  11662. width:751px;
  11663. height:50px;
  11664. display:flex;
  11665. transition:none;
  11666. transform-origin:50% 50%;
  11667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11668. font-weight:400;
  11669. font-style:normal;
  11670. font-size:14px;
  11671. }
  11672. #u23474 .text {
  11673. position:absolute;
  11674. align-self:center;
  11675. padding:5px 10px 5px 0px;
  11676. box-sizing:border-box;
  11677. width:100%;
  11678. }
  11679. #u23474_text {
  11680. border-width:0px;
  11681. word-wrap:break-word;
  11682. text-transform:none;
  11683. }