styles.css 194 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2035px;
  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. #u50416_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. #u50416 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u50416 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u50416_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u50417_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. #u50417 {
  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. #u50417 .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. #u50417_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u50418_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. #u50418 {
  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. #u50418 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u50418_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u50419 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u50420_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u50420 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u50420 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u50420_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u50421_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. #u50421 {
  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. #u50421 .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. #u50421_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u50422_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. #u50422 {
  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. #u50422 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u50422_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u50423 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u50424_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. #u50424_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. #u50424_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. #u50424 {
  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. #u50424 .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. #u50424_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. #u50424.disabled {
  356. }
  357. .u50424_input_option {
  358. font-size:14px;
  359. }
  360. #u50425_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u50425 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u50425 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u50425_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u50426_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. #u50426 {
  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. #u50426 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u50426_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u50427_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. #u50427 {
  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. #u50427 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u50427_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u50428 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u50429_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. #u50429 {
  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. #u50429 .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. #u50429_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u50430_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u50430 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u50430 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u50430_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u50431 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u50432_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. #u50432 {
  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. #u50432 .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. #u50432_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u50433_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u50433 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u50433 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u50433_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u50434 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u50435_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. #u50435 {
  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. #u50435 .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. #u50435_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u50436_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u50436 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u50436 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u50436_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u50437 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u50438_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. #u50438 {
  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. #u50438 .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. #u50438_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u50439_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u50439 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u50439 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u50439_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u50440 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u50441_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. #u50441 {
  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. #u50441 .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. #u50441_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u50442_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u50442 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u50442 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u50442_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u50443 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u50444_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. #u50444 {
  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. #u50444 .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. #u50444_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u50445_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u50445 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u50445 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u50445_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u50446 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u50447_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. #u50447 {
  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. #u50447 .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. #u50447_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u50448_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u50448 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u50448 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u50448_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u50449 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u50450_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. #u50450 {
  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. #u50450 .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. #u50450_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u50451_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u50451 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u50451 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u50451_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u50452 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u50453_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. #u50453 {
  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. #u50453 .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. #u50453_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u50454_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u50454 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u50454 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u50454_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u50455 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u50456_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. #u50456 {
  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. #u50456 .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. #u50456_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u50457_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u50457 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u50457 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u50457_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u50458_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. #u50458 {
  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. #u50458 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u50458_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u50459_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u50459 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u50459 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u50459_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u50460_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. #u50460 {
  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. #u50460 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u50460_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u50461_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u50461 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u50461 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u50461_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u50462 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u50463_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. #u50463 {
  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. #u50463 .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. #u50463_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u50464_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u50464 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u50464 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u50464_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u50465 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u50466_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. #u50466 {
  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. #u50466 .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. #u50466_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u50467_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u50467 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u50467 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u50467_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u50468_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. #u50468 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:330px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u50468 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u50468_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u50469_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  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. #u50469 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:348px;
  1705. top:50px;
  1706. width:73px;
  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. #u50469 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u50469_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u50470_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:67px;
  1732. height:30px;
  1733. background:inherit;
  1734. background-color:rgba(24, 144, 255, 1);
  1735. border:none;
  1736. border-radius:4px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u50470 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:350px;
  1750. top:154px;
  1751. width:67px;
  1752. height:30px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u50470 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:5px 15px 5px 15px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u50470_text {
  1768. border-width:0px;
  1769. white-space:nowrap;
  1770. text-transform:none;
  1771. }
  1772. #u50471 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:348px;
  1776. top:201px;
  1777. width:1192px;
  1778. height:366px;
  1779. }
  1780. #u50472_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:82px;
  1786. height:39px;
  1787. }
  1788. #u50472 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:82px;
  1794. height:39px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u50472 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u50472_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u50473_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:82px;
  1820. height:39px;
  1821. }
  1822. #u50473 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:82px;
  1826. top:0px;
  1827. width:82px;
  1828. height:39px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#FFFFFF;
  1835. }
  1836. #u50473 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u50473_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u50474_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:82px;
  1854. height:39px;
  1855. }
  1856. #u50474 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:164px;
  1860. top:0px;
  1861. width:82px;
  1862. height:39px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:12px;
  1868. color:#FFFFFF;
  1869. }
  1870. #u50474 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u50474_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u50475_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:82px;
  1888. height:39px;
  1889. }
  1890. #u50475 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:246px;
  1894. top:0px;
  1895. width:82px;
  1896. height:39px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:12px;
  1902. color:#FFFFFF;
  1903. }
  1904. #u50475 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u50475_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u50476_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:82px;
  1922. height:39px;
  1923. }
  1924. #u50476 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:328px;
  1928. top:0px;
  1929. width:82px;
  1930. height:39px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. color:#FFFFFF;
  1937. }
  1938. #u50476 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u50476_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. }
  1950. #u50477_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:89px;
  1956. height:39px;
  1957. }
  1958. #u50477 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:410px;
  1962. top:0px;
  1963. width:89px;
  1964. height:39px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u50477 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u50477_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u50478_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:82px;
  1990. height:39px;
  1991. }
  1992. #u50478 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:499px;
  1996. top:0px;
  1997. width:82px;
  1998. height:39px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:12px;
  2004. color:#FFFFFF;
  2005. }
  2006. #u50478 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u50478_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u50479_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:82px;
  2024. height:39px;
  2025. }
  2026. #u50479 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:581px;
  2030. top:0px;
  2031. width:82px;
  2032. height:39px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u50479 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u50479_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u50480_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:88px;
  2058. height:39px;
  2059. }
  2060. #u50480 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:663px;
  2064. top:0px;
  2065. width:88px;
  2066. height:39px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. color:#FFFFFF;
  2073. }
  2074. #u50480 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u50480_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }
  2086. #u50481_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:82px;
  2092. height:39px;
  2093. }
  2094. #u50481 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:751px;
  2098. top:0px;
  2099. width:82px;
  2100. height:39px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u50481 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u50481_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u50482_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:82px;
  2126. height:39px;
  2127. }
  2128. #u50482 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:833px;
  2132. top:0px;
  2133. width:82px;
  2134. height:39px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:12px;
  2140. color:#FFFFFF;
  2141. }
  2142. #u50482 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u50482_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u50483_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:89px;
  2160. height:39px;
  2161. }
  2162. #u50483 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:915px;
  2166. top:0px;
  2167. width:89px;
  2168. height:39px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:12px;
  2174. color:#FFFFFF;
  2175. }
  2176. #u50483 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u50483_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u50484_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:88px;
  2194. height:39px;
  2195. }
  2196. #u50484 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:1004px;
  2200. top:0px;
  2201. width:88px;
  2202. height:39px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:12px;
  2208. color:#FFFFFF;
  2209. }
  2210. #u50484 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u50484_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u50485_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:100px;
  2228. height:39px;
  2229. }
  2230. #u50485 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:1092px;
  2234. top:0px;
  2235. width:100px;
  2236. height:39px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:12px;
  2242. color:#FFFFFF;
  2243. }
  2244. #u50485 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u50485_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. }
  2256. #u50486_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:82px;
  2262. height:38px;
  2263. }
  2264. #u50486 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:39px;
  2269. width:82px;
  2270. height:38px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:12px;
  2276. }
  2277. #u50486 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 0px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u50486_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u50487_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:82px;
  2296. height:38px;
  2297. }
  2298. #u50487 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:82px;
  2302. top:39px;
  2303. width:82px;
  2304. height:38px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u50487 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u50487_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. visibility:hidden;
  2323. }
  2324. #u50488_img {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:82px;
  2330. height:38px;
  2331. }
  2332. #u50488 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:164px;
  2336. top:39px;
  2337. width:82px;
  2338. height:38px;
  2339. display:flex;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. }
  2345. #u50488 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u50488_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u50489_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:82px;
  2364. height:38px;
  2365. }
  2366. #u50489 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:246px;
  2370. top:39px;
  2371. width:82px;
  2372. height:38px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. }
  2379. #u50489 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u50489_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u50490_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:82px;
  2398. height:38px;
  2399. }
  2400. #u50490 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:328px;
  2404. top:39px;
  2405. width:82px;
  2406. height:38px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:12px;
  2412. }
  2413. #u50490 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u50490_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. }
  2425. #u50491_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:89px;
  2431. height:38px;
  2432. }
  2433. #u50491 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:410px;
  2437. top:39px;
  2438. width:89px;
  2439. height:38px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. }
  2446. #u50491 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u50491_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u50492_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:82px;
  2465. height:38px;
  2466. }
  2467. #u50492 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:499px;
  2471. top:39px;
  2472. width:82px;
  2473. height:38px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. }
  2480. #u50492 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u50492_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u50493_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:82px;
  2499. height:38px;
  2500. }
  2501. #u50493 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:581px;
  2505. top:39px;
  2506. width:82px;
  2507. height:38px;
  2508. display:flex;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. }
  2514. #u50493 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u50493_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u50494_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:88px;
  2533. height:38px;
  2534. }
  2535. #u50494 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:663px;
  2539. top:39px;
  2540. width:88px;
  2541. height:38px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u50494 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u50494_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u50495_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:82px;
  2567. height:38px;
  2568. }
  2569. #u50495 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:751px;
  2573. top:39px;
  2574. width:82px;
  2575. height:38px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u50495 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u50495_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u50496_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:82px;
  2601. height:38px;
  2602. }
  2603. #u50496 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:833px;
  2607. top:39px;
  2608. width:82px;
  2609. height:38px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. }
  2616. #u50496 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u50496_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u50497_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:89px;
  2635. height:38px;
  2636. }
  2637. #u50497 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:915px;
  2641. top:39px;
  2642. width:89px;
  2643. height:38px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:12px;
  2649. color:#1890FF;
  2650. }
  2651. #u50497 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u50497_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. }
  2663. #u50498_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:88px;
  2669. height:38px;
  2670. }
  2671. #u50498 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:1004px;
  2675. top:39px;
  2676. width:88px;
  2677. height:38px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:12px;
  2683. color:#D9001B;
  2684. }
  2685. #u50498 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u50498_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u50499_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:100px;
  2703. height:38px;
  2704. }
  2705. #u50499 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:1092px;
  2709. top:39px;
  2710. width:100px;
  2711. height:38px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#1890FF;
  2718. }
  2719. #u50499 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u50499_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u50500_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:82px;
  2737. height:38px;
  2738. }
  2739. #u50500 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:77px;
  2744. width:82px;
  2745. height:38px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. }
  2752. #u50500 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u50500_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u50501_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:82px;
  2771. height:38px;
  2772. }
  2773. #u50501 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:82px;
  2777. top:77px;
  2778. width:82px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. }
  2786. #u50501 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u50501_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u50502_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:82px;
  2805. height:38px;
  2806. }
  2807. #u50502 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:164px;
  2811. top:77px;
  2812. width:82px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. }
  2820. #u50502 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u50502_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u50503_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:82px;
  2839. height:38px;
  2840. }
  2841. #u50503 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:246px;
  2845. top:77px;
  2846. width:82px;
  2847. height:38px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. }
  2854. #u50503 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u50503_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u50504_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:82px;
  2873. height:38px;
  2874. }
  2875. #u50504 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:328px;
  2879. top:77px;
  2880. width:82px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u50504 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u50504_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u50505_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:89px;
  2906. height:38px;
  2907. }
  2908. #u50505 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:410px;
  2912. top:77px;
  2913. width:89px;
  2914. height:38px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:12px;
  2920. }
  2921. #u50505 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u50505_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u50506_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:82px;
  2940. height:38px;
  2941. }
  2942. #u50506 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:499px;
  2946. top:77px;
  2947. width:82px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. }
  2955. #u50506 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u50506_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u50507_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:82px;
  2974. height:38px;
  2975. }
  2976. #u50507 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:581px;
  2980. top:77px;
  2981. width:82px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. }
  2989. #u50507 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u50507_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u50508_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:88px;
  3008. height:38px;
  3009. }
  3010. #u50508 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:663px;
  3014. top:77px;
  3015. width:88px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. }
  3023. #u50508 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u50508_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u50509_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:82px;
  3042. height:38px;
  3043. }
  3044. #u50509 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:751px;
  3048. top:77px;
  3049. width:82px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. }
  3057. #u50509 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u50509_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u50510_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:82px;
  3076. height:38px;
  3077. }
  3078. #u50510 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:833px;
  3082. top:77px;
  3083. width:82px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u50510 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u50510_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u50511_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:89px;
  3110. height:38px;
  3111. }
  3112. #u50511 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:915px;
  3116. top:77px;
  3117. width:89px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#1890FF;
  3125. }
  3126. #u50511 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u50511_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. }
  3138. #u50512_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:88px;
  3144. height:38px;
  3145. }
  3146. #u50512 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:1004px;
  3150. top:77px;
  3151. width:88px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#333333;
  3159. }
  3160. #u50512 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u50512_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u50513_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:100px;
  3178. height:38px;
  3179. }
  3180. #u50513 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:1092px;
  3184. top:77px;
  3185. width:100px;
  3186. height:38px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#1890FF;
  3193. }
  3194. #u50513 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u50513_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. }
  3206. #u50514_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:82px;
  3212. height:38px;
  3213. }
  3214. #u50514 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:115px;
  3219. width:82px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. }
  3227. #u50514 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u50514_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u50515_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:82px;
  3246. height:38px;
  3247. }
  3248. #u50515 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:82px;
  3252. top:115px;
  3253. width:82px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. }
  3261. #u50515 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u50515_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u50516_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:82px;
  3280. height:38px;
  3281. }
  3282. #u50516 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:164px;
  3286. top:115px;
  3287. width:82px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. }
  3295. #u50516 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u50516_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u50517_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:82px;
  3314. height:38px;
  3315. }
  3316. #u50517 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:246px;
  3320. top:115px;
  3321. width:82px;
  3322. height:38px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. }
  3329. #u50517 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u50517_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u50518_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:82px;
  3348. height:38px;
  3349. }
  3350. #u50518 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:328px;
  3354. top:115px;
  3355. width:82px;
  3356. height:38px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. }
  3363. #u50518 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u50518_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u50519_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:89px;
  3381. height:38px;
  3382. }
  3383. #u50519 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:410px;
  3387. top:115px;
  3388. width:89px;
  3389. height:38px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. }
  3396. #u50519 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u50519_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u50520_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:82px;
  3415. height:38px;
  3416. }
  3417. #u50520 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:499px;
  3421. top:115px;
  3422. width:82px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. }
  3430. #u50520 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u50520_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u50521_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:82px;
  3449. height:38px;
  3450. }
  3451. #u50521 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:581px;
  3455. top:115px;
  3456. width:82px;
  3457. height:38px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. }
  3464. #u50521 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u50521_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u50522_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:88px;
  3483. height:38px;
  3484. }
  3485. #u50522 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:663px;
  3489. top:115px;
  3490. width:88px;
  3491. height:38px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. }
  3498. #u50522 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u50522_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u50523_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:82px;
  3517. height:38px;
  3518. }
  3519. #u50523 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:751px;
  3523. top:115px;
  3524. width:82px;
  3525. height:38px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. }
  3532. #u50523 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u50523_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u50524_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:82px;
  3551. height:38px;
  3552. }
  3553. #u50524 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:833px;
  3557. top:115px;
  3558. width:82px;
  3559. height:38px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. }
  3566. #u50524 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u50524_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u50525_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:89px;
  3585. height:38px;
  3586. }
  3587. #u50525 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:915px;
  3591. top:115px;
  3592. width:89px;
  3593. height:38px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#1890FF;
  3600. }
  3601. #u50525 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u50525_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. }
  3613. #u50526_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:88px;
  3619. height:38px;
  3620. }
  3621. #u50526 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:1004px;
  3625. top:115px;
  3626. width:88px;
  3627. height:38px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#1890FF;
  3634. }
  3635. #u50526 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u50526_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u50527_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:100px;
  3654. height:38px;
  3655. }
  3656. #u50527 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:1092px;
  3660. top:115px;
  3661. width:100px;
  3662. height:38px;
  3663. display:flex;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#1890FF;
  3669. }
  3670. #u50527 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u50527_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. }
  3682. #u50528_img {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:82px;
  3688. height:38px;
  3689. }
  3690. #u50528 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:153px;
  3695. width:82px;
  3696. height:38px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:12px;
  3702. }
  3703. #u50528 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u50528_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u50529_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:82px;
  3722. height:38px;
  3723. }
  3724. #u50529 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:82px;
  3728. top:153px;
  3729. width:82px;
  3730. height:38px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. }
  3737. #u50529 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u50529_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u50530_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:82px;
  3756. height:38px;
  3757. }
  3758. #u50530 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:164px;
  3762. top:153px;
  3763. width:82px;
  3764. height:38px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. }
  3771. #u50530 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u50530_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u50531_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:82px;
  3790. height:38px;
  3791. }
  3792. #u50531 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:246px;
  3796. top:153px;
  3797. width:82px;
  3798. height:38px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. }
  3805. #u50531 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u50531_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u50532_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:82px;
  3824. height:38px;
  3825. }
  3826. #u50532 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:328px;
  3830. top:153px;
  3831. width:82px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. }
  3839. #u50532 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u50532_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u50533_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:89px;
  3858. height:38px;
  3859. }
  3860. #u50533 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:410px;
  3864. top:153px;
  3865. width:89px;
  3866. height:38px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. }
  3873. #u50533 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u50533_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u50534_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:82px;
  3892. height:38px;
  3893. }
  3894. #u50534 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:499px;
  3898. top:153px;
  3899. width:82px;
  3900. height:38px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. }
  3907. #u50534 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u50534_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u50535_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:82px;
  3926. height:38px;
  3927. }
  3928. #u50535 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:581px;
  3932. top:153px;
  3933. width:82px;
  3934. height:38px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. }
  3941. #u50535 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u50535_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u50536_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:88px;
  3960. height:38px;
  3961. }
  3962. #u50536 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:663px;
  3966. top:153px;
  3967. width:88px;
  3968. height:38px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. }
  3975. #u50536 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u50536_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. visibility:hidden;
  3987. }
  3988. #u50537_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:82px;
  3994. height:38px;
  3995. }
  3996. #u50537 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:751px;
  4000. top:153px;
  4001. width:82px;
  4002. height:38px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:12px;
  4008. }
  4009. #u50537 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u50537_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. visibility:hidden;
  4021. }
  4022. #u50538_img {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:82px;
  4028. height:38px;
  4029. }
  4030. #u50538 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:833px;
  4034. top:153px;
  4035. width:82px;
  4036. height:38px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. }
  4043. #u50538 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u50538_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u50539_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:89px;
  4062. height:38px;
  4063. }
  4064. #u50539 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:915px;
  4068. top:153px;
  4069. width:89px;
  4070. height:38px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. }
  4077. #u50539 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u50539_text {
  4085. border-width:0px;
  4086. word-wrap:break-word;
  4087. text-transform:none;
  4088. visibility:hidden;
  4089. }
  4090. #u50540_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:88px;
  4096. height:38px;
  4097. }
  4098. #u50540 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1004px;
  4102. top:153px;
  4103. width:88px;
  4104. height:38px;
  4105. display:flex;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. }
  4111. #u50540 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u50540_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. visibility:hidden;
  4123. }
  4124. #u50541_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:100px;
  4130. height:38px;
  4131. }
  4132. #u50541 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:1092px;
  4136. top:153px;
  4137. width:100px;
  4138. height:38px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#1890FF;
  4145. }
  4146. #u50541 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u50541_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u50542_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:82px;
  4165. height:35px;
  4166. }
  4167. #u50542 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:191px;
  4172. width:82px;
  4173. height:35px;
  4174. display:flex;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#606266;
  4180. }
  4181. #u50542 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 0px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u50542_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u50543_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:82px;
  4200. height:35px;
  4201. }
  4202. #u50543 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:82px;
  4206. top:191px;
  4207. width:82px;
  4208. height:35px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. color:#606266;
  4215. }
  4216. #u50543 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u50543_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u50544_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:82px;
  4235. height:35px;
  4236. }
  4237. #u50544 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:164px;
  4241. top:191px;
  4242. width:82px;
  4243. height:35px;
  4244. display:flex;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:12px;
  4249. color:#606266;
  4250. }
  4251. #u50544 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u50544_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u50545_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:82px;
  4270. height:35px;
  4271. }
  4272. #u50545 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:246px;
  4276. top:191px;
  4277. width:82px;
  4278. height:35px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#606266;
  4285. }
  4286. #u50545 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u50545_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u50546_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:82px;
  4305. height:35px;
  4306. }
  4307. #u50546 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:328px;
  4311. top:191px;
  4312. width:82px;
  4313. height:35px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#606266;
  4320. }
  4321. #u50546 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u50546_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u50547_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:89px;
  4340. height:35px;
  4341. }
  4342. #u50547 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:410px;
  4346. top:191px;
  4347. width:89px;
  4348. height:35px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. color:#606266;
  4355. }
  4356. #u50547 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u50547_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u50548_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:82px;
  4375. height:35px;
  4376. }
  4377. #u50548 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:499px;
  4381. top:191px;
  4382. width:82px;
  4383. height:35px;
  4384. display:flex;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:12px;
  4389. color:#606266;
  4390. }
  4391. #u50548 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u50548_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u50549_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:82px;
  4410. height:35px;
  4411. }
  4412. #u50549 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:581px;
  4416. top:191px;
  4417. width:82px;
  4418. height:35px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#606266;
  4425. }
  4426. #u50549 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u50549_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u50550_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:88px;
  4445. height:35px;
  4446. }
  4447. #u50550 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:663px;
  4451. top:191px;
  4452. width:88px;
  4453. height:35px;
  4454. display:flex;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#606266;
  4460. }
  4461. #u50550 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u50550_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u50551_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:82px;
  4480. height:35px;
  4481. }
  4482. #u50551 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:751px;
  4486. top:191px;
  4487. width:82px;
  4488. height:35px;
  4489. display:flex;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. color:#606266;
  4495. }
  4496. #u50551 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u50551_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u50552_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:82px;
  4515. height:35px;
  4516. }
  4517. #u50552 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:833px;
  4521. top:191px;
  4522. width:82px;
  4523. height:35px;
  4524. display:flex;
  4525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u50552 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u50552_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u50553_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:89px;
  4550. height:35px;
  4551. }
  4552. #u50553 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:915px;
  4556. top:191px;
  4557. width:89px;
  4558. height:35px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. color:#606266;
  4565. }
  4566. #u50553 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u50553_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u50554_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:88px;
  4585. height:35px;
  4586. }
  4587. #u50554 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1004px;
  4591. top:191px;
  4592. width:88px;
  4593. height:35px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#606266;
  4600. }
  4601. #u50554 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u50554_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u50555_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:100px;
  4620. height:35px;
  4621. }
  4622. #u50555 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:1092px;
  4626. top:191px;
  4627. width:100px;
  4628. height:35px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#02A7F0;
  4635. }
  4636. #u50555 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u50555_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u50556_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:82px;
  4655. height:35px;
  4656. }
  4657. #u50556 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:226px;
  4662. width:82px;
  4663. height:35px;
  4664. display:flex;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u50556 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u50556_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u50557_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:82px;
  4690. height:35px;
  4691. }
  4692. #u50557 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:82px;
  4696. top:226px;
  4697. width:82px;
  4698. height:35px;
  4699. display:flex;
  4700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#606266;
  4705. }
  4706. #u50557 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u50557_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u50558_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:82px;
  4725. height:35px;
  4726. }
  4727. #u50558 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:164px;
  4731. top:226px;
  4732. width:82px;
  4733. height:35px;
  4734. display:flex;
  4735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. color:#606266;
  4740. }
  4741. #u50558 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u50558_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u50559_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:82px;
  4760. height:35px;
  4761. }
  4762. #u50559 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:246px;
  4766. top:226px;
  4767. width:82px;
  4768. height:35px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:12px;
  4774. color:#606266;
  4775. }
  4776. #u50559 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u50559_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u50560_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:82px;
  4795. height:35px;
  4796. }
  4797. #u50560 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:328px;
  4801. top:226px;
  4802. width:82px;
  4803. height:35px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#606266;
  4810. }
  4811. #u50560 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u50560_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u50561_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:89px;
  4830. height:35px;
  4831. }
  4832. #u50561 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:410px;
  4836. top:226px;
  4837. width:89px;
  4838. height:35px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#606266;
  4845. }
  4846. #u50561 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u50561_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u50562_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:82px;
  4865. height:35px;
  4866. }
  4867. #u50562 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:499px;
  4871. top:226px;
  4872. width:82px;
  4873. height:35px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u50562 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u50562_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u50563_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:82px;
  4900. height:35px;
  4901. }
  4902. #u50563 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:581px;
  4906. top:226px;
  4907. width:82px;
  4908. height:35px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#606266;
  4915. }
  4916. #u50563 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u50563_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u50564_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:88px;
  4935. height:35px;
  4936. }
  4937. #u50564 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:663px;
  4941. top:226px;
  4942. width:88px;
  4943. height:35px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#606266;
  4950. }
  4951. #u50564 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u50564_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u50565_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:82px;
  4970. height:35px;
  4971. }
  4972. #u50565 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:751px;
  4976. top:226px;
  4977. width:82px;
  4978. height:35px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. color:#606266;
  4985. }
  4986. #u50565 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u50565_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u50566_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:82px;
  5005. height:35px;
  5006. }
  5007. #u50566 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:833px;
  5011. top:226px;
  5012. width:82px;
  5013. height:35px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. color:#606266;
  5020. }
  5021. #u50566 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u50566_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u50567_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:89px;
  5040. height:35px;
  5041. }
  5042. #u50567 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:915px;
  5046. top:226px;
  5047. width:89px;
  5048. height:35px;
  5049. display:flex;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#606266;
  5055. }
  5056. #u50567 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u50567_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u50568_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:88px;
  5075. height:35px;
  5076. }
  5077. #u50568 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1004px;
  5081. top:226px;
  5082. width:88px;
  5083. height:35px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#606266;
  5090. }
  5091. #u50568 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u50568_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u50569_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:100px;
  5110. height:35px;
  5111. }
  5112. #u50569 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:1092px;
  5116. top:226px;
  5117. width:100px;
  5118. height:35px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#02A7F0;
  5125. }
  5126. #u50569 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u50569_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u50570_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:82px;
  5145. height:35px;
  5146. }
  5147. #u50570 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:261px;
  5152. width:82px;
  5153. height:35px;
  5154. display:flex;
  5155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. color:#606266;
  5160. }
  5161. #u50570 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u50570_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u50571_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:82px;
  5180. height:35px;
  5181. }
  5182. #u50571 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:82px;
  5186. top:261px;
  5187. width:82px;
  5188. height:35px;
  5189. display:flex;
  5190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#606266;
  5195. }
  5196. #u50571 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:2px 2px 2px 0px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u50571_text {
  5204. border-width:0px;
  5205. word-wrap:break-word;
  5206. text-transform:none;
  5207. visibility:hidden;
  5208. }
  5209. #u50572_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:82px;
  5215. height:35px;
  5216. }
  5217. #u50572 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:164px;
  5221. top:261px;
  5222. width:82px;
  5223. height:35px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:12px;
  5229. color:#606266;
  5230. }
  5231. #u50572 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 0px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u50572_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u50573_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:82px;
  5250. height:35px;
  5251. }
  5252. #u50573 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:246px;
  5256. top:261px;
  5257. width:82px;
  5258. height:35px;
  5259. display:flex;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#606266;
  5265. }
  5266. #u50573 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u50573_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u50574_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:82px;
  5285. height:35px;
  5286. }
  5287. #u50574 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:328px;
  5291. top:261px;
  5292. width:82px;
  5293. height:35px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. color:#606266;
  5300. }
  5301. #u50574 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u50574_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u50575_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:89px;
  5320. height:35px;
  5321. }
  5322. #u50575 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:410px;
  5326. top:261px;
  5327. width:89px;
  5328. height:35px;
  5329. display:flex;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:12px;
  5334. color:#606266;
  5335. }
  5336. #u50575 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 0px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u50575_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u50576_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:82px;
  5355. height:35px;
  5356. }
  5357. #u50576 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:499px;
  5361. top:261px;
  5362. width:82px;
  5363. height:35px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:12px;
  5369. color:#606266;
  5370. }
  5371. #u50576 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 0px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u50576_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u50577_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:82px;
  5390. height:35px;
  5391. }
  5392. #u50577 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:581px;
  5396. top:261px;
  5397. width:82px;
  5398. height:35px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:12px;
  5404. color:#606266;
  5405. }
  5406. #u50577 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u50577_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u50578_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:88px;
  5425. height:35px;
  5426. }
  5427. #u50578 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:663px;
  5431. top:261px;
  5432. width:88px;
  5433. height:35px;
  5434. display:flex;
  5435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5436. font-weight:400;
  5437. font-style:normal;
  5438. font-size:12px;
  5439. color:#606266;
  5440. }
  5441. #u50578 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 0px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u50578_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u50579_img {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:82px;
  5460. height:35px;
  5461. }
  5462. #u50579 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:751px;
  5466. top:261px;
  5467. width:82px;
  5468. height:35px;
  5469. display:flex;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:12px;
  5474. color:#606266;
  5475. }
  5476. #u50579 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u50579_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u50580_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:82px;
  5495. height:35px;
  5496. }
  5497. #u50580 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:833px;
  5501. top:261px;
  5502. width:82px;
  5503. height:35px;
  5504. display:flex;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#606266;
  5510. }
  5511. #u50580 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 0px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u50580_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u50581_img {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:89px;
  5530. height:35px;
  5531. }
  5532. #u50581 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:915px;
  5536. top:261px;
  5537. width:89px;
  5538. height:35px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. color:#606266;
  5545. }
  5546. #u50581 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u50581_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u50582_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:88px;
  5565. height:35px;
  5566. }
  5567. #u50582 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:1004px;
  5571. top:261px;
  5572. width:88px;
  5573. height:35px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. color:#606266;
  5580. }
  5581. #u50582 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u50582_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u50583_img {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:100px;
  5600. height:35px;
  5601. }
  5602. #u50583 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:1092px;
  5606. top:261px;
  5607. width:100px;
  5608. height:35px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:12px;
  5614. color:#02A7F0;
  5615. }
  5616. #u50583 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u50583_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u50584_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:82px;
  5635. height:35px;
  5636. }
  5637. #u50584 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:296px;
  5642. width:82px;
  5643. height:35px;
  5644. display:flex;
  5645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#606266;
  5650. }
  5651. #u50584 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 0px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u50584_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u50585_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:82px;
  5670. height:35px;
  5671. }
  5672. #u50585 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:82px;
  5676. top:296px;
  5677. width:82px;
  5678. height:35px;
  5679. display:flex;
  5680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. color:#606266;
  5685. }
  5686. #u50585 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u50585_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u50586_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:82px;
  5705. height:35px;
  5706. }
  5707. #u50586 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:164px;
  5711. top:296px;
  5712. width:82px;
  5713. height:35px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#606266;
  5720. }
  5721. #u50586 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 0px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u50586_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u50587_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:82px;
  5740. height:35px;
  5741. }
  5742. #u50587 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:246px;
  5746. top:296px;
  5747. width:82px;
  5748. height:35px;
  5749. display:flex;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. color:#606266;
  5755. }
  5756. #u50587 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:2px 2px 2px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u50587_text {
  5764. border-width:0px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u50588_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:82px;
  5775. height:35px;
  5776. }
  5777. #u50588 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:328px;
  5781. top:296px;
  5782. width:82px;
  5783. height:35px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:12px;
  5789. color:#606266;
  5790. }
  5791. #u50588 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u50588_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u50589_img {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:89px;
  5810. height:35px;
  5811. }
  5812. #u50589 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:410px;
  5816. top:296px;
  5817. width:89px;
  5818. height:35px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:12px;
  5824. color:#606266;
  5825. }
  5826. #u50589 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 0px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u50589_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u50590_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:82px;
  5845. height:35px;
  5846. }
  5847. #u50590 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:499px;
  5851. top:296px;
  5852. width:82px;
  5853. height:35px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#606266;
  5860. }
  5861. #u50590 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u50590_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u50591_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:82px;
  5880. height:35px;
  5881. }
  5882. #u50591 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:581px;
  5886. top:296px;
  5887. width:82px;
  5888. height:35px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:12px;
  5894. color:#606266;
  5895. }
  5896. #u50591 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 2px 2px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u50591_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u50592_img {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:88px;
  5915. height:35px;
  5916. }
  5917. #u50592 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:663px;
  5921. top:296px;
  5922. width:88px;
  5923. height:35px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:12px;
  5929. color:#606266;
  5930. }
  5931. #u50592 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u50592_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u50593_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:82px;
  5950. height:35px;
  5951. }
  5952. #u50593 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:751px;
  5956. top:296px;
  5957. width:82px;
  5958. height:35px;
  5959. display:flex;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#606266;
  5965. }
  5966. #u50593 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 0px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u50593_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u50594_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:82px;
  5985. height:35px;
  5986. }
  5987. #u50594 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:833px;
  5991. top:296px;
  5992. width:82px;
  5993. height:35px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#606266;
  6000. }
  6001. #u50594 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u50594_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u50595_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:89px;
  6020. height:35px;
  6021. }
  6022. #u50595 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:915px;
  6026. top:296px;
  6027. width:89px;
  6028. height:35px;
  6029. display:flex;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#606266;
  6035. }
  6036. #u50595 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u50595_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. visibility:hidden;
  6048. }
  6049. #u50596_img {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:88px;
  6055. height:35px;
  6056. }
  6057. #u50596 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:1004px;
  6061. top:296px;
  6062. width:88px;
  6063. height:35px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#606266;
  6070. }
  6071. #u50596 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:2px 2px 2px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u50596_text {
  6079. border-width:0px;
  6080. word-wrap:break-word;
  6081. text-transform:none;
  6082. visibility:hidden;
  6083. }
  6084. #u50597_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:100px;
  6090. height:35px;
  6091. }
  6092. #u50597 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:1092px;
  6096. top:296px;
  6097. width:100px;
  6098. height:35px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#02A7F0;
  6105. }
  6106. #u50597 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u50597_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u50598_img {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:82px;
  6125. height:35px;
  6126. }
  6127. #u50598 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:331px;
  6132. width:82px;
  6133. height:35px;
  6134. display:flex;
  6135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#606266;
  6140. }
  6141. #u50598 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 0px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u50598_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. visibility:hidden;
  6153. }
  6154. #u50599_img {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:82px;
  6160. height:35px;
  6161. }
  6162. #u50599 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:82px;
  6166. top:331px;
  6167. width:82px;
  6168. height:35px;
  6169. display:flex;
  6170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. color:#606266;
  6175. }
  6176. #u50599 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u50599_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u50600_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:82px;
  6195. height:35px;
  6196. }
  6197. #u50600 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:164px;
  6201. top:331px;
  6202. width:82px;
  6203. height:35px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. color:#606266;
  6210. }
  6211. #u50600 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u50600_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u50601_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:82px;
  6230. height:35px;
  6231. }
  6232. #u50601 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:246px;
  6236. top:331px;
  6237. width:82px;
  6238. height:35px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:12px;
  6244. color:#606266;
  6245. }
  6246. #u50601 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u50601_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u50602_img {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:82px;
  6265. height:35px;
  6266. }
  6267. #u50602 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:328px;
  6271. top:331px;
  6272. width:82px;
  6273. height:35px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:12px;
  6279. color:#606266;
  6280. }
  6281. #u50602 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:2px 2px 2px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u50602_text {
  6289. border-width:0px;
  6290. word-wrap:break-word;
  6291. text-transform:none;
  6292. visibility:hidden;
  6293. }
  6294. #u50603_img {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:89px;
  6300. height:35px;
  6301. }
  6302. #u50603 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:410px;
  6306. top:331px;
  6307. width:89px;
  6308. height:35px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#606266;
  6315. }
  6316. #u50603 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u50603_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u50604_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:82px;
  6335. height:35px;
  6336. }
  6337. #u50604 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:499px;
  6341. top:331px;
  6342. width:82px;
  6343. height:35px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#606266;
  6350. }
  6351. #u50604 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u50604_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. visibility:hidden;
  6363. }
  6364. #u50605_img {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:82px;
  6370. height:35px;
  6371. }
  6372. #u50605 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:581px;
  6376. top:331px;
  6377. width:82px;
  6378. height:35px;
  6379. display:flex;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:12px;
  6384. color:#606266;
  6385. }
  6386. #u50605 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 0px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u50605_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u50606_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:88px;
  6405. height:35px;
  6406. }
  6407. #u50606 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:663px;
  6411. top:331px;
  6412. width:88px;
  6413. height:35px;
  6414. display:flex;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:12px;
  6419. color:#606266;
  6420. }
  6421. #u50606 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 0px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u50606_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u50607_img {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:82px;
  6440. height:35px;
  6441. }
  6442. #u50607 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:751px;
  6446. top:331px;
  6447. width:82px;
  6448. height:35px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. color:#606266;
  6455. }
  6456. #u50607 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 0px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u50607_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u50608_img {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:82px;
  6475. height:35px;
  6476. }
  6477. #u50608 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:833px;
  6481. top:331px;
  6482. width:82px;
  6483. height:35px;
  6484. display:flex;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:12px;
  6489. color:#606266;
  6490. }
  6491. #u50608 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u50608_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }
  6504. #u50609_img {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:89px;
  6510. height:35px;
  6511. }
  6512. #u50609 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:915px;
  6516. top:331px;
  6517. width:89px;
  6518. height:35px;
  6519. display:flex;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:12px;
  6524. color:#606266;
  6525. }
  6526. #u50609 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 0px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u50609_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u50610_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:88px;
  6545. height:35px;
  6546. }
  6547. #u50610 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1004px;
  6551. top:331px;
  6552. width:88px;
  6553. height:35px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. color:#606266;
  6560. }
  6561. #u50610 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 0px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u50610_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. visibility:hidden;
  6573. }
  6574. #u50611_img {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:100px;
  6580. height:35px;
  6581. }
  6582. #u50611 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:1092px;
  6586. top:331px;
  6587. width:100px;
  6588. height:35px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. color:#02A7F0;
  6595. }
  6596. #u50611 .text {
  6597. position:absolute;
  6598. align-self:center;
  6599. padding:2px 2px 2px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u50611_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. visibility:hidden;
  6608. }
  6609. #u50612 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:0px;
  6615. height:0px;
  6616. }
  6617. #u50613_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:59px;
  6623. height:30px;
  6624. background:inherit;
  6625. background-color:rgba(24, 144, 255, 1);
  6626. box-sizing:border-box;
  6627. border-width:1px;
  6628. border-style:solid;
  6629. border-color:rgba(0, 153, 255, 1);
  6630. border-radius:4px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'Microsoft YaHei', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#FFFFFF;
  6639. }
  6640. #u50613 {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:1250px;
  6644. top:105px;
  6645. width:59px;
  6646. height:30px;
  6647. display:flex;
  6648. font-family:'Microsoft YaHei', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. color:#FFFFFF;
  6653. }
  6654. #u50613 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:5px 15px 5px 15px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u50613_text {
  6662. border-width:0px;
  6663. white-space:nowrap;
  6664. text-transform:none;
  6665. }
  6666. #u50614_div {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:55px;
  6672. height:30px;
  6673. background:inherit;
  6674. background-color:rgba(255, 255, 255, 1);
  6675. box-sizing:border-box;
  6676. border-width:1px;
  6677. border-style:solid;
  6678. border-color:rgba(170, 170, 170, 1);
  6679. border-radius:4px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:12px;
  6687. color:#555555;
  6688. }
  6689. #u50614 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:1319px;
  6693. top:105px;
  6694. width:55px;
  6695. height:30px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#555555;
  6702. }
  6703. #u50614 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:5px 15px 5px 15px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u50614_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u50615_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:13px;
  6721. height:13px;
  6722. }
  6723. #u50615 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:428px;
  6727. top:68px;
  6728. width:13px;
  6729. height:13px;
  6730. display:flex;
  6731. }
  6732. #u50615 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u50615_text {
  6740. border-width:0px;
  6741. word-wrap:break-word;
  6742. text-transform:none;
  6743. visibility:hidden;
  6744. }
  6745. #u50616 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:0px;
  6751. height:0px;
  6752. }
  6753. #u50617_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:140px;
  6759. height:30px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 1);
  6762. box-sizing:border-box;
  6763. border-width:1px;
  6764. border-style:solid;
  6765. border-color:rgba(201, 201, 201, 1);
  6766. border-radius:4px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'Microsoft YaHei', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#CCCCCC;
  6775. text-align:left;
  6776. }
  6777. #u50617 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:800px;
  6781. top:105px;
  6782. width:140px;
  6783. height:30px;
  6784. display:flex;
  6785. font-family:'Microsoft YaHei', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:14px;
  6789. color:#CCCCCC;
  6790. text-align:left;
  6791. }
  6792. #u50617 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 8px 2px 8px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u50617_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. visibility:hidden;
  6804. }
  6805. #u50618_input {
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:127px;
  6810. height:25px;
  6811. padding:2px 2px 2px 2px;
  6812. font-family:'Microsoft YaHei', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:10px;
  6816. letter-spacing:normal;
  6817. color:#000000;
  6818. vertical-align:none;
  6819. text-align:left;
  6820. text-transform:none;
  6821. background-color:transparent;
  6822. border-color:transparent;
  6823. }
  6824. #u50618_input.disabled {
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:127px;
  6829. height:25px;
  6830. padding:2px 2px 2px 2px;
  6831. font-family:'Microsoft YaHei', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:10px;
  6835. letter-spacing:normal;
  6836. color:#000000;
  6837. vertical-align:none;
  6838. text-align:left;
  6839. text-transform:none;
  6840. background-color:transparent;
  6841. border-color:transparent;
  6842. }
  6843. #u50618_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:127px;
  6849. height:25px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 1);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'Microsoft YaHei', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:10px;
  6861. }
  6862. #u50618 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:808px;
  6866. top:106px;
  6867. width:127px;
  6868. height:25px;
  6869. display:flex;
  6870. font-family:'Microsoft YaHei', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:10px;
  6874. }
  6875. #u50618 .text {
  6876. position:absolute;
  6877. align-self:center;
  6878. padding:2px 2px 2px 2px;
  6879. box-sizing:border-box;
  6880. width:100%;
  6881. }
  6882. #u50618_div.disabled {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:127px;
  6888. height:25px;
  6889. background:inherit;
  6890. background-color:rgba(240, 240, 240, 1);
  6891. border:none;
  6892. border-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'Microsoft YaHei', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:10px;
  6900. }
  6901. #u50618.disabled {
  6902. }
  6903. #u50619 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:0px;
  6909. height:0px;
  6910. }
  6911. #u50620_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:140px;
  6917. height:30px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 1);
  6920. box-sizing:border-box;
  6921. border-width:1px;
  6922. border-style:solid;
  6923. border-color:rgba(215, 215, 215, 1);
  6924. border-radius:4px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-size:11px;
  6929. }
  6930. #u50620 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:500px;
  6934. top:105px;
  6935. width:140px;
  6936. height:30px;
  6937. display:flex;
  6938. font-size:11px;
  6939. }
  6940. #u50620 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:2px 2px 2px 2px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u50620_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. visibility:hidden;
  6952. }
  6953. #u50621_input {
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:120px;
  6958. height:23px;
  6959. padding:2px 2px 2px 2px;
  6960. font-family:'ArialMT', 'Arial', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:11px;
  6964. letter-spacing:normal;
  6965. color:#AAAAAA;
  6966. vertical-align:none;
  6967. text-align:left;
  6968. text-transform:none;
  6969. background-color:transparent;
  6970. border-color:transparent;
  6971. }
  6972. #u50621_input.disabled {
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:120px;
  6977. height:23px;
  6978. padding:2px 2px 2px 2px;
  6979. font-family:'ArialMT', 'Arial', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:11px;
  6983. letter-spacing:normal;
  6984. color:#AAAAAA;
  6985. vertical-align:none;
  6986. text-align:left;
  6987. text-transform:none;
  6988. background-color:transparent;
  6989. border-color:transparent;
  6990. }
  6991. #u50621_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:120px;
  6997. height:23px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 1);
  7000. border:none;
  7001. border-radius:0px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-size:11px;
  7006. color:#AAAAAA;
  7007. }
  7008. #u50621 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:507px;
  7012. top:107px;
  7013. width:120px;
  7014. height:23px;
  7015. display:flex;
  7016. font-size:11px;
  7017. color:#AAAAAA;
  7018. }
  7019. #u50621 .text {
  7020. position:absolute;
  7021. align-self:flex-start;
  7022. padding:2px 2px 2px 2px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u50621_div.disabled {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:120px;
  7032. height:23px;
  7033. background:inherit;
  7034. background-color:rgba(240, 240, 240, 1);
  7035. border:none;
  7036. border-radius:0px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-size:11px;
  7041. color:#AAAAAA;
  7042. }
  7043. #u50621.disabled {
  7044. }
  7045. .u50621_input_option {
  7046. font-size:11px;
  7047. }
  7048. #u50622 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:0px;
  7054. height:0px;
  7055. }
  7056. #u50623_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:140px;
  7062. height:30px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 1);
  7065. box-sizing:border-box;
  7066. border-width:1px;
  7067. border-style:solid;
  7068. border-color:rgba(215, 215, 215, 1);
  7069. border-radius:4px;
  7070. -moz-box-shadow:none;
  7071. -webkit-box-shadow:none;
  7072. box-shadow:none;
  7073. font-size:11px;
  7074. }
  7075. #u50623 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:650px;
  7079. top:105px;
  7080. width:140px;
  7081. height:30px;
  7082. display:flex;
  7083. font-size:11px;
  7084. }
  7085. #u50623 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 2px 2px 2px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u50623_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u50624_input {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:120px;
  7103. height:23px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'ArialMT', 'Arial', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:11px;
  7109. letter-spacing:normal;
  7110. color:#AAAAAA;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u50624_input.disabled {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:120px;
  7122. height:23px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'ArialMT', 'Arial', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:11px;
  7128. letter-spacing:normal;
  7129. color:#AAAAAA;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u50624_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:120px;
  7142. height:23px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-size:11px;
  7151. color:#AAAAAA;
  7152. }
  7153. #u50624 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:657px;
  7157. top:107px;
  7158. width:120px;
  7159. height:23px;
  7160. display:flex;
  7161. font-size:11px;
  7162. color:#AAAAAA;
  7163. }
  7164. #u50624 .text {
  7165. position:absolute;
  7166. align-self:flex-start;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u50624_div.disabled {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:120px;
  7177. height:23px;
  7178. background:inherit;
  7179. background-color:rgba(240, 240, 240, 1);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-size:11px;
  7186. color:#AAAAAA;
  7187. }
  7188. #u50624.disabled {
  7189. }
  7190. .u50624_input_option {
  7191. font-size:11px;
  7192. }
  7193. #u50625 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:0px;
  7199. height:0px;
  7200. }
  7201. #u50626_div {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:140px;
  7207. height:30px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 1);
  7210. box-sizing:border-box;
  7211. border-width:1px;
  7212. border-style:solid;
  7213. border-color:rgba(215, 215, 215, 1);
  7214. border-radius:4px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-size:11px;
  7219. }
  7220. #u50626 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:950px;
  7224. top:105px;
  7225. width:140px;
  7226. height:30px;
  7227. display:flex;
  7228. font-size:11px;
  7229. }
  7230. #u50626 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u50626_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u50627_input {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:120px;
  7248. height:23px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'ArialMT', 'Arial', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:11px;
  7254. letter-spacing:normal;
  7255. color:#AAAAAA;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u50627_input.disabled {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:120px;
  7267. height:23px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'ArialMT', 'Arial', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:11px;
  7273. letter-spacing:normal;
  7274. color:#AAAAAA;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u50627_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:120px;
  7287. height:23px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-size:11px;
  7296. color:#AAAAAA;
  7297. }
  7298. #u50627 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:957px;
  7302. top:107px;
  7303. width:120px;
  7304. height:23px;
  7305. display:flex;
  7306. font-size:11px;
  7307. color:#AAAAAA;
  7308. }
  7309. #u50627 .text {
  7310. position:absolute;
  7311. align-self:flex-start;
  7312. padding:2px 2px 2px 2px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u50627_div.disabled {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:120px;
  7322. height:23px;
  7323. background:inherit;
  7324. background-color:rgba(240, 240, 240, 1);
  7325. border:none;
  7326. border-radius:0px;
  7327. -moz-box-shadow:none;
  7328. -webkit-box-shadow:none;
  7329. box-shadow:none;
  7330. font-size:11px;
  7331. color:#AAAAAA;
  7332. }
  7333. #u50627.disabled {
  7334. }
  7335. .u50627_input_option {
  7336. font-size:11px;
  7337. }
  7338. #u50628 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:0px;
  7344. height:0px;
  7345. }
  7346. #u50629_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:140px;
  7352. height:30px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 1);
  7355. box-sizing:border-box;
  7356. border-width:1px;
  7357. border-style:solid;
  7358. border-color:rgba(215, 215, 215, 1);
  7359. border-radius:4px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-size:14px;
  7364. }
  7365. #u50629 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:350px;
  7369. top:105px;
  7370. width:140px;
  7371. height:30px;
  7372. display:flex;
  7373. font-size:14px;
  7374. }
  7375. #u50629 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u50629_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u50630_input {
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:134px;
  7393. height:23px;
  7394. padding:2px 2px 2px 2px;
  7395. font-family:'ArialMT', 'Arial', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:14px;
  7399. letter-spacing:normal;
  7400. color:#AAAAAA;
  7401. vertical-align:none;
  7402. text-align:left;
  7403. text-transform:none;
  7404. background-color:transparent;
  7405. border-color:transparent;
  7406. }
  7407. #u50630_input.disabled {
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:134px;
  7412. height:23px;
  7413. padding:2px 2px 2px 2px;
  7414. font-family:'ArialMT', 'Arial', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:14px;
  7418. letter-spacing:normal;
  7419. color:#AAAAAA;
  7420. vertical-align:none;
  7421. text-align:left;
  7422. text-transform:none;
  7423. background-color:transparent;
  7424. border-color:transparent;
  7425. }
  7426. #u50630_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:134px;
  7432. height:23px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 1);
  7435. border:none;
  7436. border-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-size:14px;
  7441. color:#AAAAAA;
  7442. }
  7443. #u50630 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:354px;
  7447. top:107px;
  7448. width:134px;
  7449. height:23px;
  7450. display:flex;
  7451. font-size:14px;
  7452. color:#AAAAAA;
  7453. }
  7454. #u50630 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u50630_div.disabled {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:134px;
  7467. height:23px;
  7468. background:inherit;
  7469. background-color:rgba(240, 240, 240, 1);
  7470. border:none;
  7471. border-radius:0px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. font-size:14px;
  7476. color:#AAAAAA;
  7477. }
  7478. #u50630.disabled {
  7479. }
  7480. .u50630_input_option {
  7481. font-size:14px;
  7482. }
  7483. #u50631_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:310px;
  7489. height:34px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-radius:0px;
  7494. -moz-box-shadow:none;
  7495. -webkit-box-shadow:none;
  7496. box-shadow:none;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:12px;
  7501. color:#D9001B;
  7502. }
  7503. #u50631 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:1134px;
  7507. top:158px;
  7508. width:310px;
  7509. height:34px;
  7510. display:flex;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#D9001B;
  7516. }
  7517. #u50631 .text {
  7518. position:absolute;
  7519. align-self:flex-start;
  7520. padding:0px 0px 0px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u50631_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. }
  7529. #u50632_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:79px;
  7535. height:30px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. box-sizing:border-box;
  7539. border-width:1px;
  7540. border-style:solid;
  7541. border-color:rgba(170, 170, 170, 1);
  7542. border-radius:4px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#555555;
  7551. }
  7552. #u50632 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1495px;
  7556. top:60px;
  7557. width:79px;
  7558. height:30px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:12px;
  7564. color:#555555;
  7565. }
  7566. #u50632 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:5px 15px 5px 15px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u50632_text {
  7574. border-width:0px;
  7575. white-space:nowrap;
  7576. text-transform:none;
  7577. }
  7578. #u50633 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:0px;
  7584. height:0px;
  7585. }
  7586. #u50634 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:0px;
  7592. height:0px;
  7593. }
  7594. #u50635_div {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:380px;
  7600. height:164px;
  7601. background:inherit;
  7602. background-color:rgba(255, 255, 255, 1);
  7603. border:none;
  7604. border-radius:4px;
  7605. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7606. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7607. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7608. font-family:'Microsoft YaHei', sans-serif;
  7609. font-weight:400;
  7610. font-style:normal;
  7611. }
  7612. #u50635 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1655px;
  7616. top:64px;
  7617. width:380px;
  7618. height:164px;
  7619. display:flex;
  7620. font-family:'Microsoft YaHei', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. }
  7624. #u50635 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:2px 2px 2px 2px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u50635_text {
  7632. border-width:0px;
  7633. word-wrap:break-word;
  7634. text-transform:none;
  7635. visibility:hidden;
  7636. }
  7637. #u50636_div {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:299px;
  7643. height:44px;
  7644. background:inherit;
  7645. background-color:rgba(255, 255, 255, 0);
  7646. border:none;
  7647. border-radius:0px;
  7648. -moz-box-shadow:none;
  7649. -webkit-box-shadow:none;
  7650. box-shadow:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:14px;
  7655. color:#666666;
  7656. line-height:22px;
  7657. }
  7658. #u50636 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:1715px;
  7662. top:119px;
  7663. width:299px;
  7664. height:44px;
  7665. display:flex;
  7666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:14px;
  7670. color:#666666;
  7671. line-height:22px;
  7672. }
  7673. #u50636 .text {
  7674. position:absolute;
  7675. align-self:flex-start;
  7676. padding:0px 0px 0px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u50636_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. }
  7685. #u50637_div {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:199px;
  7691. height:21px;
  7692. background:inherit;
  7693. background-color:rgba(255, 255, 255, 0);
  7694. border:none;
  7695. border-radius:0px;
  7696. -moz-box-shadow:none;
  7697. -webkit-box-shadow:none;
  7698. box-shadow:none;
  7699. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7700. font-weight:650;
  7701. font-style:normal;
  7702. font-size:18px;
  7703. color:#000000;
  7704. line-height:22px;
  7705. }
  7706. #u50637 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:1715px;
  7710. top:89px;
  7711. width:199px;
  7712. height:21px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7715. font-weight:650;
  7716. font-style:normal;
  7717. font-size:18px;
  7718. color:#000000;
  7719. line-height:22px;
  7720. }
  7721. #u50637 .text {
  7722. position:absolute;
  7723. align-self:flex-start;
  7724. padding:0px 0px 0px 0px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u50637_text {
  7729. border-width:0px;
  7730. white-space:nowrap;
  7731. text-transform:none;
  7732. }
  7733. #u50638_div {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:61px;
  7739. height:32px;
  7740. background:inherit;
  7741. background-color:rgba(24, 144, 255, 1);
  7742. border:none;
  7743. border-radius:4px;
  7744. -moz-box-shadow:none;
  7745. -webkit-box-shadow:none;
  7746. box-shadow:none;
  7747. font-family:'Microsoft YaHei', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:14px;
  7751. color:#FFFFFF;
  7752. }
  7753. #u50638 {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:1957px;
  7757. top:179px;
  7758. width:61px;
  7759. height:32px;
  7760. display:flex;
  7761. font-family:'Microsoft YaHei', sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:14px;
  7765. color:#FFFFFF;
  7766. }
  7767. #u50638 .text {
  7768. position:absolute;
  7769. align-self:center;
  7770. padding:2px 16px 2px 16px;
  7771. box-sizing:border-box;
  7772. width:100%;
  7773. }
  7774. #u50638_text {
  7775. border-width:0px;
  7776. white-space:nowrap;
  7777. text-transform:none;
  7778. }
  7779. #u50639_div {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:0px;
  7783. top:0px;
  7784. width:66px;
  7785. height:32px;
  7786. background:inherit;
  7787. background-color:rgba(255, 255, 255, 1);
  7788. box-sizing:border-box;
  7789. border-width:1px;
  7790. border-style:solid;
  7791. border-color:rgba(217, 217, 217, 1);
  7792. border-radius:4px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-family:'Microsoft YaHei', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:14px;
  7800. color:rgba(0, 0, 0, 0.647058823529412);
  7801. line-height:21px;
  7802. }
  7803. #u50639 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:1875px;
  7807. top:179px;
  7808. width:66px;
  7809. height:32px;
  7810. display:flex;
  7811. font-family:'Microsoft YaHei', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. color:rgba(0, 0, 0, 0.647058823529412);
  7816. line-height:21px;
  7817. }
  7818. #u50639 .text {
  7819. position:absolute;
  7820. align-self:center;
  7821. padding:2px 16px 2px 16px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u50639_text {
  7826. border-width:0px;
  7827. white-space:nowrap;
  7828. text-transform:none;
  7829. }
  7830. #u50640_img {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:20px;
  7836. height:20px;
  7837. }
  7838. #u50640 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:1684px;
  7842. top:93px;
  7843. width:20px;
  7844. height:20px;
  7845. display:flex;
  7846. }
  7847. #u50640 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u50640_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. visibility:hidden;
  7859. }
  7860. #u50641 {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:0px;
  7866. height:0px;
  7867. }
  7868. #u50642 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:0px;
  7872. top:0px;
  7873. width:0px;
  7874. height:0px;
  7875. }
  7876. #u50643_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:380px;
  7882. height:164px;
  7883. background:inherit;
  7884. background-color:rgba(255, 255, 255, 1);
  7885. border:none;
  7886. border-radius:4px;
  7887. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7888. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7889. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7890. font-family:'Microsoft YaHei', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. }
  7894. #u50643 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:1655px;
  7898. top:254px;
  7899. width:380px;
  7900. height:164px;
  7901. display:flex;
  7902. font-family:'Microsoft YaHei', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. }
  7906. #u50643 .text {
  7907. position:absolute;
  7908. align-self:center;
  7909. padding:2px 2px 2px 2px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u50643_text {
  7914. border-width:0px;
  7915. word-wrap:break-word;
  7916. text-transform:none;
  7917. visibility:hidden;
  7918. }
  7919. #u50644_div {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:299px;
  7925. height:44px;
  7926. background:inherit;
  7927. background-color:rgba(255, 255, 255, 0);
  7928. border:none;
  7929. border-radius:0px;
  7930. -moz-box-shadow:none;
  7931. -webkit-box-shadow:none;
  7932. box-shadow:none;
  7933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7934. font-weight:400;
  7935. font-style:normal;
  7936. font-size:14px;
  7937. color:#666666;
  7938. line-height:22px;
  7939. }
  7940. #u50644 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:1715px;
  7944. top:309px;
  7945. width:299px;
  7946. height:44px;
  7947. display:flex;
  7948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7949. font-weight:400;
  7950. font-style:normal;
  7951. font-size:14px;
  7952. color:#666666;
  7953. line-height:22px;
  7954. }
  7955. #u50644 .text {
  7956. position:absolute;
  7957. align-self:flex-start;
  7958. padding:0px 0px 0px 0px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u50644_text {
  7963. border-width:0px;
  7964. word-wrap:break-word;
  7965. text-transform:none;
  7966. }
  7967. #u50645_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:199px;
  7973. height:21px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 0);
  7976. border:none;
  7977. border-radius:0px;
  7978. -moz-box-shadow:none;
  7979. -webkit-box-shadow:none;
  7980. box-shadow:none;
  7981. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7982. font-weight:650;
  7983. font-style:normal;
  7984. font-size:18px;
  7985. color:#000000;
  7986. line-height:22px;
  7987. }
  7988. #u50645 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:1715px;
  7992. top:279px;
  7993. width:199px;
  7994. height:21px;
  7995. display:flex;
  7996. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7997. font-weight:650;
  7998. font-style:normal;
  7999. font-size:18px;
  8000. color:#000000;
  8001. line-height:22px;
  8002. }
  8003. #u50645 .text {
  8004. position:absolute;
  8005. align-self:flex-start;
  8006. padding:0px 0px 0px 0px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u50645_text {
  8011. border-width:0px;
  8012. white-space:nowrap;
  8013. text-transform:none;
  8014. }
  8015. #u50646_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:61px;
  8021. height:32px;
  8022. background:inherit;
  8023. background-color:rgba(24, 144, 255, 1);
  8024. border:none;
  8025. border-radius:4px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-family:'Microsoft YaHei', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:14px;
  8033. color:#FFFFFF;
  8034. }
  8035. #u50646 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:1957px;
  8039. top:369px;
  8040. width:61px;
  8041. height:32px;
  8042. display:flex;
  8043. font-family:'Microsoft YaHei', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:14px;
  8047. color:#FFFFFF;
  8048. }
  8049. #u50646 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:2px 16px 2px 16px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u50646_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u50647_div {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:66px;
  8067. height:32px;
  8068. background:inherit;
  8069. background-color:rgba(255, 255, 255, 1);
  8070. box-sizing:border-box;
  8071. border-width:1px;
  8072. border-style:solid;
  8073. border-color:rgba(217, 217, 217, 1);
  8074. border-radius:4px;
  8075. -moz-box-shadow:none;
  8076. -webkit-box-shadow:none;
  8077. box-shadow:none;
  8078. font-family:'Microsoft YaHei', sans-serif;
  8079. font-weight:400;
  8080. font-style:normal;
  8081. font-size:14px;
  8082. color:rgba(0, 0, 0, 0.647058823529412);
  8083. line-height:21px;
  8084. }
  8085. #u50647 {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:1875px;
  8089. top:369px;
  8090. width:66px;
  8091. height:32px;
  8092. display:flex;
  8093. font-family:'Microsoft YaHei', sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:14px;
  8097. color:rgba(0, 0, 0, 0.647058823529412);
  8098. line-height:21px;
  8099. }
  8100. #u50647 .text {
  8101. position:absolute;
  8102. align-self:center;
  8103. padding:2px 16px 2px 16px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u50647_text {
  8108. border-width:0px;
  8109. white-space:nowrap;
  8110. text-transform:none;
  8111. }
  8112. #u50648_img {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:20px;
  8118. height:20px;
  8119. }
  8120. #u50648 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:1684px;
  8124. top:283px;
  8125. width:20px;
  8126. height:20px;
  8127. display:flex;
  8128. }
  8129. #u50648 .text {
  8130. position:absolute;
  8131. align-self:center;
  8132. padding:2px 2px 2px 2px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u50648_text {
  8137. border-width:0px;
  8138. word-wrap:break-word;
  8139. text-transform:none;
  8140. visibility:hidden;
  8141. }
  8142. #u50649 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:0px;
  8148. height:0px;
  8149. }
  8150. #u50650_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:140px;
  8156. height:30px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 1);
  8159. box-sizing:border-box;
  8160. border-width:1px;
  8161. border-style:solid;
  8162. border-color:rgba(215, 215, 215, 1);
  8163. border-radius:4px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-size:11px;
  8168. }
  8169. #u50650 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:1100px;
  8173. top:105px;
  8174. width:140px;
  8175. height:30px;
  8176. display:flex;
  8177. font-size:11px;
  8178. }
  8179. #u50650 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:2px 2px 2px 2px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u50650_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u50651_input {
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:120px;
  8197. height:23px;
  8198. padding:2px 2px 2px 2px;
  8199. font-family:'ArialMT', 'Arial', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:11px;
  8203. letter-spacing:normal;
  8204. color:#AAAAAA;
  8205. vertical-align:none;
  8206. text-align:left;
  8207. text-transform:none;
  8208. background-color:transparent;
  8209. border-color:transparent;
  8210. }
  8211. #u50651_input.disabled {
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:120px;
  8216. height:23px;
  8217. padding:2px 2px 2px 2px;
  8218. font-family:'ArialMT', 'Arial', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:11px;
  8222. letter-spacing:normal;
  8223. color:#AAAAAA;
  8224. vertical-align:none;
  8225. text-align:left;
  8226. text-transform:none;
  8227. background-color:transparent;
  8228. border-color:transparent;
  8229. }
  8230. #u50651_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:120px;
  8236. height:23px;
  8237. background:inherit;
  8238. background-color:rgba(255, 255, 255, 1);
  8239. border:none;
  8240. border-radius:0px;
  8241. -moz-box-shadow:none;
  8242. -webkit-box-shadow:none;
  8243. box-shadow:none;
  8244. font-size:11px;
  8245. color:#AAAAAA;
  8246. }
  8247. #u50651 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1107px;
  8251. top:107px;
  8252. width:120px;
  8253. height:23px;
  8254. display:flex;
  8255. font-size:11px;
  8256. color:#AAAAAA;
  8257. }
  8258. #u50651 .text {
  8259. position:absolute;
  8260. align-self:flex-start;
  8261. padding:2px 2px 2px 2px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u50651_div.disabled {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:120px;
  8271. height:23px;
  8272. background:inherit;
  8273. background-color:rgba(240, 240, 240, 1);
  8274. border:none;
  8275. border-radius:0px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. font-size:11px;
  8280. color:#AAAAAA;
  8281. }
  8282. #u50651.disabled {
  8283. }
  8284. .u50651_input_option {
  8285. font-size:11px;
  8286. }
  8287. #u50652 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:0px;
  8293. height:0px;
  8294. }
  8295. #u50653_div {
  8296. border-width:0px;
  8297. position:absolute;
  8298. left:0px;
  8299. top:0px;
  8300. width:100px;
  8301. height:100px;
  8302. background:inherit;
  8303. background-color:rgba(255, 255, 255, 1);
  8304. box-sizing:border-box;
  8305. border-width:1px;
  8306. border-style:solid;
  8307. border-color:rgba(242, 242, 242, 1);
  8308. border-radius:4px;
  8309. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8310. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8311. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8313. font-weight:400;
  8314. font-style:normal;
  8315. font-size:14px;
  8316. text-align:left;
  8317. }
  8318. #u50653 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:1427px;
  8322. top:350px;
  8323. width:100px;
  8324. height:100px;
  8325. display:flex;
  8326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:14px;
  8330. text-align:left;
  8331. }
  8332. #u50653 .text {
  8333. position:absolute;
  8334. align-self:center;
  8335. padding:2px 2px 2px 2px;
  8336. box-sizing:border-box;
  8337. width:100%;
  8338. }
  8339. #u50653_text {
  8340. border-width:0px;
  8341. word-wrap:break-word;
  8342. text-transform:none;
  8343. visibility:hidden;
  8344. }
  8345. #u50654_div {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:83px;
  8351. height:40px;
  8352. background:inherit;
  8353. background-color:rgba(255, 255, 255, 1);
  8354. box-sizing:border-box;
  8355. border-width:1px;
  8356. border-style:solid;
  8357. border-color:rgba(215, 215, 215, 1);
  8358. border-left:0px;
  8359. border-top:0px;
  8360. border-right:0px;
  8361. border-radius:0px;
  8362. border-bottom-right-radius:0px;
  8363. border-bottom-left-radius:0px;
  8364. -moz-box-shadow:none;
  8365. -webkit-box-shadow:none;
  8366. box-shadow:none;
  8367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8368. font-weight:400;
  8369. font-style:normal;
  8370. font-size:14px;
  8371. }
  8372. #u50654 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:1435px;
  8376. top:360px;
  8377. width:83px;
  8378. height:40px;
  8379. display:flex;
  8380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8381. font-weight:400;
  8382. font-style:normal;
  8383. font-size:14px;
  8384. }
  8385. #u50654 .text {
  8386. position:absolute;
  8387. align-self:center;
  8388. padding:2px 2px 2px 2px;
  8389. box-sizing:border-box;
  8390. width:100%;
  8391. }
  8392. #u50654_text {
  8393. border-width:0px;
  8394. word-wrap:break-word;
  8395. text-transform:none;
  8396. }
  8397. #u50655_div {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:83px;
  8403. height:40px;
  8404. background:inherit;
  8405. background-color:rgba(255, 255, 255, 1);
  8406. border:none;
  8407. border-left:0px;
  8408. border-top:0px;
  8409. border-right:0px;
  8410. border-radius:0px;
  8411. border-bottom-right-radius:0px;
  8412. border-bottom-left-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:14px;
  8420. }
  8421. #u50655 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:1435px;
  8425. top:400px;
  8426. width:83px;
  8427. height:40px;
  8428. display:flex;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:14px;
  8433. }
  8434. #u50655 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:2px 2px 2px 2px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u50655_text {
  8442. border-width:0px;
  8443. word-wrap:break-word;
  8444. text-transform:none;
  8445. }
  8446. #u50656 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:0px;
  8452. height:0px;
  8453. }
  8454. #u50657_div {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:200px;
  8460. height:1193px;
  8461. background:inherit;
  8462. background-color:rgba(255, 255, 255, 1);
  8463. border:none;
  8464. border-radius:0px;
  8465. -moz-box-shadow:none;
  8466. -webkit-box-shadow:none;
  8467. box-shadow:none;
  8468. }
  8469. #u50657 {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:120px;
  8473. top:50px;
  8474. width:200px;
  8475. height:1193px;
  8476. display:flex;
  8477. }
  8478. #u50657 .text {
  8479. position:absolute;
  8480. align-self:center;
  8481. padding:2px 2px 2px 2px;
  8482. box-sizing:border-box;
  8483. width:100%;
  8484. }
  8485. #u50657_text {
  8486. border-width:0px;
  8487. word-wrap:break-word;
  8488. text-transform:none;
  8489. visibility:hidden;
  8490. }
  8491. #u50658_div {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:0px;
  8495. top:0px;
  8496. width:200px;
  8497. height:60px;
  8498. background:inherit;
  8499. background-color:rgba(224, 231, 247, 1);
  8500. border:none;
  8501. border-radius:0px;
  8502. -moz-box-shadow:none;
  8503. -webkit-box-shadow:none;
  8504. box-shadow:none;
  8505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8506. font-weight:500;
  8507. font-style:normal;
  8508. font-size:18px;
  8509. }
  8510. #u50658 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:120px;
  8514. top:50px;
  8515. width:200px;
  8516. height:60px;
  8517. display:flex;
  8518. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8519. font-weight:500;
  8520. font-style:normal;
  8521. font-size:18px;
  8522. }
  8523. #u50658 .text {
  8524. position:absolute;
  8525. align-self:center;
  8526. padding:0px 0px 0px 20px;
  8527. box-sizing:border-box;
  8528. width:100%;
  8529. }
  8530. #u50658_text {
  8531. border-width:0px;
  8532. word-wrap:break-word;
  8533. text-transform:none;
  8534. }
  8535. #u50659_div {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:97px;
  8541. height:22px;
  8542. background:inherit;
  8543. background-color:rgba(255, 255, 255, 0);
  8544. border:none;
  8545. border-radius:0px;
  8546. -moz-box-shadow:none;
  8547. -webkit-box-shadow:none;
  8548. box-shadow:none;
  8549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:16px;
  8553. }
  8554. #u50659 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:147px;
  8558. top:387px;
  8559. width:97px;
  8560. height:22px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:16px;
  8566. }
  8567. #u50659 .text {
  8568. position:absolute;
  8569. align-self:flex-start;
  8570. padding:0px 0px 0px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u50659_text {
  8575. border-width:0px;
  8576. word-wrap:break-word;
  8577. text-transform:none;
  8578. }
  8579. #u50660_div {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:97px;
  8585. height:22px;
  8586. background:inherit;
  8587. background-color:rgba(255, 255, 255, 0);
  8588. border:none;
  8589. border-radius:0px;
  8590. -moz-box-shadow:none;
  8591. -webkit-box-shadow:none;
  8592. box-shadow:none;
  8593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8594. font-weight:400;
  8595. font-style:normal;
  8596. font-size:16px;
  8597. }
  8598. #u50660 {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:147px;
  8602. top:166px;
  8603. width:97px;
  8604. height:22px;
  8605. display:flex;
  8606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:16px;
  8610. }
  8611. #u50660 .text {
  8612. position:absolute;
  8613. align-self:flex-start;
  8614. padding:0px 0px 0px 0px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u50660_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. }
  8623. #u50661_div {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:0px;
  8627. top:0px;
  8628. width:49px;
  8629. height:17px;
  8630. background:inherit;
  8631. background-color:rgba(255, 255, 255, 0);
  8632. border:none;
  8633. border-radius:0px;
  8634. -moz-box-shadow:none;
  8635. -webkit-box-shadow:none;
  8636. box-shadow:none;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:12px;
  8641. color:#AAAAAA;
  8642. }
  8643. #u50661 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:147px;
  8647. top:130px;
  8648. width:49px;
  8649. height:17px;
  8650. display:flex;
  8651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:12px;
  8655. color:#AAAAAA;
  8656. }
  8657. #u50661 .text {
  8658. position:absolute;
  8659. align-self:flex-start;
  8660. padding:0px 0px 0px 0px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u50661_text {
  8665. border-width:0px;
  8666. white-space:nowrap;
  8667. text-transform:none;
  8668. }
  8669. #u50662_div {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:97px;
  8675. height:22px;
  8676. background:inherit;
  8677. background-color:rgba(255, 255, 255, 0);
  8678. border:none;
  8679. border-radius:0px;
  8680. -moz-box-shadow:none;
  8681. -webkit-box-shadow:none;
  8682. box-shadow:none;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:16px;
  8687. }
  8688. #u50662 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:147px;
  8692. top:208px;
  8693. width:97px;
  8694. height:22px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:16px;
  8700. }
  8701. #u50662 .text {
  8702. position:absolute;
  8703. align-self:flex-start;
  8704. padding:0px 0px 0px 0px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u50662_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. }
  8713. #u50663_img {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:201px;
  8719. height:2px;
  8720. }
  8721. #u50663 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:120px;
  8725. top:246px;
  8726. width:200px;
  8727. height:1px;
  8728. display:flex;
  8729. }
  8730. #u50663 .text {
  8731. position:absolute;
  8732. align-self:center;
  8733. padding:2px 2px 2px 2px;
  8734. box-sizing:border-box;
  8735. width:100%;
  8736. }
  8737. #u50663_text {
  8738. border-width:0px;
  8739. word-wrap:break-word;
  8740. text-transform:none;
  8741. visibility:hidden;
  8742. }
  8743. #u50664_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:97px;
  8749. height:22px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 0);
  8752. border:none;
  8753. border-radius:0px;
  8754. -moz-box-shadow:none;
  8755. -webkit-box-shadow:none;
  8756. box-shadow:none;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:16px;
  8761. }
  8762. #u50664 {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:147px;
  8766. top:569px;
  8767. width:97px;
  8768. height:22px;
  8769. display:flex;
  8770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8771. font-weight:400;
  8772. font-style:normal;
  8773. font-size:16px;
  8774. }
  8775. #u50664 .text {
  8776. position:absolute;
  8777. align-self:flex-start;
  8778. padding:0px 0px 0px 0px;
  8779. box-sizing:border-box;
  8780. width:100%;
  8781. }
  8782. #u50664_text {
  8783. border-width:0px;
  8784. word-wrap:break-word;
  8785. text-transform:none;
  8786. }
  8787. #u50665_div {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:49px;
  8793. height:17px;
  8794. background:inherit;
  8795. background-color:rgba(255, 255, 255, 0);
  8796. border:none;
  8797. border-radius:0px;
  8798. -moz-box-shadow:none;
  8799. -webkit-box-shadow:none;
  8800. box-shadow:none;
  8801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:12px;
  8805. color:#AAAAAA;
  8806. }
  8807. #u50665 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:147px;
  8811. top:533px;
  8812. width:49px;
  8813. height:17px;
  8814. display:flex;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:12px;
  8819. color:#AAAAAA;
  8820. }
  8821. #u50665 .text {
  8822. position:absolute;
  8823. align-self:flex-start;
  8824. padding:0px 0px 0px 0px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u50665_text {
  8829. border-width:0px;
  8830. white-space:nowrap;
  8831. text-transform:none;
  8832. }
  8833. #u50666_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:97px;
  8839. height:22px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 0);
  8842. border:none;
  8843. border-radius:0px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:16px;
  8851. }
  8852. #u50666 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:147px;
  8856. top:754px;
  8857. width:97px;
  8858. height:22px;
  8859. display:flex;
  8860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:16px;
  8864. }
  8865. #u50666 .text {
  8866. position:absolute;
  8867. align-self:flex-start;
  8868. padding:0px 0px 0px 0px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u50666_text {
  8873. border-width:0px;
  8874. word-wrap:break-word;
  8875. text-transform:none;
  8876. }
  8877. #u50667_img {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:201px;
  8883. height:2px;
  8884. }
  8885. #u50667 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:120px;
  8889. top:655px;
  8890. width:200px;
  8891. height:1px;
  8892. display:flex;
  8893. }
  8894. #u50667 .text {
  8895. position:absolute;
  8896. align-self:center;
  8897. padding:2px 2px 2px 2px;
  8898. box-sizing:border-box;
  8899. width:100%;
  8900. }
  8901. #u50667_text {
  8902. border-width:0px;
  8903. word-wrap:break-word;
  8904. text-transform:none;
  8905. visibility:hidden;
  8906. }
  8907. #u50668_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:97px;
  8913. height:22px;
  8914. background:inherit;
  8915. background-color:rgba(255, 255, 255, 0);
  8916. border:none;
  8917. border-radius:0px;
  8918. -moz-box-shadow:none;
  8919. -webkit-box-shadow:none;
  8920. box-shadow:none;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:16px;
  8925. }
  8926. #u50668 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:147px;
  8930. top:712px;
  8931. width:97px;
  8932. height:22px;
  8933. display:flex;
  8934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8935. font-weight:400;
  8936. font-style:normal;
  8937. font-size:16px;
  8938. }
  8939. #u50668 .text {
  8940. position:absolute;
  8941. align-self:flex-start;
  8942. padding:0px 0px 0px 0px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u50668_text {
  8947. border-width:0px;
  8948. word-wrap:break-word;
  8949. text-transform:none;
  8950. }
  8951. #u50669_div {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:49px;
  8957. height:17px;
  8958. background:inherit;
  8959. background-color:rgba(255, 255, 255, 0);
  8960. border:none;
  8961. border-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:12px;
  8969. color:#AAAAAA;
  8970. }
  8971. #u50669 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:147px;
  8975. top:676px;
  8976. width:49px;
  8977. height:17px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. color:#AAAAAA;
  8984. }
  8985. #u50669 .text {
  8986. position:absolute;
  8987. align-self:flex-start;
  8988. padding:0px 0px 0px 0px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u50669_text {
  8993. border-width:0px;
  8994. white-space:nowrap;
  8995. text-transform:none;
  8996. }
  8997. #u50670_div {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:0px;
  9001. top:0px;
  9002. width:97px;
  9003. height:22px;
  9004. background:inherit;
  9005. background-color:rgba(255, 255, 255, 0);
  9006. border:none;
  9007. border-radius:0px;
  9008. -moz-box-shadow:none;
  9009. -webkit-box-shadow:none;
  9010. box-shadow:none;
  9011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9012. font-weight:400;
  9013. font-style:normal;
  9014. font-size:16px;
  9015. }
  9016. #u50670 {
  9017. border-width:0px;
  9018. position:absolute;
  9019. left:147px;
  9020. top:895px;
  9021. width:97px;
  9022. height:22px;
  9023. display:flex;
  9024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:16px;
  9028. }
  9029. #u50670 .text {
  9030. position:absolute;
  9031. align-self:flex-start;
  9032. padding:0px 0px 0px 0px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u50670_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. }
  9041. #u50671_img {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:201px;
  9047. height:2px;
  9048. }
  9049. #u50671 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:120px;
  9053. top:796px;
  9054. width:200px;
  9055. height:1px;
  9056. display:flex;
  9057. }
  9058. #u50671 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 2px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u50671_text {
  9066. border-width:0px;
  9067. word-wrap:break-word;
  9068. text-transform:none;
  9069. visibility:hidden;
  9070. }
  9071. #u50672_div {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:97px;
  9077. height:22px;
  9078. background:inherit;
  9079. background-color:rgba(255, 255, 255, 0);
  9080. border:none;
  9081. border-radius:0px;
  9082. -moz-box-shadow:none;
  9083. -webkit-box-shadow:none;
  9084. box-shadow:none;
  9085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9086. font-weight:400;
  9087. font-style:normal;
  9088. font-size:16px;
  9089. }
  9090. #u50672 {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:147px;
  9094. top:853px;
  9095. width:97px;
  9096. height:22px;
  9097. display:flex;
  9098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9099. font-weight:400;
  9100. font-style:normal;
  9101. font-size:16px;
  9102. }
  9103. #u50672 .text {
  9104. position:absolute;
  9105. align-self:flex-start;
  9106. padding:0px 0px 0px 0px;
  9107. box-sizing:border-box;
  9108. width:100%;
  9109. }
  9110. #u50672_text {
  9111. border-width:0px;
  9112. word-wrap:break-word;
  9113. text-transform:none;
  9114. }
  9115. #u50673_div {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:49px;
  9121. height:17px;
  9122. background:inherit;
  9123. background-color:rgba(255, 255, 255, 0);
  9124. border:none;
  9125. border-radius:0px;
  9126. -moz-box-shadow:none;
  9127. -webkit-box-shadow:none;
  9128. box-shadow:none;
  9129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9130. font-weight:400;
  9131. font-style:normal;
  9132. font-size:12px;
  9133. color:#AAAAAA;
  9134. }
  9135. #u50673 {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:147px;
  9139. top:817px;
  9140. width:49px;
  9141. height:17px;
  9142. display:flex;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:12px;
  9147. color:#AAAAAA;
  9148. }
  9149. #u50673 .text {
  9150. position:absolute;
  9151. align-self:flex-start;
  9152. padding:0px 0px 0px 0px;
  9153. box-sizing:border-box;
  9154. width:100%;
  9155. }
  9156. #u50673_text {
  9157. border-width:0px;
  9158. white-space:nowrap;
  9159. text-transform:none;
  9160. }
  9161. #u50674_div {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:97px;
  9167. height:22px;
  9168. background:inherit;
  9169. background-color:rgba(255, 255, 255, 0);
  9170. border:none;
  9171. border-radius:0px;
  9172. -moz-box-shadow:none;
  9173. -webkit-box-shadow:none;
  9174. box-shadow:none;
  9175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. font-size:16px;
  9179. }
  9180. #u50674 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:147px;
  9184. top:611px;
  9185. width:97px;
  9186. height:22px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:16px;
  9192. }
  9193. #u50674 .text {
  9194. position:absolute;
  9195. align-self:flex-start;
  9196. padding:0px 0px 0px 0px;
  9197. box-sizing:border-box;
  9198. width:100%;
  9199. }
  9200. #u50674_text {
  9201. border-width:0px;
  9202. word-wrap:break-word;
  9203. text-transform:none;
  9204. }
  9205. #u50675_div {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:0px;
  9209. top:0px;
  9210. width:97px;
  9211. height:22px;
  9212. background:inherit;
  9213. background-color:rgba(255, 255, 255, 0);
  9214. border:none;
  9215. border-radius:0px;
  9216. -moz-box-shadow:none;
  9217. -webkit-box-shadow:none;
  9218. box-shadow:none;
  9219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9220. font-weight:400;
  9221. font-style:normal;
  9222. font-size:16px;
  9223. }
  9224. #u50675 {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:147px;
  9228. top:303px;
  9229. width:97px;
  9230. height:22px;
  9231. display:flex;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:16px;
  9236. }
  9237. #u50675 .text {
  9238. position:absolute;
  9239. align-self:flex-start;
  9240. padding:0px 0px 0px 0px;
  9241. box-sizing:border-box;
  9242. width:100%;
  9243. }
  9244. #u50675_text {
  9245. border-width:0px;
  9246. word-wrap:break-word;
  9247. text-transform:none;
  9248. }
  9249. #u50676_div {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:49px;
  9255. height:17px;
  9256. background:inherit;
  9257. background-color:rgba(255, 255, 255, 0);
  9258. border:none;
  9259. border-radius:0px;
  9260. -moz-box-shadow:none;
  9261. -webkit-box-shadow:none;
  9262. box-shadow:none;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:12px;
  9267. color:#AAAAAA;
  9268. }
  9269. #u50676 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:147px;
  9273. top:267px;
  9274. width:49px;
  9275. height:17px;
  9276. display:flex;
  9277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:12px;
  9281. color:#AAAAAA;
  9282. }
  9283. #u50676 .text {
  9284. position:absolute;
  9285. align-self:flex-start;
  9286. padding:0px 0px 0px 0px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u50676_text {
  9291. border-width:0px;
  9292. white-space:nowrap;
  9293. text-transform:none;
  9294. }
  9295. #u50677_div {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:97px;
  9301. height:22px;
  9302. background:inherit;
  9303. background-color:rgba(255, 255, 255, 0);
  9304. border:none;
  9305. border-radius:0px;
  9306. -moz-box-shadow:none;
  9307. -webkit-box-shadow:none;
  9308. box-shadow:none;
  9309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. font-size:16px;
  9313. }
  9314. #u50677 {
  9315. border-width:0px;
  9316. position:absolute;
  9317. left:147px;
  9318. top:345px;
  9319. width:97px;
  9320. height:22px;
  9321. display:flex;
  9322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9323. font-weight:400;
  9324. font-style:normal;
  9325. font-size:16px;
  9326. }
  9327. #u50677 .text {
  9328. position:absolute;
  9329. align-self:flex-start;
  9330. padding:0px 0px 0px 0px;
  9331. box-sizing:border-box;
  9332. width:100%;
  9333. }
  9334. #u50677_text {
  9335. border-width:0px;
  9336. word-wrap:break-word;
  9337. text-transform:none;
  9338. }
  9339. #u50678_img {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:201px;
  9345. height:2px;
  9346. }
  9347. #u50678 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:120px;
  9351. top:514px;
  9352. width:200px;
  9353. height:1px;
  9354. display:flex;
  9355. }
  9356. #u50678 .text {
  9357. position:absolute;
  9358. align-self:center;
  9359. padding:2px 2px 2px 2px;
  9360. box-sizing:border-box;
  9361. width:100%;
  9362. }
  9363. #u50678_text {
  9364. border-width:0px;
  9365. word-wrap:break-word;
  9366. text-transform:none;
  9367. visibility:hidden;
  9368. }
  9369. #u50679_div {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:97px;
  9375. height:22px;
  9376. background:inherit;
  9377. background-color:rgba(255, 255, 255, 0);
  9378. border:none;
  9379. border-radius:0px;
  9380. -moz-box-shadow:none;
  9381. -webkit-box-shadow:none;
  9382. box-shadow:none;
  9383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9384. font-weight:400;
  9385. font-style:normal;
  9386. font-size:16px;
  9387. }
  9388. #u50679 {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:147px;
  9392. top:429px;
  9393. width:97px;
  9394. height:22px;
  9395. display:flex;
  9396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9397. font-weight:400;
  9398. font-style:normal;
  9399. font-size:16px;
  9400. }
  9401. #u50679 .text {
  9402. position:absolute;
  9403. align-self:flex-start;
  9404. padding:0px 0px 0px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u50679_text {
  9409. border-width:0px;
  9410. word-wrap:break-word;
  9411. text-transform:none;
  9412. }
  9413. #u50680_div {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:97px;
  9419. height:22px;
  9420. background:inherit;
  9421. background-color:rgba(255, 255, 255, 0);
  9422. border:none;
  9423. border-radius:0px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:16px;
  9431. }
  9432. #u50680 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:147px;
  9436. top:471px;
  9437. width:97px;
  9438. height:22px;
  9439. display:flex;
  9440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9441. font-weight:400;
  9442. font-style:normal;
  9443. font-size:16px;
  9444. }
  9445. #u50680 .text {
  9446. position:absolute;
  9447. align-self:flex-start;
  9448. padding:0px 0px 0px 0px;
  9449. box-sizing:border-box;
  9450. width:100%;
  9451. }
  9452. #u50680_text {
  9453. border-width:0px;
  9454. white-space:nowrap;
  9455. text-transform:none;
  9456. }
  9457. #u50681 {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:0px;
  9463. height:0px;
  9464. }
  9465. #u50682 {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:0px;
  9471. height:0px;
  9472. }
  9473. #u50683_div {
  9474. border-width:0px;
  9475. position:absolute;
  9476. left:0px;
  9477. top:0px;
  9478. width:640px;
  9479. height:466px;
  9480. background:inherit;
  9481. background-color:rgba(255, 255, 255, 1);
  9482. box-sizing:border-box;
  9483. border-width:1px;
  9484. border-style:solid;
  9485. border-color:rgba(215, 215, 215, 1);
  9486. border-radius:0px;
  9487. -moz-box-shadow:none;
  9488. -webkit-box-shadow:none;
  9489. box-shadow:none;
  9490. }
  9491. #u50683 {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:550px;
  9495. top:369px;
  9496. width:640px;
  9497. height:466px;
  9498. display:flex;
  9499. }
  9500. #u50683 .text {
  9501. position:absolute;
  9502. align-self:center;
  9503. padding:2px 2px 2px 2px;
  9504. box-sizing:border-box;
  9505. width:100%;
  9506. }
  9507. #u50683_text {
  9508. border-width:0px;
  9509. word-wrap:break-word;
  9510. text-transform:none;
  9511. visibility:hidden;
  9512. }
  9513. #u50684_div {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:73px;
  9519. height:30px;
  9520. background:inherit;
  9521. background-color:rgba(255, 255, 255, 0);
  9522. border:none;
  9523. border-radius:0px;
  9524. -moz-box-shadow:none;
  9525. -webkit-box-shadow:none;
  9526. box-shadow:none;
  9527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9528. font-weight:400;
  9529. font-style:normal;
  9530. font-size:18px;
  9531. color:#000000;
  9532. line-height:30px;
  9533. }
  9534. #u50684 {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:570px;
  9538. top:389px;
  9539. width:73px;
  9540. height:30px;
  9541. display:flex;
  9542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:18px;
  9546. color:#000000;
  9547. line-height:30px;
  9548. }
  9549. #u50684 .text {
  9550. position:absolute;
  9551. align-self:flex-start;
  9552. padding:0px 0px 0px 0px;
  9553. box-sizing:border-box;
  9554. width:100%;
  9555. }
  9556. #u50684_text {
  9557. border-width:0px;
  9558. white-space:nowrap;
  9559. text-transform:none;
  9560. }
  9561. #u50685 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:0px;
  9567. height:0px;
  9568. }
  9569. #u50686_div {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:40px;
  9575. height:40px;
  9576. background:inherit;
  9577. background-color:rgba(255, 255, 255, 0);
  9578. border:none;
  9579. border-top:0px;
  9580. border-right:0px;
  9581. border-bottom:0px;
  9582. border-radius:0px;
  9583. border-top-left-radius:0px;
  9584. border-bottom-left-radius:0px;
  9585. -moz-box-shadow:none;
  9586. -webkit-box-shadow:none;
  9587. box-shadow:none;
  9588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9589. font-weight:500;
  9590. font-style:normal;
  9591. font-size:18px;
  9592. text-align:center;
  9593. }
  9594. #u50686 {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:1150px;
  9598. top:369px;
  9599. width:40px;
  9600. height:40px;
  9601. display:flex;
  9602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9603. font-weight:500;
  9604. font-style:normal;
  9605. font-size:18px;
  9606. text-align:center;
  9607. }
  9608. #u50686 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:5px 10px 5px 0px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u50686_text {
  9616. border-width:0px;
  9617. word-wrap:break-word;
  9618. text-transform:none;
  9619. }
  9620. #u50687_img {
  9621. border-width:0px;
  9622. position:absolute;
  9623. left:0px;
  9624. top:0px;
  9625. width:13px;
  9626. height:17px;
  9627. }
  9628. #u50687 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:1137px;
  9632. top:381px;
  9633. width:13px;
  9634. height:17px;
  9635. display:flex;
  9636. }
  9637. #u50687 .text {
  9638. position:absolute;
  9639. align-self:center;
  9640. padding:2px 2px 2px 2px;
  9641. box-sizing:border-box;
  9642. width:100%;
  9643. }
  9644. #u50687_text {
  9645. border-width:0px;
  9646. word-wrap:break-word;
  9647. text-transform:none;
  9648. visibility:hidden;
  9649. }
  9650. #u50688 {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:0px;
  9654. top:0px;
  9655. width:0px;
  9656. height:0px;
  9657. }
  9658. #u50689_div {
  9659. border-width:0px;
  9660. position:absolute;
  9661. left:0px;
  9662. top:0px;
  9663. width:640px;
  9664. height:60px;
  9665. background:inherit;
  9666. background-color:rgba(255, 255, 255, 1);
  9667. box-sizing:border-box;
  9668. border-width:1px;
  9669. border-style:solid;
  9670. border-color:rgba(215, 215, 215, 1);
  9671. border-radius:0px;
  9672. -moz-box-shadow:none;
  9673. -webkit-box-shadow:none;
  9674. box-shadow:none;
  9675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9676. font-weight:400;
  9677. font-style:normal;
  9678. font-size:14px;
  9679. color:#AAAAAA;
  9680. text-align:center;
  9681. line-height:30px;
  9682. }
  9683. #u50689 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:550px;
  9687. top:775px;
  9688. width:640px;
  9689. height:60px;
  9690. display:flex;
  9691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9692. font-weight:400;
  9693. font-style:normal;
  9694. font-size:14px;
  9695. color:#AAAAAA;
  9696. text-align:center;
  9697. line-height:30px;
  9698. }
  9699. #u50689 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:5px 10px 5px 10px;
  9703. box-sizing:border-box;
  9704. width:100%;
  9705. }
  9706. #u50689_text {
  9707. border-width:0px;
  9708. word-wrap:break-word;
  9709. text-transform:none;
  9710. visibility:hidden;
  9711. }
  9712. #u50690_div {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:0px;
  9716. top:0px;
  9717. width:80px;
  9718. height:30px;
  9719. background:inherit;
  9720. background-color:rgba(255, 255, 255, 1);
  9721. box-sizing:border-box;
  9722. border-width:1px;
  9723. border-style:solid;
  9724. border-color:rgba(170, 170, 170, 1);
  9725. border-radius:4px;
  9726. -moz-box-shadow:none;
  9727. -webkit-box-shadow:none;
  9728. box-shadow:none;
  9729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9730. font-weight:400;
  9731. font-style:normal;
  9732. font-size:14px;
  9733. }
  9734. #u50690 {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:1084px;
  9738. top:790px;
  9739. width:80px;
  9740. height:30px;
  9741. display:flex;
  9742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9743. font-weight:400;
  9744. font-style:normal;
  9745. font-size:14px;
  9746. }
  9747. #u50690 .text {
  9748. position:absolute;
  9749. align-self:center;
  9750. padding:2px 2px 2px 2px;
  9751. box-sizing:border-box;
  9752. width:100%;
  9753. }
  9754. #u50690_text {
  9755. border-width:0px;
  9756. word-wrap:break-word;
  9757. text-transform:none;
  9758. }
  9759. #u50691 {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:570px;
  9763. top:459px;
  9764. width:600px;
  9765. height:180px;
  9766. }
  9767. #u50692_img {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:86px;
  9773. height:30px;
  9774. }
  9775. #u50692 {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:0px;
  9779. top:0px;
  9780. width:86px;
  9781. height:30px;
  9782. display:flex;
  9783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:12px;
  9787. color:#FFFFFF;
  9788. }
  9789. #u50692 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:2px 2px 2px 2px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u50692_text {
  9797. border-width:0px;
  9798. word-wrap:break-word;
  9799. text-transform:none;
  9800. }
  9801. #u50693_img {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:86px;
  9807. height:30px;
  9808. }
  9809. #u50693 {
  9810. border-width:0px;
  9811. position:absolute;
  9812. left:86px;
  9813. top:0px;
  9814. width:86px;
  9815. height:30px;
  9816. display:flex;
  9817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9818. font-weight:400;
  9819. font-style:normal;
  9820. font-size:12px;
  9821. color:#FFFFFF;
  9822. }
  9823. #u50693 .text {
  9824. position:absolute;
  9825. align-self:center;
  9826. padding:2px 2px 2px 2px;
  9827. box-sizing:border-box;
  9828. width:100%;
  9829. }
  9830. #u50693_text {
  9831. border-width:0px;
  9832. word-wrap:break-word;
  9833. text-transform:none;
  9834. }
  9835. #u50694_img {
  9836. border-width:0px;
  9837. position:absolute;
  9838. left:0px;
  9839. top:0px;
  9840. width:86px;
  9841. height:30px;
  9842. }
  9843. #u50694 {
  9844. border-width:0px;
  9845. position:absolute;
  9846. left:172px;
  9847. top:0px;
  9848. width:86px;
  9849. height:30px;
  9850. display:flex;
  9851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9852. font-weight:400;
  9853. font-style:normal;
  9854. font-size:12px;
  9855. color:#FFFFFF;
  9856. }
  9857. #u50694 .text {
  9858. position:absolute;
  9859. align-self:center;
  9860. padding:2px 2px 2px 2px;
  9861. box-sizing:border-box;
  9862. width:100%;
  9863. }
  9864. #u50694_text {
  9865. border-width:0px;
  9866. word-wrap:break-word;
  9867. text-transform:none;
  9868. }
  9869. #u50695_img {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:0px;
  9873. top:0px;
  9874. width:86px;
  9875. height:30px;
  9876. }
  9877. #u50695 {
  9878. border-width:0px;
  9879. position:absolute;
  9880. left:258px;
  9881. top:0px;
  9882. width:86px;
  9883. height:30px;
  9884. display:flex;
  9885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9886. font-weight:400;
  9887. font-style:normal;
  9888. font-size:12px;
  9889. color:#FFFFFF;
  9890. }
  9891. #u50695 .text {
  9892. position:absolute;
  9893. align-self:center;
  9894. padding:2px 2px 2px 2px;
  9895. box-sizing:border-box;
  9896. width:100%;
  9897. }
  9898. #u50695_text {
  9899. border-width:0px;
  9900. word-wrap:break-word;
  9901. text-transform:none;
  9902. }
  9903. #u50696_img {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:0px;
  9907. top:0px;
  9908. width:85px;
  9909. height:30px;
  9910. }
  9911. #u50696 {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:344px;
  9915. top:0px;
  9916. width:85px;
  9917. height:30px;
  9918. display:flex;
  9919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9920. font-weight:400;
  9921. font-style:normal;
  9922. font-size:12px;
  9923. color:#FFFFFF;
  9924. }
  9925. #u50696 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 2px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u50696_text {
  9933. border-width:0px;
  9934. word-wrap:break-word;
  9935. text-transform:none;
  9936. }
  9937. #u50697_img {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:0px;
  9941. top:0px;
  9942. width:86px;
  9943. height:30px;
  9944. }
  9945. #u50697 {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:429px;
  9949. top:0px;
  9950. width:86px;
  9951. height:30px;
  9952. display:flex;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:12px;
  9957. color:#FFFFFF;
  9958. }
  9959. #u50697 .text {
  9960. position:absolute;
  9961. align-self:center;
  9962. padding:2px 2px 2px 2px;
  9963. box-sizing:border-box;
  9964. width:100%;
  9965. }
  9966. #u50697_text {
  9967. border-width:0px;
  9968. word-wrap:break-word;
  9969. text-transform:none;
  9970. }
  9971. #u50698_img {
  9972. border-width:0px;
  9973. position:absolute;
  9974. left:0px;
  9975. top:0px;
  9976. width:85px;
  9977. height:30px;
  9978. }
  9979. #u50698 {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:515px;
  9983. top:0px;
  9984. width:85px;
  9985. height:30px;
  9986. display:flex;
  9987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9988. font-weight:400;
  9989. font-style:normal;
  9990. font-size:12px;
  9991. color:#FFFFFF;
  9992. }
  9993. #u50698 .text {
  9994. position:absolute;
  9995. align-self:center;
  9996. padding:2px 2px 2px 2px;
  9997. box-sizing:border-box;
  9998. width:100%;
  9999. }
  10000. #u50698_text {
  10001. border-width:0px;
  10002. word-wrap:break-word;
  10003. text-transform:none;
  10004. }
  10005. #u50699_img {
  10006. border-width:0px;
  10007. position:absolute;
  10008. left:0px;
  10009. top:0px;
  10010. width:86px;
  10011. height:30px;
  10012. }
  10013. #u50699 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:30px;
  10018. width:86px;
  10019. height:30px;
  10020. display:flex;
  10021. font-size:12px;
  10022. }
  10023. #u50699 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:2px 2px 2px 2px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u50699_text {
  10031. border-width:0px;
  10032. word-wrap:break-word;
  10033. text-transform:none;
  10034. visibility:hidden;
  10035. }
  10036. #u50700_img {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:86px;
  10042. height:30px;
  10043. }
  10044. #u50700 {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:86px;
  10048. top:30px;
  10049. width:86px;
  10050. height:30px;
  10051. display:flex;
  10052. font-size:12px;
  10053. }
  10054. #u50700 .text {
  10055. position:absolute;
  10056. align-self:center;
  10057. padding:2px 2px 2px 2px;
  10058. box-sizing:border-box;
  10059. width:100%;
  10060. }
  10061. #u50700_text {
  10062. border-width:0px;
  10063. word-wrap:break-word;
  10064. text-transform:none;
  10065. visibility:hidden;
  10066. }
  10067. #u50701_img {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:0px;
  10071. top:0px;
  10072. width:86px;
  10073. height:30px;
  10074. }
  10075. #u50701 {
  10076. border-width:0px;
  10077. position:absolute;
  10078. left:172px;
  10079. top:30px;
  10080. width:86px;
  10081. height:30px;
  10082. display:flex;
  10083. font-size:12px;
  10084. }
  10085. #u50701 .text {
  10086. position:absolute;
  10087. align-self:center;
  10088. padding:2px 2px 2px 2px;
  10089. box-sizing:border-box;
  10090. width:100%;
  10091. }
  10092. #u50701_text {
  10093. border-width:0px;
  10094. word-wrap:break-word;
  10095. text-transform:none;
  10096. }
  10097. #u50702_img {
  10098. border-width:0px;
  10099. position:absolute;
  10100. left:0px;
  10101. top:0px;
  10102. width:86px;
  10103. height:30px;
  10104. }
  10105. #u50702 {
  10106. border-width:0px;
  10107. position:absolute;
  10108. left:258px;
  10109. top:30px;
  10110. width:86px;
  10111. height:30px;
  10112. display:flex;
  10113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10114. font-weight:400;
  10115. font-style:normal;
  10116. font-size:12px;
  10117. }
  10118. #u50702 .text {
  10119. position:absolute;
  10120. align-self:center;
  10121. padding:2px 2px 2px 2px;
  10122. box-sizing:border-box;
  10123. width:100%;
  10124. }
  10125. #u50702_text {
  10126. border-width:0px;
  10127. word-wrap:break-word;
  10128. text-transform:none;
  10129. }
  10130. #u50703_img {
  10131. border-width:0px;
  10132. position:absolute;
  10133. left:0px;
  10134. top:0px;
  10135. width:85px;
  10136. height:30px;
  10137. }
  10138. #u50703 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:344px;
  10142. top:30px;
  10143. width:85px;
  10144. height:30px;
  10145. display:flex;
  10146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10147. font-weight:400;
  10148. font-style:normal;
  10149. font-size:12px;
  10150. }
  10151. #u50703 .text {
  10152. position:absolute;
  10153. align-self:center;
  10154. padding:2px 2px 2px 2px;
  10155. box-sizing:border-box;
  10156. width:100%;
  10157. }
  10158. #u50703_text {
  10159. border-width:0px;
  10160. word-wrap:break-word;
  10161. text-transform:none;
  10162. }
  10163. #u50704_img {
  10164. border-width:0px;
  10165. position:absolute;
  10166. left:0px;
  10167. top:0px;
  10168. width:86px;
  10169. height:30px;
  10170. }
  10171. #u50704 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:429px;
  10175. top:30px;
  10176. width:86px;
  10177. height:30px;
  10178. display:flex;
  10179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. font-size:12px;
  10183. }
  10184. #u50704 .text {
  10185. position:absolute;
  10186. align-self:center;
  10187. padding:2px 2px 2px 2px;
  10188. box-sizing:border-box;
  10189. width:100%;
  10190. }
  10191. #u50704_text {
  10192. border-width:0px;
  10193. word-wrap:break-word;
  10194. text-transform:none;
  10195. visibility:hidden;
  10196. }
  10197. #u50705_img {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:0px;
  10201. top:0px;
  10202. width:85px;
  10203. height:30px;
  10204. }
  10205. #u50705 {
  10206. border-width:0px;
  10207. position:absolute;
  10208. left:515px;
  10209. top:30px;
  10210. width:85px;
  10211. height:30px;
  10212. display:flex;
  10213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10214. font-weight:400;
  10215. font-style:normal;
  10216. font-size:12px;
  10217. }
  10218. #u50705 .text {
  10219. position:absolute;
  10220. align-self:center;
  10221. padding:2px 2px 2px 2px;
  10222. box-sizing:border-box;
  10223. width:100%;
  10224. }
  10225. #u50705_text {
  10226. border-width:0px;
  10227. word-wrap:break-word;
  10228. text-transform:none;
  10229. visibility:hidden;
  10230. }
  10231. #u50706_img {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:0px;
  10235. top:0px;
  10236. width:86px;
  10237. height:30px;
  10238. }
  10239. #u50706 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:0px;
  10243. top:60px;
  10244. width:86px;
  10245. height:30px;
  10246. display:flex;
  10247. font-size:12px;
  10248. }
  10249. #u50706 .text {
  10250. position:absolute;
  10251. align-self:center;
  10252. padding:2px 2px 2px 2px;
  10253. box-sizing:border-box;
  10254. width:100%;
  10255. }
  10256. #u50706_text {
  10257. border-width:0px;
  10258. word-wrap:break-word;
  10259. text-transform:none;
  10260. visibility:hidden;
  10261. }
  10262. #u50707_img {
  10263. border-width:0px;
  10264. position:absolute;
  10265. left:0px;
  10266. top:0px;
  10267. width:86px;
  10268. height:30px;
  10269. }
  10270. #u50707 {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:86px;
  10274. top:60px;
  10275. width:86px;
  10276. height:30px;
  10277. display:flex;
  10278. font-size:12px;
  10279. }
  10280. #u50707 .text {
  10281. position:absolute;
  10282. align-self:center;
  10283. padding:2px 2px 2px 2px;
  10284. box-sizing:border-box;
  10285. width:100%;
  10286. }
  10287. #u50707_text {
  10288. border-width:0px;
  10289. word-wrap:break-word;
  10290. text-transform:none;
  10291. visibility:hidden;
  10292. }
  10293. #u50708_img {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:0px;
  10297. top:0px;
  10298. width:86px;
  10299. height:30px;
  10300. }
  10301. #u50708 {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:172px;
  10305. top:60px;
  10306. width:86px;
  10307. height:30px;
  10308. display:flex;
  10309. font-size:12px;
  10310. }
  10311. #u50708 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 2px 2px 2px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u50708_text {
  10319. border-width:0px;
  10320. word-wrap:break-word;
  10321. text-transform:none;
  10322. visibility:hidden;
  10323. }
  10324. #u50709_img {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:86px;
  10330. height:30px;
  10331. }
  10332. #u50709 {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:258px;
  10336. top:60px;
  10337. width:86px;
  10338. height:30px;
  10339. display:flex;
  10340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10341. font-weight:400;
  10342. font-style:normal;
  10343. font-size:12px;
  10344. }
  10345. #u50709 .text {
  10346. position:absolute;
  10347. align-self:center;
  10348. padding:2px 2px 2px 2px;
  10349. box-sizing:border-box;
  10350. width:100%;
  10351. }
  10352. #u50709_text {
  10353. border-width:0px;
  10354. word-wrap:break-word;
  10355. text-transform:none;
  10356. }
  10357. #u50710_img {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:0px;
  10361. top:0px;
  10362. width:85px;
  10363. height:30px;
  10364. }
  10365. #u50710 {
  10366. border-width:0px;
  10367. position:absolute;
  10368. left:344px;
  10369. top:60px;
  10370. width:85px;
  10371. height:30px;
  10372. display:flex;
  10373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10374. font-weight:400;
  10375. font-style:normal;
  10376. font-size:12px;
  10377. color:#00BFBF;
  10378. }
  10379. #u50710 .text {
  10380. position:absolute;
  10381. align-self:center;
  10382. padding:2px 2px 2px 2px;
  10383. box-sizing:border-box;
  10384. width:100%;
  10385. }
  10386. #u50710_text {
  10387. border-width:0px;
  10388. word-wrap:break-word;
  10389. text-transform:none;
  10390. }
  10391. #u50711_img {
  10392. border-width:0px;
  10393. position:absolute;
  10394. left:0px;
  10395. top:0px;
  10396. width:86px;
  10397. height:30px;
  10398. }
  10399. #u50711 {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:429px;
  10403. top:60px;
  10404. width:86px;
  10405. height:30px;
  10406. display:flex;
  10407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. font-size:12px;
  10411. color:#00BFBF;
  10412. }
  10413. #u50711 .text {
  10414. position:absolute;
  10415. align-self:center;
  10416. padding:2px 2px 2px 2px;
  10417. box-sizing:border-box;
  10418. width:100%;
  10419. }
  10420. #u50711_text {
  10421. border-width:0px;
  10422. word-wrap:break-word;
  10423. text-transform:none;
  10424. visibility:hidden;
  10425. }
  10426. #u50712_img {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:85px;
  10432. height:30px;
  10433. }
  10434. #u50712 {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:515px;
  10438. top:60px;
  10439. width:85px;
  10440. height:30px;
  10441. display:flex;
  10442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10443. font-weight:400;
  10444. font-style:normal;
  10445. font-size:12px;
  10446. color:#00BFBF;
  10447. }
  10448. #u50712 .text {
  10449. position:absolute;
  10450. align-self:center;
  10451. padding:2px 2px 2px 2px;
  10452. box-sizing:border-box;
  10453. width:100%;
  10454. }
  10455. #u50712_text {
  10456. border-width:0px;
  10457. word-wrap:break-word;
  10458. text-transform:none;
  10459. visibility:hidden;
  10460. }
  10461. #u50713_img {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:0px;
  10465. top:0px;
  10466. width:86px;
  10467. height:30px;
  10468. }
  10469. #u50713 {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:90px;
  10474. width:86px;
  10475. height:30px;
  10476. display:flex;
  10477. font-size:12px;
  10478. }
  10479. #u50713 .text {
  10480. position:absolute;
  10481. align-self:center;
  10482. padding:2px 2px 2px 2px;
  10483. box-sizing:border-box;
  10484. width:100%;
  10485. }
  10486. #u50713_text {
  10487. border-width:0px;
  10488. word-wrap:break-word;
  10489. text-transform:none;
  10490. visibility:hidden;
  10491. }
  10492. #u50714_img {
  10493. border-width:0px;
  10494. position:absolute;
  10495. left:0px;
  10496. top:0px;
  10497. width:86px;
  10498. height:30px;
  10499. }
  10500. #u50714 {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:86px;
  10504. top:90px;
  10505. width:86px;
  10506. height:30px;
  10507. display:flex;
  10508. font-size:12px;
  10509. }
  10510. #u50714 .text {
  10511. position:absolute;
  10512. align-self:center;
  10513. padding:2px 2px 2px 2px;
  10514. box-sizing:border-box;
  10515. width:100%;
  10516. }
  10517. #u50714_text {
  10518. border-width:0px;
  10519. word-wrap:break-word;
  10520. text-transform:none;
  10521. visibility:hidden;
  10522. }
  10523. #u50715_img {
  10524. border-width:0px;
  10525. position:absolute;
  10526. left:0px;
  10527. top:0px;
  10528. width:86px;
  10529. height:30px;
  10530. }
  10531. #u50715 {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:172px;
  10535. top:90px;
  10536. width:86px;
  10537. height:30px;
  10538. display:flex;
  10539. font-size:12px;
  10540. }
  10541. #u50715 .text {
  10542. position:absolute;
  10543. align-self:center;
  10544. padding:2px 2px 2px 2px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u50715_text {
  10549. border-width:0px;
  10550. word-wrap:break-word;
  10551. text-transform:none;
  10552. visibility:hidden;
  10553. }
  10554. #u50716_img {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:0px;
  10558. top:0px;
  10559. width:86px;
  10560. height:30px;
  10561. }
  10562. #u50716 {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:258px;
  10566. top:90px;
  10567. width:86px;
  10568. height:30px;
  10569. display:flex;
  10570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10571. font-weight:400;
  10572. font-style:normal;
  10573. font-size:12px;
  10574. }
  10575. #u50716 .text {
  10576. position:absolute;
  10577. align-self:center;
  10578. padding:2px 2px 2px 2px;
  10579. box-sizing:border-box;
  10580. width:100%;
  10581. }
  10582. #u50716_text {
  10583. border-width:0px;
  10584. word-wrap:break-word;
  10585. text-transform:none;
  10586. }
  10587. #u50717_img {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:85px;
  10593. height:30px;
  10594. }
  10595. #u50717 {
  10596. border-width:0px;
  10597. position:absolute;
  10598. left:344px;
  10599. top:90px;
  10600. width:85px;
  10601. height:30px;
  10602. display:flex;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:12px;
  10607. color:#D9001B;
  10608. }
  10609. #u50717 .text {
  10610. position:absolute;
  10611. align-self:center;
  10612. padding:2px 2px 2px 2px;
  10613. box-sizing:border-box;
  10614. width:100%;
  10615. }
  10616. #u50717_text {
  10617. border-width:0px;
  10618. word-wrap:break-word;
  10619. text-transform:none;
  10620. }
  10621. #u50718_img {
  10622. border-width:0px;
  10623. position:absolute;
  10624. left:0px;
  10625. top:0px;
  10626. width:86px;
  10627. height:30px;
  10628. }
  10629. #u50718 {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:429px;
  10633. top:90px;
  10634. width:86px;
  10635. height:30px;
  10636. display:flex;
  10637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10638. font-weight:400;
  10639. font-style:normal;
  10640. font-size:12px;
  10641. color:#D9001B;
  10642. }
  10643. #u50718 .text {
  10644. position:absolute;
  10645. align-self:center;
  10646. padding:2px 2px 2px 2px;
  10647. box-sizing:border-box;
  10648. width:100%;
  10649. }
  10650. #u50718_text {
  10651. border-width:0px;
  10652. word-wrap:break-word;
  10653. text-transform:none;
  10654. visibility:hidden;
  10655. }
  10656. #u50719_img {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:85px;
  10662. height:30px;
  10663. }
  10664. #u50719 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:515px;
  10668. top:90px;
  10669. width:85px;
  10670. height:30px;
  10671. display:flex;
  10672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:12px;
  10676. color:#1890FF;
  10677. }
  10678. #u50719 .text {
  10679. position:absolute;
  10680. align-self:center;
  10681. padding:2px 2px 2px 2px;
  10682. box-sizing:border-box;
  10683. width:100%;
  10684. }
  10685. #u50719_text {
  10686. border-width:0px;
  10687. word-wrap:break-word;
  10688. text-transform:none;
  10689. }
  10690. #u50720_img {
  10691. border-width:0px;
  10692. position:absolute;
  10693. left:0px;
  10694. top:0px;
  10695. width:86px;
  10696. height:30px;
  10697. }
  10698. #u50720 {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:0px;
  10702. top:120px;
  10703. width:86px;
  10704. height:30px;
  10705. display:flex;
  10706. font-size:12px;
  10707. }
  10708. #u50720 .text {
  10709. position:absolute;
  10710. align-self:center;
  10711. padding:2px 2px 2px 2px;
  10712. box-sizing:border-box;
  10713. width:100%;
  10714. }
  10715. #u50720_text {
  10716. border-width:0px;
  10717. word-wrap:break-word;
  10718. text-transform:none;
  10719. visibility:hidden;
  10720. }
  10721. #u50721_img {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:0px;
  10725. top:0px;
  10726. width:86px;
  10727. height:30px;
  10728. }
  10729. #u50721 {
  10730. border-width:0px;
  10731. position:absolute;
  10732. left:86px;
  10733. top:120px;
  10734. width:86px;
  10735. height:30px;
  10736. display:flex;
  10737. font-size:12px;
  10738. }
  10739. #u50721 .text {
  10740. position:absolute;
  10741. align-self:center;
  10742. padding:2px 2px 2px 2px;
  10743. box-sizing:border-box;
  10744. width:100%;
  10745. }
  10746. #u50721_text {
  10747. border-width:0px;
  10748. word-wrap:break-word;
  10749. text-transform:none;
  10750. visibility:hidden;
  10751. }
  10752. #u50722_img {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:0px;
  10756. top:0px;
  10757. width:86px;
  10758. height:30px;
  10759. }
  10760. #u50722 {
  10761. border-width:0px;
  10762. position:absolute;
  10763. left:172px;
  10764. top:120px;
  10765. width:86px;
  10766. height:30px;
  10767. display:flex;
  10768. font-size:12px;
  10769. }
  10770. #u50722 .text {
  10771. position:absolute;
  10772. align-self:center;
  10773. padding:2px 2px 2px 2px;
  10774. box-sizing:border-box;
  10775. width:100%;
  10776. }
  10777. #u50722_text {
  10778. border-width:0px;
  10779. word-wrap:break-word;
  10780. text-transform:none;
  10781. visibility:hidden;
  10782. }
  10783. #u50723_img {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:0px;
  10787. top:0px;
  10788. width:86px;
  10789. height:30px;
  10790. }
  10791. #u50723 {
  10792. border-width:0px;
  10793. position:absolute;
  10794. left:258px;
  10795. top:120px;
  10796. width:86px;
  10797. height:30px;
  10798. display:flex;
  10799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10800. font-weight:400;
  10801. font-style:normal;
  10802. font-size:12px;
  10803. }
  10804. #u50723 .text {
  10805. position:absolute;
  10806. align-self:center;
  10807. padding:2px 2px 2px 2px;
  10808. box-sizing:border-box;
  10809. width:100%;
  10810. }
  10811. #u50723_text {
  10812. border-width:0px;
  10813. word-wrap:break-word;
  10814. text-transform:none;
  10815. }
  10816. #u50724_img {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:0px;
  10820. top:0px;
  10821. width:85px;
  10822. height:30px;
  10823. }
  10824. #u50724 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:344px;
  10828. top:120px;
  10829. width:85px;
  10830. height:30px;
  10831. display:flex;
  10832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10833. font-weight:400;
  10834. font-style:normal;
  10835. font-size:12px;
  10836. color:#00BFBF;
  10837. }
  10838. #u50724 .text {
  10839. position:absolute;
  10840. align-self:center;
  10841. padding:2px 2px 2px 2px;
  10842. box-sizing:border-box;
  10843. width:100%;
  10844. }
  10845. #u50724_text {
  10846. border-width:0px;
  10847. word-wrap:break-word;
  10848. text-transform:none;
  10849. }
  10850. #u50725_img {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:0px;
  10854. top:0px;
  10855. width:86px;
  10856. height:30px;
  10857. }
  10858. #u50725 {
  10859. border-width:0px;
  10860. position:absolute;
  10861. left:429px;
  10862. top:120px;
  10863. width:86px;
  10864. height:30px;
  10865. display:flex;
  10866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10867. font-weight:400;
  10868. font-style:normal;
  10869. font-size:12px;
  10870. color:#00BFBF;
  10871. }
  10872. #u50725 .text {
  10873. position:absolute;
  10874. align-self:center;
  10875. padding:2px 2px 2px 2px;
  10876. box-sizing:border-box;
  10877. width:100%;
  10878. }
  10879. #u50725_text {
  10880. border-width:0px;
  10881. word-wrap:break-word;
  10882. text-transform:none;
  10883. visibility:hidden;
  10884. }
  10885. #u50726_img {
  10886. border-width:0px;
  10887. position:absolute;
  10888. left:0px;
  10889. top:0px;
  10890. width:85px;
  10891. height:30px;
  10892. }
  10893. #u50726 {
  10894. border-width:0px;
  10895. position:absolute;
  10896. left:515px;
  10897. top:120px;
  10898. width:85px;
  10899. height:30px;
  10900. display:flex;
  10901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10902. font-weight:400;
  10903. font-style:normal;
  10904. font-size:12px;
  10905. color:#00BFBF;
  10906. }
  10907. #u50726 .text {
  10908. position:absolute;
  10909. align-self:center;
  10910. padding:2px 2px 2px 2px;
  10911. box-sizing:border-box;
  10912. width:100%;
  10913. }
  10914. #u50726_text {
  10915. border-width:0px;
  10916. word-wrap:break-word;
  10917. text-transform:none;
  10918. visibility:hidden;
  10919. }
  10920. #u50727_img {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:86px;
  10926. height:30px;
  10927. }
  10928. #u50727 {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:150px;
  10933. width:86px;
  10934. height:30px;
  10935. display:flex;
  10936. font-size:12px;
  10937. }
  10938. #u50727 .text {
  10939. position:absolute;
  10940. align-self:center;
  10941. padding:2px 2px 2px 2px;
  10942. box-sizing:border-box;
  10943. width:100%;
  10944. }
  10945. #u50727_text {
  10946. border-width:0px;
  10947. word-wrap:break-word;
  10948. text-transform:none;
  10949. visibility:hidden;
  10950. }
  10951. #u50728_img {
  10952. border-width:0px;
  10953. position:absolute;
  10954. left:0px;
  10955. top:0px;
  10956. width:86px;
  10957. height:30px;
  10958. }
  10959. #u50728 {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:86px;
  10963. top:150px;
  10964. width:86px;
  10965. height:30px;
  10966. display:flex;
  10967. font-size:12px;
  10968. }
  10969. #u50728 .text {
  10970. position:absolute;
  10971. align-self:center;
  10972. padding:2px 2px 2px 2px;
  10973. box-sizing:border-box;
  10974. width:100%;
  10975. }
  10976. #u50728_text {
  10977. border-width:0px;
  10978. word-wrap:break-word;
  10979. text-transform:none;
  10980. visibility:hidden;
  10981. }
  10982. #u50729_img {
  10983. border-width:0px;
  10984. position:absolute;
  10985. left:0px;
  10986. top:0px;
  10987. width:86px;
  10988. height:30px;
  10989. }
  10990. #u50729 {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:172px;
  10994. top:150px;
  10995. width:86px;
  10996. height:30px;
  10997. display:flex;
  10998. font-size:12px;
  10999. }
  11000. #u50729 .text {
  11001. position:absolute;
  11002. align-self:center;
  11003. padding:2px 2px 2px 2px;
  11004. box-sizing:border-box;
  11005. width:100%;
  11006. }
  11007. #u50729_text {
  11008. border-width:0px;
  11009. word-wrap:break-word;
  11010. text-transform:none;
  11011. visibility:hidden;
  11012. }
  11013. #u50730_img {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:0px;
  11017. top:0px;
  11018. width:86px;
  11019. height:30px;
  11020. }
  11021. #u50730 {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:258px;
  11025. top:150px;
  11026. width:86px;
  11027. height:30px;
  11028. display:flex;
  11029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11030. font-weight:400;
  11031. font-style:normal;
  11032. font-size:12px;
  11033. }
  11034. #u50730 .text {
  11035. position:absolute;
  11036. align-self:center;
  11037. padding:2px 2px 2px 2px;
  11038. box-sizing:border-box;
  11039. width:100%;
  11040. }
  11041. #u50730_text {
  11042. border-width:0px;
  11043. word-wrap:break-word;
  11044. text-transform:none;
  11045. }
  11046. #u50731_img {
  11047. border-width:0px;
  11048. position:absolute;
  11049. left:0px;
  11050. top:0px;
  11051. width:85px;
  11052. height:30px;
  11053. }
  11054. #u50731 {
  11055. border-width:0px;
  11056. position:absolute;
  11057. left:344px;
  11058. top:150px;
  11059. width:85px;
  11060. height:30px;
  11061. display:flex;
  11062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11063. font-weight:400;
  11064. font-style:normal;
  11065. font-size:12px;
  11066. }
  11067. #u50731 .text {
  11068. position:absolute;
  11069. align-self:center;
  11070. padding:2px 2px 2px 2px;
  11071. box-sizing:border-box;
  11072. width:100%;
  11073. }
  11074. #u50731_text {
  11075. border-width:0px;
  11076. word-wrap:break-word;
  11077. text-transform:none;
  11078. }
  11079. #u50732_img {
  11080. border-width:0px;
  11081. position:absolute;
  11082. left:0px;
  11083. top:0px;
  11084. width:86px;
  11085. height:30px;
  11086. }
  11087. #u50732 {
  11088. border-width:0px;
  11089. position:absolute;
  11090. left:429px;
  11091. top:150px;
  11092. width:86px;
  11093. height:30px;
  11094. display:flex;
  11095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11096. font-weight:400;
  11097. font-style:normal;
  11098. font-size:12px;
  11099. }
  11100. #u50732 .text {
  11101. position:absolute;
  11102. align-self:center;
  11103. padding:2px 2px 2px 2px;
  11104. box-sizing:border-box;
  11105. width:100%;
  11106. }
  11107. #u50732_text {
  11108. border-width:0px;
  11109. word-wrap:break-word;
  11110. text-transform:none;
  11111. visibility:hidden;
  11112. }
  11113. #u50733_img {
  11114. border-width:0px;
  11115. position:absolute;
  11116. left:0px;
  11117. top:0px;
  11118. width:85px;
  11119. height:30px;
  11120. }
  11121. #u50733 {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:515px;
  11125. top:150px;
  11126. width:85px;
  11127. height:30px;
  11128. display:flex;
  11129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11130. font-weight:400;
  11131. font-style:normal;
  11132. font-size:12px;
  11133. }
  11134. #u50733 .text {
  11135. position:absolute;
  11136. align-self:center;
  11137. padding:2px 2px 2px 2px;
  11138. box-sizing:border-box;
  11139. width:100%;
  11140. }
  11141. #u50733_text {
  11142. border-width:0px;
  11143. word-wrap:break-word;
  11144. text-transform:none;
  11145. visibility:hidden;
  11146. }
  11147. #u50734_div {
  11148. border-width:0px;
  11149. position:absolute;
  11150. left:0px;
  11151. top:0px;
  11152. width:600px;
  11153. height:30px;
  11154. background:inherit;
  11155. background-color:rgba(255, 255, 255, 0);
  11156. border:none;
  11157. border-radius:0px;
  11158. -moz-box-shadow:none;
  11159. -webkit-box-shadow:none;
  11160. box-shadow:none;
  11161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11162. font-weight:400;
  11163. font-style:normal;
  11164. font-size:12px;
  11165. color:#F59A23;
  11166. line-height:30px;
  11167. }
  11168. #u50734 {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:570px;
  11172. top:429px;
  11173. width:600px;
  11174. height:30px;
  11175. display:flex;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:12px;
  11180. color:#F59A23;
  11181. line-height:30px;
  11182. }
  11183. #u50734 .text {
  11184. position:absolute;
  11185. align-self:flex-start;
  11186. padding:0px 0px 0px 0px;
  11187. box-sizing:border-box;
  11188. width:100%;
  11189. }
  11190. #u50734_text {
  11191. border-width:0px;
  11192. word-wrap:break-word;
  11193. text-transform:none;
  11194. }
  11195. #u50735_img {
  11196. border-width:0px;
  11197. position:absolute;
  11198. left:0px;
  11199. top:0px;
  11200. width:11px;
  11201. height:11px;
  11202. }
  11203. #u50735 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:983px;
  11207. top:531px;
  11208. width:11px;
  11209. height:11px;
  11210. display:flex;
  11211. }
  11212. #u50735 .text {
  11213. position:absolute;
  11214. align-self:center;
  11215. padding:2px 2px 2px 2px;
  11216. box-sizing:border-box;
  11217. width:100%;
  11218. }
  11219. #u50735_text {
  11220. border-width:0px;
  11221. word-wrap:break-word;
  11222. text-transform:none;
  11223. visibility:hidden;
  11224. }