styles.css 200 KB

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