styles.css 157 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2119px;
  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. #u52881_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. #u52881 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u52881 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u52881_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u52882_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. #u52882 {
  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. #u52882 .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. #u52882_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u52883_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. #u52883 {
  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. #u52883 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u52883_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u52884 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u52885_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u52885 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u52885 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u52885_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u52886_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. #u52886 {
  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. #u52886 .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. #u52886_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u52887_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. #u52887 {
  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. #u52887 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u52887_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u52888 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u52889_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u52889_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u52889_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u52889 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u52889 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u52889_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u52889.disabled {
  356. }
  357. .u52889_input_option {
  358. font-size:14px;
  359. }
  360. #u52890_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u52890 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u52890 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u52890_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u52891_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u52891 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u52891 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u52891_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u52892_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u52892 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u52892 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u52892_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u52893 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u52894_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u52894 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u52894 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u52894_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u52895_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u52895 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u52895 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u52895_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u52896 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u52897_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u52897 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u52897 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u52897_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u52898_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u52898 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u52898 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u52898_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u52899 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u52900_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u52900 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u52900 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u52900_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u52901_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u52901 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u52901 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u52901_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u52902 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u52903_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u52903 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u52903 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u52903_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u52904_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u52904 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u52904 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u52904_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u52905 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u52906_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u52906 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u52906 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u52906_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u52907_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u52907 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u52907 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u52907_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u52908 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u52909_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u52909 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u52909 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u52909_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u52910_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u52910 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u52910 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u52910_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u52911 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u52912_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u52912 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u52912 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u52912_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u52913_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u52913 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u52913 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u52913_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u52914 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u52915_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u52915 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u52915 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u52915_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u52916_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u52916 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u52916 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u52916_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u52917 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u52918_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u52918 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u52918 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u52918_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u52919_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u52919 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u52919 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u52919_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u52920 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u52921_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u52921 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u52921 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u52921_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u52922_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u52922 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u52922 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u52922_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u52923_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u52923 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u52923 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u52923_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u52924_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u52924 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u52924 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u52924_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u52925_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u52925 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u52925 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u52925_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u52926_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u52926 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u52926 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u52926_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u52927 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u52928_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u52928 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u52928 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u52928_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u52929_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u52929 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u52929 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u52929_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u52930 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u52931_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u52931 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u52931 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u52931_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u52932_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u52932 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u52932 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u52932_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u52933_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u52933 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u52933 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u52933_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u52934_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:109px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. }
  1701. #u52934 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:349px;
  1705. top:215px;
  1706. width:109px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u52934 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u52934_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u52935 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u52936_div {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:140px;
  1740. height:40px;
  1741. background:inherit;
  1742. background-color:rgba(255, 255, 255, 1);
  1743. box-sizing:border-box;
  1744. border-width:1px;
  1745. border-style:solid;
  1746. border-color:rgba(170, 170, 170, 1);
  1747. border-radius:4px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. text-align:left;
  1755. }
  1756. #u52936 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:399px;
  1760. top:318px;
  1761. width:140px;
  1762. height:40px;
  1763. display:flex;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. text-align:left;
  1768. }
  1769. #u52936 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 10px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u52936_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u52937_input {
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:132px;
  1787. height:31px;
  1788. padding:2px 2px 2px 2px;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:13px;
  1793. letter-spacing:normal;
  1794. color:#AAAAAA;
  1795. vertical-align:none;
  1796. text-align:left;
  1797. text-transform:none;
  1798. background-color:transparent;
  1799. border-color:transparent;
  1800. }
  1801. #u52937_input.disabled {
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:132px;
  1806. height:31px;
  1807. padding:2px 2px 2px 2px;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:13px;
  1812. letter-spacing:normal;
  1813. color:#AAAAAA;
  1814. vertical-align:none;
  1815. text-align:left;
  1816. text-transform:none;
  1817. background-color:transparent;
  1818. border-color:transparent;
  1819. }
  1820. #u52937_div {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:132px;
  1826. height:31px;
  1827. background:inherit;
  1828. background-color:rgba(255, 255, 255, 1);
  1829. border:none;
  1830. border-radius:0px;
  1831. -moz-box-shadow:none;
  1832. -webkit-box-shadow:none;
  1833. box-shadow:none;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. color:#AAAAAA;
  1838. }
  1839. #u52937 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:403px;
  1843. top:323px;
  1844. width:132px;
  1845. height:31px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. color:#AAAAAA;
  1851. }
  1852. #u52937 .text {
  1853. position:absolute;
  1854. align-self:center;
  1855. padding:2px 2px 2px 2px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u52937_div.disabled {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:132px;
  1865. height:31px;
  1866. background:inherit;
  1867. background-color:rgba(240, 240, 240, 1);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. color:#AAAAAA;
  1877. }
  1878. #u52937.disabled {
  1879. }
  1880. #u52938_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:43px;
  1886. height:30px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 0);
  1889. border:none;
  1890. border-top:0px;
  1891. border-right:0px;
  1892. border-bottom:0px;
  1893. border-radius:0px;
  1894. border-top-left-radius:0px;
  1895. border-bottom-left-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. text-align:right;
  1904. }
  1905. #u52938 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:559px;
  1909. top:277px;
  1910. width:43px;
  1911. height:30px;
  1912. display:flex;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. text-align:right;
  1918. }
  1919. #u52938 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:5px 0px 5px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u52938_text {
  1927. border-width:0px;
  1928. white-space:nowrap;
  1929. text-transform:none;
  1930. }
  1931. #u52939 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:0px;
  1937. height:0px;
  1938. }
  1939. #u52940_div {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:140px;
  1945. height:40px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 1);
  1948. box-sizing:border-box;
  1949. border-width:1px;
  1950. border-style:solid;
  1951. border-color:rgba(170, 170, 170, 1);
  1952. border-radius:4px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. }
  1957. #u52940 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:602px;
  1961. top:272px;
  1962. width:140px;
  1963. height:40px;
  1964. display:flex;
  1965. }
  1966. #u52940 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 0px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u52940_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u52941_input {
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:133px;
  1984. height:30px;
  1985. padding:2px 2px 2px 0px;
  1986. font-family:'ArialMT', 'Arial', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:13px;
  1990. letter-spacing:normal;
  1991. color:#AAAAAA;
  1992. vertical-align:none;
  1993. text-align:left;
  1994. text-transform:none;
  1995. background-color:transparent;
  1996. border-color:transparent;
  1997. }
  1998. #u52941_input.disabled {
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:133px;
  2003. height:30px;
  2004. padding:2px 2px 2px 0px;
  2005. font-family:'ArialMT', 'Arial', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:13px;
  2009. letter-spacing:normal;
  2010. color:#AAAAAA;
  2011. vertical-align:none;
  2012. text-align:left;
  2013. text-transform:none;
  2014. background-color:transparent;
  2015. border-color:transparent;
  2016. }
  2017. #u52941_div {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:133px;
  2023. height:30px;
  2024. background:inherit;
  2025. background-color:rgba(255, 255, 255, 1);
  2026. border:none;
  2027. border-radius:0px;
  2028. -moz-box-shadow:none;
  2029. -webkit-box-shadow:none;
  2030. box-shadow:none;
  2031. color:#AAAAAA;
  2032. }
  2033. #u52941 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:606px;
  2037. top:278px;
  2038. width:133px;
  2039. height:30px;
  2040. display:flex;
  2041. color:#AAAAAA;
  2042. }
  2043. #u52941 .text {
  2044. position:absolute;
  2045. align-self:flex-start;
  2046. padding:2px 2px 2px 0px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u52941_div.disabled {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:133px;
  2056. height:30px;
  2057. background:inherit;
  2058. background-color:rgba(240, 240, 240, 1);
  2059. border:none;
  2060. border-radius:0px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. color:#AAAAAA;
  2065. }
  2066. #u52941.disabled {
  2067. }
  2068. .u52941_input_option {
  2069. }
  2070. #u52942_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:43px;
  2076. height:30px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 0);
  2079. border:none;
  2080. border-top:0px;
  2081. border-right:0px;
  2082. border-bottom:0px;
  2083. border-radius:0px;
  2084. border-top-left-radius:0px;
  2085. border-bottom-left-radius:0px;
  2086. -moz-box-shadow:none;
  2087. -webkit-box-shadow:none;
  2088. box-shadow:none;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. text-align:right;
  2094. }
  2095. #u52942 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:762px;
  2099. top:277px;
  2100. width:43px;
  2101. height:30px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. text-align:right;
  2108. }
  2109. #u52942 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:5px 0px 5px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u52942_text {
  2117. border-width:0px;
  2118. white-space:nowrap;
  2119. text-transform:none;
  2120. }
  2121. #u52943 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:0px;
  2127. height:0px;
  2128. }
  2129. #u52944_div {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:140px;
  2135. height:40px;
  2136. background:inherit;
  2137. background-color:rgba(255, 255, 255, 1);
  2138. box-sizing:border-box;
  2139. border-width:1px;
  2140. border-style:solid;
  2141. border-color:rgba(170, 170, 170, 1);
  2142. border-radius:4px;
  2143. -moz-box-shadow:none;
  2144. -webkit-box-shadow:none;
  2145. box-shadow:none;
  2146. }
  2147. #u52944 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:805px;
  2151. top:272px;
  2152. width:140px;
  2153. height:40px;
  2154. display:flex;
  2155. }
  2156. #u52944 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u52944_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u52945_input {
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:133px;
  2174. height:30px;
  2175. padding:2px 2px 2px 0px;
  2176. font-family:'ArialMT', 'Arial', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:13px;
  2180. letter-spacing:normal;
  2181. color:#AAAAAA;
  2182. vertical-align:none;
  2183. text-align:left;
  2184. text-transform:none;
  2185. background-color:transparent;
  2186. border-color:transparent;
  2187. }
  2188. #u52945_input.disabled {
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:133px;
  2193. height:30px;
  2194. padding:2px 2px 2px 0px;
  2195. font-family:'ArialMT', 'Arial', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:13px;
  2199. letter-spacing:normal;
  2200. color:#AAAAAA;
  2201. vertical-align:none;
  2202. text-align:left;
  2203. text-transform:none;
  2204. background-color:transparent;
  2205. border-color:transparent;
  2206. }
  2207. #u52945_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:133px;
  2213. height:30px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 1);
  2216. border:none;
  2217. border-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. color:#AAAAAA;
  2222. }
  2223. #u52945 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:809px;
  2227. top:278px;
  2228. width:133px;
  2229. height:30px;
  2230. display:flex;
  2231. color:#AAAAAA;
  2232. }
  2233. #u52945 .text {
  2234. position:absolute;
  2235. align-self:flex-start;
  2236. padding:2px 2px 2px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u52945_div.disabled {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:133px;
  2246. height:30px;
  2247. background:inherit;
  2248. background-color:rgba(240, 240, 240, 1);
  2249. border:none;
  2250. border-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. color:#AAAAAA;
  2255. }
  2256. #u52945.disabled {
  2257. }
  2258. .u52945_input_option {
  2259. }
  2260. #u52946_div {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:43px;
  2266. height:30px;
  2267. background:inherit;
  2268. background-color:rgba(255, 255, 255, 0);
  2269. border:none;
  2270. border-top:0px;
  2271. border-right:0px;
  2272. border-bottom:0px;
  2273. border-radius:0px;
  2274. border-top-left-radius:0px;
  2275. border-bottom-left-radius:0px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. text-align:right;
  2284. }
  2285. #u52946 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:965px;
  2289. top:277px;
  2290. width:43px;
  2291. height:30px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:14px;
  2297. text-align:right;
  2298. }
  2299. #u52946 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:5px 0px 5px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u52946_text {
  2307. border-width:0px;
  2308. white-space:nowrap;
  2309. text-transform:none;
  2310. }
  2311. #u52947 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:0px;
  2317. height:0px;
  2318. }
  2319. #u52948_div {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:140px;
  2325. height:40px;
  2326. background:inherit;
  2327. background-color:rgba(255, 255, 255, 1);
  2328. box-sizing:border-box;
  2329. border-width:1px;
  2330. border-style:solid;
  2331. border-color:rgba(170, 170, 170, 1);
  2332. border-radius:4px;
  2333. -moz-box-shadow:none;
  2334. -webkit-box-shadow:none;
  2335. box-shadow:none;
  2336. }
  2337. #u52948 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:1008px;
  2341. top:272px;
  2342. width:140px;
  2343. height:40px;
  2344. display:flex;
  2345. }
  2346. #u52948 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 0px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u52948_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u52949_input {
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:133px;
  2364. height:30px;
  2365. padding:2px 2px 2px 0px;
  2366. font-family:'ArialMT', 'Arial', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:13px;
  2370. letter-spacing:normal;
  2371. color:#AAAAAA;
  2372. vertical-align:none;
  2373. text-align:left;
  2374. text-transform:none;
  2375. background-color:transparent;
  2376. border-color:transparent;
  2377. }
  2378. #u52949_input.disabled {
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:133px;
  2383. height:30px;
  2384. padding:2px 2px 2px 0px;
  2385. font-family:'ArialMT', 'Arial', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:13px;
  2389. letter-spacing:normal;
  2390. color:#AAAAAA;
  2391. vertical-align:none;
  2392. text-align:left;
  2393. text-transform:none;
  2394. background-color:transparent;
  2395. border-color:transparent;
  2396. }
  2397. #u52949_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:133px;
  2403. height:30px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 1);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. color:#AAAAAA;
  2412. }
  2413. #u52949 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:1012px;
  2417. top:278px;
  2418. width:133px;
  2419. height:30px;
  2420. display:flex;
  2421. color:#AAAAAA;
  2422. }
  2423. #u52949 .text {
  2424. position:absolute;
  2425. align-self:flex-start;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u52949_div.disabled {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:133px;
  2436. height:30px;
  2437. background:inherit;
  2438. background-color:rgba(240, 240, 240, 1);
  2439. border:none;
  2440. border-radius:0px;
  2441. -moz-box-shadow:none;
  2442. -webkit-box-shadow:none;
  2443. box-shadow:none;
  2444. color:#AAAAAA;
  2445. }
  2446. #u52949.disabled {
  2447. }
  2448. .u52949_input_option {
  2449. }
  2450. #u52950_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:43px;
  2456. height:30px;
  2457. background:inherit;
  2458. background-color:rgba(255, 255, 255, 0);
  2459. border:none;
  2460. border-top:0px;
  2461. border-right:0px;
  2462. border-bottom:0px;
  2463. border-radius:0px;
  2464. border-top-left-radius:0px;
  2465. border-bottom-left-radius:0px;
  2466. -moz-box-shadow:none;
  2467. -webkit-box-shadow:none;
  2468. box-shadow:none;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:14px;
  2473. text-align:right;
  2474. }
  2475. #u52950 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:1175px;
  2479. top:273px;
  2480. width:43px;
  2481. height:30px;
  2482. display:flex;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:14px;
  2487. text-align:right;
  2488. }
  2489. #u52950 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:5px 0px 5px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u52950_text {
  2497. border-width:0px;
  2498. white-space:nowrap;
  2499. text-transform:none;
  2500. }
  2501. #u52951 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:0px;
  2507. height:0px;
  2508. }
  2509. #u52952_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:140px;
  2515. height:40px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 1);
  2518. box-sizing:border-box;
  2519. border-width:1px;
  2520. border-style:solid;
  2521. border-color:rgba(170, 170, 170, 1);
  2522. border-radius:4px;
  2523. -moz-box-shadow:none;
  2524. -webkit-box-shadow:none;
  2525. box-shadow:none;
  2526. }
  2527. #u52952 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:1218px;
  2531. top:268px;
  2532. width:140px;
  2533. height:40px;
  2534. display:flex;
  2535. }
  2536. #u52952 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u52952_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u52953_input {
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:133px;
  2554. height:30px;
  2555. padding:2px 2px 2px 0px;
  2556. font-family:'ArialMT', 'Arial', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:13px;
  2560. letter-spacing:normal;
  2561. color:#AAAAAA;
  2562. vertical-align:none;
  2563. text-align:left;
  2564. text-transform:none;
  2565. background-color:transparent;
  2566. border-color:transparent;
  2567. }
  2568. #u52953_input.disabled {
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:133px;
  2573. height:30px;
  2574. padding:2px 2px 2px 0px;
  2575. font-family:'ArialMT', 'Arial', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:13px;
  2579. letter-spacing:normal;
  2580. color:#AAAAAA;
  2581. vertical-align:none;
  2582. text-align:left;
  2583. text-transform:none;
  2584. background-color:transparent;
  2585. border-color:transparent;
  2586. }
  2587. #u52953_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:133px;
  2593. height:30px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 1);
  2596. border:none;
  2597. border-radius:0px;
  2598. -moz-box-shadow:none;
  2599. -webkit-box-shadow:none;
  2600. box-shadow:none;
  2601. color:#AAAAAA;
  2602. }
  2603. #u52953 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:1222px;
  2607. top:274px;
  2608. width:133px;
  2609. height:30px;
  2610. display:flex;
  2611. color:#AAAAAA;
  2612. }
  2613. #u52953 .text {
  2614. position:absolute;
  2615. align-self:flex-start;
  2616. padding:2px 2px 2px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u52953_div.disabled {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:133px;
  2626. height:30px;
  2627. background:inherit;
  2628. background-color:rgba(240, 240, 240, 1);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. color:#AAAAAA;
  2635. }
  2636. #u52953.disabled {
  2637. }
  2638. .u52953_input_option {
  2639. }
  2640. #u52954_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:43px;
  2646. height:30px;
  2647. background:inherit;
  2648. background-color:rgba(255, 255, 255, 0);
  2649. border:none;
  2650. border-top:0px;
  2651. border-right:0px;
  2652. border-bottom:0px;
  2653. border-radius:0px;
  2654. border-top-left-radius:0px;
  2655. border-bottom-left-radius:0px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:14px;
  2663. text-align:right;
  2664. }
  2665. #u52954 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:1378px;
  2669. top:273px;
  2670. width:43px;
  2671. height:30px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:14px;
  2677. text-align:right;
  2678. }
  2679. #u52954 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:5px 0px 5px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u52954_text {
  2687. border-width:0px;
  2688. white-space:nowrap;
  2689. text-transform:none;
  2690. }
  2691. #u52955 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:0px;
  2697. height:0px;
  2698. }
  2699. #u52956_div {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:140px;
  2705. height:40px;
  2706. background:inherit;
  2707. background-color:rgba(255, 255, 255, 1);
  2708. box-sizing:border-box;
  2709. border-width:1px;
  2710. border-style:solid;
  2711. border-color:rgba(170, 170, 170, 1);
  2712. border-radius:4px;
  2713. -moz-box-shadow:none;
  2714. -webkit-box-shadow:none;
  2715. box-shadow:none;
  2716. }
  2717. #u52956 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:1421px;
  2721. top:268px;
  2722. width:140px;
  2723. height:40px;
  2724. display:flex;
  2725. }
  2726. #u52956 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 2px 2px 0px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u52956_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. visibility:hidden;
  2738. }
  2739. #u52957_input {
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:133px;
  2744. height:30px;
  2745. padding:2px 2px 2px 0px;
  2746. font-family:'ArialMT', 'Arial', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:13px;
  2750. letter-spacing:normal;
  2751. color:#AAAAAA;
  2752. vertical-align:none;
  2753. text-align:left;
  2754. text-transform:none;
  2755. background-color:transparent;
  2756. border-color:transparent;
  2757. }
  2758. #u52957_input.disabled {
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:133px;
  2763. height:30px;
  2764. padding:2px 2px 2px 0px;
  2765. font-family:'ArialMT', 'Arial', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:13px;
  2769. letter-spacing:normal;
  2770. color:#AAAAAA;
  2771. vertical-align:none;
  2772. text-align:left;
  2773. text-transform:none;
  2774. background-color:transparent;
  2775. border-color:transparent;
  2776. }
  2777. #u52957_div {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:133px;
  2783. height:30px;
  2784. background:inherit;
  2785. background-color:rgba(255, 255, 255, 1);
  2786. border:none;
  2787. border-radius:0px;
  2788. -moz-box-shadow:none;
  2789. -webkit-box-shadow:none;
  2790. box-shadow:none;
  2791. color:#AAAAAA;
  2792. }
  2793. #u52957 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:1425px;
  2797. top:274px;
  2798. width:133px;
  2799. height:30px;
  2800. display:flex;
  2801. color:#AAAAAA;
  2802. }
  2803. #u52957 .text {
  2804. position:absolute;
  2805. align-self:flex-start;
  2806. padding:2px 2px 2px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u52957_div.disabled {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:133px;
  2816. height:30px;
  2817. background:inherit;
  2818. background-color:rgba(240, 240, 240, 1);
  2819. border:none;
  2820. border-radius:0px;
  2821. -moz-box-shadow:none;
  2822. -webkit-box-shadow:none;
  2823. box-shadow:none;
  2824. color:#AAAAAA;
  2825. }
  2826. #u52957.disabled {
  2827. }
  2828. .u52957_input_option {
  2829. }
  2830. #u52958_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:43px;
  2836. height:30px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 0);
  2839. border:none;
  2840. border-top:0px;
  2841. border-right:0px;
  2842. border-bottom:0px;
  2843. border-radius:0px;
  2844. border-top-left-radius:0px;
  2845. border-bottom-left-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:14px;
  2853. text-align:right;
  2854. }
  2855. #u52958 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:356px;
  2859. top:323px;
  2860. width:43px;
  2861. height:30px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. text-align:right;
  2868. }
  2869. #u52958 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:5px 0px 5px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u52958_text {
  2877. border-width:0px;
  2878. white-space:nowrap;
  2879. text-transform:none;
  2880. }
  2881. #u52959_div {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:57px;
  2887. height:30px;
  2888. background:inherit;
  2889. background-color:rgba(255, 255, 255, 0);
  2890. border:none;
  2891. border-top:0px;
  2892. border-right:0px;
  2893. border-bottom:0px;
  2894. border-radius:0px;
  2895. border-top-left-radius:0px;
  2896. border-bottom-left-radius:0px;
  2897. -moz-box-shadow:none;
  2898. -webkit-box-shadow:none;
  2899. box-shadow:none;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:14px;
  2904. text-align:right;
  2905. }
  2906. #u52959 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:546px;
  2910. top:323px;
  2911. width:57px;
  2912. height:30px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:14px;
  2918. text-align:right;
  2919. }
  2920. #u52959 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:5px 0px 5px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u52959_text {
  2928. border-width:0px;
  2929. white-space:nowrap;
  2930. text-transform:none;
  2931. }
  2932. #u52960 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:0px;
  2938. height:0px;
  2939. }
  2940. #u52961_div {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:140px;
  2946. height:40px;
  2947. background:inherit;
  2948. background-color:rgba(255, 255, 255, 1);
  2949. box-sizing:border-box;
  2950. border-width:1px;
  2951. border-style:solid;
  2952. border-color:rgba(170, 170, 170, 1);
  2953. border-radius:4px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. }
  2958. #u52961 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:603px;
  2962. top:318px;
  2963. width:140px;
  2964. height:40px;
  2965. display:flex;
  2966. }
  2967. #u52961 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u52961_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u52962_input {
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:133px;
  2985. height:30px;
  2986. padding:2px 2px 2px 0px;
  2987. font-family:'ArialMT', 'Arial', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:13px;
  2991. letter-spacing:normal;
  2992. color:#AAAAAA;
  2993. vertical-align:none;
  2994. text-align:left;
  2995. text-transform:none;
  2996. background-color:transparent;
  2997. border-color:transparent;
  2998. }
  2999. #u52962_input.disabled {
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:133px;
  3004. height:30px;
  3005. padding:2px 2px 2px 0px;
  3006. font-family:'ArialMT', 'Arial', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:13px;
  3010. letter-spacing:normal;
  3011. color:#AAAAAA;
  3012. vertical-align:none;
  3013. text-align:left;
  3014. text-transform:none;
  3015. background-color:transparent;
  3016. border-color:transparent;
  3017. }
  3018. #u52962_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:133px;
  3024. height:30px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 1);
  3027. border:none;
  3028. border-radius:0px;
  3029. -moz-box-shadow:none;
  3030. -webkit-box-shadow:none;
  3031. box-shadow:none;
  3032. color:#AAAAAA;
  3033. }
  3034. #u52962 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:607px;
  3038. top:324px;
  3039. width:133px;
  3040. height:30px;
  3041. display:flex;
  3042. color:#AAAAAA;
  3043. }
  3044. #u52962 .text {
  3045. position:absolute;
  3046. align-self:flex-start;
  3047. padding:2px 2px 2px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u52962_div.disabled {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:133px;
  3057. height:30px;
  3058. background:inherit;
  3059. background-color:rgba(240, 240, 240, 1);
  3060. border:none;
  3061. border-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. color:#AAAAAA;
  3066. }
  3067. #u52962.disabled {
  3068. }
  3069. .u52962_input_option {
  3070. }
  3071. #u52963 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:0px;
  3077. height:0px;
  3078. }
  3079. #u52964_div {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:59px;
  3085. height:30px;
  3086. background:inherit;
  3087. background-color:rgba(24, 144, 255, 1);
  3088. box-sizing:border-box;
  3089. border-width:1px;
  3090. border-style:solid;
  3091. border-color:rgba(0, 153, 255, 1);
  3092. border-radius:4px;
  3093. -moz-box-shadow:none;
  3094. -webkit-box-shadow:none;
  3095. box-shadow:none;
  3096. font-family:'Microsoft YaHei', sans-serif;
  3097. font-weight:400;
  3098. font-style:normal;
  3099. font-size:14px;
  3100. color:#FFFFFF;
  3101. }
  3102. #u52964 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:762px;
  3106. top:323px;
  3107. width:59px;
  3108. height:30px;
  3109. display:flex;
  3110. font-family:'Microsoft YaHei', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:14px;
  3114. color:#FFFFFF;
  3115. }
  3116. #u52964 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:5px 15px 5px 15px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u52964_text {
  3124. border-width:0px;
  3125. white-space:nowrap;
  3126. text-transform:none;
  3127. }
  3128. #u52965_div {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:55px;
  3134. height:30px;
  3135. background:inherit;
  3136. background-color:rgba(255, 255, 255, 1);
  3137. box-sizing:border-box;
  3138. border-width:1px;
  3139. border-style:solid;
  3140. border-color:rgba(170, 170, 170, 1);
  3141. border-radius:4px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. color:#555555;
  3150. }
  3151. #u52965 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:831px;
  3155. top:323px;
  3156. width:55px;
  3157. height:30px;
  3158. display:flex;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. color:#555555;
  3164. }
  3165. #u52965 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:5px 15px 5px 15px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u52965_text {
  3173. border-width:0px;
  3174. white-space:nowrap;
  3175. text-transform:none;
  3176. }
  3177. #u52966 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:0px;
  3183. height:0px;
  3184. }
  3185. #u52967 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:356px;
  3189. top:377px;
  3190. width:1205px;
  3191. height:180px;
  3192. }
  3193. #u52968_img {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:71px;
  3199. height:30px;
  3200. }
  3201. #u52968 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:71px;
  3207. height:30px;
  3208. display:flex;
  3209. color:#FFFFFF;
  3210. }
  3211. #u52968 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u52968_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. visibility:hidden;
  3223. }
  3224. #u52969_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:187px;
  3230. height:30px;
  3231. }
  3232. #u52969 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:71px;
  3236. top:0px;
  3237. width:187px;
  3238. height:30px;
  3239. display:flex;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. color:#FFFFFF;
  3244. }
  3245. #u52969 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 2px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u52969_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. }
  3257. #u52970_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:187px;
  3263. height:30px;
  3264. }
  3265. #u52970 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:258px;
  3269. top:0px;
  3270. width:187px;
  3271. height:30px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. color:#FFFFFF;
  3277. }
  3278. #u52970 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u52970_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. }
  3290. #u52971_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:187px;
  3296. height:30px;
  3297. }
  3298. #u52971 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:445px;
  3302. top:0px;
  3303. width:187px;
  3304. height:30px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. color:#FFFFFF;
  3310. }
  3311. #u52971 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 2px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u52971_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. }
  3323. #u52972_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:187px;
  3329. height:30px;
  3330. }
  3331. #u52972 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:632px;
  3335. top:0px;
  3336. width:187px;
  3337. height:30px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. color:#FFFFFF;
  3343. }
  3344. #u52972 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u52972_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. }
  3356. #u52973_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:187px;
  3362. height:30px;
  3363. }
  3364. #u52973 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:819px;
  3368. top:0px;
  3369. width:187px;
  3370. height:30px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. color:#FFFFFF;
  3376. }
  3377. #u52973 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u52973_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. }
  3389. #u52974_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:199px;
  3395. height:30px;
  3396. }
  3397. #u52974 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:1006px;
  3401. top:0px;
  3402. width:199px;
  3403. height:30px;
  3404. display:flex;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. color:#FFFFFF;
  3409. }
  3410. #u52974 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u52974_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. }
  3422. #u52975_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:71px;
  3428. height:30px;
  3429. }
  3430. #u52975 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:30px;
  3435. width:71px;
  3436. height:30px;
  3437. display:flex;
  3438. }
  3439. #u52975 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u52975_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u52976_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:187px;
  3458. height:30px;
  3459. }
  3460. #u52976 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:71px;
  3464. top:30px;
  3465. width:187px;
  3466. height:30px;
  3467. display:flex;
  3468. }
  3469. #u52976 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 2px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u52976_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. visibility:hidden;
  3481. }
  3482. #u52977_img {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:187px;
  3488. height:30px;
  3489. }
  3490. #u52977 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:258px;
  3494. top:30px;
  3495. width:187px;
  3496. height:30px;
  3497. display:flex;
  3498. }
  3499. #u52977 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 2px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u52977_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. visibility:hidden;
  3511. }
  3512. #u52978_img {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:187px;
  3518. height:30px;
  3519. }
  3520. #u52978 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:445px;
  3524. top:30px;
  3525. width:187px;
  3526. height:30px;
  3527. display:flex;
  3528. }
  3529. #u52978 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 2px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u52978_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u52979_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:187px;
  3548. height:30px;
  3549. }
  3550. #u52979 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:632px;
  3554. top:30px;
  3555. width:187px;
  3556. height:30px;
  3557. display:flex;
  3558. }
  3559. #u52979 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 2px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u52979_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u52980_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:187px;
  3578. height:30px;
  3579. }
  3580. #u52980 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:819px;
  3584. top:30px;
  3585. width:187px;
  3586. height:30px;
  3587. display:flex;
  3588. }
  3589. #u52980 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u52980_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u52981_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:199px;
  3608. height:30px;
  3609. }
  3610. #u52981 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:1006px;
  3614. top:30px;
  3615. width:199px;
  3616. height:30px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. }
  3622. #u52981 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 2px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u52981_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. }
  3634. #u52982_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:71px;
  3640. height:30px;
  3641. }
  3642. #u52982 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:60px;
  3647. width:71px;
  3648. height:30px;
  3649. display:flex;
  3650. }
  3651. #u52982 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 2px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u52982_text {
  3659. border-width:0px;
  3660. word-wrap:break-word;
  3661. text-transform:none;
  3662. visibility:hidden;
  3663. }
  3664. #u52983_img {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:187px;
  3670. height:30px;
  3671. }
  3672. #u52983 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:71px;
  3676. top:60px;
  3677. width:187px;
  3678. height:30px;
  3679. display:flex;
  3680. }
  3681. #u52983 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u52983_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u52984_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:187px;
  3700. height:30px;
  3701. }
  3702. #u52984 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:258px;
  3706. top:60px;
  3707. width:187px;
  3708. height:30px;
  3709. display:flex;
  3710. }
  3711. #u52984 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u52984_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u52985_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:187px;
  3730. height:30px;
  3731. }
  3732. #u52985 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:445px;
  3736. top:60px;
  3737. width:187px;
  3738. height:30px;
  3739. display:flex;
  3740. }
  3741. #u52985 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u52985_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u52986_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:187px;
  3760. height:30px;
  3761. }
  3762. #u52986 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:632px;
  3766. top:60px;
  3767. width:187px;
  3768. height:30px;
  3769. display:flex;
  3770. }
  3771. #u52986 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 2px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u52986_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u52987_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:187px;
  3790. height:30px;
  3791. }
  3792. #u52987 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:819px;
  3796. top:60px;
  3797. width:187px;
  3798. height:30px;
  3799. display:flex;
  3800. }
  3801. #u52987 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 2px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u52987_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u52988_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:199px;
  3820. height:30px;
  3821. }
  3822. #u52988 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:1006px;
  3826. top:60px;
  3827. width:199px;
  3828. height:30px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. }
  3834. #u52988 .text {
  3835. position:absolute;
  3836. align-self:center;
  3837. padding:2px 2px 2px 2px;
  3838. box-sizing:border-box;
  3839. width:100%;
  3840. }
  3841. #u52988_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. }
  3846. #u52989_img {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:71px;
  3852. height:30px;
  3853. }
  3854. #u52989 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:90px;
  3859. width:71px;
  3860. height:30px;
  3861. display:flex;
  3862. }
  3863. #u52989 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 2px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u52989_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u52990_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:187px;
  3882. height:30px;
  3883. }
  3884. #u52990 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:71px;
  3888. top:90px;
  3889. width:187px;
  3890. height:30px;
  3891. display:flex;
  3892. }
  3893. #u52990 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 2px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u52990_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u52991_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:187px;
  3912. height:30px;
  3913. }
  3914. #u52991 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:258px;
  3918. top:90px;
  3919. width:187px;
  3920. height:30px;
  3921. display:flex;
  3922. }
  3923. #u52991 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u52991_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u52992_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:187px;
  3942. height:30px;
  3943. }
  3944. #u52992 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:445px;
  3948. top:90px;
  3949. width:187px;
  3950. height:30px;
  3951. display:flex;
  3952. }
  3953. #u52992 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u52992_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u52993_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:187px;
  3972. height:30px;
  3973. }
  3974. #u52993 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:632px;
  3978. top:90px;
  3979. width:187px;
  3980. height:30px;
  3981. display:flex;
  3982. }
  3983. #u52993 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u52993_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u52994_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:187px;
  4002. height:30px;
  4003. }
  4004. #u52994 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:819px;
  4008. top:90px;
  4009. width:187px;
  4010. height:30px;
  4011. display:flex;
  4012. }
  4013. #u52994 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u52994_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u52995_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:199px;
  4032. height:30px;
  4033. }
  4034. #u52995 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:1006px;
  4038. top:90px;
  4039. width:199px;
  4040. height:30px;
  4041. display:flex;
  4042. }
  4043. #u52995 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u52995_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u52996_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:71px;
  4062. height:30px;
  4063. }
  4064. #u52996 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:120px;
  4069. width:71px;
  4070. height:30px;
  4071. display:flex;
  4072. }
  4073. #u52996 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 2px 2px 2px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u52996_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u52997_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:187px;
  4092. height:30px;
  4093. }
  4094. #u52997 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:71px;
  4098. top:120px;
  4099. width:187px;
  4100. height:30px;
  4101. display:flex;
  4102. }
  4103. #u52997 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 2px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u52997_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u52998_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:187px;
  4122. height:30px;
  4123. }
  4124. #u52998 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:258px;
  4128. top:120px;
  4129. width:187px;
  4130. height:30px;
  4131. display:flex;
  4132. }
  4133. #u52998 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 2px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u52998_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u52999_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:187px;
  4152. height:30px;
  4153. }
  4154. #u52999 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:445px;
  4158. top:120px;
  4159. width:187px;
  4160. height:30px;
  4161. display:flex;
  4162. }
  4163. #u52999 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u52999_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u53000_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:187px;
  4182. height:30px;
  4183. }
  4184. #u53000 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:632px;
  4188. top:120px;
  4189. width:187px;
  4190. height:30px;
  4191. display:flex;
  4192. }
  4193. #u53000 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u53000_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u53001_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:187px;
  4212. height:30px;
  4213. }
  4214. #u53001 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:819px;
  4218. top:120px;
  4219. width:187px;
  4220. height:30px;
  4221. display:flex;
  4222. }
  4223. #u53001 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u53001_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u53002_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:199px;
  4242. height:30px;
  4243. }
  4244. #u53002 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:1006px;
  4248. top:120px;
  4249. width:199px;
  4250. height:30px;
  4251. display:flex;
  4252. }
  4253. #u53002 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 2px 2px 2px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u53002_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u53003_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:71px;
  4272. height:30px;
  4273. }
  4274. #u53003 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:150px;
  4279. width:71px;
  4280. height:30px;
  4281. display:flex;
  4282. }
  4283. #u53003 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 2px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u53003_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u53004_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:187px;
  4302. height:30px;
  4303. }
  4304. #u53004 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:71px;
  4308. top:150px;
  4309. width:187px;
  4310. height:30px;
  4311. display:flex;
  4312. }
  4313. #u53004 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u53004_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u53005_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:187px;
  4332. height:30px;
  4333. }
  4334. #u53005 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:258px;
  4338. top:150px;
  4339. width:187px;
  4340. height:30px;
  4341. display:flex;
  4342. }
  4343. #u53005 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 2px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u53005_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u53006_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:187px;
  4362. height:30px;
  4363. }
  4364. #u53006 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:445px;
  4368. top:150px;
  4369. width:187px;
  4370. height:30px;
  4371. display:flex;
  4372. }
  4373. #u53006 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 2px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u53006_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u53007_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:187px;
  4392. height:30px;
  4393. }
  4394. #u53007 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:632px;
  4398. top:150px;
  4399. width:187px;
  4400. height:30px;
  4401. display:flex;
  4402. }
  4403. #u53007 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u53007_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u53008_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:187px;
  4422. height:30px;
  4423. }
  4424. #u53008 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:819px;
  4428. top:150px;
  4429. width:187px;
  4430. height:30px;
  4431. display:flex;
  4432. }
  4433. #u53008 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u53008_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u53009_img {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:199px;
  4452. height:30px;
  4453. }
  4454. #u53009 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:1006px;
  4458. top:150px;
  4459. width:199px;
  4460. height:30px;
  4461. display:flex;
  4462. }
  4463. #u53009 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u53009_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u53010 label {
  4477. left:0px;
  4478. width:100%;
  4479. }
  4480. #u53010_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:12px;
  4486. height:12px;
  4487. }
  4488. #u53010 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:369px;
  4492. top:416px;
  4493. width:100px;
  4494. height:16px;
  4495. display:flex;
  4496. }
  4497. #u53010 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:0px 2px 0px 2px;
  4501. box-sizing:border-box;
  4502. }
  4503. #u53010_img.selected {
  4504. }
  4505. #u53010.selected {
  4506. }
  4507. #u53010_img.disabled {
  4508. }
  4509. #u53010.disabled {
  4510. }
  4511. #u53010_img.selectedDisabled {
  4512. }
  4513. #u53010.selectedDisabled {
  4514. }
  4515. #u53010_text {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:14px;
  4519. top:0px;
  4520. width:84px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u53010_input {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:0px;
  4531. height:0px;
  4532. opacity:0;
  4533. }
  4534. #u53011_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:29px;
  4540. height:30px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 0);
  4543. border:none;
  4544. border-top:0px;
  4545. border-right:0px;
  4546. border-bottom:0px;
  4547. border-radius:0px;
  4548. border-top-left-radius:0px;
  4549. border-bottom-left-radius:0px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:14px;
  4557. color:#D9001B;
  4558. text-align:right;
  4559. }
  4560. #u53011 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:374px;
  4564. top:442px;
  4565. width:29px;
  4566. height:30px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. color:#D9001B;
  4573. text-align:right;
  4574. }
  4575. #u53011 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:5px 0px 5px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u53011_text {
  4583. border-width:0px;
  4584. white-space:nowrap;
  4585. text-transform:none;
  4586. }
  4587. #u53012_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:73px;
  4593. height:50px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 0);
  4596. border:none;
  4597. border-left:0px;
  4598. border-top:0px;
  4599. border-right:0px;
  4600. border-radius:0px;
  4601. border-bottom-right-radius:0px;
  4602. border-bottom-left-radius:0px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4607. font-weight:500;
  4608. font-style:normal;
  4609. font-size:18px;
  4610. }
  4611. #u53012 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:348px;
  4615. top:50px;
  4616. width:73px;
  4617. height:50px;
  4618. display:flex;
  4619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4620. font-weight:500;
  4621. font-style:normal;
  4622. font-size:18px;
  4623. }
  4624. #u53012 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:0px 0px 0px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u53012_text {
  4632. border-width:0px;
  4633. white-space:nowrap;
  4634. text-transform:none;
  4635. }
  4636. #u53013 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:0px;
  4642. height:0px;
  4643. }
  4644. #u53014_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:1208px;
  4650. height:105px;
  4651. background:inherit;
  4652. background-color:rgba(242, 242, 242, 1);
  4653. border:none;
  4654. border-radius:0px;
  4655. -moz-box-shadow:none;
  4656. -webkit-box-shadow:none;
  4657. box-shadow:none;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:14px;
  4662. color:#555555;
  4663. }
  4664. #u53014 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:348px;
  4668. top:100px;
  4669. width:1208px;
  4670. height:105px;
  4671. display:flex;
  4672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:14px;
  4676. color:#555555;
  4677. }
  4678. #u53014 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:5px 15px 5px 15px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u53014_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u53015_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:153px;
  4697. height:50px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 0);
  4700. border:none;
  4701. border-left:0px;
  4702. border-top:0px;
  4703. border-right:0px;
  4704. border-radius:0px;
  4705. border-bottom-right-radius:0px;
  4706. border-bottom-left-radius:0px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4711. font-weight:500;
  4712. font-style:normal;
  4713. font-size:18px;
  4714. }
  4715. #u53015 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:412px;
  4719. top:126px;
  4720. width:153px;
  4721. height:50px;
  4722. display:flex;
  4723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4724. font-weight:500;
  4725. font-style:normal;
  4726. font-size:18px;
  4727. }
  4728. #u53015 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:0px 0px 0px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u53015_text {
  4736. border-width:0px;
  4737. white-space:nowrap;
  4738. text-transform:none;
  4739. }
  4740. #u53016_div {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:109px;
  4746. height:50px;
  4747. background:inherit;
  4748. background-color:rgba(255, 255, 255, 0);
  4749. border:none;
  4750. border-left:0px;
  4751. border-top:0px;
  4752. border-right:0px;
  4753. border-radius:0px;
  4754. border-bottom-right-radius:0px;
  4755. border-bottom-left-radius:0px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4760. font-weight:500;
  4761. font-style:normal;
  4762. font-size:18px;
  4763. }
  4764. #u53016 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:652px;
  4768. top:126px;
  4769. width:109px;
  4770. height:50px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4773. font-weight:500;
  4774. font-style:normal;
  4775. font-size:18px;
  4776. }
  4777. #u53016 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:0px 0px 0px 0px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u53016_text {
  4785. border-width:0px;
  4786. white-space:nowrap;
  4787. text-transform:none;
  4788. }
  4789. #u53017_div {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:154px;
  4795. height:50px;
  4796. background:inherit;
  4797. background-color:rgba(255, 255, 255, 0);
  4798. border:none;
  4799. border-left:0px;
  4800. border-top:0px;
  4801. border-right:0px;
  4802. border-radius:0px;
  4803. border-bottom-right-radius:0px;
  4804. border-bottom-left-radius:0px;
  4805. -moz-box-shadow:none;
  4806. -webkit-box-shadow:none;
  4807. box-shadow:none;
  4808. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4809. font-weight:500;
  4810. font-style:normal;
  4811. font-size:18px;
  4812. }
  4813. #u53017 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:861px;
  4817. top:126px;
  4818. width:154px;
  4819. height:50px;
  4820. display:flex;
  4821. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4822. font-weight:500;
  4823. font-style:normal;
  4824. font-size:18px;
  4825. }
  4826. #u53017 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:0px 0px 0px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u53017_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u53018_img {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:39px;
  4844. height:39px;
  4845. }
  4846. #u53018 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:814px;
  4850. top:131px;
  4851. width:39px;
  4852. height:39px;
  4853. display:flex;
  4854. }
  4855. #u53018 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 2px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u53018_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. }
  4867. #u53019_div {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:163px;
  4873. height:50px;
  4874. background:inherit;
  4875. background-color:rgba(255, 255, 255, 0);
  4876. border:none;
  4877. border-left:0px;
  4878. border-top:0px;
  4879. border-right:0px;
  4880. border-radius:0px;
  4881. border-bottom-right-radius:0px;
  4882. border-bottom-left-radius:0px;
  4883. -moz-box-shadow:none;
  4884. -webkit-box-shadow:none;
  4885. box-shadow:none;
  4886. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4887. font-weight:500;
  4888. font-style:normal;
  4889. font-size:18px;
  4890. }
  4891. #u53019 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1105px;
  4895. top:126px;
  4896. width:163px;
  4897. height:50px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4900. font-weight:500;
  4901. font-style:normal;
  4902. font-size:18px;
  4903. }
  4904. #u53019 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:0px 0px 0px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u53019_text {
  4912. border-width:0px;
  4913. white-space:nowrap;
  4914. text-transform:none;
  4915. }
  4916. #u53020_img {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:39px;
  4922. height:39px;
  4923. }
  4924. #u53020 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:1058px;
  4928. top:131px;
  4929. width:39px;
  4930. height:39px;
  4931. display:flex;
  4932. }
  4933. #u53020 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 2px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u53020_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. }
  4945. #u53021_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:73px;
  4951. height:50px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 0);
  4954. border:none;
  4955. border-left:0px;
  4956. border-top:0px;
  4957. border-right:0px;
  4958. border-radius:0px;
  4959. border-bottom-right-radius:0px;
  4960. border-bottom-left-radius:0px;
  4961. -moz-box-shadow:none;
  4962. -webkit-box-shadow:none;
  4963. box-shadow:none;
  4964. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4965. font-weight:500;
  4966. font-style:normal;
  4967. font-size:18px;
  4968. }
  4969. #u53021 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1375px;
  4973. top:126px;
  4974. width:73px;
  4975. height:50px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4978. font-weight:500;
  4979. font-style:normal;
  4980. font-size:18px;
  4981. }
  4982. #u53021 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:0px 0px 0px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u53021_text {
  4990. border-width:0px;
  4991. white-space:nowrap;
  4992. text-transform:none;
  4993. }
  4994. #u53022_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:39px;
  5000. height:39px;
  5001. }
  5002. #u53022 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1328px;
  5006. top:131px;
  5007. width:39px;
  5008. height:39px;
  5009. display:flex;
  5010. }
  5011. #u53022 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 2px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u53022_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. }
  5023. #u53023_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:113px;
  5029. height:20px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 0);
  5032. border:none;
  5033. border-left:0px;
  5034. border-top:0px;
  5035. border-right:0px;
  5036. border-radius:0px;
  5037. border-bottom-right-radius:0px;
  5038. border-bottom-left-radius:0px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. }
  5047. #u53023 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:410px;
  5051. top:170px;
  5052. width:113px;
  5053. height:20px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. }
  5060. #u53023 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:0px 0px 0px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u53023_text {
  5068. border-width:0px;
  5069. white-space:nowrap;
  5070. text-transform:none;
  5071. }
  5072. #u53024_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:127px;
  5078. height:20px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border:none;
  5082. border-left:0px;
  5083. border-top:0px;
  5084. border-right:0px;
  5085. border-radius:0px;
  5086. border-bottom-right-radius:0px;
  5087. border-bottom-left-radius:0px;
  5088. -moz-box-shadow:none;
  5089. -webkit-box-shadow:none;
  5090. box-shadow:none;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. }
  5096. #u53024 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:652px;
  5100. top:170px;
  5101. width:127px;
  5102. height:20px;
  5103. display:flex;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:14px;
  5108. }
  5109. #u53024 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:0px 0px 0px 0px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u53024_text {
  5117. border-width:0px;
  5118. white-space:nowrap;
  5119. text-transform:none;
  5120. }
  5121. #u53025_div {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:155px;
  5127. height:20px;
  5128. background:inherit;
  5129. background-color:rgba(255, 255, 255, 0);
  5130. border:none;
  5131. border-left:0px;
  5132. border-top:0px;
  5133. border-right:0px;
  5134. border-radius:0px;
  5135. border-bottom-right-radius:0px;
  5136. border-bottom-left-radius:0px;
  5137. -moz-box-shadow:none;
  5138. -webkit-box-shadow:none;
  5139. box-shadow:none;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:14px;
  5144. }
  5145. #u53025 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:863px;
  5149. top:170px;
  5150. width:155px;
  5151. height:20px;
  5152. display:flex;
  5153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:14px;
  5157. }
  5158. #u53025 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:0px 0px 0px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u53025_text {
  5166. border-width:0px;
  5167. white-space:nowrap;
  5168. text-transform:none;
  5169. }
  5170. #u53026_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:183px;
  5176. height:20px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 0);
  5179. border:none;
  5180. border-left:0px;
  5181. border-top:0px;
  5182. border-right:0px;
  5183. border-radius:0px;
  5184. border-bottom-right-radius:0px;
  5185. border-bottom-left-radius:0px;
  5186. -moz-box-shadow:none;
  5187. -webkit-box-shadow:none;
  5188. box-shadow:none;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:14px;
  5193. }
  5194. #u53026 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:1105px;
  5198. top:170px;
  5199. width:183px;
  5200. height:20px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. }
  5207. #u53026 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u53026_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u53027_div {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:141px;
  5225. height:20px;
  5226. background:inherit;
  5227. background-color:rgba(255, 255, 255, 0);
  5228. border:none;
  5229. border-left:0px;
  5230. border-top:0px;
  5231. border-right:0px;
  5232. border-radius:0px;
  5233. border-bottom-right-radius:0px;
  5234. border-bottom-left-radius:0px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:14px;
  5242. }
  5243. #u53027 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1375px;
  5247. top:170px;
  5248. width:141px;
  5249. height:20px;
  5250. display:flex;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:14px;
  5255. }
  5256. #u53027 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:0px 0px 0px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u53027_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u53028_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:39px;
  5274. height:39px;
  5275. }
  5276. #u53028 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:365px;
  5280. top:132px;
  5281. width:39px;
  5282. height:39px;
  5283. display:flex;
  5284. }
  5285. #u53028 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 2px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u53028_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. }
  5297. #u53029_img {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:39px;
  5303. height:39px;
  5304. }
  5305. #u53029 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:609px;
  5309. top:132px;
  5310. width:39px;
  5311. height:39px;
  5312. display:flex;
  5313. }
  5314. #u53029 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 2px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u53029_text {
  5322. border-width:0px;
  5323. word-wrap:break-word;
  5324. text-transform:none;
  5325. }
  5326. #u53030_div {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:43px;
  5332. height:30px;
  5333. background:inherit;
  5334. background-color:rgba(255, 255, 255, 0);
  5335. border:none;
  5336. border-top:0px;
  5337. border-right:0px;
  5338. border-bottom:0px;
  5339. border-radius:0px;
  5340. border-top-left-radius:0px;
  5341. border-bottom-left-radius:0px;
  5342. -moz-box-shadow:none;
  5343. -webkit-box-shadow:none;
  5344. box-shadow:none;
  5345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:14px;
  5349. text-align:right;
  5350. }
  5351. #u53030 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:356px;
  5355. top:277px;
  5356. width:43px;
  5357. height:30px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:14px;
  5363. text-align:right;
  5364. }
  5365. #u53030 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:5px 0px 5px 0px;
  5369. box-sizing:border-box;
  5370. width:100%;
  5371. }
  5372. #u53030_text {
  5373. border-width:0px;
  5374. white-space:nowrap;
  5375. text-transform:none;
  5376. }
  5377. #u53031 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:0px;
  5383. height:0px;
  5384. }
  5385. #u53032_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:140px;
  5391. height:40px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 1);
  5394. box-sizing:border-box;
  5395. border-width:1px;
  5396. border-style:solid;
  5397. border-color:rgba(170, 170, 170, 1);
  5398. border-radius:4px;
  5399. -moz-box-shadow:none;
  5400. -webkit-box-shadow:none;
  5401. box-shadow:none;
  5402. }
  5403. #u53032 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:399px;
  5407. top:272px;
  5408. width:140px;
  5409. height:40px;
  5410. display:flex;
  5411. }
  5412. #u53032 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u53032_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u53033_input {
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:133px;
  5430. height:30px;
  5431. padding:2px 2px 2px 0px;
  5432. font-family:'ArialMT', 'Arial', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:13px;
  5436. letter-spacing:normal;
  5437. color:#AAAAAA;
  5438. vertical-align:none;
  5439. text-align:left;
  5440. text-transform:none;
  5441. background-color:transparent;
  5442. border-color:transparent;
  5443. }
  5444. #u53033_input.disabled {
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:133px;
  5449. height:30px;
  5450. padding:2px 2px 2px 0px;
  5451. font-family:'ArialMT', 'Arial', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:13px;
  5455. letter-spacing:normal;
  5456. color:#AAAAAA;
  5457. vertical-align:none;
  5458. text-align:left;
  5459. text-transform:none;
  5460. background-color:transparent;
  5461. border-color:transparent;
  5462. }
  5463. #u53033_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:133px;
  5469. height:30px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 1);
  5472. border:none;
  5473. border-radius:0px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. color:#AAAAAA;
  5478. }
  5479. #u53033 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:403px;
  5483. top:278px;
  5484. width:133px;
  5485. height:30px;
  5486. display:flex;
  5487. color:#AAAAAA;
  5488. }
  5489. #u53033 .text {
  5490. position:absolute;
  5491. align-self:flex-start;
  5492. padding:2px 2px 2px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u53033_div.disabled {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:133px;
  5502. height:30px;
  5503. background:inherit;
  5504. background-color:rgba(240, 240, 240, 1);
  5505. border:none;
  5506. border-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. color:#AAAAAA;
  5511. }
  5512. #u53033.disabled {
  5513. }
  5514. .u53033_input_option {
  5515. }
  5516. #u53034_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:368px;
  5522. height:210px;
  5523. background:inherit;
  5524. background-color:rgba(255, 255, 255, 0);
  5525. border:none;
  5526. border-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5531. font-weight:500;
  5532. font-style:normal;
  5533. font-size:14px;
  5534. color:#D9001B;
  5535. line-height:30px;
  5536. }
  5537. #u53034 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:1751px;
  5541. top:461px;
  5542. width:368px;
  5543. height:210px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5546. font-weight:500;
  5547. font-style:normal;
  5548. font-size:14px;
  5549. color:#D9001B;
  5550. line-height:30px;
  5551. }
  5552. #u53034 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u53034_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u53035_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:154px;
  5570. height:50px;
  5571. background:inherit;
  5572. background-color:rgba(255, 255, 255, 0);
  5573. border:none;
  5574. border-left:0px;
  5575. border-top:0px;
  5576. border-right:0px;
  5577. border-radius:0px;
  5578. border-bottom-right-radius:0px;
  5579. border-bottom-left-radius:0px;
  5580. -moz-box-shadow:none;
  5581. -webkit-box-shadow:none;
  5582. box-shadow:none;
  5583. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5584. font-weight:500;
  5585. font-style:normal;
  5586. font-size:18px;
  5587. }
  5588. #u53035 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:349px;
  5592. top:587px;
  5593. width:154px;
  5594. height:50px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5597. font-weight:500;
  5598. font-style:normal;
  5599. font-size:18px;
  5600. }
  5601. #u53035 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:0px 0px 0px 0px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u53035_text {
  5609. border-width:0px;
  5610. white-space:nowrap;
  5611. text-transform:none;
  5612. }
  5613. #u53036_div {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:87px;
  5619. height:30px;
  5620. background:inherit;
  5621. background-color:rgba(245, 154, 35, 1);
  5622. border:none;
  5623. border-radius:4px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. color:#FFFFFF;
  5632. }
  5633. #u53036 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:1143px;
  5637. top:650px;
  5638. width:87px;
  5639. height:30px;
  5640. display:flex;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:14px;
  5645. color:#FFFFFF;
  5646. }
  5647. #u53036 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:5px 15px 5px 15px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u53036_text {
  5655. border-width:0px;
  5656. white-space:nowrap;
  5657. text-transform:none;
  5658. }
  5659. #u53037_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:120px;
  5665. height:40px;
  5666. background:inherit;
  5667. background-color:rgba(0, 137, 254, 1);
  5668. border:none;
  5669. border-radius:4px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:14px;
  5677. color:#FFFFFF;
  5678. }
  5679. #u53037 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:849px;
  5683. top:1041px;
  5684. width:120px;
  5685. height:40px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. color:#FFFFFF;
  5692. }
  5693. #u53037 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:5px 15px 5px 15px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u53037_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. }
  5705. #u53038 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:0px;
  5711. height:0px;
  5712. }
  5713. #u53039_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:300px;
  5719. height:30px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 1);
  5722. box-sizing:border-box;
  5723. border-width:1px;
  5724. border-style:solid;
  5725. border-color:rgba(215, 215, 215, 1);
  5726. border-radius:4px;
  5727. -moz-box-shadow:none;
  5728. -webkit-box-shadow:none;
  5729. box-shadow:none;
  5730. font-size:14px;
  5731. }
  5732. #u53039 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:427px;
  5736. top:653px;
  5737. width:300px;
  5738. height:30px;
  5739. display:flex;
  5740. font-size:14px;
  5741. }
  5742. #u53039 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 2px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u53039_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u53040_input {
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:287px;
  5760. height:23px;
  5761. padding:2px 2px 2px 2px;
  5762. font-family:'ArialMT', 'Arial', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. font-size:14px;
  5766. letter-spacing:normal;
  5767. color:#AAAAAA;
  5768. vertical-align:none;
  5769. text-align:left;
  5770. text-transform:none;
  5771. background-color:transparent;
  5772. border-color:transparent;
  5773. }
  5774. #u53040_input.disabled {
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:287px;
  5779. height:23px;
  5780. padding:2px 2px 2px 2px;
  5781. font-family:'ArialMT', 'Arial', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. letter-spacing:normal;
  5786. color:#AAAAAA;
  5787. vertical-align:none;
  5788. text-align:left;
  5789. text-transform:none;
  5790. background-color:transparent;
  5791. border-color:transparent;
  5792. }
  5793. #u53040_div {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:287px;
  5799. height:23px;
  5800. background:inherit;
  5801. background-color:rgba(255, 255, 255, 1);
  5802. border:none;
  5803. border-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-size:14px;
  5808. color:#AAAAAA;
  5809. }
  5810. #u53040 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:436px;
  5814. top:655px;
  5815. width:287px;
  5816. height:23px;
  5817. display:flex;
  5818. font-size:14px;
  5819. color:#AAAAAA;
  5820. }
  5821. #u53040 .text {
  5822. position:absolute;
  5823. align-self:flex-start;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u53040_div.disabled {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:287px;
  5834. height:23px;
  5835. background:inherit;
  5836. background-color:rgba(240, 240, 240, 1);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-size:14px;
  5843. color:#AAAAAA;
  5844. }
  5845. #u53040.disabled {
  5846. }
  5847. .u53040_input_option {
  5848. font-size:14px;
  5849. }
  5850. #u53041_div {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:57px;
  5856. height:20px;
  5857. background:inherit;
  5858. background-color:rgba(255, 255, 255, 0);
  5859. border:none;
  5860. border-left:0px;
  5861. border-top:0px;
  5862. border-right:0px;
  5863. border-radius:0px;
  5864. border-bottom-right-radius:0px;
  5865. border-bottom-left-radius:0px;
  5866. -moz-box-shadow:none;
  5867. -webkit-box-shadow:none;
  5868. box-shadow:none;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:14px;
  5873. }
  5874. #u53041 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:767px;
  5878. top:658px;
  5879. width:57px;
  5880. height:20px;
  5881. display:flex;
  5882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:14px;
  5886. }
  5887. #u53041 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:0px 0px 0px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u53041_text {
  5895. border-width:0px;
  5896. white-space:nowrap;
  5897. text-transform:none;
  5898. }
  5899. #u53042 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:0px;
  5905. height:0px;
  5906. }
  5907. #u53043_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:300px;
  5913. height:30px;
  5914. background:inherit;
  5915. background-color:rgba(242, 242, 242, 1);
  5916. box-sizing:border-box;
  5917. border-width:1px;
  5918. border-style:solid;
  5919. border-color:rgba(170, 170, 170, 1);
  5920. border-radius:4px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. text-align:left;
  5928. }
  5929. #u53043 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:829px;
  5933. top:653px;
  5934. width:300px;
  5935. height:30px;
  5936. display:flex;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. text-align:left;
  5941. }
  5942. #u53043 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 10px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u53043_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u53044_input {
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:282px;
  5960. height:23px;
  5961. padding:2px 2px 2px 2px;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:13px;
  5966. letter-spacing:normal;
  5967. color:#AAAAAA;
  5968. vertical-align:none;
  5969. text-align:left;
  5970. text-transform:none;
  5971. background-color:transparent;
  5972. border-color:transparent;
  5973. }
  5974. #u53044_input.disabled {
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:282px;
  5979. height:23px;
  5980. padding:2px 2px 2px 2px;
  5981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:13px;
  5985. letter-spacing:normal;
  5986. color:#AAAAAA;
  5987. vertical-align:none;
  5988. text-align:left;
  5989. text-transform:none;
  5990. background-color:transparent;
  5991. border-color:transparent;
  5992. }
  5993. #u53044_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:282px;
  5999. height:23px;
  6000. background:inherit;
  6001. background-color:rgba(242, 242, 242, 1);
  6002. border:none;
  6003. border-radius:0px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. color:#AAAAAA;
  6011. }
  6012. #u53044 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:837px;
  6016. top:657px;
  6017. width:282px;
  6018. height:23px;
  6019. display:flex;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. color:#AAAAAA;
  6024. }
  6025. #u53044 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u53044_div.disabled {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:282px;
  6038. height:23px;
  6039. background:inherit;
  6040. background-color:rgba(240, 240, 240, 1);
  6041. border:none;
  6042. border-radius:0px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. color:#AAAAAA;
  6050. }
  6051. #u53044.disabled {
  6052. }
  6053. #u53045_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:71px;
  6059. height:20px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 0);
  6062. border:none;
  6063. border-left:0px;
  6064. border-top:0px;
  6065. border-right:0px;
  6066. border-radius:0px;
  6067. border-bottom-right-radius:0px;
  6068. border-bottom-left-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. }
  6077. #u53045 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:356px;
  6081. top:658px;
  6082. width:71px;
  6083. height:20px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:14px;
  6089. }
  6090. #u53045 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:0px 0px 0px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u53045_text {
  6098. border-width:0px;
  6099. white-space:nowrap;
  6100. text-transform:none;
  6101. }
  6102. #u53046_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:127px;
  6108. height:50px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 0);
  6111. border:none;
  6112. border-left:0px;
  6113. border-top:0px;
  6114. border-right:0px;
  6115. border-radius:0px;
  6116. border-bottom-right-radius:0px;
  6117. border-bottom-left-radius:0px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6122. font-weight:500;
  6123. font-style:normal;
  6124. font-size:18px;
  6125. }
  6126. #u53046 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:349px;
  6130. top:713px;
  6131. width:127px;
  6132. height:50px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6135. font-weight:500;
  6136. font-style:normal;
  6137. font-size:18px;
  6138. }
  6139. #u53046 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:0px 0px 0px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u53046_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u53047 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:0px;
  6157. height:0px;
  6158. }
  6159. #u53048_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:140px;
  6165. height:30px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 1);
  6168. box-sizing:border-box;
  6169. border-width:1px;
  6170. border-style:solid;
  6171. border-color:rgba(170, 170, 170, 1);
  6172. border-radius:4px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. text-align:left;
  6180. }
  6181. #u53048 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:420px;
  6185. top:771px;
  6186. width:140px;
  6187. height:30px;
  6188. display:flex;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. text-align:left;
  6193. }
  6194. #u53048 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 10px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u53048_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u53049_input {
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:132px;
  6212. height:23px;
  6213. padding:2px 2px 2px 2px;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:13px;
  6218. letter-spacing:normal;
  6219. color:#AAAAAA;
  6220. vertical-align:none;
  6221. text-align:left;
  6222. text-transform:none;
  6223. background-color:transparent;
  6224. border-color:transparent;
  6225. }
  6226. #u53049_input.disabled {
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:132px;
  6231. height:23px;
  6232. padding:2px 2px 2px 2px;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:13px;
  6237. letter-spacing:normal;
  6238. color:#AAAAAA;
  6239. vertical-align:none;
  6240. text-align:left;
  6241. text-transform:none;
  6242. background-color:transparent;
  6243. border-color:transparent;
  6244. }
  6245. #u53049_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:132px;
  6251. height:23px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 1);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. color:#AAAAAA;
  6263. }
  6264. #u53049 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:424px;
  6268. top:775px;
  6269. width:132px;
  6270. height:23px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. color:#AAAAAA;
  6276. }
  6277. #u53049 .text {
  6278. position:absolute;
  6279. align-self:center;
  6280. padding:2px 2px 2px 2px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u53049_div.disabled {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:132px;
  6290. height:23px;
  6291. background:inherit;
  6292. background-color:rgba(240, 240, 240, 1);
  6293. border:none;
  6294. border-radius:0px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. color:#AAAAAA;
  6302. }
  6303. #u53049.disabled {
  6304. }
  6305. #u53050_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:71px;
  6311. height:30px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border:none;
  6315. border-top:0px;
  6316. border-right:0px;
  6317. border-bottom:0px;
  6318. border-radius:0px;
  6319. border-top-left-radius:0px;
  6320. border-bottom-left-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:14px;
  6328. text-align:right;
  6329. }
  6330. #u53050 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:349px;
  6334. top:771px;
  6335. width:71px;
  6336. height:30px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. text-align:right;
  6343. }
  6344. #u53050 .text {
  6345. position:absolute;
  6346. align-self:center;
  6347. padding:5px 0px 5px 0px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u53050_text {
  6352. border-width:0px;
  6353. white-space:nowrap;
  6354. text-transform:none;
  6355. }
  6356. #u53051_div {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:57px;
  6362. height:30px;
  6363. background:inherit;
  6364. background-color:rgba(255, 255, 255, 0);
  6365. border:none;
  6366. border-top:0px;
  6367. border-right:0px;
  6368. border-bottom:0px;
  6369. border-radius:0px;
  6370. border-top-left-radius:0px;
  6371. border-bottom-left-radius:0px;
  6372. -moz-box-shadow:none;
  6373. -webkit-box-shadow:none;
  6374. box-shadow:none;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:14px;
  6379. text-align:right;
  6380. }
  6381. #u53051 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:580px;
  6385. top:771px;
  6386. width:57px;
  6387. height:30px;
  6388. display:flex;
  6389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:14px;
  6393. text-align:right;
  6394. }
  6395. #u53051 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:5px 0px 5px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u53051_text {
  6403. border-width:0px;
  6404. white-space:nowrap;
  6405. text-transform:none;
  6406. }
  6407. #u53052 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:0px;
  6413. height:0px;
  6414. }
  6415. #u53053_div {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:140px;
  6421. height:30px;
  6422. background:inherit;
  6423. background-color:rgba(255, 255, 255, 1);
  6424. box-sizing:border-box;
  6425. border-width:1px;
  6426. border-style:solid;
  6427. border-color:rgba(170, 170, 170, 1);
  6428. border-radius:4px;
  6429. -moz-box-shadow:none;
  6430. -webkit-box-shadow:none;
  6431. box-shadow:none;
  6432. }
  6433. #u53053 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:637px;
  6437. top:771px;
  6438. width:140px;
  6439. height:30px;
  6440. display:flex;
  6441. }
  6442. #u53053 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:2px 2px 2px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u53053_text {
  6450. border-width:0px;
  6451. word-wrap:break-word;
  6452. text-transform:none;
  6453. visibility:hidden;
  6454. }
  6455. #u53054_input {
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:133px;
  6460. height:23px;
  6461. padding:2px 2px 2px 0px;
  6462. font-family:'ArialMT', 'Arial', sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. font-size:13px;
  6466. letter-spacing:normal;
  6467. color:#AAAAAA;
  6468. vertical-align:none;
  6469. text-align:left;
  6470. text-transform:none;
  6471. background-color:transparent;
  6472. border-color:transparent;
  6473. }
  6474. #u53054_input.disabled {
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:133px;
  6479. height:23px;
  6480. padding:2px 2px 2px 0px;
  6481. font-family:'ArialMT', 'Arial', sans-serif;
  6482. font-weight:400;
  6483. font-style:normal;
  6484. font-size:13px;
  6485. letter-spacing:normal;
  6486. color:#AAAAAA;
  6487. vertical-align:none;
  6488. text-align:left;
  6489. text-transform:none;
  6490. background-color:transparent;
  6491. border-color:transparent;
  6492. }
  6493. #u53054_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:133px;
  6499. height:23px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 1);
  6502. border:none;
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. color:#AAAAAA;
  6508. }
  6509. #u53054 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:641px;
  6513. top:776px;
  6514. width:133px;
  6515. height:23px;
  6516. display:flex;
  6517. color:#AAAAAA;
  6518. }
  6519. #u53054 .text {
  6520. position:absolute;
  6521. align-self:flex-start;
  6522. padding:2px 2px 2px 0px;
  6523. box-sizing:border-box;
  6524. width:100%;
  6525. }
  6526. #u53054_div.disabled {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:133px;
  6532. height:23px;
  6533. background:inherit;
  6534. background-color:rgba(240, 240, 240, 1);
  6535. border:none;
  6536. border-radius:0px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. color:#AAAAAA;
  6541. }
  6542. #u53054.disabled {
  6543. }
  6544. .u53054_input_option {
  6545. }
  6546. #u53055 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:0px;
  6552. height:0px;
  6553. }
  6554. #u53056_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:59px;
  6560. height:30px;
  6561. background:inherit;
  6562. background-color:rgba(24, 144, 255, 1);
  6563. box-sizing:border-box;
  6564. border-width:1px;
  6565. border-style:solid;
  6566. border-color:rgba(0, 153, 255, 1);
  6567. border-radius:4px;
  6568. -moz-box-shadow:none;
  6569. -webkit-box-shadow:none;
  6570. box-shadow:none;
  6571. font-family:'Microsoft YaHei', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:14px;
  6575. color:#FFFFFF;
  6576. }
  6577. #u53056 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:790px;
  6581. top:771px;
  6582. width:59px;
  6583. height:30px;
  6584. display:flex;
  6585. font-family:'Microsoft YaHei', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:14px;
  6589. color:#FFFFFF;
  6590. }
  6591. #u53056 .text {
  6592. position:absolute;
  6593. align-self:center;
  6594. padding:5px 15px 5px 15px;
  6595. box-sizing:border-box;
  6596. width:100%;
  6597. }
  6598. #u53056_text {
  6599. border-width:0px;
  6600. white-space:nowrap;
  6601. text-transform:none;
  6602. }
  6603. #u53057_div {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:55px;
  6609. height:30px;
  6610. background:inherit;
  6611. background-color:rgba(255, 255, 255, 1);
  6612. box-sizing:border-box;
  6613. border-width:1px;
  6614. border-style:solid;
  6615. border-color:rgba(170, 170, 170, 1);
  6616. border-radius:4px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:12px;
  6624. color:#555555;
  6625. }
  6626. #u53057 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:859px;
  6630. top:771px;
  6631. width:55px;
  6632. height:30px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#555555;
  6639. }
  6640. #u53057 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:5px 15px 5px 15px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u53057_text {
  6648. border-width:0px;
  6649. white-space:nowrap;
  6650. text-transform:none;
  6651. }
  6652. #u53058 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u53059 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:349px;
  6664. top:823px;
  6665. width:1212px;
  6666. height:180px;
  6667. }
  6668. #u53060_img {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:87px;
  6674. height:30px;
  6675. }
  6676. #u53060 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:87px;
  6682. height:30px;
  6683. display:flex;
  6684. color:#FFFFFF;
  6685. }
  6686. #u53060 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:2px 2px 2px 2px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u53060_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. visibility:hidden;
  6698. }
  6699. #u53061_img {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:230px;
  6705. height:30px;
  6706. }
  6707. #u53061 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:87px;
  6711. top:0px;
  6712. width:230px;
  6713. height:30px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. color:#FFFFFF;
  6719. }
  6720. #u53061 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 2px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u53061_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. }
  6732. #u53062_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:230px;
  6738. height:30px;
  6739. }
  6740. #u53062 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:317px;
  6744. top:0px;
  6745. width:230px;
  6746. height:30px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. color:#FFFFFF;
  6752. }
  6753. #u53062 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u53062_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. }
  6765. #u53063_img {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:230px;
  6771. height:30px;
  6772. }
  6773. #u53063 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:547px;
  6777. top:0px;
  6778. width:230px;
  6779. height:30px;
  6780. display:flex;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. color:#FFFFFF;
  6785. }
  6786. #u53063 .text {
  6787. position:absolute;
  6788. align-self:center;
  6789. padding:2px 2px 2px 2px;
  6790. box-sizing:border-box;
  6791. width:100%;
  6792. }
  6793. #u53063_text {
  6794. border-width:0px;
  6795. word-wrap:break-word;
  6796. text-transform:none;
  6797. }
  6798. #u53064_img {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:202px;
  6804. height:30px;
  6805. }
  6806. #u53064 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:777px;
  6810. top:0px;
  6811. width:202px;
  6812. height:30px;
  6813. display:flex;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. color:#FFFFFF;
  6818. }
  6819. #u53064 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u53064_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. }
  6831. #u53065_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:233px;
  6837. height:30px;
  6838. }
  6839. #u53065 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:979px;
  6843. top:0px;
  6844. width:233px;
  6845. height:30px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. color:#FFFFFF;
  6851. }
  6852. #u53065 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 2px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u53065_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. }
  6864. #u53066_img {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:87px;
  6870. height:30px;
  6871. }
  6872. #u53066 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:30px;
  6877. width:87px;
  6878. height:30px;
  6879. display:flex;
  6880. }
  6881. #u53066 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:2px 2px 2px 2px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u53066_text {
  6889. border-width:0px;
  6890. word-wrap:break-word;
  6891. text-transform:none;
  6892. visibility:hidden;
  6893. }
  6894. #u53067_img {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:230px;
  6900. height:30px;
  6901. }
  6902. #u53067 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:87px;
  6906. top:30px;
  6907. width:230px;
  6908. height:30px;
  6909. display:flex;
  6910. }
  6911. #u53067 .text {
  6912. position:absolute;
  6913. align-self:center;
  6914. padding:2px 2px 2px 2px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u53067_text {
  6919. border-width:0px;
  6920. word-wrap:break-word;
  6921. text-transform:none;
  6922. visibility:hidden;
  6923. }
  6924. #u53068_img {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:230px;
  6930. height:30px;
  6931. }
  6932. #u53068 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:317px;
  6936. top:30px;
  6937. width:230px;
  6938. height:30px;
  6939. display:flex;
  6940. }
  6941. #u53068 .text {
  6942. position:absolute;
  6943. align-self:center;
  6944. padding:2px 2px 2px 2px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u53068_text {
  6949. border-width:0px;
  6950. word-wrap:break-word;
  6951. text-transform:none;
  6952. visibility:hidden;
  6953. }
  6954. #u53069_img {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:230px;
  6960. height:30px;
  6961. }
  6962. #u53069 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:547px;
  6966. top:30px;
  6967. width:230px;
  6968. height:30px;
  6969. display:flex;
  6970. }
  6971. #u53069 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 2px 2px 2px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u53069_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. visibility:hidden;
  6983. }
  6984. #u53070_img {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:202px;
  6990. height:30px;
  6991. }
  6992. #u53070 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:777px;
  6996. top:30px;
  6997. width:202px;
  6998. height:30px;
  6999. display:flex;
  7000. }
  7001. #u53070 .text {
  7002. position:absolute;
  7003. align-self:center;
  7004. padding:2px 2px 2px 2px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u53070_text {
  7009. border-width:0px;
  7010. word-wrap:break-word;
  7011. text-transform:none;
  7012. visibility:hidden;
  7013. }
  7014. #u53071_img {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:233px;
  7020. height:30px;
  7021. }
  7022. #u53071 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:979px;
  7026. top:30px;
  7027. width:233px;
  7028. height:30px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. }
  7034. #u53071 .text {
  7035. position:absolute;
  7036. align-self:center;
  7037. padding:2px 2px 2px 2px;
  7038. box-sizing:border-box;
  7039. width:100%;
  7040. }
  7041. #u53071_text {
  7042. border-width:0px;
  7043. word-wrap:break-word;
  7044. text-transform:none;
  7045. }
  7046. #u53072_img {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:87px;
  7052. height:30px;
  7053. }
  7054. #u53072 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:0px;
  7058. top:60px;
  7059. width:87px;
  7060. height:30px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:14px;
  7066. color:#D9001B;
  7067. text-align:right;
  7068. }
  7069. #u53072 .text {
  7070. position:absolute;
  7071. align-self:center;
  7072. padding:2px 2px 2px 2px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u53072_text {
  7077. border-width:0px;
  7078. word-wrap:break-word;
  7079. text-transform:none;
  7080. }
  7081. #u53073_img {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:230px;
  7087. height:30px;
  7088. }
  7089. #u53073 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:87px;
  7093. top:60px;
  7094. width:230px;
  7095. height:30px;
  7096. display:flex;
  7097. }
  7098. #u53073 .text {
  7099. position:absolute;
  7100. align-self:center;
  7101. padding:2px 2px 2px 2px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u53073_text {
  7106. border-width:0px;
  7107. word-wrap:break-word;
  7108. text-transform:none;
  7109. visibility:hidden;
  7110. }
  7111. #u53074_img {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:230px;
  7117. height:30px;
  7118. }
  7119. #u53074 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:317px;
  7123. top:60px;
  7124. width:230px;
  7125. height:30px;
  7126. display:flex;
  7127. }
  7128. #u53074 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:2px 2px 2px 2px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u53074_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. visibility:hidden;
  7140. }
  7141. #u53075_img {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:230px;
  7147. height:30px;
  7148. }
  7149. #u53075 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:547px;
  7153. top:60px;
  7154. width:230px;
  7155. height:30px;
  7156. display:flex;
  7157. }
  7158. #u53075 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:2px 2px 2px 2px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u53075_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u53076_img {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:202px;
  7177. height:30px;
  7178. }
  7179. #u53076 {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:777px;
  7183. top:60px;
  7184. width:202px;
  7185. height:30px;
  7186. display:flex;
  7187. }
  7188. #u53076 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 2px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u53076_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. visibility:hidden;
  7200. }
  7201. #u53077_img {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:233px;
  7207. height:30px;
  7208. }
  7209. #u53077 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:979px;
  7213. top:60px;
  7214. width:233px;
  7215. height:30px;
  7216. display:flex;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. }
  7221. #u53077 .text {
  7222. position:absolute;
  7223. align-self:center;
  7224. padding:2px 2px 2px 2px;
  7225. box-sizing:border-box;
  7226. width:100%;
  7227. }
  7228. #u53077_text {
  7229. border-width:0px;
  7230. word-wrap:break-word;
  7231. text-transform:none;
  7232. }
  7233. #u53078_img {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:87px;
  7239. height:30px;
  7240. }
  7241. #u53078 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:90px;
  7246. width:87px;
  7247. height:30px;
  7248. display:flex;
  7249. }
  7250. #u53078 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 2px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u53078_text {
  7258. border-width:0px;
  7259. word-wrap:break-word;
  7260. text-transform:none;
  7261. visibility:hidden;
  7262. }
  7263. #u53079_img {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:230px;
  7269. height:30px;
  7270. }
  7271. #u53079 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:87px;
  7275. top:90px;
  7276. width:230px;
  7277. height:30px;
  7278. display:flex;
  7279. }
  7280. #u53079 .text {
  7281. position:absolute;
  7282. align-self:center;
  7283. padding:2px 2px 2px 2px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u53079_text {
  7288. border-width:0px;
  7289. word-wrap:break-word;
  7290. text-transform:none;
  7291. visibility:hidden;
  7292. }
  7293. #u53080_img {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:230px;
  7299. height:30px;
  7300. }
  7301. #u53080 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:317px;
  7305. top:90px;
  7306. width:230px;
  7307. height:30px;
  7308. display:flex;
  7309. }
  7310. #u53080 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 2px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u53080_text {
  7318. border-width:0px;
  7319. word-wrap:break-word;
  7320. text-transform:none;
  7321. visibility:hidden;
  7322. }
  7323. #u53081_img {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:230px;
  7329. height:30px;
  7330. }
  7331. #u53081 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:547px;
  7335. top:90px;
  7336. width:230px;
  7337. height:30px;
  7338. display:flex;
  7339. }
  7340. #u53081 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:2px 2px 2px 2px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u53081_text {
  7348. border-width:0px;
  7349. word-wrap:break-word;
  7350. text-transform:none;
  7351. visibility:hidden;
  7352. }
  7353. #u53082_img {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:202px;
  7359. height:30px;
  7360. }
  7361. #u53082 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:777px;
  7365. top:90px;
  7366. width:202px;
  7367. height:30px;
  7368. display:flex;
  7369. }
  7370. #u53082 .text {
  7371. position:absolute;
  7372. align-self:center;
  7373. padding:2px 2px 2px 2px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u53082_text {
  7378. border-width:0px;
  7379. word-wrap:break-word;
  7380. text-transform:none;
  7381. visibility:hidden;
  7382. }
  7383. #u53083_img {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:233px;
  7389. height:30px;
  7390. }
  7391. #u53083 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:979px;
  7395. top:90px;
  7396. width:233px;
  7397. height:30px;
  7398. display:flex;
  7399. }
  7400. #u53083 .text {
  7401. position:absolute;
  7402. align-self:center;
  7403. padding:2px 2px 2px 2px;
  7404. box-sizing:border-box;
  7405. width:100%;
  7406. }
  7407. #u53083_text {
  7408. border-width:0px;
  7409. word-wrap:break-word;
  7410. text-transform:none;
  7411. visibility:hidden;
  7412. }
  7413. #u53084_img {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:87px;
  7419. height:30px;
  7420. }
  7421. #u53084 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:120px;
  7426. width:87px;
  7427. height:30px;
  7428. display:flex;
  7429. }
  7430. #u53084 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 2px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u53084_text {
  7438. border-width:0px;
  7439. word-wrap:break-word;
  7440. text-transform:none;
  7441. visibility:hidden;
  7442. }
  7443. #u53085_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:230px;
  7449. height:30px;
  7450. }
  7451. #u53085 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:87px;
  7455. top:120px;
  7456. width:230px;
  7457. height:30px;
  7458. display:flex;
  7459. }
  7460. #u53085 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:2px 2px 2px 2px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u53085_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. visibility:hidden;
  7472. }
  7473. #u53086_img {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:230px;
  7479. height:30px;
  7480. }
  7481. #u53086 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:317px;
  7485. top:120px;
  7486. width:230px;
  7487. height:30px;
  7488. display:flex;
  7489. }
  7490. #u53086 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:2px 2px 2px 2px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u53086_text {
  7498. border-width:0px;
  7499. word-wrap:break-word;
  7500. text-transform:none;
  7501. visibility:hidden;
  7502. }
  7503. #u53087_img {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:230px;
  7509. height:30px;
  7510. }
  7511. #u53087 {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:547px;
  7515. top:120px;
  7516. width:230px;
  7517. height:30px;
  7518. display:flex;
  7519. }
  7520. #u53087 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:2px 2px 2px 2px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u53087_text {
  7528. border-width:0px;
  7529. word-wrap:break-word;
  7530. text-transform:none;
  7531. visibility:hidden;
  7532. }
  7533. #u53088_img {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:202px;
  7539. height:30px;
  7540. }
  7541. #u53088 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:777px;
  7545. top:120px;
  7546. width:202px;
  7547. height:30px;
  7548. display:flex;
  7549. }
  7550. #u53088 .text {
  7551. position:absolute;
  7552. align-self:center;
  7553. padding:2px 2px 2px 2px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u53088_text {
  7558. border-width:0px;
  7559. word-wrap:break-word;
  7560. text-transform:none;
  7561. visibility:hidden;
  7562. }
  7563. #u53089_img {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:233px;
  7569. height:30px;
  7570. }
  7571. #u53089 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:979px;
  7575. top:120px;
  7576. width:233px;
  7577. height:30px;
  7578. display:flex;
  7579. }
  7580. #u53089 .text {
  7581. position:absolute;
  7582. align-self:center;
  7583. padding:2px 2px 2px 2px;
  7584. box-sizing:border-box;
  7585. width:100%;
  7586. }
  7587. #u53089_text {
  7588. border-width:0px;
  7589. word-wrap:break-word;
  7590. text-transform:none;
  7591. visibility:hidden;
  7592. }
  7593. #u53090_img {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:87px;
  7599. height:30px;
  7600. }
  7601. #u53090 {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:150px;
  7606. width:87px;
  7607. height:30px;
  7608. display:flex;
  7609. }
  7610. #u53090 .text {
  7611. position:absolute;
  7612. align-self:center;
  7613. padding:2px 2px 2px 2px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u53090_text {
  7618. border-width:0px;
  7619. word-wrap:break-word;
  7620. text-transform:none;
  7621. visibility:hidden;
  7622. }
  7623. #u53091_img {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:230px;
  7629. height:30px;
  7630. }
  7631. #u53091 {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:87px;
  7635. top:150px;
  7636. width:230px;
  7637. height:30px;
  7638. display:flex;
  7639. }
  7640. #u53091 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:2px 2px 2px 2px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u53091_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. visibility:hidden;
  7652. }
  7653. #u53092_img {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:230px;
  7659. height:30px;
  7660. }
  7661. #u53092 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:317px;
  7665. top:150px;
  7666. width:230px;
  7667. height:30px;
  7668. display:flex;
  7669. }
  7670. #u53092 .text {
  7671. position:absolute;
  7672. align-self:center;
  7673. padding:2px 2px 2px 2px;
  7674. box-sizing:border-box;
  7675. width:100%;
  7676. }
  7677. #u53092_text {
  7678. border-width:0px;
  7679. word-wrap:break-word;
  7680. text-transform:none;
  7681. visibility:hidden;
  7682. }
  7683. #u53093_img {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:0px;
  7687. top:0px;
  7688. width:230px;
  7689. height:30px;
  7690. }
  7691. #u53093 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:547px;
  7695. top:150px;
  7696. width:230px;
  7697. height:30px;
  7698. display:flex;
  7699. }
  7700. #u53093 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:2px 2px 2px 2px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u53093_text {
  7708. border-width:0px;
  7709. word-wrap:break-word;
  7710. text-transform:none;
  7711. visibility:hidden;
  7712. }
  7713. #u53094_img {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:202px;
  7719. height:30px;
  7720. }
  7721. #u53094 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:777px;
  7725. top:150px;
  7726. width:202px;
  7727. height:30px;
  7728. display:flex;
  7729. }
  7730. #u53094 .text {
  7731. position:absolute;
  7732. align-self:center;
  7733. padding:2px 2px 2px 2px;
  7734. box-sizing:border-box;
  7735. width:100%;
  7736. }
  7737. #u53094_text {
  7738. border-width:0px;
  7739. word-wrap:break-word;
  7740. text-transform:none;
  7741. visibility:hidden;
  7742. }
  7743. #u53095_img {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:0px;
  7747. top:0px;
  7748. width:233px;
  7749. height:30px;
  7750. }
  7751. #u53095 {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:979px;
  7755. top:150px;
  7756. width:233px;
  7757. height:30px;
  7758. display:flex;
  7759. }
  7760. #u53095 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u53095_text {
  7768. border-width:0px;
  7769. word-wrap:break-word;
  7770. text-transform:none;
  7771. visibility:hidden;
  7772. }
  7773. #u53096 label {
  7774. left:0px;
  7775. width:100%;
  7776. }
  7777. #u53096_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:12px;
  7783. height:12px;
  7784. }
  7785. #u53096 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:362px;
  7789. top:862px;
  7790. width:100px;
  7791. height:16px;
  7792. display:flex;
  7793. }
  7794. #u53096 .text {
  7795. position:absolute;
  7796. align-self:center;
  7797. padding:0px 2px 0px 2px;
  7798. box-sizing:border-box;
  7799. }
  7800. #u53096_img.selected {
  7801. }
  7802. #u53096.selected {
  7803. }
  7804. #u53096_img.disabled {
  7805. }
  7806. #u53096.disabled {
  7807. }
  7808. #u53096_img.selectedDisabled {
  7809. }
  7810. #u53096.selectedDisabled {
  7811. }
  7812. #u53096_text {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:14px;
  7816. top:0px;
  7817. width:84px;
  7818. word-wrap:break-word;
  7819. text-transform:none;
  7820. visibility:hidden;
  7821. }
  7822. #u53096_input {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:0px;
  7828. height:0px;
  7829. opacity:0;
  7830. }
  7831. #u53097 label {
  7832. left:0px;
  7833. width:100%;
  7834. }
  7835. #u53097_img {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:12px;
  7841. height:12px;
  7842. }
  7843. #u53097 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:362px;
  7847. top:835px;
  7848. width:100px;
  7849. height:16px;
  7850. display:flex;
  7851. }
  7852. #u53097 .text {
  7853. position:absolute;
  7854. align-self:center;
  7855. padding:0px 2px 0px 2px;
  7856. box-sizing:border-box;
  7857. }
  7858. #u53097_img.selected {
  7859. }
  7860. #u53097.selected {
  7861. }
  7862. #u53097_img.disabled {
  7863. }
  7864. #u53097.disabled {
  7865. }
  7866. #u53097_img.selectedDisabled {
  7867. }
  7868. #u53097.selectedDisabled {
  7869. }
  7870. #u53097_text {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:14px;
  7874. top:0px;
  7875. width:84px;
  7876. word-wrap:break-word;
  7877. text-transform:none;
  7878. visibility:hidden;
  7879. }
  7880. #u53097_input {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:0px;
  7886. height:0px;
  7887. opacity:0;
  7888. }
  7889. #u53098 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:0px;
  7895. height:0px;
  7896. }
  7897. #u53099_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:200px;
  7903. height:1193px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 1);
  7906. border:none;
  7907. border-radius:0px;
  7908. -moz-box-shadow:none;
  7909. -webkit-box-shadow:none;
  7910. box-shadow:none;
  7911. }
  7912. #u53099 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:121px;
  7916. top:50px;
  7917. width:200px;
  7918. height:1193px;
  7919. display:flex;
  7920. }
  7921. #u53099 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:2px 2px 2px 2px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u53099_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. visibility:hidden;
  7933. }
  7934. #u53100_div {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:200px;
  7940. height:60px;
  7941. background:inherit;
  7942. background-color:rgba(224, 231, 247, 1);
  7943. border:none;
  7944. border-radius:0px;
  7945. -moz-box-shadow:none;
  7946. -webkit-box-shadow:none;
  7947. box-shadow:none;
  7948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7949. font-weight:500;
  7950. font-style:normal;
  7951. font-size:18px;
  7952. }
  7953. #u53100 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:121px;
  7957. top:50px;
  7958. width:200px;
  7959. height:60px;
  7960. display:flex;
  7961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7962. font-weight:500;
  7963. font-style:normal;
  7964. font-size:18px;
  7965. }
  7966. #u53100 .text {
  7967. position:absolute;
  7968. align-self:center;
  7969. padding:0px 0px 0px 20px;
  7970. box-sizing:border-box;
  7971. width:100%;
  7972. }
  7973. #u53100_text {
  7974. border-width:0px;
  7975. word-wrap:break-word;
  7976. text-transform:none;
  7977. }
  7978. #u53101_div {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:97px;
  7984. height:22px;
  7985. background:inherit;
  7986. background-color:rgba(255, 255, 255, 0);
  7987. border:none;
  7988. border-radius:0px;
  7989. -moz-box-shadow:none;
  7990. -webkit-box-shadow:none;
  7991. box-shadow:none;
  7992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:16px;
  7996. }
  7997. #u53101 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:151px;
  8001. top:164px;
  8002. width:97px;
  8003. height:22px;
  8004. display:flex;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:16px;
  8009. }
  8010. #u53101 .text {
  8011. position:absolute;
  8012. align-self:flex-start;
  8013. padding:0px 0px 0px 0px;
  8014. box-sizing:border-box;
  8015. width:100%;
  8016. }
  8017. #u53101_text {
  8018. border-width:0px;
  8019. word-wrap:break-word;
  8020. text-transform:none;
  8021. }
  8022. #u53102_div {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:0px;
  8026. top:0px;
  8027. width:49px;
  8028. height:17px;
  8029. background:inherit;
  8030. background-color:rgba(255, 255, 255, 0);
  8031. border:none;
  8032. border-radius:0px;
  8033. -moz-box-shadow:none;
  8034. -webkit-box-shadow:none;
  8035. box-shadow:none;
  8036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:12px;
  8040. color:#AAAAAA;
  8041. }
  8042. #u53102 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:151px;
  8046. top:128px;
  8047. width:49px;
  8048. height:17px;
  8049. display:flex;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:12px;
  8054. color:#AAAAAA;
  8055. }
  8056. #u53102 .text {
  8057. position:absolute;
  8058. align-self:flex-start;
  8059. padding:0px 0px 0px 0px;
  8060. box-sizing:border-box;
  8061. width:100%;
  8062. }
  8063. #u53102_text {
  8064. border-width:0px;
  8065. white-space:nowrap;
  8066. text-transform:none;
  8067. }
  8068. #u53103_div {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:64px;
  8074. height:22px;
  8075. background:inherit;
  8076. background-color:rgba(255, 255, 255, 0);
  8077. border:none;
  8078. border-radius:0px;
  8079. -moz-box-shadow:none;
  8080. -webkit-box-shadow:none;
  8081. box-shadow:none;
  8082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8083. font-weight:400;
  8084. font-style:normal;
  8085. font-size:16px;
  8086. }
  8087. #u53103 {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:151px;
  8091. top:206px;
  8092. width:64px;
  8093. height:22px;
  8094. display:flex;
  8095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8096. font-weight:400;
  8097. font-style:normal;
  8098. font-size:16px;
  8099. }
  8100. #u53103 .text {
  8101. position:absolute;
  8102. align-self:flex-start;
  8103. padding:0px 0px 0px 0px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u53103_text {
  8108. border-width:0px;
  8109. white-space:nowrap;
  8110. text-transform:none;
  8111. }
  8112. #u53104_div {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:65px;
  8118. height:22px;
  8119. background:inherit;
  8120. background-color:rgba(255, 255, 255, 0);
  8121. border:none;
  8122. border-radius:0px;
  8123. -moz-box-shadow:none;
  8124. -webkit-box-shadow:none;
  8125. box-shadow:none;
  8126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:16px;
  8130. }
  8131. #u53104 {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:151px;
  8135. top:290px;
  8136. width:65px;
  8137. height:22px;
  8138. display:flex;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:16px;
  8143. }
  8144. #u53104 .text {
  8145. position:absolute;
  8146. align-self:flex-start;
  8147. padding:0px 0px 0px 0px;
  8148. box-sizing:border-box;
  8149. width:100%;
  8150. }
  8151. #u53104_text {
  8152. border-width:0px;
  8153. white-space:nowrap;
  8154. text-transform:none;
  8155. }
  8156. #u53105_img {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:201px;
  8162. height:2px;
  8163. }
  8164. #u53105 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:121px;
  8168. top:462px;
  8169. width:200px;
  8170. height:1px;
  8171. display:flex;
  8172. }
  8173. #u53105 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 2px 2px 2px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u53105_text {
  8181. border-width:0px;
  8182. word-wrap:break-word;
  8183. text-transform:none;
  8184. visibility:hidden;
  8185. }
  8186. #u53106_img {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:201px;
  8192. height:2px;
  8193. }
  8194. #u53106 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:120px;
  8198. top:610px;
  8199. width:200px;
  8200. height:1px;
  8201. display:flex;
  8202. }
  8203. #u53106 .text {
  8204. position:absolute;
  8205. align-self:center;
  8206. padding:2px 2px 2px 2px;
  8207. box-sizing:border-box;
  8208. width:100%;
  8209. }
  8210. #u53106_text {
  8211. border-width:0px;
  8212. word-wrap:break-word;
  8213. text-transform:none;
  8214. visibility:hidden;
  8215. }
  8216. #u53107_div {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:97px;
  8222. height:22px;
  8223. background:inherit;
  8224. background-color:rgba(255, 255, 255, 0);
  8225. border:none;
  8226. border-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:16px;
  8234. }
  8235. #u53107 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:150px;
  8239. top:706px;
  8240. width:97px;
  8241. height:22px;
  8242. display:flex;
  8243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8244. font-weight:400;
  8245. font-style:normal;
  8246. font-size:16px;
  8247. }
  8248. #u53107 .text {
  8249. position:absolute;
  8250. align-self:flex-start;
  8251. padding:0px 0px 0px 0px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u53107_text {
  8256. border-width:0px;
  8257. word-wrap:break-word;
  8258. text-transform:none;
  8259. }
  8260. #u53108_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:49px;
  8266. height:17px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:12px;
  8278. color:#AAAAAA;
  8279. }
  8280. #u53108 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:150px;
  8284. top:630px;
  8285. width:49px;
  8286. height:17px;
  8287. display:flex;
  8288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:12px;
  8292. color:#AAAAAA;
  8293. }
  8294. #u53108 .text {
  8295. position:absolute;
  8296. align-self:flex-start;
  8297. padding:0px 0px 0px 0px;
  8298. box-sizing:border-box;
  8299. width:100%;
  8300. }
  8301. #u53108_text {
  8302. border-width:0px;
  8303. white-space:nowrap;
  8304. text-transform:none;
  8305. }
  8306. #u53109_div {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:64px;
  8312. height:22px;
  8313. background:inherit;
  8314. background-color:rgba(255, 255, 255, 0);
  8315. border:none;
  8316. border-radius:0px;
  8317. -moz-box-shadow:none;
  8318. -webkit-box-shadow:none;
  8319. box-shadow:none;
  8320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8321. font-weight:400;
  8322. font-style:normal;
  8323. font-size:16px;
  8324. }
  8325. #u53109 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:151px;
  8329. top:248px;
  8330. width:64px;
  8331. height:22px;
  8332. display:flex;
  8333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:16px;
  8337. }
  8338. #u53109 .text {
  8339. position:absolute;
  8340. align-self:flex-start;
  8341. padding:0px 0px 0px 0px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u53109_text {
  8346. border-width:0px;
  8347. white-space:nowrap;
  8348. text-transform:none;
  8349. }
  8350. #u53110_div {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:97px;
  8356. height:22px;
  8357. background:inherit;
  8358. background-color:rgba(255, 255, 255, 0);
  8359. border:none;
  8360. border-radius:0px;
  8361. -moz-box-shadow:none;
  8362. -webkit-box-shadow:none;
  8363. box-shadow:none;
  8364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8365. font-weight:400;
  8366. font-style:normal;
  8367. font-size:16px;
  8368. }
  8369. #u53110 {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:151px;
  8373. top:519px;
  8374. width:97px;
  8375. height:22px;
  8376. display:flex;
  8377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8378. font-weight:400;
  8379. font-style:normal;
  8380. font-size:16px;
  8381. }
  8382. #u53110 .text {
  8383. position:absolute;
  8384. align-self:flex-start;
  8385. padding:0px 0px 0px 0px;
  8386. box-sizing:border-box;
  8387. width:100%;
  8388. }
  8389. #u53110_text {
  8390. border-width:0px;
  8391. word-wrap:break-word;
  8392. text-transform:none;
  8393. }
  8394. #u53111_div {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:0px;
  8398. top:0px;
  8399. width:49px;
  8400. height:17px;
  8401. background:inherit;
  8402. background-color:rgba(255, 255, 255, 0);
  8403. border:none;
  8404. border-radius:0px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:12px;
  8412. color:#AAAAAA;
  8413. }
  8414. #u53111 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:151px;
  8418. top:483px;
  8419. width:49px;
  8420. height:17px;
  8421. display:flex;
  8422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:12px;
  8426. color:#AAAAAA;
  8427. }
  8428. #u53111 .text {
  8429. position:absolute;
  8430. align-self:flex-start;
  8431. padding:0px 0px 0px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u53111_text {
  8436. border-width:0px;
  8437. white-space:nowrap;
  8438. text-transform:none;
  8439. }
  8440. #u53112_div {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:49px;
  8446. height:22px;
  8447. background:inherit;
  8448. background-color:rgba(255, 255, 255, 0);
  8449. border:none;
  8450. border-radius:0px;
  8451. -moz-box-shadow:none;
  8452. -webkit-box-shadow:none;
  8453. box-shadow:none;
  8454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:16px;
  8458. }
  8459. #u53112 {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:151px;
  8463. top:561px;
  8464. width:49px;
  8465. height:22px;
  8466. display:flex;
  8467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8468. font-weight:400;
  8469. font-style:normal;
  8470. font-size:16px;
  8471. }
  8472. #u53112 .text {
  8473. position:absolute;
  8474. align-self:flex-start;
  8475. padding:0px 0px 0px 0px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u53112_text {
  8480. border-width:0px;
  8481. white-space:nowrap;
  8482. text-transform:none;
  8483. }
  8484. #u53113_div {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:97px;
  8490. height:22px;
  8491. background:inherit;
  8492. background-color:rgba(255, 255, 255, 0);
  8493. border:none;
  8494. border-radius:0px;
  8495. -moz-box-shadow:none;
  8496. -webkit-box-shadow:none;
  8497. box-shadow:none;
  8498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:16px;
  8502. }
  8503. #u53113 {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:151px;
  8507. top:332px;
  8508. width:97px;
  8509. height:22px;
  8510. display:flex;
  8511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8512. font-weight:400;
  8513. font-style:normal;
  8514. font-size:16px;
  8515. }
  8516. #u53113 .text {
  8517. position:absolute;
  8518. align-self:flex-start;
  8519. padding:0px 0px 0px 0px;
  8520. box-sizing:border-box;
  8521. width:100%;
  8522. }
  8523. #u53113_text {
  8524. border-width:0px;
  8525. white-space:nowrap;
  8526. text-transform:none;
  8527. }
  8528. #u53114_div {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:0px;
  8532. top:0px;
  8533. width:97px;
  8534. height:22px;
  8535. background:inherit;
  8536. background-color:rgba(255, 255, 255, 0);
  8537. border:none;
  8538. border-radius:0px;
  8539. -moz-box-shadow:none;
  8540. -webkit-box-shadow:none;
  8541. box-shadow:none;
  8542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8543. font-weight:400;
  8544. font-style:normal;
  8545. font-size:16px;
  8546. }
  8547. #u53114 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:150px;
  8551. top:748px;
  8552. width:97px;
  8553. height:22px;
  8554. display:flex;
  8555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8556. font-weight:400;
  8557. font-style:normal;
  8558. font-size:16px;
  8559. }
  8560. #u53114 .text {
  8561. position:absolute;
  8562. align-self:flex-start;
  8563. padding:0px 0px 0px 0px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u53114_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. }
  8572. #u53115_div {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:0px;
  8576. top:0px;
  8577. width:97px;
  8578. height:22px;
  8579. background:inherit;
  8580. background-color:rgba(255, 255, 255, 0);
  8581. border:none;
  8582. border-radius:0px;
  8583. -moz-box-shadow:none;
  8584. -webkit-box-shadow:none;
  8585. box-shadow:none;
  8586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:16px;
  8590. }
  8591. #u53115 {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:150px;
  8595. top:790px;
  8596. width:97px;
  8597. height:22px;
  8598. display:flex;
  8599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8600. font-weight:400;
  8601. font-style:normal;
  8602. font-size:16px;
  8603. }
  8604. #u53115 .text {
  8605. position:absolute;
  8606. align-self:flex-start;
  8607. padding:0px 0px 0px 0px;
  8608. box-sizing:border-box;
  8609. width:100%;
  8610. }
  8611. #u53115_text {
  8612. border-width:0px;
  8613. word-wrap:break-word;
  8614. text-transform:none;
  8615. }
  8616. #u53116_div {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:97px;
  8622. height:22px;
  8623. background:inherit;
  8624. background-color:rgba(255, 255, 255, 0);
  8625. border:none;
  8626. border-radius:0px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8631. font-weight:400;
  8632. font-style:normal;
  8633. font-size:16px;
  8634. }
  8635. #u53116 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:150px;
  8639. top:832px;
  8640. width:97px;
  8641. height:22px;
  8642. display:flex;
  8643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8644. font-weight:400;
  8645. font-style:normal;
  8646. font-size:16px;
  8647. }
  8648. #u53116 .text {
  8649. position:absolute;
  8650. align-self:flex-start;
  8651. padding:0px 0px 0px 0px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u53116_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. }
  8660. #u53117_div {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:97px;
  8666. height:22px;
  8667. background:inherit;
  8668. background-color:rgba(255, 255, 255, 0);
  8669. border:none;
  8670. border-radius:0px;
  8671. -moz-box-shadow:none;
  8672. -webkit-box-shadow:none;
  8673. box-shadow:none;
  8674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8675. font-weight:400;
  8676. font-style:normal;
  8677. font-size:16px;
  8678. }
  8679. #u53117 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:150px;
  8683. top:874px;
  8684. width:97px;
  8685. height:22px;
  8686. display:flex;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:16px;
  8691. }
  8692. #u53117 .text {
  8693. position:absolute;
  8694. align-self:flex-start;
  8695. padding:0px 0px 0px 0px;
  8696. box-sizing:border-box;
  8697. width:100%;
  8698. }
  8699. #u53117_text {
  8700. border-width:0px;
  8701. word-wrap:break-word;
  8702. text-transform:none;
  8703. }
  8704. #u53118_img {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:201px;
  8710. height:2px;
  8711. }
  8712. #u53118 {
  8713. border-width:0px;
  8714. position:absolute;
  8715. left:120px;
  8716. top:916px;
  8717. width:200px;
  8718. height:1px;
  8719. display:flex;
  8720. }
  8721. #u53118 .text {
  8722. position:absolute;
  8723. align-self:center;
  8724. padding:2px 2px 2px 2px;
  8725. box-sizing:border-box;
  8726. width:100%;
  8727. }
  8728. #u53118_text {
  8729. border-width:0px;
  8730. word-wrap:break-word;
  8731. text-transform:none;
  8732. visibility:hidden;
  8733. }
  8734. #u53119_div {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:97px;
  8740. height:22px;
  8741. background:inherit;
  8742. background-color:rgba(255, 255, 255, 0);
  8743. border:none;
  8744. border-radius:0px;
  8745. -moz-box-shadow:none;
  8746. -webkit-box-shadow:none;
  8747. box-shadow:none;
  8748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:16px;
  8752. }
  8753. #u53119 {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:150px;
  8757. top:972px;
  8758. width:97px;
  8759. height:22px;
  8760. display:flex;
  8761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8762. font-weight:400;
  8763. font-style:normal;
  8764. font-size:16px;
  8765. }
  8766. #u53119 .text {
  8767. position:absolute;
  8768. align-self:flex-start;
  8769. padding:0px 0px 0px 0px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u53119_text {
  8774. border-width:0px;
  8775. word-wrap:break-word;
  8776. text-transform:none;
  8777. }
  8778. #u53120_div {
  8779. border-width:0px;
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:49px;
  8784. height:17px;
  8785. background:inherit;
  8786. background-color:rgba(255, 255, 255, 0);
  8787. border:none;
  8788. border-radius:0px;
  8789. -moz-box-shadow:none;
  8790. -webkit-box-shadow:none;
  8791. box-shadow:none;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:12px;
  8796. color:#AAAAAA;
  8797. }
  8798. #u53120 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:150px;
  8802. top:936px;
  8803. width:49px;
  8804. height:17px;
  8805. display:flex;
  8806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:12px;
  8810. color:#AAAAAA;
  8811. }
  8812. #u53120 .text {
  8813. position:absolute;
  8814. align-self:flex-start;
  8815. padding:0px 0px 0px 0px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u53120_text {
  8820. border-width:0px;
  8821. white-space:nowrap;
  8822. text-transform:none;
  8823. }
  8824. #u53121_div {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:97px;
  8830. height:22px;
  8831. background:inherit;
  8832. background-color:rgba(255, 255, 255, 0);
  8833. border:none;
  8834. border-radius:0px;
  8835. -moz-box-shadow:none;
  8836. -webkit-box-shadow:none;
  8837. box-shadow:none;
  8838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:16px;
  8842. }
  8843. #u53121 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:151px;
  8847. top:1014px;
  8848. width:97px;
  8849. height:22px;
  8850. display:flex;
  8851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:16px;
  8855. }
  8856. #u53121 .text {
  8857. position:absolute;
  8858. align-self:flex-start;
  8859. padding:0px 0px 0px 0px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u53121_text {
  8864. border-width:0px;
  8865. word-wrap:break-word;
  8866. text-transform:none;
  8867. }
  8868. #u53122_div {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:0px;
  8872. top:0px;
  8873. width:81px;
  8874. height:22px;
  8875. background:inherit;
  8876. background-color:rgba(255, 255, 255, 0);
  8877. border:none;
  8878. border-radius:0px;
  8879. -moz-box-shadow:none;
  8880. -webkit-box-shadow:none;
  8881. box-shadow:none;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:16px;
  8886. }
  8887. #u53122 {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:151px;
  8891. top:374px;
  8892. width:81px;
  8893. height:22px;
  8894. display:flex;
  8895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8896. font-weight:400;
  8897. font-style:normal;
  8898. font-size:16px;
  8899. }
  8900. #u53122 .text {
  8901. position:absolute;
  8902. align-self:flex-start;
  8903. padding:0px 0px 0px 0px;
  8904. box-sizing:border-box;
  8905. width:100%;
  8906. }
  8907. #u53122_text {
  8908. border-width:0px;
  8909. white-space:nowrap;
  8910. text-transform:none;
  8911. }
  8912. #u53123_div {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:81px;
  8918. height:22px;
  8919. background:inherit;
  8920. background-color:rgba(255, 255, 255, 0);
  8921. border:none;
  8922. border-radius:0px;
  8923. -moz-box-shadow:none;
  8924. -webkit-box-shadow:none;
  8925. box-shadow:none;
  8926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. font-size:16px;
  8930. }
  8931. #u53123 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:151px;
  8935. top:416px;
  8936. width:81px;
  8937. height:22px;
  8938. display:flex;
  8939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8940. font-weight:400;
  8941. font-style:normal;
  8942. font-size:16px;
  8943. }
  8944. #u53123 .text {
  8945. position:absolute;
  8946. align-self:flex-start;
  8947. padding:0px 0px 0px 0px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u53123_text {
  8952. border-width:0px;
  8953. white-space:nowrap;
  8954. text-transform:none;
  8955. }
  8956. #u53124_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:97px;
  8962. height:22px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 0);
  8965. border:none;
  8966. border-radius:0px;
  8967. -moz-box-shadow:none;
  8968. -webkit-box-shadow:none;
  8969. box-shadow:none;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:16px;
  8974. }
  8975. #u53124 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:150px;
  8979. top:665px;
  8980. width:97px;
  8981. height:22px;
  8982. display:flex;
  8983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:16px;
  8987. }
  8988. #u53124 .text {
  8989. position:absolute;
  8990. align-self:flex-start;
  8991. padding:0px 0px 0px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u53124_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. }