styles.css 119 KB

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