styles.css 108 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2914px;
  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. #u51217_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. #u51217 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u51217 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u51217_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u51218_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. #u51218 {
  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. #u51218 .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. #u51218_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u51219_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. #u51219 {
  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. #u51219 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u51219_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u51220 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u51221_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u51221 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u51221 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u51221_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u51222_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. #u51222 {
  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. #u51222 .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. #u51222_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u51223_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. #u51223 {
  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. #u51223 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u51223_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u51224 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u51225_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. #u51225_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. #u51225_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. #u51225 {
  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. #u51225 .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. #u51225_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. #u51225.disabled {
  356. }
  357. .u51225_input_option {
  358. font-size:14px;
  359. }
  360. #u51226_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u51226 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u51226 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u51226_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51227_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. #u51227 {
  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. #u51227 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u51227_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u51228_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. #u51228 {
  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. #u51228 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u51228_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u51229 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u51230_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. #u51230 {
  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. #u51230 .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. #u51230_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u51231_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u51231 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u51231 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u51231_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u51232 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u51233_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. #u51233 {
  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. #u51233 .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. #u51233_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u51234_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u51234 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u51234 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u51234_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u51235 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u51236_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. #u51236 {
  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. #u51236 .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. #u51236_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u51237_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u51237 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u51237 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u51237_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u51238 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u51239_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. #u51239 {
  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. #u51239 .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. #u51239_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u51240_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u51240 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u51240 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u51240_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u51241 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u51242_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. #u51242 {
  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. #u51242 .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. #u51242_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u51243_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u51243 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u51243 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u51243_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u51244 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u51245_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. #u51245 {
  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. #u51245 .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. #u51245_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u51246_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u51246 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u51246 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u51246_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u51247 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u51248_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. #u51248 {
  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. #u51248 .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. #u51248_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u51249_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u51249 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u51249 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u51249_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u51250 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u51251_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. #u51251 {
  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. #u51251 .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. #u51251_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u51252_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u51252 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u51252 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u51252_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51253 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u51254_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. #u51254 {
  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. #u51254 .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. #u51254_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u51255_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u51255 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u51255 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u51255_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u51256 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u51257_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. #u51257 {
  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. #u51257 .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. #u51257_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u51258_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u51258 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u51258 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u51258_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u51259_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. #u51259 {
  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. #u51259 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u51259_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u51260_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u51260 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u51260 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u51260_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u51261_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. #u51261 {
  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. #u51261 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u51261_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u51262_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u51262 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u51262 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u51262_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u51263 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u51264_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. #u51264 {
  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. #u51264 .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. #u51264_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u51265_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u51265 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u51265 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u51265_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u51266 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u51267_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. #u51267 {
  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. #u51267 .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. #u51267_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u51268_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u51268 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u51268 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u51268_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u51269_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. #u51269 {
  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. #u51269 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u51269_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u51270_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:125px;
  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. #u51270 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:660px;
  1705. top:60px;
  1706. width:125px;
  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. #u51270 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u51270_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u51271_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:141px;
  1732. height:30px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 0);
  1735. border:none;
  1736. border-top:0px;
  1737. border-right:0px;
  1738. border-bottom:0px;
  1739. border-radius:0px;
  1740. border-top-left-radius:0px;
  1741. border-bottom-left-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1746. font-weight:500;
  1747. font-style:normal;
  1748. font-size:14px;
  1749. text-align:right;
  1750. }
  1751. #u51271 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:668px;
  1755. top:216px;
  1756. width:141px;
  1757. height:30px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1760. font-weight:500;
  1761. font-style:normal;
  1762. font-size:14px;
  1763. text-align:right;
  1764. }
  1765. #u51271 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:5px 0px 5px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u51271_text {
  1773. border-width:0px;
  1774. white-space:nowrap;
  1775. text-transform:none;
  1776. }
  1777. #u51272 label {
  1778. left:0px;
  1779. width:100%;
  1780. }
  1781. #u51272_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:4px;
  1786. width:12px;
  1787. height:12px;
  1788. }
  1789. #u51272 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:944px;
  1793. top:259px;
  1794. width:297px;
  1795. height:20px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. }
  1802. #u51272 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:0px 2px 0px 2px;
  1806. box-sizing:border-box;
  1807. }
  1808. #u51272_img.selected {
  1809. }
  1810. #u51272.selected {
  1811. }
  1812. #u51272_img.disabled {
  1813. }
  1814. #u51272.disabled {
  1815. }
  1816. #u51272_img.selectedDisabled {
  1817. }
  1818. #u51272.selectedDisabled {
  1819. }
  1820. #u51272_text {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:14px;
  1824. top:0px;
  1825. width:281px;
  1826. word-wrap:break-word;
  1827. text-transform:none;
  1828. }
  1829. #u51272_input {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:0px;
  1835. height:0px;
  1836. opacity:0;
  1837. }
  1838. #u51273 label {
  1839. left:0px;
  1840. width:100%;
  1841. }
  1842. #u51273_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:4px;
  1847. width:12px;
  1848. height:12px;
  1849. }
  1850. #u51273 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:668px;
  1854. top:259px;
  1855. width:297px;
  1856. height:20px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. }
  1863. #u51273 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:0px 2px 0px 2px;
  1867. box-sizing:border-box;
  1868. }
  1869. #u51273_img.selected {
  1870. }
  1871. #u51273.selected {
  1872. }
  1873. #u51273_img.disabled {
  1874. }
  1875. #u51273.disabled {
  1876. }
  1877. #u51273_img.selectedDisabled {
  1878. }
  1879. #u51273.selectedDisabled {
  1880. }
  1881. #u51273_text {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:14px;
  1885. top:0px;
  1886. width:281px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u51273_input {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:0px;
  1896. height:0px;
  1897. opacity:0;
  1898. }
  1899. #u51274 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:0px;
  1905. height:0px;
  1906. }
  1907. #u51275_div {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:300px;
  1913. height:1180px;
  1914. background:inherit;
  1915. background-color:rgba(240, 242, 245, 1);
  1916. border:none;
  1917. border-radius:0px;
  1918. -moz-box-shadow:none;
  1919. -webkit-box-shadow:none;
  1920. box-shadow:none;
  1921. }
  1922. #u51275 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:330px;
  1926. top:50px;
  1927. width:300px;
  1928. height:1180px;
  1929. display:flex;
  1930. }
  1931. #u51275 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u51275_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. visibility:hidden;
  1943. }
  1944. #u51276 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:0px;
  1950. height:0px;
  1951. }
  1952. #u51277_div {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:260px;
  1958. height:40px;
  1959. background:inherit;
  1960. background-color:rgba(255, 255, 255, 1);
  1961. box-sizing:border-box;
  1962. border-width:1px;
  1963. border-style:solid;
  1964. border-color:rgba(242, 242, 242, 1);
  1965. border-radius:4px;
  1966. -moz-box-shadow:none;
  1967. -webkit-box-shadow:none;
  1968. box-shadow:none;
  1969. font-family:'Microsoft YaHei', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:14px;
  1973. color:#CCCCCC;
  1974. text-align:left;
  1975. }
  1976. #u51277 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:350px;
  1980. top:130px;
  1981. width:260px;
  1982. height:40px;
  1983. display:flex;
  1984. font-family:'Microsoft YaHei', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. color:#CCCCCC;
  1989. text-align:left;
  1990. }
  1991. #u51277 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 8px 2px 8px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u51277_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u51278_input {
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:217px;
  2009. height:33px;
  2010. padding:2px 2px 2px 2px;
  2011. font-family:'Microsoft YaHei', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. letter-spacing:normal;
  2016. color:#000000;
  2017. vertical-align:none;
  2018. text-align:left;
  2019. text-transform:none;
  2020. background-color:transparent;
  2021. border-color:transparent;
  2022. }
  2023. #u51278_input.disabled {
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:217px;
  2028. height:33px;
  2029. padding:2px 2px 2px 2px;
  2030. font-family:'Microsoft YaHei', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:14px;
  2034. letter-spacing:normal;
  2035. color:#000000;
  2036. vertical-align:none;
  2037. text-align:left;
  2038. text-transform:none;
  2039. background-color:transparent;
  2040. border-color:transparent;
  2041. }
  2042. #u51278_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:217px;
  2048. height:33px;
  2049. background:inherit;
  2050. background-color:rgba(255, 255, 255, 1);
  2051. border:none;
  2052. border-radius:0px;
  2053. -moz-box-shadow:none;
  2054. -webkit-box-shadow:none;
  2055. box-shadow:none;
  2056. font-family:'Microsoft YaHei', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:14px;
  2060. }
  2061. #u51278 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:358px;
  2065. top:131px;
  2066. width:217px;
  2067. height:33px;
  2068. display:flex;
  2069. font-family:'Microsoft YaHei', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:14px;
  2073. }
  2074. #u51278 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 2px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u51278_div.disabled {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:217px;
  2087. height:33px;
  2088. background:inherit;
  2089. background-color:rgba(240, 240, 240, 1);
  2090. border:none;
  2091. border-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'Microsoft YaHei', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. }
  2100. #u51278.disabled {
  2101. }
  2102. #u51279_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:14px;
  2108. height:14px;
  2109. }
  2110. #u51279 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:582px;
  2114. top:142px;
  2115. width:14px;
  2116. height:14px;
  2117. display:flex;
  2118. }
  2119. #u51279 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 2px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u51279_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. visibility:hidden;
  2131. }
  2132. #u51280 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:0px;
  2138. height:0px;
  2139. }
  2140. #u51281_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:260px;
  2146. height:60px;
  2147. background:inherit;
  2148. background-color:rgba(0, 153, 255, 0.0980392156862745);
  2149. border:none;
  2150. border-radius:4px;
  2151. -moz-box-shadow:none;
  2152. -webkit-box-shadow:none;
  2153. box-shadow:none;
  2154. font-family:'Microsoft YaHei', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:14px;
  2158. color:#CCCCCC;
  2159. text-align:left;
  2160. }
  2161. #u51281 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:350px;
  2165. top:190px;
  2166. width:260px;
  2167. height:60px;
  2168. display:flex;
  2169. font-family:'Microsoft YaHei', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:14px;
  2173. color:#CCCCCC;
  2174. text-align:left;
  2175. }
  2176. #u51281 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 8px 2px 8px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u51281_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. visibility:hidden;
  2188. }
  2189. #u51282_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:98px;
  2195. height:20px;
  2196. background:inherit;
  2197. background-color:rgba(51, 51, 51, 0);
  2198. border:none;
  2199. border-radius:4px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:14px;
  2207. text-align:left;
  2208. }
  2209. #u51282 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:367px;
  2213. top:213px;
  2214. width:98px;
  2215. height:20px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:14px;
  2221. text-align:left;
  2222. }
  2223. #u51282 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:0px 0px 0px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u51282_text {
  2231. border-width:0px;
  2232. white-space:nowrap;
  2233. text-transform:none;
  2234. }
  2235. #u51283 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:0px;
  2241. height:0px;
  2242. }
  2243. #u51284_div {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:260px;
  2249. height:60px;
  2250. background:inherit;
  2251. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2252. border:none;
  2253. border-radius:4px;
  2254. -moz-box-shadow:none;
  2255. -webkit-box-shadow:none;
  2256. box-shadow:none;
  2257. font-family:'Microsoft YaHei', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. color:#CCCCCC;
  2262. text-align:left;
  2263. }
  2264. #u51284 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:350px;
  2268. top:370px;
  2269. width:260px;
  2270. height:60px;
  2271. display:flex;
  2272. font-family:'Microsoft YaHei', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. color:#CCCCCC;
  2277. text-align:left;
  2278. }
  2279. #u51284 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:2px 8px 2px 8px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u51284_text {
  2287. border-width:0px;
  2288. word-wrap:break-word;
  2289. text-transform:none;
  2290. visibility:hidden;
  2291. }
  2292. #u51285_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:100px;
  2298. height:20px;
  2299. background:inherit;
  2300. background-color:rgba(51, 51, 51, 0);
  2301. border:none;
  2302. border-radius:4px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:14px;
  2310. text-align:left;
  2311. }
  2312. #u51285 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:365px;
  2316. top:393px;
  2317. width:100px;
  2318. height:20px;
  2319. display:flex;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:14px;
  2324. text-align:left;
  2325. }
  2326. #u51285 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:0px 0px 0px 0px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u51285_text {
  2334. border-width:0px;
  2335. white-space:nowrap;
  2336. text-transform:none;
  2337. }
  2338. #u51286 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. }
  2346. #u51287_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:260px;
  2352. height:60px;
  2353. background:inherit;
  2354. background-color:rgba(0, 153, 255, 0);
  2355. border:none;
  2356. border-radius:4px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-family:'Microsoft YaHei', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:14px;
  2364. color:#CCCCCC;
  2365. text-align:left;
  2366. }
  2367. #u51287 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:350px;
  2371. top:250px;
  2372. width:260px;
  2373. height:60px;
  2374. display:flex;
  2375. font-family:'Microsoft YaHei', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:14px;
  2379. color:#CCCCCC;
  2380. text-align:left;
  2381. }
  2382. #u51287 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 8px 2px 8px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u51287_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u51288_div {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:100px;
  2401. height:20px;
  2402. background:inherit;
  2403. background-color:rgba(51, 51, 51, 0);
  2404. border:none;
  2405. border-radius:4px;
  2406. -moz-box-shadow:none;
  2407. -webkit-box-shadow:none;
  2408. box-shadow:none;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. text-align:left;
  2414. }
  2415. #u51288 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:365px;
  2419. top:273px;
  2420. width:100px;
  2421. height:20px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:14px;
  2427. text-align:left;
  2428. }
  2429. #u51288 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:0px 0px 0px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u51288_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u51289 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:0px;
  2447. height:0px;
  2448. }
  2449. #u51290_div {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:260px;
  2455. height:60px;
  2456. background:inherit;
  2457. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2458. border:none;
  2459. border-radius:4px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-family:'Microsoft YaHei', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. color:#CCCCCC;
  2468. text-align:left;
  2469. }
  2470. #u51290 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:350px;
  2474. top:310px;
  2475. width:260px;
  2476. height:60px;
  2477. display:flex;
  2478. font-family:'Microsoft YaHei', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. color:#CCCCCC;
  2483. text-align:left;
  2484. }
  2485. #u51290 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 8px 2px 8px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u51290_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u51291_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:100px;
  2504. height:20px;
  2505. background:inherit;
  2506. background-color:rgba(51, 51, 51, 0);
  2507. border:none;
  2508. border-radius:4px;
  2509. -moz-box-shadow:none;
  2510. -webkit-box-shadow:none;
  2511. box-shadow:none;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. text-align:left;
  2517. }
  2518. #u51291 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:365px;
  2522. top:333px;
  2523. width:100px;
  2524. height:20px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. text-align:left;
  2531. }
  2532. #u51291 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:0px 0px 0px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u51291_text {
  2540. border-width:0px;
  2541. white-space:nowrap;
  2542. text-transform:none;
  2543. }
  2544. #u51292_div {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:73px;
  2550. height:25px;
  2551. background:inherit;
  2552. background-color:rgba(255, 255, 255, 0);
  2553. border:none;
  2554. border-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2559. font-weight:500;
  2560. font-style:normal;
  2561. font-size:18px;
  2562. }
  2563. #u51292 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:350px;
  2567. top:77px;
  2568. width:73px;
  2569. height:25px;
  2570. display:flex;
  2571. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2572. font-weight:500;
  2573. font-style:normal;
  2574. font-size:18px;
  2575. }
  2576. #u51292 .text {
  2577. position:absolute;
  2578. align-self:flex-start;
  2579. padding:0px 0px 0px 0px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u51292_text {
  2584. border-width:0px;
  2585. white-space:nowrap;
  2586. text-transform:none;
  2587. }
  2588. #u51293 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:0px;
  2594. height:0px;
  2595. }
  2596. #u51294_div {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:113px;
  2602. height:30px;
  2603. background:inherit;
  2604. background-color:rgba(255, 255, 255, 0);
  2605. border:none;
  2606. border-top:0px;
  2607. border-right:0px;
  2608. border-bottom:0px;
  2609. border-radius:0px;
  2610. border-top-left-radius:0px;
  2611. border-bottom-left-radius:0px;
  2612. -moz-box-shadow:none;
  2613. -webkit-box-shadow:none;
  2614. box-shadow:none;
  2615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2616. font-weight:500;
  2617. font-style:normal;
  2618. font-size:14px;
  2619. }
  2620. #u51294 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:668px;
  2624. top:127px;
  2625. width:113px;
  2626. height:30px;
  2627. display:flex;
  2628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2629. font-weight:500;
  2630. font-style:normal;
  2631. font-size:14px;
  2632. }
  2633. #u51294 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:5px 0px 5px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u51294_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u51295_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:463px;
  2651. height:30px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 0);
  2654. border:none;
  2655. border-top:0px;
  2656. border-right:0px;
  2657. border-bottom:0px;
  2658. border-radius:0px;
  2659. border-top-left-radius:0px;
  2660. border-bottom-left-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:12px;
  2668. }
  2669. #u51295 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:668px;
  2673. top:157px;
  2674. width:463px;
  2675. height:30px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:12px;
  2681. }
  2682. #u51295 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:5px 0px 5px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u51295_text {
  2690. border-width:0px;
  2691. white-space:nowrap;
  2692. text-transform:none;
  2693. }
  2694. #u51296_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:50px;
  2700. height:31px;
  2701. }
  2702. #u51296 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:1474px;
  2706. top:126px;
  2707. width:50px;
  2708. height:31px;
  2709. display:flex;
  2710. }
  2711. #u51296 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 2px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u51296_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u51297_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:883px;
  2730. height:2px;
  2731. }
  2732. #u51297 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:668px;
  2736. top:207px;
  2737. width:882px;
  2738. height:1px;
  2739. display:flex;
  2740. }
  2741. #u51297 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u51297_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u51298_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:883px;
  2760. height:2px;
  2761. }
  2762. #u51298 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:668px;
  2766. top:299px;
  2767. width:882px;
  2768. height:1px;
  2769. display:flex;
  2770. }
  2771. #u51298 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 2px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u51298_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. visibility:hidden;
  2783. }
  2784. #u51299_div {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:85px;
  2790. height:30px;
  2791. background:inherit;
  2792. background-color:rgba(255, 255, 255, 0);
  2793. border:none;
  2794. border-top:0px;
  2795. border-right:0px;
  2796. border-bottom:0px;
  2797. border-radius:0px;
  2798. border-top-left-radius:0px;
  2799. border-bottom-left-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2804. font-weight:500;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. }
  2808. #u51299 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:668px;
  2812. top:326px;
  2813. width:85px;
  2814. height:30px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2817. font-weight:500;
  2818. font-style:normal;
  2819. font-size:14px;
  2820. }
  2821. #u51299 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:5px 0px 5px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u51299_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u51300 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u51301_div {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:200px;
  2847. height:1193px;
  2848. background:inherit;
  2849. background-color:rgba(255, 255, 255, 1);
  2850. border:none;
  2851. border-radius:0px;
  2852. -moz-box-shadow:none;
  2853. -webkit-box-shadow:none;
  2854. box-shadow:none;
  2855. }
  2856. #u51301 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:120px;
  2860. top:50px;
  2861. width:200px;
  2862. height:1193px;
  2863. display:flex;
  2864. }
  2865. #u51301 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u51301_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u51302_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:200px;
  2884. height:60px;
  2885. background:inherit;
  2886. background-color:rgba(224, 231, 247, 1);
  2887. border:none;
  2888. border-radius:0px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2893. font-weight:500;
  2894. font-style:normal;
  2895. font-size:18px;
  2896. }
  2897. #u51302 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:120px;
  2901. top:50px;
  2902. width:200px;
  2903. height:60px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2906. font-weight:500;
  2907. font-style:normal;
  2908. font-size:18px;
  2909. }
  2910. #u51302 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:0px 0px 0px 20px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u51302_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. }
  2922. #u51303_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:97px;
  2928. height:22px;
  2929. background:inherit;
  2930. background-color:rgba(255, 255, 255, 0);
  2931. border:none;
  2932. border-radius:0px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:16px;
  2940. }
  2941. #u51303 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:147px;
  2945. top:387px;
  2946. width:97px;
  2947. height:22px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:16px;
  2953. }
  2954. #u51303 .text {
  2955. position:absolute;
  2956. align-self:flex-start;
  2957. padding:0px 0px 0px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u51303_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. }
  2966. #u51304_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:97px;
  2972. height:22px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:16px;
  2984. }
  2985. #u51304 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:147px;
  2989. top:166px;
  2990. width:97px;
  2991. height:22px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:16px;
  2997. }
  2998. #u51304 .text {
  2999. position:absolute;
  3000. align-self:flex-start;
  3001. padding:0px 0px 0px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u51304_text {
  3006. border-width:0px;
  3007. word-wrap:break-word;
  3008. text-transform:none;
  3009. }
  3010. #u51305_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:49px;
  3016. height:17px;
  3017. background:inherit;
  3018. background-color:rgba(255, 255, 255, 0);
  3019. border:none;
  3020. border-radius:0px;
  3021. -moz-box-shadow:none;
  3022. -webkit-box-shadow:none;
  3023. box-shadow:none;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. color:#AAAAAA;
  3029. }
  3030. #u51305 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:147px;
  3034. top:130px;
  3035. width:49px;
  3036. height:17px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:12px;
  3042. color:#AAAAAA;
  3043. }
  3044. #u51305 .text {
  3045. position:absolute;
  3046. align-self:flex-start;
  3047. padding:0px 0px 0px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u51305_text {
  3052. border-width:0px;
  3053. white-space:nowrap;
  3054. text-transform:none;
  3055. }
  3056. #u51306_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:97px;
  3062. height:22px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 0);
  3065. border:none;
  3066. border-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:16px;
  3074. }
  3075. #u51306 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:147px;
  3079. top:208px;
  3080. width:97px;
  3081. height:22px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:16px;
  3087. }
  3088. #u51306 .text {
  3089. position:absolute;
  3090. align-self:flex-start;
  3091. padding:0px 0px 0px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u51306_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u51307_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:201px;
  3106. height:2px;
  3107. }
  3108. #u51307 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:120px;
  3112. top:246px;
  3113. width:200px;
  3114. height:1px;
  3115. display:flex;
  3116. }
  3117. #u51307 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u51307_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u51308_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:97px;
  3136. height:22px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 0);
  3139. border:none;
  3140. border-radius:0px;
  3141. -moz-box-shadow:none;
  3142. -webkit-box-shadow:none;
  3143. box-shadow:none;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:16px;
  3148. }
  3149. #u51308 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:147px;
  3153. top:569px;
  3154. width:97px;
  3155. height:22px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:16px;
  3161. }
  3162. #u51308 .text {
  3163. position:absolute;
  3164. align-self:flex-start;
  3165. padding:0px 0px 0px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u51308_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. }
  3174. #u51309_div {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:49px;
  3180. height:17px;
  3181. background:inherit;
  3182. background-color:rgba(255, 255, 255, 0);
  3183. border:none;
  3184. border-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#AAAAAA;
  3193. }
  3194. #u51309 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:147px;
  3198. top:533px;
  3199. width:49px;
  3200. height:17px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:12px;
  3206. color:#AAAAAA;
  3207. }
  3208. #u51309 .text {
  3209. position:absolute;
  3210. align-self:flex-start;
  3211. padding:0px 0px 0px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u51309_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u51310_div {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:97px;
  3226. height:22px;
  3227. background:inherit;
  3228. background-color:rgba(255, 255, 255, 0);
  3229. border:none;
  3230. border-radius:0px;
  3231. -moz-box-shadow:none;
  3232. -webkit-box-shadow:none;
  3233. box-shadow:none;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:16px;
  3238. }
  3239. #u51310 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:147px;
  3243. top:754px;
  3244. width:97px;
  3245. height:22px;
  3246. display:flex;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:16px;
  3251. }
  3252. #u51310 .text {
  3253. position:absolute;
  3254. align-self:flex-start;
  3255. padding:0px 0px 0px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u51310_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. }
  3264. #u51311_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:201px;
  3270. height:2px;
  3271. }
  3272. #u51311 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:120px;
  3276. top:655px;
  3277. width:200px;
  3278. height:1px;
  3279. display:flex;
  3280. }
  3281. #u51311 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u51311_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u51312_div {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:97px;
  3300. height:22px;
  3301. background:inherit;
  3302. background-color:rgba(255, 255, 255, 0);
  3303. border:none;
  3304. border-radius:0px;
  3305. -moz-box-shadow:none;
  3306. -webkit-box-shadow:none;
  3307. box-shadow:none;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:16px;
  3312. }
  3313. #u51312 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:147px;
  3317. top:712px;
  3318. width:97px;
  3319. height:22px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:16px;
  3325. }
  3326. #u51312 .text {
  3327. position:absolute;
  3328. align-self:flex-start;
  3329. padding:0px 0px 0px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u51312_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. }
  3338. #u51313_div {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:49px;
  3344. height:17px;
  3345. background:inherit;
  3346. background-color:rgba(255, 255, 255, 0);
  3347. border:none;
  3348. border-radius:0px;
  3349. -moz-box-shadow:none;
  3350. -webkit-box-shadow:none;
  3351. box-shadow:none;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:12px;
  3356. color:#AAAAAA;
  3357. }
  3358. #u51313 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:147px;
  3362. top:676px;
  3363. width:49px;
  3364. height:17px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#AAAAAA;
  3371. }
  3372. #u51313 .text {
  3373. position:absolute;
  3374. align-self:flex-start;
  3375. padding:0px 0px 0px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u51313_text {
  3380. border-width:0px;
  3381. white-space:nowrap;
  3382. text-transform:none;
  3383. }
  3384. #u51314_div {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:97px;
  3390. height:22px;
  3391. background:inherit;
  3392. background-color:rgba(255, 255, 255, 0);
  3393. border:none;
  3394. border-radius:0px;
  3395. -moz-box-shadow:none;
  3396. -webkit-box-shadow:none;
  3397. box-shadow:none;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:16px;
  3402. }
  3403. #u51314 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:147px;
  3407. top:895px;
  3408. width:97px;
  3409. height:22px;
  3410. display:flex;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:16px;
  3415. }
  3416. #u51314 .text {
  3417. position:absolute;
  3418. align-self:flex-start;
  3419. padding:0px 0px 0px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u51314_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. }
  3428. #u51315_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:97px;
  3434. height:22px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 0);
  3437. border:none;
  3438. border-radius:0px;
  3439. -moz-box-shadow:none;
  3440. -webkit-box-shadow:none;
  3441. box-shadow:none;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:16px;
  3446. }
  3447. #u51315 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:147px;
  3451. top:937px;
  3452. width:97px;
  3453. height:22px;
  3454. display:flex;
  3455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:16px;
  3459. }
  3460. #u51315 .text {
  3461. position:absolute;
  3462. align-self:flex-start;
  3463. padding:0px 0px 0px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u51315_text {
  3468. border-width:0px;
  3469. white-space:nowrap;
  3470. text-transform:none;
  3471. }
  3472. #u51316_img {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:201px;
  3478. height:2px;
  3479. }
  3480. #u51316 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:120px;
  3484. top:796px;
  3485. width:200px;
  3486. height:1px;
  3487. display:flex;
  3488. }
  3489. #u51316 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 2px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u51316_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u51317_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:97px;
  3508. height:22px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 0);
  3511. border:none;
  3512. border-radius:0px;
  3513. -moz-box-shadow:none;
  3514. -webkit-box-shadow:none;
  3515. box-shadow:none;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:16px;
  3520. }
  3521. #u51317 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:147px;
  3525. top:853px;
  3526. width:97px;
  3527. height:22px;
  3528. display:flex;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:16px;
  3533. }
  3534. #u51317 .text {
  3535. position:absolute;
  3536. align-self:flex-start;
  3537. padding:0px 0px 0px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u51317_text {
  3542. border-width:0px;
  3543. word-wrap:break-word;
  3544. text-transform:none;
  3545. }
  3546. #u51318_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:49px;
  3552. height:17px;
  3553. background:inherit;
  3554. background-color:rgba(255, 255, 255, 0);
  3555. border:none;
  3556. border-radius:0px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:12px;
  3564. color:#AAAAAA;
  3565. }
  3566. #u51318 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:147px;
  3570. top:817px;
  3571. width:49px;
  3572. height:17px;
  3573. display:flex;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#AAAAAA;
  3579. }
  3580. #u51318 .text {
  3581. position:absolute;
  3582. align-self:flex-start;
  3583. padding:0px 0px 0px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u51318_text {
  3588. border-width:0px;
  3589. white-space:nowrap;
  3590. text-transform:none;
  3591. }
  3592. #u51319_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:97px;
  3598. height:22px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 255, 0);
  3601. border:none;
  3602. border-radius:0px;
  3603. -moz-box-shadow:none;
  3604. -webkit-box-shadow:none;
  3605. box-shadow:none;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:16px;
  3610. }
  3611. #u51319 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:147px;
  3615. top:611px;
  3616. width:97px;
  3617. height:22px;
  3618. display:flex;
  3619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:16px;
  3623. }
  3624. #u51319 .text {
  3625. position:absolute;
  3626. align-self:flex-start;
  3627. padding:0px 0px 0px 0px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u51319_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. }
  3636. #u51320_div {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:97px;
  3642. height:22px;
  3643. background:inherit;
  3644. background-color:rgba(255, 255, 255, 0);
  3645. border:none;
  3646. border-radius:0px;
  3647. -moz-box-shadow:none;
  3648. -webkit-box-shadow:none;
  3649. box-shadow:none;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:16px;
  3654. }
  3655. #u51320 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:147px;
  3659. top:303px;
  3660. width:97px;
  3661. height:22px;
  3662. display:flex;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:16px;
  3667. }
  3668. #u51320 .text {
  3669. position:absolute;
  3670. align-self:flex-start;
  3671. padding:0px 0px 0px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u51320_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. }
  3680. #u51321_div {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:49px;
  3686. height:17px;
  3687. background:inherit;
  3688. background-color:rgba(255, 255, 255, 0);
  3689. border:none;
  3690. border-radius:0px;
  3691. -moz-box-shadow:none;
  3692. -webkit-box-shadow:none;
  3693. box-shadow:none;
  3694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#AAAAAA;
  3699. }
  3700. #u51321 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:147px;
  3704. top:267px;
  3705. width:49px;
  3706. height:17px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#AAAAAA;
  3713. }
  3714. #u51321 .text {
  3715. position:absolute;
  3716. align-self:flex-start;
  3717. padding:0px 0px 0px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u51321_text {
  3722. border-width:0px;
  3723. white-space:nowrap;
  3724. text-transform:none;
  3725. }
  3726. #u51322_div {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:97px;
  3732. height:22px;
  3733. background:inherit;
  3734. background-color:rgba(255, 255, 255, 0);
  3735. border:none;
  3736. border-radius:0px;
  3737. -moz-box-shadow:none;
  3738. -webkit-box-shadow:none;
  3739. box-shadow:none;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:16px;
  3744. }
  3745. #u51322 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:147px;
  3749. top:345px;
  3750. width:97px;
  3751. height:22px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:16px;
  3757. }
  3758. #u51322 .text {
  3759. position:absolute;
  3760. align-self:flex-start;
  3761. padding:0px 0px 0px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u51322_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. }
  3770. #u51323_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:201px;
  3776. height:2px;
  3777. }
  3778. #u51323 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:120px;
  3782. top:514px;
  3783. width:200px;
  3784. height:1px;
  3785. display:flex;
  3786. }
  3787. #u51323 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u51323_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u51324_div {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:97px;
  3806. height:22px;
  3807. background:inherit;
  3808. background-color:rgba(255, 255, 255, 0);
  3809. border:none;
  3810. border-radius:0px;
  3811. -moz-box-shadow:none;
  3812. -webkit-box-shadow:none;
  3813. box-shadow:none;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:16px;
  3818. }
  3819. #u51324 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:147px;
  3823. top:429px;
  3824. width:97px;
  3825. height:22px;
  3826. display:flex;
  3827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:16px;
  3831. }
  3832. #u51324 .text {
  3833. position:absolute;
  3834. align-self:flex-start;
  3835. padding:0px 0px 0px 0px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u51324_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. }
  3844. #u51325_div {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:97px;
  3850. height:22px;
  3851. background:inherit;
  3852. background-color:rgba(255, 255, 255, 0);
  3853. border:none;
  3854. border-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:16px;
  3862. }
  3863. #u51325 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:147px;
  3867. top:471px;
  3868. width:97px;
  3869. height:22px;
  3870. display:flex;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:16px;
  3875. }
  3876. #u51325 .text {
  3877. position:absolute;
  3878. align-self:flex-start;
  3879. padding:0px 0px 0px 0px;
  3880. box-sizing:border-box;
  3881. width:100%;
  3882. }
  3883. #u51325_text {
  3884. border-width:0px;
  3885. white-space:nowrap;
  3886. text-transform:none;
  3887. }
  3888. #u51326_div {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:1265px;
  3894. height:1193px;
  3895. background:inherit;
  3896. background-color:rgba(255, 255, 255, 1);
  3897. border:none;
  3898. border-radius:0px;
  3899. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3900. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3901. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3902. color:#1890FF;
  3903. }
  3904. #u51326 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:1649px;
  3908. top:50px;
  3909. width:1265px;
  3910. height:1193px;
  3911. display:flex;
  3912. color:#1890FF;
  3913. }
  3914. #u51326 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 2px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u51326_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. visibility:hidden;
  3926. }
  3927. #u51327_div {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:125px;
  3933. height:50px;
  3934. background:inherit;
  3935. background-color:rgba(255, 255, 255, 0);
  3936. border:none;
  3937. border-left:0px;
  3938. border-top:0px;
  3939. border-right:0px;
  3940. border-radius:0px;
  3941. border-bottom-right-radius:0px;
  3942. border-bottom-left-radius:0px;
  3943. -moz-box-shadow:none;
  3944. -webkit-box-shadow:none;
  3945. box-shadow:none;
  3946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3947. font-weight:500;
  3948. font-style:normal;
  3949. font-size:18px;
  3950. }
  3951. #u51327 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:1980px;
  3955. top:60px;
  3956. width:125px;
  3957. height:50px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3960. font-weight:500;
  3961. font-style:normal;
  3962. font-size:18px;
  3963. }
  3964. #u51327 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:0px 0px 0px 0px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u51327_text {
  3972. border-width:0px;
  3973. white-space:nowrap;
  3974. text-transform:none;
  3975. }
  3976. #u51328 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:0px;
  3982. height:0px;
  3983. }
  3984. #u51329_div {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:300px;
  3990. height:1180px;
  3991. background:inherit;
  3992. background-color:rgba(240, 242, 245, 1);
  3993. border:none;
  3994. border-radius:0px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. }
  3999. #u51329 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:1650px;
  4003. top:50px;
  4004. width:300px;
  4005. height:1180px;
  4006. display:flex;
  4007. }
  4008. #u51329 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u51329_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u51330 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u51331_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:260px;
  4035. height:40px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 1);
  4038. box-sizing:border-box;
  4039. border-width:1px;
  4040. border-style:solid;
  4041. border-color:rgba(242, 242, 242, 1);
  4042. border-radius:4px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'Microsoft YaHei', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. color:#CCCCCC;
  4051. text-align:left;
  4052. }
  4053. #u51331 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:1670px;
  4057. top:130px;
  4058. width:260px;
  4059. height:40px;
  4060. display:flex;
  4061. font-family:'Microsoft YaHei', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. color:#CCCCCC;
  4066. text-align:left;
  4067. }
  4068. #u51331 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 8px 2px 8px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u51331_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u51332_input {
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:217px;
  4086. height:33px;
  4087. padding:2px 2px 2px 2px;
  4088. font-family:'Microsoft YaHei', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:14px;
  4092. letter-spacing:normal;
  4093. color:#000000;
  4094. vertical-align:none;
  4095. text-align:left;
  4096. text-transform:none;
  4097. background-color:transparent;
  4098. border-color:transparent;
  4099. }
  4100. #u51332_input.disabled {
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:217px;
  4105. height:33px;
  4106. padding:2px 2px 2px 2px;
  4107. font-family:'Microsoft YaHei', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:14px;
  4111. letter-spacing:normal;
  4112. color:#000000;
  4113. vertical-align:none;
  4114. text-align:left;
  4115. text-transform:none;
  4116. background-color:transparent;
  4117. border-color:transparent;
  4118. }
  4119. #u51332_div {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:217px;
  4125. height:33px;
  4126. background:inherit;
  4127. background-color:rgba(255, 255, 255, 1);
  4128. border:none;
  4129. border-radius:0px;
  4130. -moz-box-shadow:none;
  4131. -webkit-box-shadow:none;
  4132. box-shadow:none;
  4133. font-family:'Microsoft YaHei', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. }
  4138. #u51332 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:1678px;
  4142. top:131px;
  4143. width:217px;
  4144. height:33px;
  4145. display:flex;
  4146. font-family:'Microsoft YaHei', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u51332 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u51332_div.disabled {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:217px;
  4164. height:33px;
  4165. background:inherit;
  4166. background-color:rgba(240, 240, 240, 1);
  4167. border:none;
  4168. border-radius:0px;
  4169. -moz-box-shadow:none;
  4170. -webkit-box-shadow:none;
  4171. box-shadow:none;
  4172. font-family:'Microsoft YaHei', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:14px;
  4176. }
  4177. #u51332.disabled {
  4178. }
  4179. #u51333_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:14px;
  4185. height:14px;
  4186. }
  4187. #u51333 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:1902px;
  4191. top:142px;
  4192. width:14px;
  4193. height:14px;
  4194. display:flex;
  4195. }
  4196. #u51333 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 2px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u51333_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u51334 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u51335_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:260px;
  4223. height:60px;
  4224. background:inherit;
  4225. background-color:rgba(0, 153, 255, 0.0980392156862745);
  4226. border:none;
  4227. border-radius:4px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. font-family:'Microsoft YaHei', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:14px;
  4235. color:#CCCCCC;
  4236. text-align:left;
  4237. }
  4238. #u51335 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:1670px;
  4242. top:190px;
  4243. width:260px;
  4244. height:60px;
  4245. display:flex;
  4246. font-family:'Microsoft YaHei', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:14px;
  4250. color:#CCCCCC;
  4251. text-align:left;
  4252. }
  4253. #u51335 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 8px 2px 8px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u51335_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u51336_div {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:98px;
  4272. height:20px;
  4273. background:inherit;
  4274. background-color:rgba(51, 51, 51, 0);
  4275. border:none;
  4276. border-radius:4px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:14px;
  4284. text-align:left;
  4285. }
  4286. #u51336 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:1687px;
  4290. top:213px;
  4291. width:98px;
  4292. height:20px;
  4293. display:flex;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:14px;
  4298. text-align:left;
  4299. }
  4300. #u51336 .text {
  4301. position:absolute;
  4302. align-self:center;
  4303. padding:0px 0px 0px 0px;
  4304. box-sizing:border-box;
  4305. width:100%;
  4306. }
  4307. #u51336_text {
  4308. border-width:0px;
  4309. white-space:nowrap;
  4310. text-transform:none;
  4311. }
  4312. #u51337 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:0px;
  4317. width:0px;
  4318. height:0px;
  4319. }
  4320. #u51338_div {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:260px;
  4326. height:60px;
  4327. background:inherit;
  4328. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4329. border:none;
  4330. border-radius:4px;
  4331. -moz-box-shadow:none;
  4332. -webkit-box-shadow:none;
  4333. box-shadow:none;
  4334. font-family:'Microsoft YaHei', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:14px;
  4338. color:#CCCCCC;
  4339. text-align:left;
  4340. }
  4341. #u51338 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:1670px;
  4345. top:370px;
  4346. width:260px;
  4347. height:60px;
  4348. display:flex;
  4349. font-family:'Microsoft YaHei', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:14px;
  4353. color:#CCCCCC;
  4354. text-align:left;
  4355. }
  4356. #u51338 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 8px 2px 8px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u51338_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u51339_div {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:100px;
  4375. height:20px;
  4376. background:inherit;
  4377. background-color:rgba(51, 51, 51, 0);
  4378. border:none;
  4379. border-radius:4px;
  4380. -moz-box-shadow:none;
  4381. -webkit-box-shadow:none;
  4382. box-shadow:none;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:14px;
  4387. text-align:left;
  4388. }
  4389. #u51339 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:1685px;
  4393. top:393px;
  4394. width:100px;
  4395. height:20px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:14px;
  4401. text-align:left;
  4402. }
  4403. #u51339 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:0px 0px 0px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u51339_text {
  4411. border-width:0px;
  4412. white-space:nowrap;
  4413. text-transform:none;
  4414. }
  4415. #u51340 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:0px;
  4421. height:0px;
  4422. }
  4423. #u51341_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:260px;
  4429. height:60px;
  4430. background:inherit;
  4431. background-color:rgba(0, 153, 255, 0);
  4432. border:none;
  4433. border-radius:4px;
  4434. -moz-box-shadow:none;
  4435. -webkit-box-shadow:none;
  4436. box-shadow:none;
  4437. font-family:'Microsoft YaHei', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:14px;
  4441. color:#CCCCCC;
  4442. text-align:left;
  4443. }
  4444. #u51341 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1670px;
  4448. top:250px;
  4449. width:260px;
  4450. height:60px;
  4451. display:flex;
  4452. font-family:'Microsoft YaHei', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:14px;
  4456. color:#CCCCCC;
  4457. text-align:left;
  4458. }
  4459. #u51341 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 8px 2px 8px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u51341_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u51342_div {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:100px;
  4478. height:20px;
  4479. background:inherit;
  4480. background-color:rgba(51, 51, 51, 0);
  4481. border:none;
  4482. border-radius:4px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:14px;
  4490. text-align:left;
  4491. }
  4492. #u51342 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:1685px;
  4496. top:273px;
  4497. width:100px;
  4498. height:20px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. text-align:left;
  4505. }
  4506. #u51342 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:0px 0px 0px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u51342_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u51343 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:0px;
  4524. height:0px;
  4525. }
  4526. #u51344_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:260px;
  4532. height:60px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4535. border:none;
  4536. border-radius:4px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. font-family:'Microsoft YaHei', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:14px;
  4544. color:#CCCCCC;
  4545. text-align:left;
  4546. }
  4547. #u51344 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:1670px;
  4551. top:310px;
  4552. width:260px;
  4553. height:60px;
  4554. display:flex;
  4555. font-family:'Microsoft YaHei', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:14px;
  4559. color:#CCCCCC;
  4560. text-align:left;
  4561. }
  4562. #u51344 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 8px 2px 8px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u51344_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u51345_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:100px;
  4581. height:20px;
  4582. background:inherit;
  4583. background-color:rgba(51, 51, 51, 0);
  4584. border:none;
  4585. border-radius:4px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:14px;
  4593. text-align:left;
  4594. }
  4595. #u51345 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:1685px;
  4599. top:333px;
  4600. width:100px;
  4601. height:20px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:14px;
  4607. text-align:left;
  4608. }
  4609. #u51345 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:0px 0px 0px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u51345_text {
  4617. border-width:0px;
  4618. white-space:nowrap;
  4619. text-transform:none;
  4620. }
  4621. #u51346_div {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:73px;
  4627. height:25px;
  4628. background:inherit;
  4629. background-color:rgba(255, 255, 255, 0);
  4630. border:none;
  4631. border-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4636. font-weight:500;
  4637. font-style:normal;
  4638. font-size:18px;
  4639. }
  4640. #u51346 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:1670px;
  4644. top:77px;
  4645. width:73px;
  4646. height:25px;
  4647. display:flex;
  4648. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4649. font-weight:500;
  4650. font-style:normal;
  4651. font-size:18px;
  4652. }
  4653. #u51346 .text {
  4654. position:absolute;
  4655. align-self:flex-start;
  4656. padding:0px 0px 0px 0px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u51346_text {
  4661. border-width:0px;
  4662. white-space:nowrap;
  4663. text-transform:none;
  4664. }
  4665. #u51347 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:0px;
  4671. height:0px;
  4672. }
  4673. #u51348_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:113px;
  4679. height:30px;
  4680. background:inherit;
  4681. background-color:rgba(255, 255, 255, 0);
  4682. border:none;
  4683. border-top:0px;
  4684. border-right:0px;
  4685. border-bottom:0px;
  4686. border-radius:0px;
  4687. border-top-left-radius:0px;
  4688. border-bottom-left-radius:0px;
  4689. -moz-box-shadow:none;
  4690. -webkit-box-shadow:none;
  4691. box-shadow:none;
  4692. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4693. font-weight:500;
  4694. font-style:normal;
  4695. font-size:14px;
  4696. }
  4697. #u51348 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:1988px;
  4701. top:127px;
  4702. width:113px;
  4703. height:30px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4706. font-weight:500;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. }
  4710. #u51348 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:5px 0px 5px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u51348_text {
  4718. border-width:0px;
  4719. white-space:nowrap;
  4720. text-transform:none;
  4721. }
  4722. #u51349_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:463px;
  4728. height:30px;
  4729. background:inherit;
  4730. background-color:rgba(255, 255, 255, 0);
  4731. border:none;
  4732. border-top:0px;
  4733. border-right:0px;
  4734. border-bottom:0px;
  4735. border-radius:0px;
  4736. border-top-left-radius:0px;
  4737. border-bottom-left-radius:0px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. }
  4746. #u51349 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:1988px;
  4750. top:157px;
  4751. width:463px;
  4752. height:30px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:12px;
  4758. }
  4759. #u51349 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:5px 0px 5px 0px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u51349_text {
  4767. border-width:0px;
  4768. white-space:nowrap;
  4769. text-transform:none;
  4770. }
  4771. #u51350 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:0px;
  4777. height:0px;
  4778. }
  4779. #u51351_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:50px;
  4785. height:31px;
  4786. }
  4787. #u51351 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:2820px;
  4791. top:125px;
  4792. width:50px;
  4793. height:31px;
  4794. display:flex;
  4795. }
  4796. #u51351 .text {
  4797. position:absolute;
  4798. align-self:center;
  4799. padding:2px 2px 2px 2px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u51351_text {
  4804. border-width:0px;
  4805. word-wrap:break-word;
  4806. text-transform:none;
  4807. visibility:hidden;
  4808. }
  4809. #u51352_img {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:883px;
  4815. height:2px;
  4816. }
  4817. #u51352 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:1988px;
  4821. top:207px;
  4822. width:882px;
  4823. height:1px;
  4824. display:flex;
  4825. }
  4826. #u51352 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 2px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u51352_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u51353_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:43px;
  4845. height:30px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 0);
  4848. border:none;
  4849. border-top:0px;
  4850. border-right:0px;
  4851. border-bottom:0px;
  4852. border-radius:0px;
  4853. border-top-left-radius:0px;
  4854. border-bottom-left-radius:0px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4859. font-weight:500;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. }
  4863. #u51353 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:700px;
  4867. top:370px;
  4868. width:43px;
  4869. height:30px;
  4870. display:flex;
  4871. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4872. font-weight:500;
  4873. font-style:normal;
  4874. font-size:14px;
  4875. }
  4876. #u51353 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:5px 0px 5px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u51353_text {
  4884. border-width:0px;
  4885. white-space:nowrap;
  4886. text-transform:none;
  4887. }
  4888. #u51354_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:37px;
  4894. height:70px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 0);
  4897. border:none;
  4898. border-top:0px;
  4899. border-right:0px;
  4900. border-bottom:0px;
  4901. border-radius:0px;
  4902. border-top-left-radius:0px;
  4903. border-bottom-left-radius:0px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4908. font-weight:500;
  4909. font-style:normal;
  4910. font-size:14px;
  4911. }
  4912. #u51354 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:716px;
  4916. top:400px;
  4917. width:37px;
  4918. height:70px;
  4919. display:flex;
  4920. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4921. font-weight:500;
  4922. font-style:normal;
  4923. font-size:14px;
  4924. }
  4925. #u51354 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:5px 0px 5px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u51354_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u51355_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:43px;
  4943. height:30px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 0);
  4946. border:none;
  4947. border-top:0px;
  4948. border-right:0px;
  4949. border-bottom:0px;
  4950. border-radius:0px;
  4951. border-top-left-radius:0px;
  4952. border-bottom-left-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4957. font-weight:500;
  4958. font-style:normal;
  4959. font-size:14px;
  4960. }
  4961. #u51355 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:700px;
  4965. top:480px;
  4966. width:43px;
  4967. height:30px;
  4968. display:flex;
  4969. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4970. font-weight:500;
  4971. font-style:normal;
  4972. font-size:14px;
  4973. }
  4974. #u51355 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:5px 0px 5px 0px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u51355_text {
  4982. border-width:0px;
  4983. white-space:nowrap;
  4984. text-transform:none;
  4985. }
  4986. #u51356_div {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:37px;
  4992. height:70px;
  4993. background:inherit;
  4994. background-color:rgba(255, 255, 255, 0);
  4995. border:none;
  4996. border-top:0px;
  4997. border-right:0px;
  4998. border-bottom:0px;
  4999. border-radius:0px;
  5000. border-top-left-radius:0px;
  5001. border-bottom-left-radius:0px;
  5002. -moz-box-shadow:none;
  5003. -webkit-box-shadow:none;
  5004. box-shadow:none;
  5005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5006. font-weight:500;
  5007. font-style:normal;
  5008. font-size:14px;
  5009. }
  5010. #u51356 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:716px;
  5014. top:510px;
  5015. width:37px;
  5016. height:70px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5019. font-weight:500;
  5020. font-style:normal;
  5021. font-size:14px;
  5022. }
  5023. #u51356 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:5px 0px 5px 0px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u51356_text {
  5031. border-width:0px;
  5032. white-space:nowrap;
  5033. text-transform:none;
  5034. }
  5035. #u51357_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:43px;
  5041. height:30px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 0);
  5044. border:none;
  5045. border-top:0px;
  5046. border-right:0px;
  5047. border-bottom:0px;
  5048. border-radius:0px;
  5049. border-top-left-radius:0px;
  5050. border-bottom-left-radius:0px;
  5051. -moz-box-shadow:none;
  5052. -webkit-box-shadow:none;
  5053. box-shadow:none;
  5054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5055. font-weight:500;
  5056. font-style:normal;
  5057. font-size:14px;
  5058. }
  5059. #u51357 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:700px;
  5063. top:580px;
  5064. width:43px;
  5065. height:30px;
  5066. display:flex;
  5067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5068. font-weight:500;
  5069. font-style:normal;
  5070. font-size:14px;
  5071. }
  5072. #u51357 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:5px 0px 5px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u51357_text {
  5080. border-width:0px;
  5081. white-space:nowrap;
  5082. text-transform:none;
  5083. }
  5084. #u51358_div {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:37px;
  5090. height:70px;
  5091. background:inherit;
  5092. background-color:rgba(255, 255, 255, 0);
  5093. border:none;
  5094. border-top:0px;
  5095. border-right:0px;
  5096. border-bottom:0px;
  5097. border-radius:0px;
  5098. border-top-left-radius:0px;
  5099. border-bottom-left-radius:0px;
  5100. -moz-box-shadow:none;
  5101. -webkit-box-shadow:none;
  5102. box-shadow:none;
  5103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5104. font-weight:500;
  5105. font-style:normal;
  5106. font-size:14px;
  5107. }
  5108. #u51358 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:716px;
  5112. top:610px;
  5113. width:37px;
  5114. height:70px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5117. font-weight:500;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. }
  5121. #u51358 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:5px 0px 5px 0px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u51358_text {
  5129. border-width:0px;
  5130. white-space:nowrap;
  5131. text-transform:none;
  5132. }
  5133. #u51359_div {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:43px;
  5139. height:30px;
  5140. background:inherit;
  5141. background-color:rgba(255, 255, 255, 0);
  5142. border:none;
  5143. border-top:0px;
  5144. border-right:0px;
  5145. border-bottom:0px;
  5146. border-radius:0px;
  5147. border-top-left-radius:0px;
  5148. border-bottom-left-radius:0px;
  5149. -moz-box-shadow:none;
  5150. -webkit-box-shadow:none;
  5151. box-shadow:none;
  5152. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5153. font-weight:500;
  5154. font-style:normal;
  5155. font-size:14px;
  5156. }
  5157. #u51359 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:700px;
  5161. top:685px;
  5162. width:43px;
  5163. height:30px;
  5164. display:flex;
  5165. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5166. font-weight:500;
  5167. font-style:normal;
  5168. font-size:14px;
  5169. }
  5170. #u51359 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:5px 0px 5px 0px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u51359_text {
  5178. border-width:0px;
  5179. white-space:nowrap;
  5180. text-transform:none;
  5181. }
  5182. #u51360_div {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:37px;
  5188. height:70px;
  5189. background:inherit;
  5190. background-color:rgba(255, 255, 255, 0);
  5191. border:none;
  5192. border-top:0px;
  5193. border-right:0px;
  5194. border-bottom:0px;
  5195. border-radius:0px;
  5196. border-top-left-radius:0px;
  5197. border-bottom-left-radius:0px;
  5198. -moz-box-shadow:none;
  5199. -webkit-box-shadow:none;
  5200. box-shadow:none;
  5201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5202. font-weight:500;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. }
  5206. #u51360 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:716px;
  5210. top:715px;
  5211. width:37px;
  5212. height:70px;
  5213. display:flex;
  5214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5215. font-weight:500;
  5216. font-style:normal;
  5217. font-size:14px;
  5218. }
  5219. #u51360 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:5px 0px 5px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u51360_text {
  5227. border-width:0px;
  5228. white-space:nowrap;
  5229. text-transform:none;
  5230. }
  5231. #u51361 label {
  5232. left:0px;
  5233. width:100%;
  5234. }
  5235. #u51361_img {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:12px;
  5241. height:12px;
  5242. }
  5243. #u51361 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:685px;
  5247. top:377px;
  5248. width:100px;
  5249. height:16px;
  5250. display:flex;
  5251. }
  5252. #u51361 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:0px 2px 0px 2px;
  5256. box-sizing:border-box;
  5257. }
  5258. #u51361_img.selected {
  5259. }
  5260. #u51361.selected {
  5261. }
  5262. #u51361_img.disabled {
  5263. }
  5264. #u51361.disabled {
  5265. }
  5266. #u51361_img.selectedDisabled {
  5267. }
  5268. #u51361.selectedDisabled {
  5269. }
  5270. #u51361_text {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:14px;
  5274. top:0px;
  5275. width:84px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. visibility:hidden;
  5279. }
  5280. #u51361_input {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:0px;
  5286. height:0px;
  5287. opacity:0;
  5288. }
  5289. #u51362 label {
  5290. left:0px;
  5291. width:100%;
  5292. }
  5293. #u51362_img {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:12px;
  5299. height:12px;
  5300. }
  5301. #u51362 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:700px;
  5305. top:409px;
  5306. width:100px;
  5307. height:16px;
  5308. display:flex;
  5309. }
  5310. #u51362 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:0px 2px 0px 2px;
  5314. box-sizing:border-box;
  5315. }
  5316. #u51362_img.selected {
  5317. }
  5318. #u51362.selected {
  5319. }
  5320. #u51362_img.disabled {
  5321. }
  5322. #u51362.disabled {
  5323. }
  5324. #u51362_img.selectedDisabled {
  5325. }
  5326. #u51362.selectedDisabled {
  5327. }
  5328. #u51362_text {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:14px;
  5332. top:0px;
  5333. width:84px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u51362_input {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:0px;
  5344. height:0px;
  5345. opacity:0;
  5346. }
  5347. #u51363 label {
  5348. left:0px;
  5349. width:100%;
  5350. }
  5351. #u51363_img {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:12px;
  5357. height:12px;
  5358. }
  5359. #u51363 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:700px;
  5363. top:429px;
  5364. width:100px;
  5365. height:16px;
  5366. display:flex;
  5367. }
  5368. #u51363 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:0px 2px 0px 2px;
  5372. box-sizing:border-box;
  5373. }
  5374. #u51363_img.selected {
  5375. }
  5376. #u51363.selected {
  5377. }
  5378. #u51363_img.disabled {
  5379. }
  5380. #u51363.disabled {
  5381. }
  5382. #u51363_img.selectedDisabled {
  5383. }
  5384. #u51363.selectedDisabled {
  5385. }
  5386. #u51363_text {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:14px;
  5390. top:0px;
  5391. width:84px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u51363_input {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:0px;
  5402. height:0px;
  5403. opacity:0;
  5404. }
  5405. #u51364 label {
  5406. left:0px;
  5407. width:100%;
  5408. }
  5409. #u51364_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:12px;
  5415. height:12px;
  5416. }
  5417. #u51364 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:700px;
  5421. top:449px;
  5422. width:100px;
  5423. height:16px;
  5424. display:flex;
  5425. }
  5426. #u51364 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:0px 2px 0px 2px;
  5430. box-sizing:border-box;
  5431. }
  5432. #u51364_img.selected {
  5433. }
  5434. #u51364.selected {
  5435. }
  5436. #u51364_img.disabled {
  5437. }
  5438. #u51364.disabled {
  5439. }
  5440. #u51364_img.selectedDisabled {
  5441. }
  5442. #u51364.selectedDisabled {
  5443. }
  5444. #u51364_text {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:14px;
  5448. top:0px;
  5449. width:84px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u51364_input {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:0px;
  5460. height:0px;
  5461. opacity:0;
  5462. }
  5463. #u51365 label {
  5464. left:0px;
  5465. width:100%;
  5466. }
  5467. #u51365_img {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:12px;
  5473. height:12px;
  5474. }
  5475. #u51365 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:685px;
  5479. top:488px;
  5480. width:100px;
  5481. height:16px;
  5482. display:flex;
  5483. }
  5484. #u51365 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:0px 2px 0px 2px;
  5488. box-sizing:border-box;
  5489. }
  5490. #u51365_img.selected {
  5491. }
  5492. #u51365.selected {
  5493. }
  5494. #u51365_img.disabled {
  5495. }
  5496. #u51365.disabled {
  5497. }
  5498. #u51365_img.selectedDisabled {
  5499. }
  5500. #u51365.selectedDisabled {
  5501. }
  5502. #u51365_text {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:14px;
  5506. top:0px;
  5507. width:84px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u51365_input {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:0px;
  5518. height:0px;
  5519. opacity:0;
  5520. }
  5521. #u51366 label {
  5522. left:0px;
  5523. width:100%;
  5524. }
  5525. #u51366_img {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:12px;
  5531. height:12px;
  5532. }
  5533. #u51366 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:700px;
  5537. top:520px;
  5538. width:100px;
  5539. height:16px;
  5540. display:flex;
  5541. }
  5542. #u51366 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:0px 2px 0px 2px;
  5546. box-sizing:border-box;
  5547. }
  5548. #u51366_img.selected {
  5549. }
  5550. #u51366.selected {
  5551. }
  5552. #u51366_img.disabled {
  5553. }
  5554. #u51366.disabled {
  5555. }
  5556. #u51366_img.selectedDisabled {
  5557. }
  5558. #u51366.selectedDisabled {
  5559. }
  5560. #u51366_text {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:14px;
  5564. top:0px;
  5565. width:84px;
  5566. word-wrap:break-word;
  5567. text-transform:none;
  5568. visibility:hidden;
  5569. }
  5570. #u51366_input {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:0px;
  5576. height:0px;
  5577. opacity:0;
  5578. }
  5579. #u51367 label {
  5580. left:0px;
  5581. width:100%;
  5582. }
  5583. #u51367_img {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:12px;
  5589. height:12px;
  5590. }
  5591. #u51367 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:700px;
  5595. top:540px;
  5596. width:100px;
  5597. height:16px;
  5598. display:flex;
  5599. }
  5600. #u51367 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:0px 2px 0px 2px;
  5604. box-sizing:border-box;
  5605. }
  5606. #u51367_img.selected {
  5607. }
  5608. #u51367.selected {
  5609. }
  5610. #u51367_img.disabled {
  5611. }
  5612. #u51367.disabled {
  5613. }
  5614. #u51367_img.selectedDisabled {
  5615. }
  5616. #u51367.selectedDisabled {
  5617. }
  5618. #u51367_text {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:14px;
  5622. top:0px;
  5623. width:84px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u51367_input {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:0px;
  5634. height:0px;
  5635. opacity:0;
  5636. }
  5637. #u51368 label {
  5638. left:0px;
  5639. width:100%;
  5640. }
  5641. #u51368_img {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:12px;
  5647. height:12px;
  5648. }
  5649. #u51368 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:700px;
  5653. top:560px;
  5654. width:100px;
  5655. height:16px;
  5656. display:flex;
  5657. }
  5658. #u51368 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:0px 2px 0px 2px;
  5662. box-sizing:border-box;
  5663. }
  5664. #u51368_img.selected {
  5665. }
  5666. #u51368.selected {
  5667. }
  5668. #u51368_img.disabled {
  5669. }
  5670. #u51368.disabled {
  5671. }
  5672. #u51368_img.selectedDisabled {
  5673. }
  5674. #u51368.selectedDisabled {
  5675. }
  5676. #u51368_text {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:14px;
  5680. top:0px;
  5681. width:84px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u51368_input {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:0px;
  5692. height:0px;
  5693. opacity:0;
  5694. }
  5695. #u51369 label {
  5696. left:0px;
  5697. width:100%;
  5698. }
  5699. #u51369_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:12px;
  5705. height:12px;
  5706. }
  5707. #u51369 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:685px;
  5711. top:589px;
  5712. width:100px;
  5713. height:16px;
  5714. display:flex;
  5715. }
  5716. #u51369 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:0px 2px 0px 2px;
  5720. box-sizing:border-box;
  5721. }
  5722. #u51369_img.selected {
  5723. }
  5724. #u51369.selected {
  5725. }
  5726. #u51369_img.disabled {
  5727. }
  5728. #u51369.disabled {
  5729. }
  5730. #u51369_img.selectedDisabled {
  5731. }
  5732. #u51369.selectedDisabled {
  5733. }
  5734. #u51369_text {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:14px;
  5738. top:0px;
  5739. width:84px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u51369_input {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. opacity:0;
  5752. }
  5753. #u51370 label {
  5754. left:0px;
  5755. width:100%;
  5756. }
  5757. #u51370_img {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:12px;
  5763. height:12px;
  5764. }
  5765. #u51370 {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:700px;
  5769. top:621px;
  5770. width:100px;
  5771. height:16px;
  5772. display:flex;
  5773. }
  5774. #u51370 .text {
  5775. position:absolute;
  5776. align-self:center;
  5777. padding:0px 2px 0px 2px;
  5778. box-sizing:border-box;
  5779. }
  5780. #u51370_img.selected {
  5781. }
  5782. #u51370.selected {
  5783. }
  5784. #u51370_img.disabled {
  5785. }
  5786. #u51370.disabled {
  5787. }
  5788. #u51370_img.selectedDisabled {
  5789. }
  5790. #u51370.selectedDisabled {
  5791. }
  5792. #u51370_text {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:14px;
  5796. top:0px;
  5797. width:84px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u51370_input {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:0px;
  5808. height:0px;
  5809. opacity:0;
  5810. }
  5811. #u51371 label {
  5812. left:0px;
  5813. width:100%;
  5814. }
  5815. #u51371_img {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:12px;
  5821. height:12px;
  5822. }
  5823. #u51371 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:700px;
  5827. top:641px;
  5828. width:100px;
  5829. height:16px;
  5830. display:flex;
  5831. }
  5832. #u51371 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:0px 2px 0px 2px;
  5836. box-sizing:border-box;
  5837. }
  5838. #u51371_img.selected {
  5839. }
  5840. #u51371.selected {
  5841. }
  5842. #u51371_img.disabled {
  5843. }
  5844. #u51371.disabled {
  5845. }
  5846. #u51371_img.selectedDisabled {
  5847. }
  5848. #u51371.selectedDisabled {
  5849. }
  5850. #u51371_text {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:14px;
  5854. top:0px;
  5855. width:84px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u51371_input {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:0px;
  5866. height:0px;
  5867. opacity:0;
  5868. }
  5869. #u51372 label {
  5870. left:0px;
  5871. width:100%;
  5872. }
  5873. #u51372_img {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:12px;
  5879. height:12px;
  5880. }
  5881. #u51372 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:700px;
  5885. top:661px;
  5886. width:100px;
  5887. height:16px;
  5888. display:flex;
  5889. }
  5890. #u51372 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:0px 2px 0px 2px;
  5894. box-sizing:border-box;
  5895. }
  5896. #u51372_img.selected {
  5897. }
  5898. #u51372.selected {
  5899. }
  5900. #u51372_img.disabled {
  5901. }
  5902. #u51372.disabled {
  5903. }
  5904. #u51372_img.selectedDisabled {
  5905. }
  5906. #u51372.selectedDisabled {
  5907. }
  5908. #u51372_text {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:14px;
  5912. top:0px;
  5913. width:84px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u51372_input {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:0px;
  5924. height:0px;
  5925. opacity:0;
  5926. }
  5927. #u51373 label {
  5928. left:0px;
  5929. width:100%;
  5930. }
  5931. #u51373_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:12px;
  5937. height:12px;
  5938. }
  5939. #u51373 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:685px;
  5943. top:696px;
  5944. width:100px;
  5945. height:16px;
  5946. display:flex;
  5947. }
  5948. #u51373 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:0px 2px 0px 2px;
  5952. box-sizing:border-box;
  5953. }
  5954. #u51373_img.selected {
  5955. }
  5956. #u51373.selected {
  5957. }
  5958. #u51373_img.disabled {
  5959. }
  5960. #u51373.disabled {
  5961. }
  5962. #u51373_img.selectedDisabled {
  5963. }
  5964. #u51373.selectedDisabled {
  5965. }
  5966. #u51373_text {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:14px;
  5970. top:0px;
  5971. width:84px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u51373_input {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:0px;
  5982. height:0px;
  5983. opacity:0;
  5984. }
  5985. #u51374 label {
  5986. left:0px;
  5987. width:100%;
  5988. }
  5989. #u51374_img {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:12px;
  5995. height:12px;
  5996. }
  5997. #u51374 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:700px;
  6001. top:728px;
  6002. width:100px;
  6003. height:16px;
  6004. display:flex;
  6005. }
  6006. #u51374 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:0px 2px 0px 2px;
  6010. box-sizing:border-box;
  6011. }
  6012. #u51374_img.selected {
  6013. }
  6014. #u51374.selected {
  6015. }
  6016. #u51374_img.disabled {
  6017. }
  6018. #u51374.disabled {
  6019. }
  6020. #u51374_img.selectedDisabled {
  6021. }
  6022. #u51374.selectedDisabled {
  6023. }
  6024. #u51374_text {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:14px;
  6028. top:0px;
  6029. width:84px;
  6030. word-wrap:break-word;
  6031. text-transform:none;
  6032. visibility:hidden;
  6033. }
  6034. #u51374_input {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:0px;
  6040. height:0px;
  6041. opacity:0;
  6042. }
  6043. #u51375 label {
  6044. left:0px;
  6045. width:100%;
  6046. }
  6047. #u51375_img {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:12px;
  6053. height:12px;
  6054. }
  6055. #u51375 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:700px;
  6059. top:748px;
  6060. width:100px;
  6061. height:16px;
  6062. display:flex;
  6063. }
  6064. #u51375 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:0px 2px 0px 2px;
  6068. box-sizing:border-box;
  6069. }
  6070. #u51375_img.selected {
  6071. }
  6072. #u51375.selected {
  6073. }
  6074. #u51375_img.disabled {
  6075. }
  6076. #u51375.disabled {
  6077. }
  6078. #u51375_img.selectedDisabled {
  6079. }
  6080. #u51375.selectedDisabled {
  6081. }
  6082. #u51375_text {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:14px;
  6086. top:0px;
  6087. width:84px;
  6088. word-wrap:break-word;
  6089. text-transform:none;
  6090. visibility:hidden;
  6091. }
  6092. #u51375_input {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:0px;
  6098. height:0px;
  6099. opacity:0;
  6100. }
  6101. #u51376 label {
  6102. left:0px;
  6103. width:100%;
  6104. }
  6105. #u51376_img {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:12px;
  6111. height:12px;
  6112. }
  6113. #u51376 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:700px;
  6117. top:768px;
  6118. width:100px;
  6119. height:16px;
  6120. display:flex;
  6121. }
  6122. #u51376 .text {
  6123. position:absolute;
  6124. align-self:center;
  6125. padding:0px 2px 0px 2px;
  6126. box-sizing:border-box;
  6127. }
  6128. #u51376_img.selected {
  6129. }
  6130. #u51376.selected {
  6131. }
  6132. #u51376_img.disabled {
  6133. }
  6134. #u51376.disabled {
  6135. }
  6136. #u51376_img.selectedDisabled {
  6137. }
  6138. #u51376.selectedDisabled {
  6139. }
  6140. #u51376_text {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:14px;
  6144. top:0px;
  6145. width:84px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u51376_input {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:0px;
  6156. height:0px;
  6157. opacity:0;
  6158. }