styles.css 140 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874
  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. #u51195_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. #u51195 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u51195 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u51195_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u51196_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. #u51196 {
  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. #u51196 .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. #u51196_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u51197_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. #u51197 {
  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. #u51197 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u51197_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u51198 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u51199_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u51199 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u51199 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u51199_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u51200_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. #u51200 {
  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. #u51200 .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. #u51200_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u51201_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. #u51201 {
  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. #u51201 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u51201_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u51202 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u51203_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. #u51203_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. #u51203_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. #u51203 {
  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. #u51203 .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. #u51203_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. #u51203.disabled {
  356. }
  357. .u51203_input_option {
  358. font-size:14px;
  359. }
  360. #u51204_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u51204 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u51204 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u51204_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51205_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. #u51205 {
  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. #u51205 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u51205_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u51206_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. #u51206 {
  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. #u51206 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u51206_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u51207 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u51208_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. #u51208 {
  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. #u51208 .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. #u51208_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u51209_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u51209 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u51209 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u51209_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u51210 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u51211_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. #u51211 {
  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. #u51211 .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. #u51211_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u51212_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u51212 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u51212 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u51212_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u51213 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u51214_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. #u51214 {
  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. #u51214 .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. #u51214_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u51215_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u51215 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u51215 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u51215_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u51216 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u51217_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. #u51217 {
  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. #u51217 .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. #u51217_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u51218_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u51218 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u51218 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u51218_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u51219 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u51220_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. #u51220 {
  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. #u51220 .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. #u51220_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u51221_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u51221 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u51221 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u51221_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u51222 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u51223_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. #u51223 {
  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. #u51223 .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. #u51223_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u51224_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u51224 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u51224 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u51224_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u51225 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u51226_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. #u51226 {
  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. #u51226 .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. #u51226_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u51227_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u51227 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u51227 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u51227_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u51228 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u51229_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. #u51229 {
  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. #u51229 .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. #u51229_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u51230_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u51230 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u51230 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u51230_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51231 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u51232_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. #u51232 {
  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. #u51232 .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. #u51232_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u51233_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u51233 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u51233 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u51233_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u51234 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u51235_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. #u51235 {
  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. #u51235 .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. #u51235_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u51236_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u51236 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u51236 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u51236_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u51237_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. #u51237 {
  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. #u51237 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u51237_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u51238_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u51238 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u51238 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u51238_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u51239_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. #u51239 {
  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. #u51239 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u51239_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u51240_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u51240 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u51240 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u51240_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u51241 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u51242_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. #u51242 {
  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. #u51242 .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. #u51242_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u51243_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u51243 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u51243 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u51243_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u51244 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u51245_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. #u51245 {
  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. #u51245 .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. #u51245_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u51246_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u51246 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u51246 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u51246_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u51247_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. #u51247 {
  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. #u51247 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u51247_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u51248_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. #u51248 {
  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. #u51248 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u51248_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u51249_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. #u51249 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:348px;
  1753. top:110px;
  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. #u51249 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:5px 15px 5px 15px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u51249_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u51250_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. #u51250 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:435px;
  1802. top:110px;
  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. #u51250 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:5px 15px 5px 15px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u51250_text {
  1820. border-width:0px;
  1821. white-space:nowrap;
  1822. text-transform:none;
  1823. }
  1824. #u51251_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. #u51251 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:348px;
  1843. top:160px;
  1844. width:280px;
  1845. height:1056px;
  1846. display:flex;
  1847. }
  1848. #u51251 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u51251_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. visibility:hidden;
  1860. }
  1861. #u51252 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:0px;
  1867. height:0px;
  1868. }
  1869. #u51253_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. #u51253 {
  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. #u51253 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 8px 2px 8px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u51253_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u51254_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. #u51254 {
  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. #u51254 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:0px 0px 0px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u51254_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. }
  1964. #u51255_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. #u51255 {
  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. #u51255 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:0px 0px 0px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u51255_text {
  2006. border-width:0px;
  2007. word-wrap:break-word;
  2008. text-transform:none;
  2009. }
  2010. #u51256 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:0px;
  2016. height:0px;
  2017. }
  2018. #u51257_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. #u51257 {
  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. #u51257 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 8px 2px 8px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u51257_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u51258_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. #u51258 {
  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. #u51258 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:0px 0px 0px 0px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u51258_text {
  2109. border-width:0px;
  2110. word-wrap:break-word;
  2111. text-transform:none;
  2112. }
  2113. #u51259_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. #u51259 {
  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. #u51259 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:0px 0px 0px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u51259_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u51260 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:0px;
  2165. height:0px;
  2166. }
  2167. #u51261_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. #u51261 {
  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. #u51261 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 8px 2px 8px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u51261_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. visibility:hidden;
  2215. }
  2216. #u51262_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. #u51262 {
  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. #u51262 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u51262_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. }
  2262. #u51263_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. #u51263 {
  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. #u51263 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u51263_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. }
  2308. #u51264 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:0px;
  2314. height:0px;
  2315. }
  2316. #u51265_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. #u51265 {
  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. #u51265 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 8px 2px 8px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u51265_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u51266_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. #u51266_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. #u51266_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. #u51266 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:375px;
  2425. top:183px;
  2426. width:228px;
  2427. height:34px;
  2428. display:flex;
  2429. }
  2430. #u51266 .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. #u51266_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. #u51266.disabled {
  2453. }
  2454. .u51266_input_option {
  2455. }
  2456. #u51267_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. #u51267 {
  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. #u51267 .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. #u51267_text {
  2500. border-width:0px;
  2501. white-space:nowrap;
  2502. text-transform:none;
  2503. }
  2504. #u51268_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. #u51268 {
  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. #u51268 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u51268_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u51269 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:657px;
  2555. top:281px;
  2556. width:916px;
  2557. height:76px;
  2558. }
  2559. #u51270_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:686px;
  2565. height:38px;
  2566. }
  2567. #u51270 {
  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. #u51270 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u51270_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u51271_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:230px;
  2598. height:38px;
  2599. }
  2600. #u51271 {
  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. #u51271 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u51271_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. }
  2625. #u51272_img {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:686px;
  2631. height:38px;
  2632. }
  2633. #u51272 {
  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. #u51272 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 0px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u51272_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. }
  2659. #u51273_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:230px;
  2665. height:38px;
  2666. }
  2667. #u51273 {
  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. #u51273 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u51273_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u51274_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. #u51274 {
  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. #u51274 .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. #u51274_text {
  2738. border-width:0px;
  2739. white-space:nowrap;
  2740. text-transform:none;
  2741. }
  2742. #u51275_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. #u51275 {
  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. #u51275 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u51275_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u51276 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:657px;
  2793. top:450px;
  2794. width:916px;
  2795. height:76px;
  2796. }
  2797. #u51277_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:686px;
  2803. height:38px;
  2804. }
  2805. #u51277 {
  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. #u51277 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u51277_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u51278_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:230px;
  2836. height:38px;
  2837. }
  2838. #u51278 {
  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. #u51278 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u51278_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u51279_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:686px;
  2869. height:38px;
  2870. }
  2871. #u51279 {
  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. #u51279 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u51279_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u51280_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:230px;
  2903. height:38px;
  2904. }
  2905. #u51280 {
  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. #u51280 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 0px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u51280_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u51281_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. #u51281 {
  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. #u51281 .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. #u51281_text {
  2976. border-width:0px;
  2977. white-space:nowrap;
  2978. text-transform:none;
  2979. }
  2980. #u51282_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. #u51282 {
  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. #u51282 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u51282_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u51283 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:657px;
  3031. top:606px;
  3032. width:916px;
  3033. height:160px;
  3034. }
  3035. #u51284_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:47px;
  3041. height:40px;
  3042. }
  3043. #u51284 {
  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. #u51284 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u51284_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u51285_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:118px;
  3074. height:40px;
  3075. }
  3076. #u51285 {
  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. #u51285 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u51285_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u51286_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:146px;
  3107. height:40px;
  3108. }
  3109. #u51286 {
  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. #u51286 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u51286_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u51287_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:146px;
  3140. height:40px;
  3141. }
  3142. #u51287 {
  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. #u51287 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u51287_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. }
  3167. #u51288_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:146px;
  3173. height:40px;
  3174. }
  3175. #u51288 {
  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. #u51288 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u51288_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u51289_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:131px;
  3206. height:40px;
  3207. }
  3208. #u51289 {
  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. #u51289 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u51289_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. }
  3233. #u51290_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:182px;
  3239. height:40px;
  3240. }
  3241. #u51290 {
  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. #u51290 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u51290_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. }
  3266. #u51291_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:47px;
  3272. height:40px;
  3273. }
  3274. #u51291 {
  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. #u51291 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u51291_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. }
  3300. #u51292_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:118px;
  3306. height:40px;
  3307. }
  3308. #u51292 {
  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. #u51292 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u51292_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. }
  3334. #u51293_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:146px;
  3340. height:40px;
  3341. }
  3342. #u51293 {
  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. #u51293 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u51293_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. }
  3368. #u51294_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:146px;
  3374. height:40px;
  3375. }
  3376. #u51294 {
  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. #u51294 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u51294_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. }
  3402. #u51295_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:146px;
  3408. height:40px;
  3409. }
  3410. #u51295 {
  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. #u51295 .text {
  3425. position:absolute;
  3426. align-self:center;
  3427. padding:2px 2px 2px 0px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u51295_text {
  3432. border-width:0px;
  3433. word-wrap:break-word;
  3434. text-transform:none;
  3435. }
  3436. #u51296_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:131px;
  3442. height:40px;
  3443. }
  3444. #u51296 {
  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. #u51296 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u51296_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u51297_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:182px;
  3477. height:40px;
  3478. }
  3479. #u51297 {
  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. #u51297 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u51297_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u51298_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:47px;
  3511. height:40px;
  3512. }
  3513. #u51298 {
  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. #u51298 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u51298_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u51299_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:118px;
  3545. height:40px;
  3546. }
  3547. #u51299 {
  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. #u51299 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u51299_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u51300_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:146px;
  3580. height:40px;
  3581. }
  3582. #u51300 {
  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. #u51300 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u51300_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u51301_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:146px;
  3615. height:40px;
  3616. }
  3617. #u51301 {
  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. #u51301 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 0px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u51301_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u51302_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:146px;
  3650. height:40px;
  3651. }
  3652. #u51302 {
  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. #u51302 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u51302_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u51303_img {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:131px;
  3685. height:40px;
  3686. }
  3687. #u51303 {
  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. #u51303 .text {
  3702. position:absolute;
  3703. align-self:center;
  3704. padding:2px 2px 2px 0px;
  3705. box-sizing:border-box;
  3706. width:100%;
  3707. }
  3708. #u51303_text {
  3709. border-width:0px;
  3710. word-wrap:break-word;
  3711. text-transform:none;
  3712. visibility:hidden;
  3713. }
  3714. #u51304_img {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:182px;
  3720. height:40px;
  3721. }
  3722. #u51304 {
  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. #u51304 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u51304_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u51305_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:47px;
  3755. height:40px;
  3756. }
  3757. #u51305 {
  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. #u51305 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u51305_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. }
  3783. #u51306_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:118px;
  3789. height:40px;
  3790. }
  3791. #u51306 {
  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. #u51306 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u51306_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u51307_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:146px;
  3824. height:40px;
  3825. }
  3826. #u51307 {
  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. #u51307 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u51307_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u51308_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:146px;
  3859. height:40px;
  3860. }
  3861. #u51308 {
  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. #u51308 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u51308_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u51309_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:146px;
  3894. height:40px;
  3895. }
  3896. #u51309 {
  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. #u51309 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u51309_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u51310_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:131px;
  3929. height:40px;
  3930. }
  3931. #u51310 {
  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. #u51310 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u51310_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u51311_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:182px;
  3964. height:40px;
  3965. }
  3966. #u51311 {
  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. #u51311 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u51311_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u51312_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. #u51312 {
  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. #u51312 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u51312_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u51313_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. #u51313 {
  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. #u51313 .text {
  4070. position:absolute;
  4071. align-self:center;
  4072. padding:0px 0px 0px 0px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u51313_text {
  4077. border-width:0px;
  4078. white-space:nowrap;
  4079. text-transform:none;
  4080. }
  4081. #u51314_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. #u51314 {
  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. #u51314 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:5px 15px 5px 15px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u51314_text {
  4126. border-width:0px;
  4127. white-space:nowrap;
  4128. text-transform:none;
  4129. }
  4130. #u51315_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. #u51315 {
  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. #u51315 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:5px 15px 5px 15px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u51315_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u51316_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. #u51316 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:1685px;
  4198. top:160px;
  4199. width:280px;
  4200. height:1056px;
  4201. display:flex;
  4202. }
  4203. #u51316 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u51316_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u51317 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:0px;
  4222. height:0px;
  4223. }
  4224. #u51318_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. #u51318 {
  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. #u51318 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 8px 2px 8px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u51318_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u51319_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. #u51319 {
  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. #u51319 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:0px 0px 0px 0px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u51319_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. }
  4319. #u51320_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. #u51320 {
  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. #u51320 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:0px 0px 0px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u51320_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. }
  4365. #u51321 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:0px;
  4371. height:0px;
  4372. }
  4373. #u51322_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. #u51322 {
  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. #u51322 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 8px 2px 8px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u51322_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u51323_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. #u51323 {
  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. #u51323 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:0px 0px 0px 0px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u51323_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. }
  4468. #u51324_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. #u51324 {
  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. #u51324 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:0px 0px 0px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u51324_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. }
  4514. #u51325 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:0px;
  4520. height:0px;
  4521. }
  4522. #u51326_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. #u51326 {
  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. #u51326 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 8px 2px 8px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u51326_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u51327_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. #u51327 {
  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. #u51327 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:0px 0px 0px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u51327_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. }
  4617. #u51328_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. #u51328 {
  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. #u51328 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:0px 0px 0px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u51328_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. }
  4663. #u51329 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:0px;
  4669. height:0px;
  4670. }
  4671. #u51330_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. #u51330 {
  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. #u51330 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 8px 2px 8px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u51330_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u51331_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. #u51331_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. #u51331_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. #u51331 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:1712px;
  4780. top:183px;
  4781. width:228px;
  4782. height:34px;
  4783. display:flex;
  4784. }
  4785. #u51331 .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. #u51331_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. #u51331.disabled {
  4808. }
  4809. .u51331_input_option {
  4810. }
  4811. #u51332_div {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:57px;
  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. #u51332 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:1994px;
  4836. top:241px;
  4837. width:57px;
  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. #u51332 .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. #u51332_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u51333_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. #u51333 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:2065px;
  4885. top:241px;
  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. #u51333 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u51333_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. }
  4906. #u51334 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:1994px;
  4910. top:281px;
  4911. width:916px;
  4912. height:76px;
  4913. }
  4914. #u51335_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:686px;
  4920. height:38px;
  4921. }
  4922. #u51335 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:686px;
  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. #u51335 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u51335_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. }
  4947. #u51336_img {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:230px;
  4953. height:38px;
  4954. }
  4955. #u51336 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:686px;
  4959. top:0px;
  4960. width:230px;
  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. #u51336 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 0px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u51336_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. }
  4980. #u51337_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:686px;
  4986. height:38px;
  4987. }
  4988. #u51337 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:38px;
  4993. width:686px;
  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:12px;
  5000. color:#D7D7D7;
  5001. }
  5002. #u51337 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:2px 2px 2px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u51337_text {
  5010. border-width:0px;
  5011. word-wrap:break-word;
  5012. text-transform:none;
  5013. }
  5014. #u51338_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:230px;
  5020. height:38px;
  5021. }
  5022. #u51338 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:686px;
  5026. top:38px;
  5027. width:230px;
  5028. height:38px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. color:#298FFF;
  5035. }
  5036. #u51338 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u51338_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u51339_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:57px;
  5055. height:30px;
  5056. background:inherit;
  5057. background-color:rgba(255, 255, 255, 0);
  5058. border:none;
  5059. border-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. color:#000000;
  5068. line-height:30px;
  5069. }
  5070. #u51339 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:1994px;
  5074. top:410px;
  5075. width:57px;
  5076. height:30px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. color:#000000;
  5083. line-height:30px;
  5084. }
  5085. #u51339 .text {
  5086. position:absolute;
  5087. align-self:flex-start;
  5088. padding:0px 0px 0px 0px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u51339_text {
  5093. border-width:0px;
  5094. white-space:nowrap;
  5095. text-transform:none;
  5096. }
  5097. #u51340_div {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:80px;
  5103. height:30px;
  5104. background:inherit;
  5105. background-color:rgba(255, 255, 255, 1);
  5106. box-sizing:border-box;
  5107. border-width:1px;
  5108. border-style:solid;
  5109. border-color:rgba(121, 121, 121, 1);
  5110. border-radius:4px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:14px;
  5118. }
  5119. #u51340 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:2065px;
  5123. top:410px;
  5124. width:80px;
  5125. height:30px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. }
  5132. #u51340 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u51340_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. }
  5144. #u51341 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:1994px;
  5148. top:450px;
  5149. width:916px;
  5150. height:76px;
  5151. }
  5152. #u51342_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:686px;
  5158. height:38px;
  5159. }
  5160. #u51342 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:686px;
  5166. height:38px;
  5167. display:flex;
  5168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:14px;
  5172. }
  5173. #u51342 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u51342_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. }
  5185. #u51343_img {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:230px;
  5191. height:38px;
  5192. }
  5193. #u51343 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:686px;
  5197. top:0px;
  5198. width:230px;
  5199. height:38px;
  5200. display:flex;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. }
  5206. #u51343 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 0px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u51343_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. }
  5218. #u51344_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:686px;
  5224. height:38px;
  5225. }
  5226. #u51344 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:38px;
  5231. width:686px;
  5232. height:38px;
  5233. display:flex;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#D7D7D7;
  5239. }
  5240. #u51344 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u51344_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. }
  5252. #u51345_img {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:230px;
  5258. height:38px;
  5259. }
  5260. #u51345 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:686px;
  5264. top:38px;
  5265. width:230px;
  5266. height:38px;
  5267. display:flex;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:12px;
  5272. color:#298FFF;
  5273. }
  5274. #u51345 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u51345_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u51346_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:57px;
  5293. height:30px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. color:#000000;
  5306. line-height:30px;
  5307. }
  5308. #u51346 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:1994px;
  5312. top:566px;
  5313. width:57px;
  5314. height:30px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#000000;
  5321. line-height:30px;
  5322. }
  5323. #u51346 .text {
  5324. position:absolute;
  5325. align-self:flex-start;
  5326. padding:0px 0px 0px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u51346_text {
  5331. border-width:0px;
  5332. white-space:nowrap;
  5333. text-transform:none;
  5334. }
  5335. #u51347_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:80px;
  5341. height:30px;
  5342. background:inherit;
  5343. background-color:rgba(255, 255, 255, 1);
  5344. box-sizing:border-box;
  5345. border-width:1px;
  5346. border-style:solid;
  5347. border-color:rgba(121, 121, 121, 1);
  5348. border-radius:4px;
  5349. -moz-box-shadow:none;
  5350. -webkit-box-shadow:none;
  5351. box-shadow:none;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:14px;
  5356. }
  5357. #u51347 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:2065px;
  5361. top:566px;
  5362. width:80px;
  5363. height:30px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:14px;
  5369. }
  5370. #u51347 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 2px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u51347_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. }
  5382. #u51348 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:0px;
  5388. height:0px;
  5389. }
  5390. #u51349_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:300px;
  5396. height:40px;
  5397. background:inherit;
  5398. background-color:rgba(255, 255, 255, 1);
  5399. box-sizing:border-box;
  5400. border-width:1px;
  5401. border-style:solid;
  5402. border-color:rgba(170, 170, 170, 1);
  5403. border-radius:4px;
  5404. -moz-box-shadow:none;
  5405. -webkit-box-shadow:none;
  5406. box-shadow:none;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. text-align:left;
  5411. }
  5412. #u51349 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:745px;
  5416. top:160px;
  5417. width:300px;
  5418. height:40px;
  5419. display:flex;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. text-align:left;
  5424. }
  5425. #u51349 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 10px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u51349_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u51350_input {
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:141px;
  5443. height:31px;
  5444. padding:2px 2px 2px 2px;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:13px;
  5449. letter-spacing:normal;
  5450. color:#AAAAAA;
  5451. vertical-align:none;
  5452. text-align:left;
  5453. text-transform:none;
  5454. background-color:transparent;
  5455. border-color:transparent;
  5456. }
  5457. #u51350_input.disabled {
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:141px;
  5462. height:31px;
  5463. padding:2px 2px 2px 2px;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:13px;
  5468. letter-spacing:normal;
  5469. color:#AAAAAA;
  5470. vertical-align:none;
  5471. text-align:left;
  5472. text-transform:none;
  5473. background-color:transparent;
  5474. border-color:transparent;
  5475. }
  5476. #u51350_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:141px;
  5482. height:31px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 0);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. color:#AAAAAA;
  5494. }
  5495. #u51350 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:753px;
  5499. top:165px;
  5500. width:141px;
  5501. height:31px;
  5502. display:flex;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. color:#AAAAAA;
  5507. }
  5508. #u51350 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 2px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u51350_div.disabled {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:141px;
  5521. height:31px;
  5522. background:inherit;
  5523. background-color:rgba(240, 240, 240, 1);
  5524. border:none;
  5525. border-radius:0px;
  5526. -moz-box-shadow:none;
  5527. -webkit-box-shadow:none;
  5528. box-shadow:none;
  5529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. color:#AAAAAA;
  5533. }
  5534. #u51350.disabled {
  5535. }
  5536. #u51351_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:78px;
  5542. height:30px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-top:0px;
  5547. border-right:0px;
  5548. border-bottom:0px;
  5549. border-radius:0px;
  5550. border-top-left-radius:0px;
  5551. border-bottom-left-radius:0px;
  5552. -moz-box-shadow:none;
  5553. -webkit-box-shadow:none;
  5554. box-shadow:none;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:14px;
  5559. text-align:right;
  5560. }
  5561. #u51351 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:657px;
  5565. top:165px;
  5566. width:78px;
  5567. height:30px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. text-align:right;
  5574. }
  5575. #u51351 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:5px 0px 5px 0px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u51351_text {
  5583. border-width:0px;
  5584. white-space:nowrap;
  5585. text-transform:none;
  5586. }
  5587. #u51352_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. #u51352 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1115px;
  5616. top:169px;
  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. #u51352 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:5px 0px 5px 0px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u51352_text {
  5634. border-width:0px;
  5635. white-space:nowrap;
  5636. text-transform:none;
  5637. }
  5638. #u51353_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:50px;
  5644. height:31px;
  5645. }
  5646. #u51353 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:1202px;
  5650. top:169px;
  5651. width:50px;
  5652. height:31px;
  5653. display:flex;
  5654. }
  5655. #u51353 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 2px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u51353_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u51354_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:917px;
  5674. height:2px;
  5675. }
  5676. #u51354 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:657px;
  5680. top:220px;
  5681. width:916px;
  5682. height:1px;
  5683. display:flex;
  5684. }
  5685. #u51354 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 2px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u51354_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. visibility:hidden;
  5697. }
  5698. #u51355 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:0px;
  5704. height:0px;
  5705. }
  5706. #u51356_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:300px;
  5712. height:40px;
  5713. background:inherit;
  5714. background-color:rgba(255, 255, 255, 1);
  5715. box-sizing:border-box;
  5716. border-width:1px;
  5717. border-style:solid;
  5718. border-color:rgba(170, 170, 170, 1);
  5719. border-radius:4px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. text-align:left;
  5727. }
  5728. #u51356 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:2082px;
  5732. top:160px;
  5733. width:300px;
  5734. height:40px;
  5735. display:flex;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. text-align:left;
  5740. }
  5741. #u51356 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 2px 2px 10px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u51356_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. visibility:hidden;
  5753. }
  5754. #u51357_input {
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:141px;
  5759. height:31px;
  5760. padding:2px 2px 2px 2px;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:13px;
  5765. letter-spacing:normal;
  5766. color:#AAAAAA;
  5767. vertical-align:none;
  5768. text-align:left;
  5769. text-transform:none;
  5770. background-color:transparent;
  5771. border-color:transparent;
  5772. }
  5773. #u51357_input.disabled {
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:141px;
  5778. height:31px;
  5779. padding:2px 2px 2px 2px;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:13px;
  5784. letter-spacing:normal;
  5785. color:#AAAAAA;
  5786. vertical-align:none;
  5787. text-align:left;
  5788. text-transform:none;
  5789. background-color:transparent;
  5790. border-color:transparent;
  5791. }
  5792. #u51357_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:141px;
  5798. height:31px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 0);
  5801. border:none;
  5802. border-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. color:#AAAAAA;
  5810. }
  5811. #u51357 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:2090px;
  5815. top:165px;
  5816. width:141px;
  5817. height:31px;
  5818. display:flex;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. color:#AAAAAA;
  5823. }
  5824. #u51357 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 2px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u51357_div.disabled {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:141px;
  5837. height:31px;
  5838. background:inherit;
  5839. background-color:rgba(240, 240, 240, 1);
  5840. border:none;
  5841. border-radius:0px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. color:#AAAAAA;
  5849. }
  5850. #u51357.disabled {
  5851. }
  5852. #u51358_div {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:78px;
  5858. height:30px;
  5859. background:inherit;
  5860. background-color:rgba(255, 255, 255, 0);
  5861. border:none;
  5862. border-top:0px;
  5863. border-right:0px;
  5864. border-bottom:0px;
  5865. border-radius:0px;
  5866. border-top-left-radius:0px;
  5867. border-bottom-left-radius:0px;
  5868. -moz-box-shadow:none;
  5869. -webkit-box-shadow:none;
  5870. box-shadow:none;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. text-align:right;
  5876. }
  5877. #u51358 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:1994px;
  5881. top:165px;
  5882. width:78px;
  5883. height:30px;
  5884. display:flex;
  5885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:14px;
  5889. text-align:right;
  5890. }
  5891. #u51358 .text {
  5892. position:absolute;
  5893. align-self:center;
  5894. padding:5px 0px 5px 0px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u51358_text {
  5899. border-width:0px;
  5900. white-space:nowrap;
  5901. text-transform:none;
  5902. }
  5903. #u51359_div {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:78px;
  5909. height:30px;
  5910. background:inherit;
  5911. background-color:rgba(255, 255, 255, 0);
  5912. border:none;
  5913. border-top:0px;
  5914. border-right:0px;
  5915. border-bottom:0px;
  5916. border-radius:0px;
  5917. border-top-left-radius:0px;
  5918. border-bottom-left-radius:0px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:14px;
  5926. text-align:right;
  5927. }
  5928. #u51359 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:2452px;
  5932. top:169px;
  5933. width:78px;
  5934. height:30px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. text-align:right;
  5941. }
  5942. #u51359 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:5px 0px 5px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u51359_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u51360_img {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:50px;
  5960. height:31px;
  5961. }
  5962. #u51360 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:2539px;
  5966. top:169px;
  5967. width:50px;
  5968. height:31px;
  5969. display:flex;
  5970. }
  5971. #u51360 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u51360_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. visibility:hidden;
  5983. }
  5984. #u51361_img {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:917px;
  5990. height:2px;
  5991. }
  5992. #u51361 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:1994px;
  5996. top:220px;
  5997. width:916px;
  5998. height:1px;
  5999. display:flex;
  6000. }
  6001. #u51361 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u51361_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u51362_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:80px;
  6020. height:30px;
  6021. background:inherit;
  6022. background-color:rgba(24, 144, 255, 1);
  6023. border:none;
  6024. border-radius:4px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:14px;
  6032. color:#FFFFFF;
  6033. }
  6034. #u51362 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:657px;
  6038. top:806px;
  6039. width:80px;
  6040. height:30px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:14px;
  6046. color:#FFFFFF;
  6047. }
  6048. #u51362 .text {
  6049. position:absolute;
  6050. align-self:center;
  6051. padding:2px 2px 2px 2px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u51362_text {
  6056. border-width:0px;
  6057. word-wrap:break-word;
  6058. text-transform:none;
  6059. }
  6060. #u51363_div {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:80px;
  6066. height:30px;
  6067. background:inherit;
  6068. background-color:rgba(24, 144, 255, 1);
  6069. border:none;
  6070. border-radius:4px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:14px;
  6078. color:#FFFFFF;
  6079. }
  6080. #u51363 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:1994px;
  6084. top:806px;
  6085. width:80px;
  6086. height:30px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#FFFFFF;
  6093. }
  6094. #u51363 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:2px 2px 2px 2px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u51363_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. }
  6106. #u51364 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:1994px;
  6110. top:606px;
  6111. width:916px;
  6112. height:160px;
  6113. }
  6114. #u51365_img {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:47px;
  6120. height:40px;
  6121. }
  6122. #u51365 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:47px;
  6128. height:40px;
  6129. display:flex;
  6130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:14px;
  6134. }
  6135. #u51365 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:2px 2px 2px 0px;
  6139. box-sizing:border-box;
  6140. width:100%;
  6141. }
  6142. #u51365_text {
  6143. border-width:0px;
  6144. word-wrap:break-word;
  6145. text-transform:none;
  6146. }
  6147. #u51366_img {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:118px;
  6153. height:40px;
  6154. }
  6155. #u51366 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:47px;
  6159. top:0px;
  6160. width:118px;
  6161. height:40px;
  6162. display:flex;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:14px;
  6167. }
  6168. #u51366 .text {
  6169. position:absolute;
  6170. align-self:center;
  6171. padding:2px 2px 2px 0px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u51366_text {
  6176. border-width:0px;
  6177. word-wrap:break-word;
  6178. text-transform:none;
  6179. }
  6180. #u51367_img {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:146px;
  6186. height:40px;
  6187. }
  6188. #u51367 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:165px;
  6192. top:0px;
  6193. width:146px;
  6194. height:40px;
  6195. display:flex;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. }
  6201. #u51367 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u51367_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. }
  6213. #u51368_img {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:146px;
  6219. height:40px;
  6220. }
  6221. #u51368 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:311px;
  6225. top:0px;
  6226. width:146px;
  6227. height:40px;
  6228. display:flex;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:14px;
  6233. }
  6234. #u51368 .text {
  6235. position:absolute;
  6236. align-self:center;
  6237. padding:2px 2px 2px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u51368_text {
  6242. border-width:0px;
  6243. word-wrap:break-word;
  6244. text-transform:none;
  6245. }
  6246. #u51369_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:146px;
  6252. height:40px;
  6253. }
  6254. #u51369 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:457px;
  6258. top:0px;
  6259. width:146px;
  6260. height:40px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:14px;
  6266. }
  6267. #u51369 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 0px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u51369_text {
  6275. border-width:0px;
  6276. word-wrap:break-word;
  6277. text-transform:none;
  6278. }
  6279. #u51370_img {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:131px;
  6285. height:40px;
  6286. }
  6287. #u51370 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:603px;
  6291. top:0px;
  6292. width:131px;
  6293. height:40px;
  6294. display:flex;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:14px;
  6299. }
  6300. #u51370 .text {
  6301. position:absolute;
  6302. align-self:center;
  6303. padding:2px 2px 2px 0px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u51370_text {
  6308. border-width:0px;
  6309. word-wrap:break-word;
  6310. text-transform:none;
  6311. }
  6312. #u51371_img {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:182px;
  6318. height:40px;
  6319. }
  6320. #u51371 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:734px;
  6324. top:0px;
  6325. width:182px;
  6326. height:40px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:14px;
  6332. }
  6333. #u51371 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 2px 2px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u51371_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. }
  6345. #u51372_img {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:47px;
  6351. height:40px;
  6352. }
  6353. #u51372 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:40px;
  6358. width:47px;
  6359. height:40px;
  6360. display:flex;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:12px;
  6365. color:#333333;
  6366. }
  6367. #u51372 .text {
  6368. position:absolute;
  6369. align-self:center;
  6370. padding:2px 2px 2px 0px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u51372_text {
  6375. border-width:0px;
  6376. word-wrap:break-word;
  6377. text-transform:none;
  6378. }
  6379. #u51373_img {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:118px;
  6385. height:40px;
  6386. }
  6387. #u51373 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:47px;
  6391. top:40px;
  6392. width:118px;
  6393. height:40px;
  6394. display:flex;
  6395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:12px;
  6399. color:#333333;
  6400. }
  6401. #u51373 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 0px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u51373_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. }
  6413. #u51374_img {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:146px;
  6419. height:40px;
  6420. }
  6421. #u51374 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:165px;
  6425. top:40px;
  6426. width:146px;
  6427. height:40px;
  6428. display:flex;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:12px;
  6433. color:#333333;
  6434. }
  6435. #u51374 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:2px 2px 2px 0px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u51374_text {
  6443. border-width:0px;
  6444. word-wrap:break-word;
  6445. text-transform:none;
  6446. }
  6447. #u51375_img {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:146px;
  6453. height:40px;
  6454. }
  6455. #u51375 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:311px;
  6459. top:40px;
  6460. width:146px;
  6461. height:40px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:12px;
  6467. color:#333333;
  6468. }
  6469. #u51375 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 0px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u51375_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. }
  6481. #u51376_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:146px;
  6487. height:40px;
  6488. }
  6489. #u51376 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:457px;
  6493. top:40px;
  6494. width:146px;
  6495. height:40px;
  6496. display:flex;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#333333;
  6502. }
  6503. #u51376 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 0px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u51376_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. }
  6515. #u51377_img {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:131px;
  6521. height:40px;
  6522. }
  6523. #u51377 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:603px;
  6527. top:40px;
  6528. width:131px;
  6529. height:40px;
  6530. display:flex;
  6531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:12px;
  6535. color:#333333;
  6536. }
  6537. #u51377 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:2px 2px 2px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u51377_text {
  6545. border-width:0px;
  6546. word-wrap:break-word;
  6547. text-transform:none;
  6548. visibility:hidden;
  6549. }
  6550. #u51378_img {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:182px;
  6556. height:40px;
  6557. }
  6558. #u51378 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:734px;
  6562. top:40px;
  6563. width:182px;
  6564. height:40px;
  6565. display:flex;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:12px;
  6570. color:#1890FF;
  6571. }
  6572. #u51378 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:2px 2px 2px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u51378_text {
  6580. border-width:0px;
  6581. word-wrap:break-word;
  6582. text-transform:none;
  6583. }
  6584. #u51379_img {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:47px;
  6590. height:40px;
  6591. }
  6592. #u51379 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:80px;
  6597. width:47px;
  6598. height:40px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:12px;
  6604. color:#333333;
  6605. }
  6606. #u51379 .text {
  6607. position:absolute;
  6608. align-self:center;
  6609. padding:2px 2px 2px 0px;
  6610. box-sizing:border-box;
  6611. width:100%;
  6612. }
  6613. #u51379_text {
  6614. border-width:0px;
  6615. word-wrap:break-word;
  6616. text-transform:none;
  6617. }
  6618. #u51380_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:118px;
  6624. height:40px;
  6625. }
  6626. #u51380 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:47px;
  6630. top:80px;
  6631. width:118px;
  6632. height:40px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#333333;
  6639. }
  6640. #u51380 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u51380_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u51381_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:146px;
  6659. height:40px;
  6660. }
  6661. #u51381 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:165px;
  6665. top:80px;
  6666. width:146px;
  6667. height:40px;
  6668. display:flex;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. color:#333333;
  6674. }
  6675. #u51381 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:2px 2px 2px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u51381_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u51382_img {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:146px;
  6694. height:40px;
  6695. }
  6696. #u51382 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:311px;
  6700. top:80px;
  6701. width:146px;
  6702. height:40px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#333333;
  6709. }
  6710. #u51382 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 0px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u51382_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u51383_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:146px;
  6729. height:40px;
  6730. }
  6731. #u51383 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:457px;
  6735. top:80px;
  6736. width:146px;
  6737. height:40px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#333333;
  6744. }
  6745. #u51383 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 2px 2px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u51383_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u51384_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:131px;
  6764. height:40px;
  6765. }
  6766. #u51384 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:603px;
  6770. top:80px;
  6771. width:131px;
  6772. height:40px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#333333;
  6779. }
  6780. #u51384 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u51384_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u51385_img {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:182px;
  6799. height:40px;
  6800. }
  6801. #u51385 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:734px;
  6805. top:80px;
  6806. width:182px;
  6807. height:40px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:12px;
  6813. color:#1890FF;
  6814. }
  6815. #u51385 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u51385_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. visibility:hidden;
  6827. }
  6828. #u51386_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:47px;
  6834. height:40px;
  6835. }
  6836. #u51386 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:120px;
  6841. width:47px;
  6842. height:40px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#333333;
  6849. }
  6850. #u51386 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u51386_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. }
  6862. #u51387_img {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:118px;
  6868. height:40px;
  6869. }
  6870. #u51387 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:47px;
  6874. top:120px;
  6875. width:118px;
  6876. height:40px;
  6877. display:flex;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:12px;
  6882. color:#333333;
  6883. }
  6884. #u51387 .text {
  6885. position:absolute;
  6886. align-self:center;
  6887. padding:2px 2px 2px 0px;
  6888. box-sizing:border-box;
  6889. width:100%;
  6890. }
  6891. #u51387_text {
  6892. border-width:0px;
  6893. word-wrap:break-word;
  6894. text-transform:none;
  6895. visibility:hidden;
  6896. }
  6897. #u51388_img {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:146px;
  6903. height:40px;
  6904. }
  6905. #u51388 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:165px;
  6909. top:120px;
  6910. width:146px;
  6911. height:40px;
  6912. display:flex;
  6913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6914. font-weight:400;
  6915. font-style:normal;
  6916. font-size:12px;
  6917. color:#333333;
  6918. }
  6919. #u51388 .text {
  6920. position:absolute;
  6921. align-self:center;
  6922. padding:2px 2px 2px 0px;
  6923. box-sizing:border-box;
  6924. width:100%;
  6925. }
  6926. #u51388_text {
  6927. border-width:0px;
  6928. word-wrap:break-word;
  6929. text-transform:none;
  6930. visibility:hidden;
  6931. }
  6932. #u51389_img {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:146px;
  6938. height:40px;
  6939. }
  6940. #u51389 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:311px;
  6944. top:120px;
  6945. width:146px;
  6946. height:40px;
  6947. display:flex;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:12px;
  6952. color:#333333;
  6953. }
  6954. #u51389 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:2px 2px 2px 0px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u51389_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. visibility:hidden;
  6966. }
  6967. #u51390_img {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:146px;
  6973. height:40px;
  6974. }
  6975. #u51390 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:457px;
  6979. top:120px;
  6980. width:146px;
  6981. height:40px;
  6982. display:flex;
  6983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:12px;
  6987. color:#333333;
  6988. }
  6989. #u51390 .text {
  6990. position:absolute;
  6991. align-self:center;
  6992. padding:2px 2px 2px 0px;
  6993. box-sizing:border-box;
  6994. width:100%;
  6995. }
  6996. #u51390_text {
  6997. border-width:0px;
  6998. word-wrap:break-word;
  6999. text-transform:none;
  7000. visibility:hidden;
  7001. }
  7002. #u51391_img {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:131px;
  7008. height:40px;
  7009. }
  7010. #u51391 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:603px;
  7014. top:120px;
  7015. width:131px;
  7016. height:40px;
  7017. display:flex;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:12px;
  7022. color:#333333;
  7023. }
  7024. #u51391 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 0px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u51391_text {
  7032. border-width:0px;
  7033. word-wrap:break-word;
  7034. text-transform:none;
  7035. visibility:hidden;
  7036. }
  7037. #u51392_img {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:182px;
  7043. height:40px;
  7044. }
  7045. #u51392 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:734px;
  7049. top:120px;
  7050. width:182px;
  7051. height:40px;
  7052. display:flex;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:12px;
  7057. color:#1890FF;
  7058. }
  7059. #u51392 .text {
  7060. position:absolute;
  7061. align-self:center;
  7062. padding:2px 2px 2px 0px;
  7063. box-sizing:border-box;
  7064. width:100%;
  7065. }
  7066. #u51392_text {
  7067. border-width:0px;
  7068. word-wrap:break-word;
  7069. text-transform:none;
  7070. visibility:hidden;
  7071. }
  7072. #u51393 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:0px;
  7078. height:0px;
  7079. }
  7080. #u51394_div {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:200px;
  7086. height:1193px;
  7087. background:inherit;
  7088. background-color:rgba(255, 255, 255, 1);
  7089. border:none;
  7090. border-radius:0px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. }
  7095. #u51394 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:120px;
  7099. top:50px;
  7100. width:200px;
  7101. height:1193px;
  7102. display:flex;
  7103. }
  7104. #u51394 .text {
  7105. position:absolute;
  7106. align-self:center;
  7107. padding:2px 2px 2px 2px;
  7108. box-sizing:border-box;
  7109. width:100%;
  7110. }
  7111. #u51394_text {
  7112. border-width:0px;
  7113. word-wrap:break-word;
  7114. text-transform:none;
  7115. visibility:hidden;
  7116. }
  7117. #u51395_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:200px;
  7123. height:60px;
  7124. background:inherit;
  7125. background-color:rgba(224, 231, 247, 1);
  7126. border:none;
  7127. border-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7132. font-weight:500;
  7133. font-style:normal;
  7134. font-size:18px;
  7135. }
  7136. #u51395 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:120px;
  7140. top:50px;
  7141. width:200px;
  7142. height:60px;
  7143. display:flex;
  7144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7145. font-weight:500;
  7146. font-style:normal;
  7147. font-size:18px;
  7148. }
  7149. #u51395 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:0px 0px 0px 20px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u51395_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. }
  7161. #u51396_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:97px;
  7167. height:22px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 0);
  7170. border:none;
  7171. border-radius:0px;
  7172. -moz-box-shadow:none;
  7173. -webkit-box-shadow:none;
  7174. box-shadow:none;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:16px;
  7179. }
  7180. #u51396 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:147px;
  7184. top:386px;
  7185. width:97px;
  7186. height:22px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:16px;
  7192. }
  7193. #u51396 .text {
  7194. position:absolute;
  7195. align-self:flex-start;
  7196. padding:0px 0px 0px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u51396_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. }
  7205. #u51397_div {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:97px;
  7211. height:22px;
  7212. background:inherit;
  7213. background-color:rgba(255, 255, 255, 0);
  7214. border:none;
  7215. border-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:16px;
  7223. }
  7224. #u51397 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:147px;
  7228. top:166px;
  7229. width:97px;
  7230. height:22px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:16px;
  7236. }
  7237. #u51397 .text {
  7238. position:absolute;
  7239. align-self:flex-start;
  7240. padding:0px 0px 0px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u51397_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. }
  7249. #u51398_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:49px;
  7255. height:17px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:12px;
  7267. color:#AAAAAA;
  7268. }
  7269. #u51398 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:147px;
  7273. top:130px;
  7274. width:49px;
  7275. height:17px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:12px;
  7281. color:#AAAAAA;
  7282. }
  7283. #u51398 .text {
  7284. position:absolute;
  7285. align-self:flex-start;
  7286. padding:0px 0px 0px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u51398_text {
  7291. border-width:0px;
  7292. white-space:nowrap;
  7293. text-transform:none;
  7294. }
  7295. #u51399_div {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:97px;
  7301. height:22px;
  7302. background:inherit;
  7303. background-color:rgba(255, 255, 255, 0);
  7304. border:none;
  7305. border-radius:0px;
  7306. -moz-box-shadow:none;
  7307. -webkit-box-shadow:none;
  7308. box-shadow:none;
  7309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7310. font-weight:400;
  7311. font-style:normal;
  7312. font-size:16px;
  7313. }
  7314. #u51399 {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:147px;
  7318. top:208px;
  7319. width:97px;
  7320. height:22px;
  7321. display:flex;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:16px;
  7326. }
  7327. #u51399 .text {
  7328. position:absolute;
  7329. align-self:flex-start;
  7330. padding:0px 0px 0px 0px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u51399_text {
  7335. border-width:0px;
  7336. word-wrap:break-word;
  7337. text-transform:none;
  7338. }
  7339. #u51400_img {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:201px;
  7345. height:2px;
  7346. }
  7347. #u51400 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:120px;
  7351. top:247px;
  7352. width:200px;
  7353. height:1px;
  7354. display:flex;
  7355. }
  7356. #u51400 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:2px 2px 2px 2px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u51400_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. visibility:hidden;
  7368. }
  7369. #u51401_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:97px;
  7375. height:22px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-radius:0px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:16px;
  7387. }
  7388. #u51401 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:147px;
  7392. top:304px;
  7393. width:97px;
  7394. height:22px;
  7395. display:flex;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:16px;
  7400. }
  7401. #u51401 .text {
  7402. position:absolute;
  7403. align-self:flex-start;
  7404. padding:0px 0px 0px 0px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u51401_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. }
  7413. #u51402_div {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:49px;
  7419. height:17px;
  7420. background:inherit;
  7421. background-color:rgba(255, 255, 255, 0);
  7422. border:none;
  7423. border-radius:0px;
  7424. -moz-box-shadow:none;
  7425. -webkit-box-shadow:none;
  7426. box-shadow:none;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:12px;
  7431. color:#AAAAAA;
  7432. }
  7433. #u51402 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:147px;
  7437. top:268px;
  7438. width:49px;
  7439. height:17px;
  7440. display:flex;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:12px;
  7445. color:#AAAAAA;
  7446. }
  7447. #u51402 .text {
  7448. position:absolute;
  7449. align-self:flex-start;
  7450. padding:0px 0px 0px 0px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u51402_text {
  7455. border-width:0px;
  7456. white-space:nowrap;
  7457. text-transform:none;
  7458. }
  7459. #u51403_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:97px;
  7465. height:22px;
  7466. background:inherit;
  7467. background-color:rgba(255, 255, 255, 0);
  7468. border:none;
  7469. border-radius:0px;
  7470. -moz-box-shadow:none;
  7471. -webkit-box-shadow:none;
  7472. box-shadow:none;
  7473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7474. font-weight:400;
  7475. font-style:normal;
  7476. font-size:16px;
  7477. }
  7478. #u51403 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:147px;
  7482. top:532px;
  7483. width:97px;
  7484. height:22px;
  7485. display:flex;
  7486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7487. font-weight:400;
  7488. font-style:normal;
  7489. font-size:16px;
  7490. }
  7491. #u51403 .text {
  7492. position:absolute;
  7493. align-self:flex-start;
  7494. padding:0px 0px 0px 0px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u51403_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. }
  7503. #u51404_img {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:201px;
  7509. height:2px;
  7510. }
  7511. #u51404 {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:120px;
  7515. top:433px;
  7516. width:200px;
  7517. height:1px;
  7518. display:flex;
  7519. }
  7520. #u51404 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:2px 2px 2px 2px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u51404_text {
  7528. border-width:0px;
  7529. word-wrap:break-word;
  7530. text-transform:none;
  7531. visibility:hidden;
  7532. }
  7533. #u51405_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:97px;
  7539. height:22px;
  7540. background:inherit;
  7541. background-color:rgba(255, 255, 255, 0);
  7542. border:none;
  7543. border-radius:0px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:16px;
  7551. }
  7552. #u51405 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:147px;
  7556. top:490px;
  7557. width:97px;
  7558. height:22px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:16px;
  7564. }
  7565. #u51405 .text {
  7566. position:absolute;
  7567. align-self:flex-start;
  7568. padding:0px 0px 0px 0px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u51405_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. }
  7577. #u51406_div {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:49px;
  7583. height:17px;
  7584. background:inherit;
  7585. background-color:rgba(255, 255, 255, 0);
  7586. border:none;
  7587. border-radius:0px;
  7588. -moz-box-shadow:none;
  7589. -webkit-box-shadow:none;
  7590. box-shadow:none;
  7591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:12px;
  7595. color:#AAAAAA;
  7596. }
  7597. #u51406 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:147px;
  7601. top:454px;
  7602. width:49px;
  7603. height:17px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:12px;
  7609. color:#AAAAAA;
  7610. }
  7611. #u51406 .text {
  7612. position:absolute;
  7613. align-self:flex-start;
  7614. padding:0px 0px 0px 0px;
  7615. box-sizing:border-box;
  7616. width:100%;
  7617. }
  7618. #u51406_text {
  7619. border-width:0px;
  7620. white-space:nowrap;
  7621. text-transform:none;
  7622. }
  7623. #u51407_div {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:97px;
  7629. height:22px;
  7630. background:inherit;
  7631. background-color:rgba(255, 255, 255, 0);
  7632. border:none;
  7633. border-radius:0px;
  7634. -moz-box-shadow:none;
  7635. -webkit-box-shadow:none;
  7636. box-shadow:none;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:16px;
  7641. }
  7642. #u51407 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:147px;
  7646. top:673px;
  7647. width:97px;
  7648. height:22px;
  7649. display:flex;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:16px;
  7654. }
  7655. #u51407 .text {
  7656. position:absolute;
  7657. align-self:flex-start;
  7658. padding:0px 0px 0px 0px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u51407_text {
  7663. border-width:0px;
  7664. word-wrap:break-word;
  7665. text-transform:none;
  7666. }
  7667. #u51408_div {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:97px;
  7673. height:22px;
  7674. background:inherit;
  7675. background-color:rgba(255, 255, 255, 0);
  7676. border:none;
  7677. border-radius:0px;
  7678. -moz-box-shadow:none;
  7679. -webkit-box-shadow:none;
  7680. box-shadow:none;
  7681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7682. font-weight:400;
  7683. font-style:normal;
  7684. font-size:16px;
  7685. }
  7686. #u51408 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:147px;
  7690. top:715px;
  7691. width:97px;
  7692. height:22px;
  7693. display:flex;
  7694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:16px;
  7698. }
  7699. #u51408 .text {
  7700. position:absolute;
  7701. align-self:flex-start;
  7702. padding:0px 0px 0px 0px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u51408_text {
  7707. border-width:0px;
  7708. white-space:nowrap;
  7709. text-transform:none;
  7710. }
  7711. #u51409_img {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:201px;
  7717. height:2px;
  7718. }
  7719. #u51409 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:120px;
  7723. top:574px;
  7724. width:200px;
  7725. height:1px;
  7726. display:flex;
  7727. }
  7728. #u51409 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 2px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u51409_text {
  7736. border-width:0px;
  7737. word-wrap:break-word;
  7738. text-transform:none;
  7739. visibility:hidden;
  7740. }
  7741. #u51410_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:97px;
  7747. height:22px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 0);
  7750. border:none;
  7751. border-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:16px;
  7759. }
  7760. #u51410 {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:147px;
  7764. top:631px;
  7765. width:97px;
  7766. height:22px;
  7767. display:flex;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:16px;
  7772. }
  7773. #u51410 .text {
  7774. position:absolute;
  7775. align-self:flex-start;
  7776. padding:0px 0px 0px 0px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u51410_text {
  7781. border-width:0px;
  7782. word-wrap:break-word;
  7783. text-transform:none;
  7784. }
  7785. #u51411_div {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:49px;
  7791. height:17px;
  7792. background:inherit;
  7793. background-color:rgba(255, 255, 255, 0);
  7794. border:none;
  7795. border-radius:0px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:12px;
  7803. color:#AAAAAA;
  7804. }
  7805. #u51411 {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:147px;
  7809. top:595px;
  7810. width:49px;
  7811. height:17px;
  7812. display:flex;
  7813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7814. font-weight:400;
  7815. font-style:normal;
  7816. font-size:12px;
  7817. color:#AAAAAA;
  7818. }
  7819. #u51411 .text {
  7820. position:absolute;
  7821. align-self:flex-start;
  7822. padding:0px 0px 0px 0px;
  7823. box-sizing:border-box;
  7824. width:100%;
  7825. }
  7826. #u51411_text {
  7827. border-width:0px;
  7828. white-space:nowrap;
  7829. text-transform:none;
  7830. }
  7831. #u51412_div {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:97px;
  7837. height:22px;
  7838. background:inherit;
  7839. background-color:rgba(255, 255, 255, 0);
  7840. border:none;
  7841. border-radius:0px;
  7842. -moz-box-shadow:none;
  7843. -webkit-box-shadow:none;
  7844. box-shadow:none;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:16px;
  7849. }
  7850. #u51412 {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:147px;
  7854. top:346px;
  7855. width:97px;
  7856. height:22px;
  7857. display:flex;
  7858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. font-size:16px;
  7862. }
  7863. #u51412 .text {
  7864. position:absolute;
  7865. align-self:flex-start;
  7866. padding:0px 0px 0px 0px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u51412_text {
  7871. border-width:0px;
  7872. word-wrap:break-word;
  7873. text-transform:none;
  7874. }