styles.css 145 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2931px;
  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. #u51216_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. #u51216 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u51216 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u51216_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u51217_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. #u51217 {
  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. #u51217 .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. #u51217_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u51218_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. #u51218 {
  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. #u51218 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u51218_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u51219 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u51220_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u51220 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u51220 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u51220_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u51221_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. #u51221 {
  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. #u51221 .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. #u51221_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u51222_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. #u51222 {
  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. #u51222 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u51222_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u51223 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u51224_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u51224_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u51224_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u51224 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u51224 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u51224_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u51224.disabled {
  356. }
  357. .u51224_input_option {
  358. font-size:14px;
  359. }
  360. #u51225_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u51225 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u51225 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u51225_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51226_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u51226 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u51226 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u51226_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u51227_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u51227 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u51227 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u51227_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u51228 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u51229_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u51229 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u51229 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u51229_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u51230_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u51230 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u51230 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u51230_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u51231 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u51232_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u51232 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u51232 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u51232_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u51233_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u51233 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u51233 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u51233_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u51234 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u51235_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u51235 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u51235 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u51235_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u51236_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u51236 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u51236 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u51236_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u51237 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u51238_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u51238 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u51238 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u51238_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u51239_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u51239 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u51239 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u51239_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u51240 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u51241_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u51241 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u51241 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u51241_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u51242_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u51242 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u51242 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u51242_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u51243 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u51244_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u51244 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u51244 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u51244_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u51245_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u51245 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u51245 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u51245_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u51246 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u51247_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u51247 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u51247 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u51247_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u51248_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u51248 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u51248 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u51248_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u51249 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u51250_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u51250 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u51250 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u51250_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u51251_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u51251 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u51251 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u51251_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51252 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u51253_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u51253 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u51253 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u51253_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u51254_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u51254 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u51254 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u51254_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u51255 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u51256_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u51256 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u51256 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u51256_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u51257_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u51257 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u51257 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u51257_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u51258_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u51258 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u51258 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u51258_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u51259_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u51259 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u51259 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u51259_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u51260_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u51260 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u51260 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u51260_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u51261_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u51261 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u51261 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u51261_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u51262 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u51263_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u51263 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u51263 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u51263_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u51264_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u51264 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u51264 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u51264_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u51265 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u51266_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u51266 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u51266 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u51266_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u51267_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u51267 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u51267 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u51267_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u51268_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u51268 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u51268 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u51268_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u51269_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. }
  1701. #u51269 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:348px;
  1705. top:50px;
  1706. width:73px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u51269 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u51269_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u51270_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:87px;
  1732. height:30px;
  1733. background:inherit;
  1734. background-color:rgba(24, 144, 255, 1);
  1735. box-sizing:border-box;
  1736. border-width:1px;
  1737. border-style:solid;
  1738. border-color:rgba(170, 170, 170, 1);
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#FFFFFF;
  1748. }
  1749. #u51270 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:348px;
  1753. top:109px;
  1754. width:87px;
  1755. height:30px;
  1756. display:flex;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. color:#FFFFFF;
  1762. }
  1763. #u51270 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:5px 15px 5px 15px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u51270_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u51271_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:87px;
  1781. height:30px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. box-sizing:border-box;
  1785. border-width:1px;
  1786. border-style:solid;
  1787. border-color:rgba(170, 170, 170, 1);
  1788. border-radius:0px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:14px;
  1796. color:#555555;
  1797. }
  1798. #u51271 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:435px;
  1802. top:109px;
  1803. width:87px;
  1804. height:30px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#555555;
  1811. }
  1812. #u51271 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:5px 15px 5px 15px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u51271_text {
  1820. border-width:0px;
  1821. white-space:nowrap;
  1822. text-transform:none;
  1823. }
  1824. #u51272_div {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:280px;
  1830. height:1056px;
  1831. background:inherit;
  1832. background-color:rgba(242, 242, 242, 1);
  1833. border:none;
  1834. border-radius:0px;
  1835. -moz-box-shadow:none;
  1836. -webkit-box-shadow:none;
  1837. box-shadow:none;
  1838. }
  1839. #u51272 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:348px;
  1843. top:160px;
  1844. width:280px;
  1845. height:1056px;
  1846. display:flex;
  1847. }
  1848. #u51272 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u51272_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. visibility:hidden;
  1860. }
  1861. #u51273 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:0px;
  1867. height:0px;
  1868. }
  1869. #u51274_div {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:240px;
  1875. height:60px;
  1876. background:inherit;
  1877. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1878. border:none;
  1879. border-radius:4px;
  1880. -moz-box-shadow:none;
  1881. -webkit-box-shadow:none;
  1882. box-shadow:none;
  1883. font-family:'Microsoft YaHei', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. color:#CCCCCC;
  1888. text-align:left;
  1889. }
  1890. #u51274 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:369px;
  1894. top:240px;
  1895. width:240px;
  1896. height:60px;
  1897. display:flex;
  1898. font-family:'Microsoft YaHei', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. color:#CCCCCC;
  1903. text-align:left;
  1904. }
  1905. #u51274 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 8px 2px 8px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u51274_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u51275_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:19px;
  1924. height:18px;
  1925. background:inherit;
  1926. background-color:rgba(51, 51, 51, 1);
  1927. border:none;
  1928. border-radius:8px;
  1929. -moz-box-shadow:none;
  1930. -webkit-box-shadow:none;
  1931. box-shadow:none;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:10px;
  1936. color:#FFFFFF;
  1937. }
  1938. #u51275 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:384px;
  1942. top:262px;
  1943. width:19px;
  1944. height:18px;
  1945. display:flex;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:10px;
  1950. color:#FFFFFF;
  1951. }
  1952. #u51275 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:0px 0px 0px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u51275_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. }
  1964. #u51276_div {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:153px;
  1970. height:20px;
  1971. background:inherit;
  1972. background-color:rgba(51, 51, 51, 0);
  1973. border:none;
  1974. border-radius:4px;
  1975. -moz-box-shadow:none;
  1976. -webkit-box-shadow:none;
  1977. box-shadow:none;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:14px;
  1982. text-align:left;
  1983. }
  1984. #u51276 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:409px;
  1988. top:260px;
  1989. width:153px;
  1990. height:20px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:14px;
  1996. text-align:left;
  1997. }
  1998. #u51276 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:0px 0px 0px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u51276_text {
  2006. border-width:0px;
  2007. word-wrap:break-word;
  2008. text-transform:none;
  2009. }
  2010. #u51277 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:0px;
  2016. height:0px;
  2017. }
  2018. #u51278_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:240px;
  2024. height:60px;
  2025. background:inherit;
  2026. background-color:rgba(242, 242, 242, 0.925490196078431);
  2027. border:none;
  2028. border-radius:4px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. font-family:'Microsoft YaHei', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:14px;
  2036. color:#CCCCCC;
  2037. text-align:left;
  2038. }
  2039. #u51278 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:369px;
  2043. top:299px;
  2044. width:240px;
  2045. height:60px;
  2046. display:flex;
  2047. font-family:'Microsoft YaHei', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:14px;
  2051. color:#CCCCCC;
  2052. text-align:left;
  2053. }
  2054. #u51278 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 8px 2px 8px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u51278_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u51279_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:19px;
  2073. height:18px;
  2074. background:inherit;
  2075. background-color:rgba(51, 51, 51, 1);
  2076. border:none;
  2077. border-radius:8px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:10px;
  2085. color:#FFFFFF;
  2086. }
  2087. #u51279 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:384px;
  2091. top:321px;
  2092. width:19px;
  2093. height:18px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:10px;
  2099. color:#FFFFFF;
  2100. }
  2101. #u51279 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:0px 0px 0px 0px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u51279_text {
  2109. border-width:0px;
  2110. word-wrap:break-word;
  2111. text-transform:none;
  2112. }
  2113. #u51280_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:153px;
  2119. height:20px;
  2120. background:inherit;
  2121. background-color:rgba(51, 51, 51, 0);
  2122. border:none;
  2123. border-radius:4px;
  2124. -moz-box-shadow:none;
  2125. -webkit-box-shadow:none;
  2126. box-shadow:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:14px;
  2131. text-align:left;
  2132. }
  2133. #u51280 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:409px;
  2137. top:319px;
  2138. width:153px;
  2139. height:20px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:14px;
  2145. text-align:left;
  2146. }
  2147. #u51280 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:0px 0px 0px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u51280_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u51281 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:0px;
  2165. height:0px;
  2166. }
  2167. #u51282_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:240px;
  2173. height:60px;
  2174. background:inherit;
  2175. background-color:rgba(242, 242, 242, 0.925490196078431);
  2176. border:none;
  2177. border-radius:4px;
  2178. -moz-box-shadow:none;
  2179. -webkit-box-shadow:none;
  2180. box-shadow:none;
  2181. font-family:'Microsoft YaHei', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:14px;
  2185. color:#CCCCCC;
  2186. text-align:left;
  2187. }
  2188. #u51282 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:369px;
  2192. top:359px;
  2193. width:240px;
  2194. height:60px;
  2195. display:flex;
  2196. font-family:'Microsoft YaHei', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. color:#CCCCCC;
  2201. text-align:left;
  2202. }
  2203. #u51282 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 8px 2px 8px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u51282_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. visibility:hidden;
  2215. }
  2216. #u51283_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:19px;
  2222. height:18px;
  2223. background:inherit;
  2224. background-color:rgba(51, 51, 51, 1);
  2225. border:none;
  2226. border-radius:8px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:10px;
  2234. color:#FFFFFF;
  2235. }
  2236. #u51283 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:384px;
  2240. top:381px;
  2241. width:19px;
  2242. height:18px;
  2243. display:flex;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:10px;
  2248. color:#FFFFFF;
  2249. }
  2250. #u51283 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u51283_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. }
  2262. #u51284_div {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:153px;
  2268. height:20px;
  2269. background:inherit;
  2270. background-color:rgba(51, 51, 51, 0);
  2271. border:none;
  2272. border-radius:4px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. text-align:left;
  2281. }
  2282. #u51284 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:409px;
  2286. top:379px;
  2287. width:153px;
  2288. height:20px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. text-align:left;
  2295. }
  2296. #u51284 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u51284_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. }
  2308. #u51285 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:0px;
  2314. height:0px;
  2315. }
  2316. #u51286_div {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:240px;
  2322. height:40px;
  2323. background:inherit;
  2324. background-color:rgba(255, 255, 255, 1);
  2325. box-sizing:border-box;
  2326. border-width:1px;
  2327. border-style:solid;
  2328. border-color:rgba(201, 201, 201, 1);
  2329. border-radius:4px;
  2330. -moz-box-shadow:none;
  2331. -webkit-box-shadow:none;
  2332. box-shadow:none;
  2333. font-family:'Microsoft YaHei', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:14px;
  2337. color:#CCCCCC;
  2338. text-align:left;
  2339. }
  2340. #u51286 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:369px;
  2344. top:180px;
  2345. width:240px;
  2346. height:40px;
  2347. display:flex;
  2348. font-family:'Microsoft YaHei', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#CCCCCC;
  2353. text-align:left;
  2354. }
  2355. #u51286 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 8px 2px 8px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u51286_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u51287_input {
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:228px;
  2373. height:34px;
  2374. padding:2px 2px 2px 2px;
  2375. font-family:'ArialMT', 'Arial', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:13px;
  2379. letter-spacing:normal;
  2380. color:#000000;
  2381. vertical-align:none;
  2382. text-align:left;
  2383. text-transform:none;
  2384. background-color:transparent;
  2385. border-color:transparent;
  2386. }
  2387. #u51287_input.disabled {
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:228px;
  2392. height:34px;
  2393. padding:2px 2px 2px 2px;
  2394. font-family:'ArialMT', 'Arial', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:13px;
  2398. letter-spacing:normal;
  2399. color:#000000;
  2400. vertical-align:none;
  2401. text-align:left;
  2402. text-transform:none;
  2403. background-color:transparent;
  2404. border-color:transparent;
  2405. }
  2406. #u51287_div {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:228px;
  2412. height:34px;
  2413. background:inherit;
  2414. background-color:rgba(255, 255, 255, 1);
  2415. border:none;
  2416. border-radius:0px;
  2417. -moz-box-shadow:none;
  2418. -webkit-box-shadow:none;
  2419. box-shadow:none;
  2420. }
  2421. #u51287 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:375px;
  2425. top:183px;
  2426. width:228px;
  2427. height:34px;
  2428. display:flex;
  2429. }
  2430. #u51287 .text {
  2431. position:absolute;
  2432. align-self:flex-start;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u51287_div.disabled {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:228px;
  2443. height:34px;
  2444. background:inherit;
  2445. background-color:rgba(240, 240, 240, 1);
  2446. border:none;
  2447. border-radius:0px;
  2448. -moz-box-shadow:none;
  2449. -webkit-box-shadow:none;
  2450. box-shadow:none;
  2451. }
  2452. #u51287.disabled {
  2453. }
  2454. .u51287_input_option {
  2455. }
  2456. #u51288_div {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:57px;
  2462. height:30px;
  2463. background:inherit;
  2464. background-color:rgba(255, 255, 255, 0);
  2465. border:none;
  2466. border-radius:0px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. color:#000000;
  2475. line-height:30px;
  2476. }
  2477. #u51288 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:657px;
  2481. top:241px;
  2482. width:57px;
  2483. height:30px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:14px;
  2489. color:#000000;
  2490. line-height:30px;
  2491. }
  2492. #u51288 .text {
  2493. position:absolute;
  2494. align-self:flex-start;
  2495. padding:0px 0px 0px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u51288_text {
  2500. border-width:0px;
  2501. white-space:nowrap;
  2502. text-transform:none;
  2503. }
  2504. #u51289_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:80px;
  2510. height:30px;
  2511. background:inherit;
  2512. background-color:rgba(255, 255, 255, 1);
  2513. box-sizing:border-box;
  2514. border-width:1px;
  2515. border-style:solid;
  2516. border-color:rgba(121, 121, 121, 1);
  2517. border-radius:4px;
  2518. -moz-box-shadow:none;
  2519. -webkit-box-shadow:none;
  2520. box-shadow:none;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:14px;
  2525. }
  2526. #u51289 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:728px;
  2530. top:241px;
  2531. width:80px;
  2532. height:30px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. }
  2539. #u51289 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u51289_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u51290 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:657px;
  2555. top:281px;
  2556. width:916px;
  2557. height:76px;
  2558. }
  2559. #u51291_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:686px;
  2565. height:38px;
  2566. }
  2567. #u51291 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:686px;
  2573. height:38px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:14px;
  2579. }
  2580. #u51291 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u51291_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u51292_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:230px;
  2598. height:38px;
  2599. }
  2600. #u51292 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:686px;
  2604. top:0px;
  2605. width:230px;
  2606. height:38px;
  2607. display:flex;
  2608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:14px;
  2612. }
  2613. #u51292 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u51292_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. }
  2625. #u51293_img {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:686px;
  2631. height:38px;
  2632. }
  2633. #u51293 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:38px;
  2638. width:686px;
  2639. height:38px;
  2640. display:flex;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:12px;
  2645. color:#D7D7D7;
  2646. }
  2647. #u51293 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 0px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u51293_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. }
  2659. #u51294_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:230px;
  2665. height:38px;
  2666. }
  2667. #u51294 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:686px;
  2671. top:38px;
  2672. width:230px;
  2673. height:38px;
  2674. display:flex;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. color:#298FFF;
  2680. }
  2681. #u51294 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u51294_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u51295_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:57px;
  2700. height:30px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 0);
  2703. border:none;
  2704. border-radius:0px;
  2705. -moz-box-shadow:none;
  2706. -webkit-box-shadow:none;
  2707. box-shadow:none;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:14px;
  2712. color:#000000;
  2713. line-height:30px;
  2714. }
  2715. #u51295 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:657px;
  2719. top:410px;
  2720. width:57px;
  2721. height:30px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:14px;
  2727. color:#000000;
  2728. line-height:30px;
  2729. }
  2730. #u51295 .text {
  2731. position:absolute;
  2732. align-self:flex-start;
  2733. padding:0px 0px 0px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u51295_text {
  2738. border-width:0px;
  2739. white-space:nowrap;
  2740. text-transform:none;
  2741. }
  2742. #u51296_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:80px;
  2748. height:30px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 1);
  2751. box-sizing:border-box;
  2752. border-width:1px;
  2753. border-style:solid;
  2754. border-color:rgba(121, 121, 121, 1);
  2755. border-radius:4px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. }
  2764. #u51296 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:728px;
  2768. top:410px;
  2769. width:80px;
  2770. height:30px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:14px;
  2776. }
  2777. #u51296 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u51296_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u51297 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:657px;
  2793. top:450px;
  2794. width:916px;
  2795. height:76px;
  2796. }
  2797. #u51298_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:686px;
  2803. height:38px;
  2804. }
  2805. #u51298 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:686px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:14px;
  2817. }
  2818. #u51298 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u51298_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u51299_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:230px;
  2836. height:38px;
  2837. }
  2838. #u51299 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:686px;
  2842. top:0px;
  2843. width:230px;
  2844. height:38px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:14px;
  2850. }
  2851. #u51299 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u51299_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u51300_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:686px;
  2869. height:38px;
  2870. }
  2871. #u51300 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:38px;
  2876. width:686px;
  2877. height:38px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#D7D7D7;
  2884. }
  2885. #u51300 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u51300_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u51301_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:230px;
  2903. height:38px;
  2904. }
  2905. #u51301 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:686px;
  2909. top:38px;
  2910. width:230px;
  2911. height:38px;
  2912. display:flex;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. color:#298FFF;
  2918. }
  2919. #u51301 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 0px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u51301_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u51302_div {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:57px;
  2938. height:30px;
  2939. background:inherit;
  2940. background-color:rgba(255, 255, 255, 0);
  2941. border:none;
  2942. border-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. color:#000000;
  2951. line-height:30px;
  2952. }
  2953. #u51302 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:657px;
  2957. top:566px;
  2958. width:57px;
  2959. height:30px;
  2960. display:flex;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:14px;
  2965. color:#000000;
  2966. line-height:30px;
  2967. }
  2968. #u51302 .text {
  2969. position:absolute;
  2970. align-self:flex-start;
  2971. padding:0px 0px 0px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u51302_text {
  2976. border-width:0px;
  2977. white-space:nowrap;
  2978. text-transform:none;
  2979. }
  2980. #u51303_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:80px;
  2986. height:30px;
  2987. background:inherit;
  2988. background-color:rgba(255, 255, 255, 1);
  2989. box-sizing:border-box;
  2990. border-width:1px;
  2991. border-style:solid;
  2992. border-color:rgba(121, 121, 121, 1);
  2993. border-radius:4px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:14px;
  3001. }
  3002. #u51303 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:728px;
  3006. top:566px;
  3007. width:80px;
  3008. height:30px;
  3009. display:flex;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:14px;
  3014. }
  3015. #u51303 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u51303_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u51304 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:657px;
  3031. top:606px;
  3032. width:916px;
  3033. height:160px;
  3034. }
  3035. #u51305_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:47px;
  3041. height:40px;
  3042. }
  3043. #u51305 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:47px;
  3049. height:40px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. }
  3056. #u51305 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u51305_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u51306_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:118px;
  3074. height:40px;
  3075. }
  3076. #u51306 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:47px;
  3080. top:0px;
  3081. width:118px;
  3082. height:40px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. }
  3089. #u51306 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u51306_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u51307_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:146px;
  3107. height:40px;
  3108. }
  3109. #u51307 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:165px;
  3113. top:0px;
  3114. width:146px;
  3115. height:40px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:14px;
  3121. }
  3122. #u51307 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u51307_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u51308_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:146px;
  3140. height:40px;
  3141. }
  3142. #u51308 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:311px;
  3146. top:0px;
  3147. width:146px;
  3148. height:40px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:14px;
  3154. }
  3155. #u51308 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u51308_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. }
  3167. #u51309_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:146px;
  3173. height:40px;
  3174. }
  3175. #u51309 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:457px;
  3179. top:0px;
  3180. width:146px;
  3181. height:40px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. }
  3188. #u51309 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u51309_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u51310_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:131px;
  3206. height:40px;
  3207. }
  3208. #u51310 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:603px;
  3212. top:0px;
  3213. width:131px;
  3214. height:40px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. }
  3221. #u51310 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u51310_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. }
  3233. #u51311_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:182px;
  3239. height:40px;
  3240. }
  3241. #u51311 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:734px;
  3245. top:0px;
  3246. width:182px;
  3247. height:40px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:14px;
  3253. }
  3254. #u51311 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u51311_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. }
  3266. #u51312_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:47px;
  3272. height:40px;
  3273. }
  3274. #u51312 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:40px;
  3279. width:47px;
  3280. height:40px;
  3281. display:flex;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:12px;
  3286. color:#333333;
  3287. }
  3288. #u51312 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u51312_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. }
  3300. #u51313_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:118px;
  3306. height:40px;
  3307. }
  3308. #u51313 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:47px;
  3312. top:40px;
  3313. width:118px;
  3314. height:40px;
  3315. display:flex;
  3316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:12px;
  3320. color:#333333;
  3321. }
  3322. #u51313 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u51313_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. }
  3334. #u51314_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:146px;
  3340. height:40px;
  3341. }
  3342. #u51314 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:165px;
  3346. top:40px;
  3347. width:146px;
  3348. height:40px;
  3349. display:flex;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:12px;
  3354. color:#333333;
  3355. }
  3356. #u51314 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u51314_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. }
  3368. #u51315_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:146px;
  3374. height:40px;
  3375. }
  3376. #u51315 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:311px;
  3380. top:40px;
  3381. width:146px;
  3382. height:40px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:12px;
  3388. color:#333333;
  3389. }
  3390. #u51315 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u51315_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. }
  3402. #u51316_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:146px;
  3408. height:40px;
  3409. }
  3410. #u51316 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:457px;
  3414. top:40px;
  3415. width:146px;
  3416. height:40px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:12px;
  3422. color:#333333;
  3423. }
  3424. #u51316 .text {
  3425. position:absolute;
  3426. align-self:center;
  3427. padding:2px 2px 2px 0px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u51316_text {
  3432. border-width:0px;
  3433. word-wrap:break-word;
  3434. text-transform:none;
  3435. }
  3436. #u51317_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:131px;
  3442. height:40px;
  3443. }
  3444. #u51317 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:603px;
  3448. top:40px;
  3449. width:131px;
  3450. height:40px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. color:#333333;
  3457. }
  3458. #u51317 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u51317_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u51318_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:182px;
  3477. height:40px;
  3478. }
  3479. #u51318 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:734px;
  3483. top:40px;
  3484. width:182px;
  3485. height:40px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#1890FF;
  3492. }
  3493. #u51318 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u51318_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u51319_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:47px;
  3511. height:40px;
  3512. }
  3513. #u51319 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:80px;
  3518. width:47px;
  3519. height:40px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#333333;
  3526. }
  3527. #u51319 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u51319_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u51320_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:118px;
  3545. height:40px;
  3546. }
  3547. #u51320 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:47px;
  3551. top:80px;
  3552. width:118px;
  3553. height:40px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3556. font-weight:400;
  3557. font-style:normal;
  3558. font-size:12px;
  3559. color:#333333;
  3560. }
  3561. #u51320 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u51320_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u51321_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:146px;
  3580. height:40px;
  3581. }
  3582. #u51321 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:165px;
  3586. top:80px;
  3587. width:146px;
  3588. height:40px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:12px;
  3594. color:#333333;
  3595. }
  3596. #u51321 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u51321_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u51322_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:146px;
  3615. height:40px;
  3616. }
  3617. #u51322 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:311px;
  3621. top:80px;
  3622. width:146px;
  3623. height:40px;
  3624. display:flex;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:12px;
  3629. color:#333333;
  3630. }
  3631. #u51322 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 0px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u51322_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u51323_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:146px;
  3650. height:40px;
  3651. }
  3652. #u51323 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:457px;
  3656. top:80px;
  3657. width:146px;
  3658. height:40px;
  3659. display:flex;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:12px;
  3664. color:#333333;
  3665. }
  3666. #u51323 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u51323_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u51324_img {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:131px;
  3685. height:40px;
  3686. }
  3687. #u51324 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:603px;
  3691. top:80px;
  3692. width:131px;
  3693. height:40px;
  3694. display:flex;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. color:#333333;
  3700. }
  3701. #u51324 .text {
  3702. position:absolute;
  3703. align-self:center;
  3704. padding:2px 2px 2px 0px;
  3705. box-sizing:border-box;
  3706. width:100%;
  3707. }
  3708. #u51324_text {
  3709. border-width:0px;
  3710. word-wrap:break-word;
  3711. text-transform:none;
  3712. visibility:hidden;
  3713. }
  3714. #u51325_img {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:182px;
  3720. height:40px;
  3721. }
  3722. #u51325 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:734px;
  3726. top:80px;
  3727. width:182px;
  3728. height:40px;
  3729. display:flex;
  3730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3731. font-weight:400;
  3732. font-style:normal;
  3733. font-size:12px;
  3734. color:#1890FF;
  3735. }
  3736. #u51325 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u51325_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u51326_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:47px;
  3755. height:40px;
  3756. }
  3757. #u51326 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:120px;
  3762. width:47px;
  3763. height:40px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:12px;
  3769. color:#333333;
  3770. }
  3771. #u51326 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u51326_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. }
  3783. #u51327_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:118px;
  3789. height:40px;
  3790. }
  3791. #u51327 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:47px;
  3795. top:120px;
  3796. width:118px;
  3797. height:40px;
  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. color:#333333;
  3804. }
  3805. #u51327 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u51327_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u51328_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:146px;
  3824. height:40px;
  3825. }
  3826. #u51328 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:165px;
  3830. top:120px;
  3831. width:146px;
  3832. height:40px;
  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:#333333;
  3839. }
  3840. #u51328 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u51328_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u51329_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:146px;
  3859. height:40px;
  3860. }
  3861. #u51329 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:311px;
  3865. top:120px;
  3866. width:146px;
  3867. height:40px;
  3868. display:flex;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#333333;
  3874. }
  3875. #u51329 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u51329_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u51330_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:146px;
  3894. height:40px;
  3895. }
  3896. #u51330 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:457px;
  3900. top:120px;
  3901. width:146px;
  3902. height:40px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#333333;
  3909. }
  3910. #u51330 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u51330_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u51331_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:131px;
  3929. height:40px;
  3930. }
  3931. #u51331 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:603px;
  3935. top:120px;
  3936. width:131px;
  3937. height:40px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#333333;
  3944. }
  3945. #u51331 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u51331_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u51332_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:182px;
  3964. height:40px;
  3965. }
  3966. #u51332 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:734px;
  3970. top:120px;
  3971. width:182px;
  3972. height:40px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#1890FF;
  3979. }
  3980. #u51332 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u51332_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u51333_div {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:1265px;
  3999. height:1193px;
  4000. background:inherit;
  4001. background-color:rgba(255, 255, 255, 1);
  4002. border:none;
  4003. border-radius:0px;
  4004. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4005. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4006. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4007. color:#1890FF;
  4008. }
  4009. #u51333 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:1666px;
  4013. top:50px;
  4014. width:1265px;
  4015. height:1193px;
  4016. display:flex;
  4017. color:#1890FF;
  4018. }
  4019. #u51333 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u51333_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u51334_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:73px;
  4038. height:50px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 0);
  4041. border:none;
  4042. border-left:0px;
  4043. border-top:0px;
  4044. border-right:0px;
  4045. border-radius:0px;
  4046. border-bottom-right-radius:0px;
  4047. border-bottom-left-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4052. font-weight:500;
  4053. font-style:normal;
  4054. font-size:18px;
  4055. }
  4056. #u51334 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:1685px;
  4060. top:50px;
  4061. width:73px;
  4062. height:50px;
  4063. display:flex;
  4064. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4065. font-weight:500;
  4066. font-style:normal;
  4067. font-size:18px;
  4068. }
  4069. #u51334 .text {
  4070. position:absolute;
  4071. align-self:center;
  4072. padding:0px 0px 0px 0px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u51334_text {
  4077. border-width:0px;
  4078. white-space:nowrap;
  4079. text-transform:none;
  4080. }
  4081. #u51335_div {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:87px;
  4087. height:30px;
  4088. background:inherit;
  4089. background-color:rgba(24, 144, 255, 1);
  4090. box-sizing:border-box;
  4091. border-width:1px;
  4092. border-style:solid;
  4093. border-color:rgba(170, 170, 170, 1);
  4094. border-radius:0px;
  4095. -moz-box-shadow:none;
  4096. -webkit-box-shadow:none;
  4097. box-shadow:none;
  4098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4099. font-weight:400;
  4100. font-style:normal;
  4101. font-size:14px;
  4102. color:#FFFFFF;
  4103. }
  4104. #u51335 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:1772px;
  4108. top:110px;
  4109. width:87px;
  4110. height:30px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:14px;
  4116. color:#FFFFFF;
  4117. }
  4118. #u51335 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:5px 15px 5px 15px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u51335_text {
  4126. border-width:0px;
  4127. white-space:nowrap;
  4128. text-transform:none;
  4129. }
  4130. #u51336_div {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:87px;
  4136. height:30px;
  4137. background:inherit;
  4138. background-color:rgba(255, 255, 255, 1);
  4139. box-sizing:border-box;
  4140. border-width:1px;
  4141. border-style:solid;
  4142. border-color:rgba(170, 170, 170, 1);
  4143. border-radius:0px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:14px;
  4151. color:#555555;
  4152. }
  4153. #u51336 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:1685px;
  4157. top:110px;
  4158. width:87px;
  4159. height:30px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. color:#555555;
  4166. }
  4167. #u51336 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:5px 15px 5px 15px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u51336_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u51337_div {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:280px;
  4185. height:1056px;
  4186. background:inherit;
  4187. background-color:rgba(242, 242, 242, 1);
  4188. border:none;
  4189. border-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. }
  4194. #u51337 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:1685px;
  4198. top:160px;
  4199. width:280px;
  4200. height:1056px;
  4201. display:flex;
  4202. }
  4203. #u51337 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u51337_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u51338 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:0px;
  4222. height:0px;
  4223. }
  4224. #u51339_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:240px;
  4230. height:60px;
  4231. background:inherit;
  4232. background-color:rgba(0, 153, 255, 0.0980392156862745);
  4233. border:none;
  4234. border-radius:4px;
  4235. -moz-box-shadow:none;
  4236. -webkit-box-shadow:none;
  4237. box-shadow:none;
  4238. font-family:'Microsoft YaHei', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:14px;
  4242. color:#CCCCCC;
  4243. text-align:left;
  4244. }
  4245. #u51339 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:1706px;
  4249. top:240px;
  4250. width:240px;
  4251. height:60px;
  4252. display:flex;
  4253. font-family:'Microsoft YaHei', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:14px;
  4257. color:#CCCCCC;
  4258. text-align:left;
  4259. }
  4260. #u51339 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 8px 2px 8px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u51339_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u51340_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:19px;
  4279. height:18px;
  4280. background:inherit;
  4281. background-color:rgba(51, 51, 51, 1);
  4282. border:none;
  4283. border-radius:8px;
  4284. -moz-box-shadow:none;
  4285. -webkit-box-shadow:none;
  4286. box-shadow:none;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:10px;
  4291. color:#FFFFFF;
  4292. }
  4293. #u51340 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:1721px;
  4297. top:262px;
  4298. width:19px;
  4299. height:18px;
  4300. display:flex;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:10px;
  4305. color:#FFFFFF;
  4306. }
  4307. #u51340 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:0px 0px 0px 0px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u51340_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. }
  4319. #u51341_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:153px;
  4325. height:20px;
  4326. background:inherit;
  4327. background-color:rgba(51, 51, 51, 0);
  4328. border:none;
  4329. border-radius:4px;
  4330. -moz-box-shadow:none;
  4331. -webkit-box-shadow:none;
  4332. box-shadow:none;
  4333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4334. font-weight:400;
  4335. font-style:normal;
  4336. font-size:14px;
  4337. text-align:left;
  4338. }
  4339. #u51341 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:1746px;
  4343. top:260px;
  4344. width:153px;
  4345. height:20px;
  4346. display:flex;
  4347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4348. font-weight:400;
  4349. font-style:normal;
  4350. font-size:14px;
  4351. text-align:left;
  4352. }
  4353. #u51341 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:0px 0px 0px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u51341_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. }
  4365. #u51342 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:0px;
  4371. height:0px;
  4372. }
  4373. #u51343_div {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:240px;
  4379. height:60px;
  4380. background:inherit;
  4381. background-color:rgba(242, 242, 242, 0.925490196078431);
  4382. border:none;
  4383. border-radius:4px;
  4384. -moz-box-shadow:none;
  4385. -webkit-box-shadow:none;
  4386. box-shadow:none;
  4387. font-family:'Microsoft YaHei', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:14px;
  4391. color:#CCCCCC;
  4392. text-align:left;
  4393. }
  4394. #u51343 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:1706px;
  4398. top:299px;
  4399. width:240px;
  4400. height:60px;
  4401. display:flex;
  4402. font-family:'Microsoft YaHei', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. color:#CCCCCC;
  4407. text-align:left;
  4408. }
  4409. #u51343 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 8px 2px 8px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u51343_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u51344_div {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:19px;
  4428. height:18px;
  4429. background:inherit;
  4430. background-color:rgba(51, 51, 51, 1);
  4431. border:none;
  4432. border-radius:8px;
  4433. -moz-box-shadow:none;
  4434. -webkit-box-shadow:none;
  4435. box-shadow:none;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:10px;
  4440. color:#FFFFFF;
  4441. }
  4442. #u51344 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:1721px;
  4446. top:321px;
  4447. width:19px;
  4448. height:18px;
  4449. display:flex;
  4450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:10px;
  4454. color:#FFFFFF;
  4455. }
  4456. #u51344 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:0px 0px 0px 0px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u51344_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. }
  4468. #u51345_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:153px;
  4474. height:20px;
  4475. background:inherit;
  4476. background-color:rgba(51, 51, 51, 0);
  4477. border:none;
  4478. border-radius:4px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. text-align:left;
  4487. }
  4488. #u51345 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:1746px;
  4492. top:319px;
  4493. width:153px;
  4494. height:20px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:14px;
  4500. text-align:left;
  4501. }
  4502. #u51345 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:0px 0px 0px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u51345_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. }
  4514. #u51346 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:0px;
  4520. height:0px;
  4521. }
  4522. #u51347_div {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:240px;
  4528. height:60px;
  4529. background:inherit;
  4530. background-color:rgba(242, 242, 242, 0.925490196078431);
  4531. border:none;
  4532. border-radius:4px;
  4533. -moz-box-shadow:none;
  4534. -webkit-box-shadow:none;
  4535. box-shadow:none;
  4536. font-family:'Microsoft YaHei', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:14px;
  4540. color:#CCCCCC;
  4541. text-align:left;
  4542. }
  4543. #u51347 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:1706px;
  4547. top:359px;
  4548. width:240px;
  4549. height:60px;
  4550. display:flex;
  4551. font-family:'Microsoft YaHei', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:14px;
  4555. color:#CCCCCC;
  4556. text-align:left;
  4557. }
  4558. #u51347 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 8px 2px 8px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u51347_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u51348_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:19px;
  4577. height:18px;
  4578. background:inherit;
  4579. background-color:rgba(51, 51, 51, 1);
  4580. border:none;
  4581. border-radius:8px;
  4582. -moz-box-shadow:none;
  4583. -webkit-box-shadow:none;
  4584. box-shadow:none;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:10px;
  4589. color:#FFFFFF;
  4590. }
  4591. #u51348 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:1721px;
  4595. top:381px;
  4596. width:19px;
  4597. height:18px;
  4598. display:flex;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:10px;
  4603. color:#FFFFFF;
  4604. }
  4605. #u51348 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:0px 0px 0px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u51348_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. }
  4617. #u51349_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:153px;
  4623. height:20px;
  4624. background:inherit;
  4625. background-color:rgba(51, 51, 51, 0);
  4626. border:none;
  4627. border-radius:4px;
  4628. -moz-box-shadow:none;
  4629. -webkit-box-shadow:none;
  4630. box-shadow:none;
  4631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:14px;
  4635. text-align:left;
  4636. }
  4637. #u51349 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:1746px;
  4641. top:379px;
  4642. width:153px;
  4643. height:20px;
  4644. display:flex;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. text-align:left;
  4650. }
  4651. #u51349 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:0px 0px 0px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u51349_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. }
  4663. #u51350 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:0px;
  4669. height:0px;
  4670. }
  4671. #u51351_div {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:240px;
  4677. height:40px;
  4678. background:inherit;
  4679. background-color:rgba(255, 255, 255, 1);
  4680. box-sizing:border-box;
  4681. border-width:1px;
  4682. border-style:solid;
  4683. border-color:rgba(201, 201, 201, 1);
  4684. border-radius:4px;
  4685. -moz-box-shadow:none;
  4686. -webkit-box-shadow:none;
  4687. box-shadow:none;
  4688. font-family:'Microsoft YaHei', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:14px;
  4692. color:#CCCCCC;
  4693. text-align:left;
  4694. }
  4695. #u51351 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:1706px;
  4699. top:180px;
  4700. width:240px;
  4701. height:40px;
  4702. display:flex;
  4703. font-family:'Microsoft YaHei', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. color:#CCCCCC;
  4708. text-align:left;
  4709. }
  4710. #u51351 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 8px 2px 8px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u51351_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u51352_input {
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:228px;
  4728. height:34px;
  4729. padding:2px 2px 2px 2px;
  4730. font-family:'ArialMT', 'Arial', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:13px;
  4734. letter-spacing:normal;
  4735. color:#000000;
  4736. vertical-align:none;
  4737. text-align:left;
  4738. text-transform:none;
  4739. background-color:transparent;
  4740. border-color:transparent;
  4741. }
  4742. #u51352_input.disabled {
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:228px;
  4747. height:34px;
  4748. padding:2px 2px 2px 2px;
  4749. font-family:'ArialMT', 'Arial', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:13px;
  4753. letter-spacing:normal;
  4754. color:#000000;
  4755. vertical-align:none;
  4756. text-align:left;
  4757. text-transform:none;
  4758. background-color:transparent;
  4759. border-color:transparent;
  4760. }
  4761. #u51352_div {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:228px;
  4767. height:34px;
  4768. background:inherit;
  4769. background-color:rgba(255, 255, 255, 1);
  4770. border:none;
  4771. border-radius:0px;
  4772. -moz-box-shadow:none;
  4773. -webkit-box-shadow:none;
  4774. box-shadow:none;
  4775. }
  4776. #u51352 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:1712px;
  4780. top:183px;
  4781. width:228px;
  4782. height:34px;
  4783. display:flex;
  4784. }
  4785. #u51352 .text {
  4786. position:absolute;
  4787. align-self:flex-start;
  4788. padding:2px 2px 2px 2px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u51352_div.disabled {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:228px;
  4798. height:34px;
  4799. background:inherit;
  4800. background-color:rgba(240, 240, 240, 1);
  4801. border:none;
  4802. border-radius:0px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. }
  4807. #u51352.disabled {
  4808. }
  4809. .u51352_input_option {
  4810. }
  4811. #u51353_div {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:64px;
  4817. height:30px;
  4818. background:inherit;
  4819. background-color:rgba(255, 255, 255, 0);
  4820. border:none;
  4821. border-radius:0px;
  4822. -moz-box-shadow:none;
  4823. -webkit-box-shadow:none;
  4824. box-shadow:none;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. color:#000000;
  4830. line-height:30px;
  4831. }
  4832. #u51353 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:1994px;
  4836. top:251px;
  4837. width:64px;
  4838. height:30px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:14px;
  4844. color:#000000;
  4845. line-height:30px;
  4846. }
  4847. #u51353 .text {
  4848. position:absolute;
  4849. align-self:flex-start;
  4850. padding:0px 0px 0px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u51353_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u51354_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:80px;
  4865. height:30px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 1);
  4868. box-sizing:border-box;
  4869. border-width:1px;
  4870. border-style:solid;
  4871. border-color:rgba(121, 121, 121, 1);
  4872. border-radius:4px;
  4873. -moz-box-shadow:none;
  4874. -webkit-box-shadow:none;
  4875. box-shadow:none;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:14px;
  4880. }
  4881. #u51354 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:2065px;
  4885. top:251px;
  4886. width:80px;
  4887. height:30px;
  4888. display:flex;
  4889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:14px;
  4893. }
  4894. #u51354 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u51354_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. }
  4906. #u51355 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:1994px;
  4910. top:291px;
  4911. width:916px;
  4912. height:76px;
  4913. }
  4914. #u51356_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:305px;
  4920. height:38px;
  4921. }
  4922. #u51356 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:305px;
  4928. height:38px;
  4929. display:flex;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:14px;
  4934. }
  4935. #u51356 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u51356_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. }
  4947. #u51357_img {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:457px;
  4953. height:38px;
  4954. }
  4955. #u51357 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:305px;
  4959. top:0px;
  4960. width:457px;
  4961. height:38px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. }
  4968. #u51357 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 0px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u51357_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. }
  4980. #u51358_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:154px;
  4986. height:38px;
  4987. }
  4988. #u51358 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:762px;
  4992. top:0px;
  4993. width:154px;
  4994. height:38px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:14px;
  5000. }
  5001. #u51358 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u51358_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. }
  5013. #u51359_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:305px;
  5019. height:38px;
  5020. }
  5021. #u51359 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:38px;
  5026. width:305px;
  5027. height:38px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:12px;
  5033. color:#D7D7D7;
  5034. }
  5035. #u51359 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u51359_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u51360_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:457px;
  5054. height:38px;
  5055. }
  5056. #u51360 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:305px;
  5060. top:38px;
  5061. width:457px;
  5062. height:38px;
  5063. display:flex;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. color:#D7D7D7;
  5069. }
  5070. #u51360 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:2px 2px 2px 0px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u51360_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. }
  5082. #u51361_img {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:154px;
  5088. height:38px;
  5089. }
  5090. #u51361 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:762px;
  5094. top:38px;
  5095. width:154px;
  5096. height:38px;
  5097. display:flex;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:12px;
  5102. color:#298FFF;
  5103. }
  5104. #u51361 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u51361_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. visibility:hidden;
  5116. }
  5117. #u51362 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:0px;
  5123. height:0px;
  5124. }
  5125. #u51363_div {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:300px;
  5131. height:40px;
  5132. background:inherit;
  5133. background-color:rgba(255, 255, 255, 1);
  5134. box-sizing:border-box;
  5135. border-width:1px;
  5136. border-style:solid;
  5137. border-color:rgba(170, 170, 170, 1);
  5138. border-radius:4px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. text-align:left;
  5146. }
  5147. #u51363 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:745px;
  5151. top:160px;
  5152. width:300px;
  5153. height:40px;
  5154. display:flex;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. text-align:left;
  5159. }
  5160. #u51363 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 10px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u51363_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u51364_input {
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:284px;
  5178. height:31px;
  5179. padding:2px 2px 2px 2px;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:13px;
  5184. letter-spacing:normal;
  5185. color:#AAAAAA;
  5186. vertical-align:none;
  5187. text-align:left;
  5188. text-transform:none;
  5189. background-color:transparent;
  5190. border-color:transparent;
  5191. }
  5192. #u51364_input.disabled {
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:284px;
  5197. height:31px;
  5198. padding:2px 2px 2px 2px;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:13px;
  5203. letter-spacing:normal;
  5204. color:#AAAAAA;
  5205. vertical-align:none;
  5206. text-align:left;
  5207. text-transform:none;
  5208. background-color:transparent;
  5209. border-color:transparent;
  5210. }
  5211. #u51364_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:284px;
  5217. height:31px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 0);
  5220. border:none;
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. color:#AAAAAA;
  5229. }
  5230. #u51364 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:753px;
  5234. top:165px;
  5235. width:284px;
  5236. height:31px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. color:#AAAAAA;
  5242. }
  5243. #u51364 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 2px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u51364_div.disabled {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:284px;
  5256. height:31px;
  5257. background:inherit;
  5258. background-color:rgba(240, 240, 240, 1);
  5259. border:none;
  5260. border-radius:0px;
  5261. -moz-box-shadow:none;
  5262. -webkit-box-shadow:none;
  5263. box-shadow:none;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. color:#AAAAAA;
  5268. }
  5269. #u51364.disabled {
  5270. }
  5271. #u51365_div {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:78px;
  5277. height:30px;
  5278. background:inherit;
  5279. background-color:rgba(255, 255, 255, 0);
  5280. border:none;
  5281. border-top:0px;
  5282. border-right:0px;
  5283. border-bottom:0px;
  5284. border-radius:0px;
  5285. border-top-left-radius:0px;
  5286. border-bottom-left-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. text-align:right;
  5295. }
  5296. #u51365 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:657px;
  5300. top:165px;
  5301. width:78px;
  5302. height:30px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:14px;
  5308. text-align:right;
  5309. }
  5310. #u51365 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:5px 0px 5px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u51365_text {
  5318. border-width:0px;
  5319. white-space:nowrap;
  5320. text-transform:none;
  5321. }
  5322. #u51366_div {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:78px;
  5328. height:30px;
  5329. background:inherit;
  5330. background-color:rgba(255, 255, 255, 0);
  5331. border:none;
  5332. border-top:0px;
  5333. border-right:0px;
  5334. border-bottom:0px;
  5335. border-radius:0px;
  5336. border-top-left-radius:0px;
  5337. border-bottom-left-radius:0px;
  5338. -moz-box-shadow:none;
  5339. -webkit-box-shadow:none;
  5340. box-shadow:none;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:14px;
  5345. text-align:right;
  5346. }
  5347. #u51366 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:1115px;
  5351. top:169px;
  5352. width:78px;
  5353. height:30px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:14px;
  5359. text-align:right;
  5360. }
  5361. #u51366 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:5px 0px 5px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u51366_text {
  5369. border-width:0px;
  5370. white-space:nowrap;
  5371. text-transform:none;
  5372. }
  5373. #u51367_img {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:50px;
  5379. height:31px;
  5380. }
  5381. #u51367 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:1202px;
  5385. top:169px;
  5386. width:50px;
  5387. height:31px;
  5388. display:flex;
  5389. }
  5390. #u51367 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 2px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u51367_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. visibility:hidden;
  5402. }
  5403. #u51368_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:917px;
  5409. height:2px;
  5410. }
  5411. #u51368 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:657px;
  5415. top:220px;
  5416. width:916px;
  5417. height:1px;
  5418. display:flex;
  5419. }
  5420. #u51368 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:2px 2px 2px 2px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u51368_text {
  5428. border-width:0px;
  5429. word-wrap:break-word;
  5430. text-transform:none;
  5431. visibility:hidden;
  5432. }
  5433. #u51369 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u51370_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:300px;
  5447. height:40px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 1);
  5450. box-sizing:border-box;
  5451. border-width:1px;
  5452. border-style:solid;
  5453. border-color:rgba(170, 170, 170, 1);
  5454. border-radius:4px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. text-align:left;
  5462. }
  5463. #u51370 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:2082px;
  5467. top:160px;
  5468. width:300px;
  5469. height:40px;
  5470. display:flex;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. text-align:left;
  5475. }
  5476. #u51370 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 10px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u51370_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u51371_input {
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:284px;
  5494. height:31px;
  5495. padding:2px 2px 2px 2px;
  5496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:13px;
  5500. letter-spacing:normal;
  5501. color:#AAAAAA;
  5502. vertical-align:none;
  5503. text-align:left;
  5504. text-transform:none;
  5505. background-color:transparent;
  5506. border-color:transparent;
  5507. }
  5508. #u51371_input.disabled {
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:284px;
  5513. height:31px;
  5514. padding:2px 2px 2px 2px;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:13px;
  5519. letter-spacing:normal;
  5520. color:#AAAAAA;
  5521. vertical-align:none;
  5522. text-align:left;
  5523. text-transform:none;
  5524. background-color:transparent;
  5525. border-color:transparent;
  5526. }
  5527. #u51371_div {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:284px;
  5533. height:31px;
  5534. background:inherit;
  5535. background-color:rgba(255, 255, 255, 0);
  5536. border:none;
  5537. border-radius:0px;
  5538. -moz-box-shadow:none;
  5539. -webkit-box-shadow:none;
  5540. box-shadow:none;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. color:#AAAAAA;
  5545. }
  5546. #u51371 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:2090px;
  5550. top:165px;
  5551. width:284px;
  5552. height:31px;
  5553. display:flex;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. color:#AAAAAA;
  5558. }
  5559. #u51371 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 2px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u51371_div.disabled {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:284px;
  5572. height:31px;
  5573. background:inherit;
  5574. background-color:rgba(240, 240, 240, 1);
  5575. border:none;
  5576. border-radius:0px;
  5577. -moz-box-shadow:none;
  5578. -webkit-box-shadow:none;
  5579. box-shadow:none;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. color:#AAAAAA;
  5584. }
  5585. #u51371.disabled {
  5586. }
  5587. #u51372_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:78px;
  5593. height:30px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 0);
  5596. border:none;
  5597. border-top:0px;
  5598. border-right:0px;
  5599. border-bottom:0px;
  5600. border-radius:0px;
  5601. border-top-left-radius:0px;
  5602. border-bottom-left-radius:0px;
  5603. -moz-box-shadow:none;
  5604. -webkit-box-shadow:none;
  5605. box-shadow:none;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:14px;
  5610. text-align:right;
  5611. }
  5612. #u51372 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1994px;
  5616. top:165px;
  5617. width:78px;
  5618. height:30px;
  5619. display:flex;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:14px;
  5624. text-align:right;
  5625. }
  5626. #u51372 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:5px 0px 5px 0px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u51372_text {
  5634. border-width:0px;
  5635. white-space:nowrap;
  5636. text-transform:none;
  5637. }
  5638. #u51373_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:78px;
  5644. height:30px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 0);
  5647. border:none;
  5648. border-top:0px;
  5649. border-right:0px;
  5650. border-bottom:0px;
  5651. border-radius:0px;
  5652. border-top-left-radius:0px;
  5653. border-bottom-left-radius:0px;
  5654. -moz-box-shadow:none;
  5655. -webkit-box-shadow:none;
  5656. box-shadow:none;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:14px;
  5661. text-align:right;
  5662. }
  5663. #u51373 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:2452px;
  5667. top:169px;
  5668. width:78px;
  5669. height:30px;
  5670. display:flex;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. text-align:right;
  5676. }
  5677. #u51373 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:5px 0px 5px 0px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u51373_text {
  5685. border-width:0px;
  5686. white-space:nowrap;
  5687. text-transform:none;
  5688. }
  5689. #u51374_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:50px;
  5695. height:31px;
  5696. }
  5697. #u51374 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:2539px;
  5701. top:169px;
  5702. width:50px;
  5703. height:31px;
  5704. display:flex;
  5705. }
  5706. #u51374 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 2px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u51374_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u51375_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:917px;
  5725. height:2px;
  5726. }
  5727. #u51375 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:1994px;
  5731. top:220px;
  5732. width:916px;
  5733. height:1px;
  5734. display:flex;
  5735. }
  5736. #u51375 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u51375_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u51376_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:80px;
  5755. height:30px;
  5756. background:inherit;
  5757. background-color:rgba(24, 144, 255, 1);
  5758. border:none;
  5759. border-radius:4px;
  5760. -moz-box-shadow:none;
  5761. -webkit-box-shadow:none;
  5762. box-shadow:none;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:14px;
  5767. color:#FFFFFF;
  5768. }
  5769. #u51376 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:657px;
  5773. top:806px;
  5774. width:80px;
  5775. height:30px;
  5776. display:flex;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:14px;
  5781. color:#FFFFFF;
  5782. }
  5783. #u51376 .text {
  5784. position:absolute;
  5785. align-self:center;
  5786. padding:2px 2px 2px 2px;
  5787. box-sizing:border-box;
  5788. width:100%;
  5789. }
  5790. #u51376_text {
  5791. border-width:0px;
  5792. word-wrap:break-word;
  5793. text-transform:none;
  5794. }
  5795. #u51377_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:80px;
  5801. height:30px;
  5802. background:inherit;
  5803. background-color:rgba(24, 144, 255, 1);
  5804. border:none;
  5805. border-radius:4px;
  5806. -moz-box-shadow:none;
  5807. -webkit-box-shadow:none;
  5808. box-shadow:none;
  5809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:14px;
  5813. color:#FFFFFF;
  5814. }
  5815. #u51377 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:1994px;
  5819. top:670px;
  5820. width:80px;
  5821. height:30px;
  5822. display:flex;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:14px;
  5827. color:#FFFFFF;
  5828. }
  5829. #u51377 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u51377_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. }
  5841. #u51378_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:225px;
  5847. height:30px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 0);
  5850. border:none;
  5851. border-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:14px;
  5859. color:#D9001B;
  5860. line-height:30px;
  5861. }
  5862. #u51378 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:968px;
  5866. top:410px;
  5867. width:225px;
  5868. height:30px;
  5869. display:flex;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. color:#D9001B;
  5875. line-height:30px;
  5876. }
  5877. #u51378 .text {
  5878. position:absolute;
  5879. align-self:flex-start;
  5880. padding:0px 0px 0px 0px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u51378_text {
  5885. border-width:0px;
  5886. white-space:nowrap;
  5887. text-transform:none;
  5888. }
  5889. #u51379_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:57px;
  5895. height:30px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 0);
  5898. border:none;
  5899. border-radius:0px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:14px;
  5907. color:#000000;
  5908. line-height:30px;
  5909. }
  5910. #u51379 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:1994px;
  5914. top:419px;
  5915. width:57px;
  5916. height:30px;
  5917. display:flex;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:14px;
  5922. color:#000000;
  5923. line-height:30px;
  5924. }
  5925. #u51379 .text {
  5926. position:absolute;
  5927. align-self:flex-start;
  5928. padding:0px 0px 0px 0px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u51379_text {
  5933. border-width:0px;
  5934. white-space:nowrap;
  5935. text-transform:none;
  5936. }
  5937. #u51380_div {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:80px;
  5943. height:30px;
  5944. background:inherit;
  5945. background-color:rgba(255, 255, 255, 1);
  5946. box-sizing:border-box;
  5947. border-width:1px;
  5948. border-style:solid;
  5949. border-color:rgba(121, 121, 121, 1);
  5950. border-radius:4px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:14px;
  5958. }
  5959. #u51380 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:2065px;
  5963. top:419px;
  5964. width:80px;
  5965. height:30px;
  5966. display:flex;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:14px;
  5971. }
  5972. #u51380 .text {
  5973. position:absolute;
  5974. align-self:center;
  5975. padding:2px 2px 2px 2px;
  5976. box-sizing:border-box;
  5977. width:100%;
  5978. }
  5979. #u51380_text {
  5980. border-width:0px;
  5981. word-wrap:break-word;
  5982. text-transform:none;
  5983. }
  5984. #u51381 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:1994px;
  5988. top:459px;
  5989. width:916px;
  5990. height:160px;
  5991. }
  5992. #u51382_img {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:47px;
  5998. height:40px;
  5999. }
  6000. #u51382 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:47px;
  6006. height:40px;
  6007. display:flex;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:14px;
  6012. }
  6013. #u51382 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 0px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u51382_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. }
  6025. #u51383_img {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:118px;
  6031. height:40px;
  6032. }
  6033. #u51383 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:47px;
  6037. top:0px;
  6038. width:118px;
  6039. height:40px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:14px;
  6045. }
  6046. #u51383 .text {
  6047. position:absolute;
  6048. align-self:center;
  6049. padding:2px 2px 2px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u51383_text {
  6054. border-width:0px;
  6055. word-wrap:break-word;
  6056. text-transform:none;
  6057. }
  6058. #u51384_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:146px;
  6064. height:40px;
  6065. }
  6066. #u51384 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:165px;
  6070. top:0px;
  6071. width:146px;
  6072. height:40px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:14px;
  6078. }
  6079. #u51384 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:2px 2px 2px 0px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u51384_text {
  6087. border-width:0px;
  6088. word-wrap:break-word;
  6089. text-transform:none;
  6090. }
  6091. #u51385_img {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:146px;
  6097. height:40px;
  6098. }
  6099. #u51385 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:311px;
  6103. top:0px;
  6104. width:146px;
  6105. height:40px;
  6106. display:flex;
  6107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. }
  6112. #u51385 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 0px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u51385_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. }
  6124. #u51386_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:146px;
  6130. height:40px;
  6131. }
  6132. #u51386 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:457px;
  6136. top:0px;
  6137. width:146px;
  6138. height:40px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. }
  6145. #u51386 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u51386_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. }
  6157. #u51387_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:131px;
  6163. height:40px;
  6164. }
  6165. #u51387 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:603px;
  6169. top:0px;
  6170. width:131px;
  6171. height:40px;
  6172. display:flex;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:14px;
  6177. }
  6178. #u51387 .text {
  6179. position:absolute;
  6180. align-self:center;
  6181. padding:2px 2px 2px 0px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u51387_text {
  6186. border-width:0px;
  6187. word-wrap:break-word;
  6188. text-transform:none;
  6189. }
  6190. #u51388_img {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:182px;
  6196. height:40px;
  6197. }
  6198. #u51388 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:734px;
  6202. top:0px;
  6203. width:182px;
  6204. height:40px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:14px;
  6210. }
  6211. #u51388 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u51388_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. }
  6223. #u51389_img {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:47px;
  6229. height:40px;
  6230. }
  6231. #u51389 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:40px;
  6236. width:47px;
  6237. height:40px;
  6238. display:flex;
  6239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:12px;
  6243. color:#333333;
  6244. }
  6245. #u51389 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:2px 2px 2px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u51389_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. }
  6257. #u51390_img {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:118px;
  6263. height:40px;
  6264. }
  6265. #u51390 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:47px;
  6269. top:40px;
  6270. width:118px;
  6271. height:40px;
  6272. display:flex;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. color:#333333;
  6278. }
  6279. #u51390 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 2px 2px 0px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u51390_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. }
  6291. #u51391_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:146px;
  6297. height:40px;
  6298. }
  6299. #u51391 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:165px;
  6303. top:40px;
  6304. width:146px;
  6305. height:40px;
  6306. display:flex;
  6307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:12px;
  6311. color:#333333;
  6312. }
  6313. #u51391 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 0px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u51391_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. }
  6325. #u51392_img {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:146px;
  6331. height:40px;
  6332. }
  6333. #u51392 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:311px;
  6337. top:40px;
  6338. width:146px;
  6339. height:40px;
  6340. display:flex;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. color:#333333;
  6346. }
  6347. #u51392 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:2px 2px 2px 0px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u51392_text {
  6355. border-width:0px;
  6356. word-wrap:break-word;
  6357. text-transform:none;
  6358. }
  6359. #u51393_img {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:146px;
  6365. height:40px;
  6366. }
  6367. #u51393 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:457px;
  6371. top:40px;
  6372. width:146px;
  6373. height:40px;
  6374. display:flex;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:12px;
  6379. color:#333333;
  6380. }
  6381. #u51393 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:2px 2px 2px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u51393_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. }
  6393. #u51394_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:131px;
  6399. height:40px;
  6400. }
  6401. #u51394 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:603px;
  6405. top:40px;
  6406. width:131px;
  6407. height:40px;
  6408. display:flex;
  6409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. font-size:12px;
  6413. color:#333333;
  6414. }
  6415. #u51394 .text {
  6416. position:absolute;
  6417. align-self:center;
  6418. padding:2px 2px 2px 0px;
  6419. box-sizing:border-box;
  6420. width:100%;
  6421. }
  6422. #u51394_text {
  6423. border-width:0px;
  6424. word-wrap:break-word;
  6425. text-transform:none;
  6426. visibility:hidden;
  6427. }
  6428. #u51395_img {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:182px;
  6434. height:40px;
  6435. }
  6436. #u51395 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:734px;
  6440. top:40px;
  6441. width:182px;
  6442. height:40px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:12px;
  6448. color:#1890FF;
  6449. }
  6450. #u51395 .text {
  6451. position:absolute;
  6452. align-self:center;
  6453. padding:2px 2px 2px 0px;
  6454. box-sizing:border-box;
  6455. width:100%;
  6456. }
  6457. #u51395_text {
  6458. border-width:0px;
  6459. word-wrap:break-word;
  6460. text-transform:none;
  6461. }
  6462. #u51396_img {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:47px;
  6468. height:40px;
  6469. }
  6470. #u51396 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:80px;
  6475. width:47px;
  6476. height:40px;
  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:#333333;
  6483. }
  6484. #u51396 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 0px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u51396_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. }
  6496. #u51397_img {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:118px;
  6502. height:40px;
  6503. }
  6504. #u51397 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:47px;
  6508. top:80px;
  6509. width:118px;
  6510. height:40px;
  6511. display:flex;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:12px;
  6516. color:#333333;
  6517. }
  6518. #u51397 .text {
  6519. position:absolute;
  6520. align-self:center;
  6521. padding:2px 2px 2px 0px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u51397_text {
  6526. border-width:0px;
  6527. word-wrap:break-word;
  6528. text-transform:none;
  6529. visibility:hidden;
  6530. }
  6531. #u51398_img {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:146px;
  6537. height:40px;
  6538. }
  6539. #u51398 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:165px;
  6543. top:80px;
  6544. width:146px;
  6545. height:40px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:12px;
  6551. color:#333333;
  6552. }
  6553. #u51398 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:2px 2px 2px 0px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u51398_text {
  6561. border-width:0px;
  6562. word-wrap:break-word;
  6563. text-transform:none;
  6564. visibility:hidden;
  6565. }
  6566. #u51399_img {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:146px;
  6572. height:40px;
  6573. }
  6574. #u51399 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:311px;
  6578. top:80px;
  6579. width:146px;
  6580. height:40px;
  6581. display:flex;
  6582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:12px;
  6586. color:#333333;
  6587. }
  6588. #u51399 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:2px 2px 2px 0px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u51399_text {
  6596. border-width:0px;
  6597. word-wrap:break-word;
  6598. text-transform:none;
  6599. visibility:hidden;
  6600. }
  6601. #u51400_img {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:146px;
  6607. height:40px;
  6608. }
  6609. #u51400 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:457px;
  6613. top:80px;
  6614. width:146px;
  6615. height:40px;
  6616. display:flex;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:12px;
  6621. color:#333333;
  6622. }
  6623. #u51400 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 2px 2px 0px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u51400_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. visibility:hidden;
  6635. }
  6636. #u51401_img {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:131px;
  6642. height:40px;
  6643. }
  6644. #u51401 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:603px;
  6648. top:80px;
  6649. width:131px;
  6650. height:40px;
  6651. display:flex;
  6652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6653. font-weight:400;
  6654. font-style:normal;
  6655. font-size:12px;
  6656. color:#333333;
  6657. }
  6658. #u51401 .text {
  6659. position:absolute;
  6660. align-self:center;
  6661. padding:2px 2px 2px 0px;
  6662. box-sizing:border-box;
  6663. width:100%;
  6664. }
  6665. #u51401_text {
  6666. border-width:0px;
  6667. word-wrap:break-word;
  6668. text-transform:none;
  6669. visibility:hidden;
  6670. }
  6671. #u51402_img {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:182px;
  6677. height:40px;
  6678. }
  6679. #u51402 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:734px;
  6683. top:80px;
  6684. width:182px;
  6685. height:40px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:12px;
  6691. color:#1890FF;
  6692. }
  6693. #u51402 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u51402_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u51403_img {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:47px;
  6712. height:40px;
  6713. }
  6714. #u51403 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:120px;
  6719. width:47px;
  6720. height:40px;
  6721. display:flex;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:12px;
  6726. color:#333333;
  6727. }
  6728. #u51403 .text {
  6729. position:absolute;
  6730. align-self:center;
  6731. padding:2px 2px 2px 0px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u51403_text {
  6736. border-width:0px;
  6737. word-wrap:break-word;
  6738. text-transform:none;
  6739. }
  6740. #u51404_img {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:118px;
  6746. height:40px;
  6747. }
  6748. #u51404 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:47px;
  6752. top:120px;
  6753. width:118px;
  6754. height:40px;
  6755. display:flex;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:12px;
  6760. color:#333333;
  6761. }
  6762. #u51404 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 2px 2px 0px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u51404_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. visibility:hidden;
  6774. }
  6775. #u51405_img {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:146px;
  6781. height:40px;
  6782. }
  6783. #u51405 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:165px;
  6787. top:120px;
  6788. width:146px;
  6789. height:40px;
  6790. display:flex;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:12px;
  6795. color:#333333;
  6796. }
  6797. #u51405 .text {
  6798. position:absolute;
  6799. align-self:center;
  6800. padding:2px 2px 2px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u51405_text {
  6805. border-width:0px;
  6806. word-wrap:break-word;
  6807. text-transform:none;
  6808. visibility:hidden;
  6809. }
  6810. #u51406_img {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:146px;
  6816. height:40px;
  6817. }
  6818. #u51406 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:311px;
  6822. top:120px;
  6823. width:146px;
  6824. height:40px;
  6825. display:flex;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:12px;
  6830. color:#333333;
  6831. }
  6832. #u51406 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:2px 2px 2px 0px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u51406_text {
  6840. border-width:0px;
  6841. word-wrap:break-word;
  6842. text-transform:none;
  6843. visibility:hidden;
  6844. }
  6845. #u51407_img {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:146px;
  6851. height:40px;
  6852. }
  6853. #u51407 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:457px;
  6857. top:120px;
  6858. width:146px;
  6859. height:40px;
  6860. display:flex;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:12px;
  6865. color:#333333;
  6866. }
  6867. #u51407 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:2px 2px 2px 0px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u51407_text {
  6875. border-width:0px;
  6876. word-wrap:break-word;
  6877. text-transform:none;
  6878. visibility:hidden;
  6879. }
  6880. #u51408_img {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:131px;
  6886. height:40px;
  6887. }
  6888. #u51408 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:603px;
  6892. top:120px;
  6893. width:131px;
  6894. height:40px;
  6895. display:flex;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. color:#333333;
  6901. }
  6902. #u51408 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:2px 2px 2px 0px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u51408_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. visibility:hidden;
  6914. }
  6915. #u51409_img {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:182px;
  6921. height:40px;
  6922. }
  6923. #u51409 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:734px;
  6927. top:120px;
  6928. width:182px;
  6929. height:40px;
  6930. display:flex;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:12px;
  6935. color:#1890FF;
  6936. }
  6937. #u51409 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 0px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u51409_text {
  6945. border-width:0px;
  6946. word-wrap:break-word;
  6947. text-transform:none;
  6948. visibility:hidden;
  6949. }
  6950. #u51410_div {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:219px;
  6956. height:30px;
  6957. background:inherit;
  6958. background-color:rgba(24, 144, 255, 1);
  6959. border:none;
  6960. border-radius:4px;
  6961. -moz-box-shadow:none;
  6962. -webkit-box-shadow:none;
  6963. box-shadow:none;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:14px;
  6968. color:#FFFFFF;
  6969. }
  6970. #u51410 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:369px;
  6974. top:1166px;
  6975. width:219px;
  6976. height:30px;
  6977. display:flex;
  6978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. font-size:14px;
  6982. color:#FFFFFF;
  6983. }
  6984. #u51410 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:2px 2px 2px 2px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u51410_text {
  6992. border-width:0px;
  6993. word-wrap:break-word;
  6994. text-transform:none;
  6995. }
  6996. #u51411_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:219px;
  7002. height:30px;
  7003. background:inherit;
  7004. background-color:rgba(24, 144, 255, 1);
  7005. border:none;
  7006. border-radius:4px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:14px;
  7014. color:#FFFFFF;
  7015. }
  7016. #u51411 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:1713px;
  7020. top:1166px;
  7021. width:219px;
  7022. height:30px;
  7023. display:flex;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:14px;
  7028. color:#FFFFFF;
  7029. }
  7030. #u51411 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:2px 2px 2px 2px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u51411_text {
  7038. border-width:0px;
  7039. word-wrap:break-word;
  7040. text-transform:none;
  7041. }
  7042. #u51412_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:443px;
  7048. height:30px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:14px;
  7060. color:#D9001B;
  7061. line-height:30px;
  7062. }
  7063. #u51412 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:827px;
  7067. top:561px;
  7068. width:443px;
  7069. height:30px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. color:#D9001B;
  7076. line-height:30px;
  7077. }
  7078. #u51412 .text {
  7079. position:absolute;
  7080. align-self:flex-start;
  7081. padding:0px 0px 0px 0px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u51412_text {
  7086. border-width:0px;
  7087. white-space:nowrap;
  7088. text-transform:none;
  7089. }
  7090. #u51413 {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:0px;
  7096. height:0px;
  7097. }
  7098. #u51414_div {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:200px;
  7104. height:1193px;
  7105. background:inherit;
  7106. background-color:rgba(255, 255, 255, 1);
  7107. border:none;
  7108. border-radius:0px;
  7109. -moz-box-shadow:none;
  7110. -webkit-box-shadow:none;
  7111. box-shadow:none;
  7112. }
  7113. #u51414 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:120px;
  7117. top:50px;
  7118. width:200px;
  7119. height:1193px;
  7120. display:flex;
  7121. }
  7122. #u51414 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 2px 2px 2px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u51414_text {
  7130. border-width:0px;
  7131. word-wrap:break-word;
  7132. text-transform:none;
  7133. visibility:hidden;
  7134. }
  7135. #u51415_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:200px;
  7141. height:60px;
  7142. background:inherit;
  7143. background-color:rgba(224, 231, 247, 1);
  7144. border:none;
  7145. border-radius:0px;
  7146. -moz-box-shadow:none;
  7147. -webkit-box-shadow:none;
  7148. box-shadow:none;
  7149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7150. font-weight:500;
  7151. font-style:normal;
  7152. font-size:18px;
  7153. }
  7154. #u51415 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:120px;
  7158. top:50px;
  7159. width:200px;
  7160. height:60px;
  7161. display:flex;
  7162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7163. font-weight:500;
  7164. font-style:normal;
  7165. font-size:18px;
  7166. }
  7167. #u51415 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:0px 0px 0px 20px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u51415_text {
  7175. border-width:0px;
  7176. word-wrap:break-word;
  7177. text-transform:none;
  7178. }
  7179. #u51416_div {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:97px;
  7185. height:22px;
  7186. background:inherit;
  7187. background-color:rgba(255, 255, 255, 0);
  7188. border:none;
  7189. border-radius:0px;
  7190. -moz-box-shadow:none;
  7191. -webkit-box-shadow:none;
  7192. box-shadow:none;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:16px;
  7197. }
  7198. #u51416 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:147px;
  7202. top:387px;
  7203. width:97px;
  7204. height:22px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:16px;
  7210. }
  7211. #u51416 .text {
  7212. position:absolute;
  7213. align-self:flex-start;
  7214. padding:0px 0px 0px 0px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u51416_text {
  7219. border-width:0px;
  7220. word-wrap:break-word;
  7221. text-transform:none;
  7222. }
  7223. #u51417_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:97px;
  7229. height:22px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 0);
  7232. border:none;
  7233. border-radius:0px;
  7234. -moz-box-shadow:none;
  7235. -webkit-box-shadow:none;
  7236. box-shadow:none;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:16px;
  7241. }
  7242. #u51417 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:147px;
  7246. top:166px;
  7247. width:97px;
  7248. height:22px;
  7249. display:flex;
  7250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:16px;
  7254. }
  7255. #u51417 .text {
  7256. position:absolute;
  7257. align-self:flex-start;
  7258. padding:0px 0px 0px 0px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u51417_text {
  7263. border-width:0px;
  7264. word-wrap:break-word;
  7265. text-transform:none;
  7266. }
  7267. #u51418_div {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:49px;
  7273. height:17px;
  7274. background:inherit;
  7275. background-color:rgba(255, 255, 255, 0);
  7276. border:none;
  7277. border-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:12px;
  7285. color:#AAAAAA;
  7286. }
  7287. #u51418 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:147px;
  7291. top:130px;
  7292. width:49px;
  7293. height:17px;
  7294. display:flex;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:12px;
  7299. color:#AAAAAA;
  7300. }
  7301. #u51418 .text {
  7302. position:absolute;
  7303. align-self:flex-start;
  7304. padding:0px 0px 0px 0px;
  7305. box-sizing:border-box;
  7306. width:100%;
  7307. }
  7308. #u51418_text {
  7309. border-width:0px;
  7310. white-space:nowrap;
  7311. text-transform:none;
  7312. }
  7313. #u51419_div {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:97px;
  7319. height:22px;
  7320. background:inherit;
  7321. background-color:rgba(255, 255, 255, 0);
  7322. border:none;
  7323. border-radius:0px;
  7324. -moz-box-shadow:none;
  7325. -webkit-box-shadow:none;
  7326. box-shadow:none;
  7327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:16px;
  7331. }
  7332. #u51419 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:147px;
  7336. top:208px;
  7337. width:97px;
  7338. height:22px;
  7339. display:flex;
  7340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:16px;
  7344. }
  7345. #u51419 .text {
  7346. position:absolute;
  7347. align-self:flex-start;
  7348. padding:0px 0px 0px 0px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u51419_text {
  7353. border-width:0px;
  7354. word-wrap:break-word;
  7355. text-transform:none;
  7356. }
  7357. #u51420_img {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:201px;
  7363. height:2px;
  7364. }
  7365. #u51420 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:120px;
  7369. top:246px;
  7370. width:200px;
  7371. height:1px;
  7372. display:flex;
  7373. }
  7374. #u51420 .text {
  7375. position:absolute;
  7376. align-self:center;
  7377. padding:2px 2px 2px 2px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u51420_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. visibility:hidden;
  7386. }
  7387. #u51421_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:97px;
  7393. height:22px;
  7394. background:inherit;
  7395. background-color:rgba(255, 255, 255, 0);
  7396. border:none;
  7397. border-radius:0px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:16px;
  7405. }
  7406. #u51421 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:147px;
  7410. top:569px;
  7411. width:97px;
  7412. height:22px;
  7413. display:flex;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:16px;
  7418. }
  7419. #u51421 .text {
  7420. position:absolute;
  7421. align-self:flex-start;
  7422. padding:0px 0px 0px 0px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u51421_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. }
  7431. #u51422_div {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:49px;
  7437. height:17px;
  7438. background:inherit;
  7439. background-color:rgba(255, 255, 255, 0);
  7440. border:none;
  7441. border-radius:0px;
  7442. -moz-box-shadow:none;
  7443. -webkit-box-shadow:none;
  7444. box-shadow:none;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:12px;
  7449. color:#AAAAAA;
  7450. }
  7451. #u51422 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:147px;
  7455. top:533px;
  7456. width:49px;
  7457. height:17px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:12px;
  7463. color:#AAAAAA;
  7464. }
  7465. #u51422 .text {
  7466. position:absolute;
  7467. align-self:flex-start;
  7468. padding:0px 0px 0px 0px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u51422_text {
  7473. border-width:0px;
  7474. white-space:nowrap;
  7475. text-transform:none;
  7476. }
  7477. #u51423_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:97px;
  7483. height:22px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 0);
  7486. border:none;
  7487. border-radius:0px;
  7488. -moz-box-shadow:none;
  7489. -webkit-box-shadow:none;
  7490. box-shadow:none;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:16px;
  7495. }
  7496. #u51423 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:147px;
  7500. top:754px;
  7501. width:97px;
  7502. height:22px;
  7503. display:flex;
  7504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:16px;
  7508. }
  7509. #u51423 .text {
  7510. position:absolute;
  7511. align-self:flex-start;
  7512. padding:0px 0px 0px 0px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u51423_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. }
  7521. #u51424_img {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:201px;
  7527. height:2px;
  7528. }
  7529. #u51424 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:120px;
  7533. top:655px;
  7534. width:200px;
  7535. height:1px;
  7536. display:flex;
  7537. }
  7538. #u51424 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:2px 2px 2px 2px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u51424_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. visibility:hidden;
  7550. }
  7551. #u51425_div {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:97px;
  7557. height:22px;
  7558. background:inherit;
  7559. background-color:rgba(255, 255, 255, 0);
  7560. border:none;
  7561. border-radius:0px;
  7562. -moz-box-shadow:none;
  7563. -webkit-box-shadow:none;
  7564. box-shadow:none;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. font-size:16px;
  7569. }
  7570. #u51425 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:147px;
  7574. top:712px;
  7575. width:97px;
  7576. height:22px;
  7577. display:flex;
  7578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:16px;
  7582. }
  7583. #u51425 .text {
  7584. position:absolute;
  7585. align-self:flex-start;
  7586. padding:0px 0px 0px 0px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u51425_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. }
  7595. #u51426_div {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:49px;
  7601. height:17px;
  7602. background:inherit;
  7603. background-color:rgba(255, 255, 255, 0);
  7604. border:none;
  7605. border-radius:0px;
  7606. -moz-box-shadow:none;
  7607. -webkit-box-shadow:none;
  7608. box-shadow:none;
  7609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7610. font-weight:400;
  7611. font-style:normal;
  7612. font-size:12px;
  7613. color:#AAAAAA;
  7614. }
  7615. #u51426 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:147px;
  7619. top:676px;
  7620. width:49px;
  7621. height:17px;
  7622. display:flex;
  7623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7624. font-weight:400;
  7625. font-style:normal;
  7626. font-size:12px;
  7627. color:#AAAAAA;
  7628. }
  7629. #u51426 .text {
  7630. position:absolute;
  7631. align-self:flex-start;
  7632. padding:0px 0px 0px 0px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u51426_text {
  7637. border-width:0px;
  7638. white-space:nowrap;
  7639. text-transform:none;
  7640. }
  7641. #u51427_div {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:97px;
  7647. height:22px;
  7648. background:inherit;
  7649. background-color:rgba(255, 255, 255, 0);
  7650. border:none;
  7651. border-radius:0px;
  7652. -moz-box-shadow:none;
  7653. -webkit-box-shadow:none;
  7654. box-shadow:none;
  7655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:16px;
  7659. }
  7660. #u51427 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:147px;
  7664. top:895px;
  7665. width:97px;
  7666. height:22px;
  7667. display:flex;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:16px;
  7672. }
  7673. #u51427 .text {
  7674. position:absolute;
  7675. align-self:flex-start;
  7676. padding:0px 0px 0px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u51427_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. }
  7685. #u51428_div {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:97px;
  7691. height:22px;
  7692. background:inherit;
  7693. background-color:rgba(255, 255, 255, 0);
  7694. border:none;
  7695. border-radius:0px;
  7696. -moz-box-shadow:none;
  7697. -webkit-box-shadow:none;
  7698. box-shadow:none;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:16px;
  7703. }
  7704. #u51428 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:147px;
  7708. top:937px;
  7709. width:97px;
  7710. height:22px;
  7711. display:flex;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:16px;
  7716. }
  7717. #u51428 .text {
  7718. position:absolute;
  7719. align-self:flex-start;
  7720. padding:0px 0px 0px 0px;
  7721. box-sizing:border-box;
  7722. width:100%;
  7723. }
  7724. #u51428_text {
  7725. border-width:0px;
  7726. white-space:nowrap;
  7727. text-transform:none;
  7728. }
  7729. #u51429_img {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:0px;
  7733. top:0px;
  7734. width:201px;
  7735. height:2px;
  7736. }
  7737. #u51429 {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:120px;
  7741. top:796px;
  7742. width:200px;
  7743. height:1px;
  7744. display:flex;
  7745. }
  7746. #u51429 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u51429_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u51430_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:97px;
  7765. height:22px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 0);
  7768. border:none;
  7769. border-radius:0px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:16px;
  7777. }
  7778. #u51430 {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:147px;
  7782. top:853px;
  7783. width:97px;
  7784. height:22px;
  7785. display:flex;
  7786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7787. font-weight:400;
  7788. font-style:normal;
  7789. font-size:16px;
  7790. }
  7791. #u51430 .text {
  7792. position:absolute;
  7793. align-self:flex-start;
  7794. padding:0px 0px 0px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u51430_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. }
  7803. #u51431_div {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:49px;
  7809. height:17px;
  7810. background:inherit;
  7811. background-color:rgba(255, 255, 255, 0);
  7812. border:none;
  7813. border-radius:0px;
  7814. -moz-box-shadow:none;
  7815. -webkit-box-shadow:none;
  7816. box-shadow:none;
  7817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7818. font-weight:400;
  7819. font-style:normal;
  7820. font-size:12px;
  7821. color:#AAAAAA;
  7822. }
  7823. #u51431 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:147px;
  7827. top:817px;
  7828. width:49px;
  7829. height:17px;
  7830. display:flex;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:12px;
  7835. color:#AAAAAA;
  7836. }
  7837. #u51431 .text {
  7838. position:absolute;
  7839. align-self:flex-start;
  7840. padding:0px 0px 0px 0px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u51431_text {
  7845. border-width:0px;
  7846. white-space:nowrap;
  7847. text-transform:none;
  7848. }
  7849. #u51432_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:97px;
  7855. height:22px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-radius:0px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:16px;
  7867. }
  7868. #u51432 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:147px;
  7872. top:611px;
  7873. width:97px;
  7874. height:22px;
  7875. display:flex;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:16px;
  7880. }
  7881. #u51432 .text {
  7882. position:absolute;
  7883. align-self:flex-start;
  7884. padding:0px 0px 0px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u51432_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. }
  7893. #u51433_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:97px;
  7899. height:22px;
  7900. background:inherit;
  7901. background-color:rgba(255, 255, 255, 0);
  7902. border:none;
  7903. border-radius:0px;
  7904. -moz-box-shadow:none;
  7905. -webkit-box-shadow:none;
  7906. box-shadow:none;
  7907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:16px;
  7911. }
  7912. #u51433 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:147px;
  7916. top:303px;
  7917. width:97px;
  7918. height:22px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:16px;
  7924. }
  7925. #u51433 .text {
  7926. position:absolute;
  7927. align-self:flex-start;
  7928. padding:0px 0px 0px 0px;
  7929. box-sizing:border-box;
  7930. width:100%;
  7931. }
  7932. #u51433_text {
  7933. border-width:0px;
  7934. word-wrap:break-word;
  7935. text-transform:none;
  7936. }
  7937. #u51434_div {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:0px;
  7941. top:0px;
  7942. width:49px;
  7943. height:17px;
  7944. background:inherit;
  7945. background-color:rgba(255, 255, 255, 0);
  7946. border:none;
  7947. border-radius:0px;
  7948. -moz-box-shadow:none;
  7949. -webkit-box-shadow:none;
  7950. box-shadow:none;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:12px;
  7955. color:#AAAAAA;
  7956. }
  7957. #u51434 {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:147px;
  7961. top:267px;
  7962. width:49px;
  7963. height:17px;
  7964. display:flex;
  7965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:12px;
  7969. color:#AAAAAA;
  7970. }
  7971. #u51434 .text {
  7972. position:absolute;
  7973. align-self:flex-start;
  7974. padding:0px 0px 0px 0px;
  7975. box-sizing:border-box;
  7976. width:100%;
  7977. }
  7978. #u51434_text {
  7979. border-width:0px;
  7980. white-space:nowrap;
  7981. text-transform:none;
  7982. }
  7983. #u51435_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:97px;
  7989. height:22px;
  7990. background:inherit;
  7991. background-color:rgba(255, 255, 255, 0);
  7992. border:none;
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:16px;
  8001. }
  8002. #u51435 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:147px;
  8006. top:345px;
  8007. width:97px;
  8008. height:22px;
  8009. display:flex;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:16px;
  8014. }
  8015. #u51435 .text {
  8016. position:absolute;
  8017. align-self:flex-start;
  8018. padding:0px 0px 0px 0px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u51435_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. }
  8027. #u51436_img {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:201px;
  8033. height:2px;
  8034. }
  8035. #u51436 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:120px;
  8039. top:514px;
  8040. width:200px;
  8041. height:1px;
  8042. display:flex;
  8043. }
  8044. #u51436 .text {
  8045. position:absolute;
  8046. align-self:center;
  8047. padding:2px 2px 2px 2px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u51436_text {
  8052. border-width:0px;
  8053. word-wrap:break-word;
  8054. text-transform:none;
  8055. visibility:hidden;
  8056. }
  8057. #u51437_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:97px;
  8063. height:22px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 0);
  8066. border:none;
  8067. border-radius:0px;
  8068. -moz-box-shadow:none;
  8069. -webkit-box-shadow:none;
  8070. box-shadow:none;
  8071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:16px;
  8075. }
  8076. #u51437 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:147px;
  8080. top:429px;
  8081. width:97px;
  8082. height:22px;
  8083. display:flex;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:16px;
  8088. }
  8089. #u51437 .text {
  8090. position:absolute;
  8091. align-self:flex-start;
  8092. padding:0px 0px 0px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u51437_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. }
  8101. #u51438_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:97px;
  8107. height:22px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 0);
  8110. border:none;
  8111. border-radius:0px;
  8112. -moz-box-shadow:none;
  8113. -webkit-box-shadow:none;
  8114. box-shadow:none;
  8115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8116. font-weight:400;
  8117. font-style:normal;
  8118. font-size:16px;
  8119. }
  8120. #u51438 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:147px;
  8124. top:471px;
  8125. width:97px;
  8126. height:22px;
  8127. display:flex;
  8128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. font-size:16px;
  8132. }
  8133. #u51438 .text {
  8134. position:absolute;
  8135. align-self:flex-start;
  8136. padding:0px 0px 0px 0px;
  8137. box-sizing:border-box;
  8138. width:100%;
  8139. }
  8140. #u51438_text {
  8141. border-width:0px;
  8142. white-space:nowrap;
  8143. text-transform:none;
  8144. }