styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u63819_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. #u63819 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u63819 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u63819_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u63820_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. #u63820 {
  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. #u63820 .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. #u63820_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u63821_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. #u63821 {
  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. #u63821 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u63821_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u63822 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u63823_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u63823 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u63823 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u63823_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u63824_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. #u63824 {
  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. #u63824 .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. #u63824_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u63825_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. #u63825 {
  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. #u63825 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u63825_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u63826 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u63827_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. #u63827_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. #u63827_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. #u63827 {
  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. #u63827 .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. #u63827_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. #u63827.disabled {
  356. }
  357. .u63827_input_option {
  358. font-size:14px;
  359. }
  360. #u63828_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u63828 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u63828 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u63828_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u63829_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. #u63829 {
  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. #u63829 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u63829_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u63830_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. #u63830 {
  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. #u63830 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u63830_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u63831 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u63832_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. #u63832 {
  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. #u63832 .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. #u63832_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u63833_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u63833 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u63833 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u63833_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u63834 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u63835_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. #u63835 {
  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. #u63835 .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. #u63835_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u63836_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u63836 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u63836 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u63836_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u63837 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u63838_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. #u63838 {
  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. #u63838 .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. #u63838_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u63839_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u63839 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u63839 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u63839_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u63840 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u63841_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. #u63841 {
  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. #u63841 .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. #u63841_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u63842_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u63842 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u63842 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u63842_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u63843 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u63844_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. #u63844 {
  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. #u63844 .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. #u63844_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u63845_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u63845 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u63845 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u63845_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u63846 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u63847_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. #u63847 {
  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. #u63847 .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. #u63847_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u63848_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u63848 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u63848 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u63848_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u63849 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u63850_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. #u63850 {
  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. #u63850 .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. #u63850_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u63851_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u63851 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u63851 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u63851_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u63852 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u63853_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. #u63853 {
  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. #u63853 .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. #u63853_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u63854_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u63854 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u63854 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u63854_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u63855 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u63856_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. #u63856 {
  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. #u63856 .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. #u63856_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u63857_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u63857 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u63857 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u63857_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u63858 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u63859_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. #u63859 {
  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. #u63859 .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. #u63859_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u63860_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u63860 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u63860 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u63860_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u63861_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. #u63861 {
  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. #u63861 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u63861_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u63862_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u63862 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u63862 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u63862_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u63863_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. #u63863 {
  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. #u63863 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u63863_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u63864_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u63864 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u63864 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u63864_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u63865 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u63866_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. #u63866 {
  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. #u63866 .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. #u63866_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u63867_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u63867 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u63867 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u63867_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u63868 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u63869_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. #u63869 {
  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. #u63869 .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. #u63869_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u63870_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u63870 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u63870 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u63870_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u63871_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1179px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u63871 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:332px;
  1660. top:51px;
  1661. width:1260px;
  1662. height:1179px;
  1663. display:flex;
  1664. }
  1665. #u63871 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u63871_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u63872_div {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:80px;
  1684. height:40px;
  1685. background:inherit;
  1686. background-color:rgba(24, 144, 255, 1);
  1687. border:none;
  1688. border-radius:0px;
  1689. -moz-box-shadow:none;
  1690. -webkit-box-shadow:none;
  1691. box-shadow:none;
  1692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1693. font-weight:400;
  1694. font-style:normal;
  1695. font-size:14px;
  1696. color:#FFFFFF;
  1697. }
  1698. #u63872 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:436px;
  1702. top:333px;
  1703. width:80px;
  1704. height:40px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u63872 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u63872_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u63873_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:80px;
  1730. height:40px;
  1731. background:inherit;
  1732. background-color:rgba(255, 255, 255, 1);
  1733. box-sizing:border-box;
  1734. border-width:1px;
  1735. border-style:solid;
  1736. border-color:rgba(170, 170, 170, 1);
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:14px;
  1745. }
  1746. #u63873 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:356px;
  1750. top:333px;
  1751. width:80px;
  1752. height:40px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. }
  1759. #u63873 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 2px 2px 2px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u63873_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u63874_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:50px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-left:0px;
  1782. border-top:0px;
  1783. border-right:0px;
  1784. border-radius:0px;
  1785. border-bottom-right-radius:0px;
  1786. border-bottom-left-radius:0px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:18px;
  1794. line-height:40px;
  1795. }
  1796. #u63874 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:355px;
  1800. top:50px;
  1801. width:73px;
  1802. height:50px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:18px;
  1808. line-height:40px;
  1809. }
  1810. #u63874 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:0px 0px 0px 0px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u63874_text {
  1818. border-width:0px;
  1819. white-space:nowrap;
  1820. text-transform:none;
  1821. }
  1822. #u63875_div {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:1207px;
  1828. height:120px;
  1829. background:inherit;
  1830. background-color:rgba(255, 255, 255, 1);
  1831. box-sizing:border-box;
  1832. border-width:1px;
  1833. border-style:solid;
  1834. border-color:rgba(201, 201, 201, 1);
  1835. border-radius:4px;
  1836. -moz-box-shadow:none;
  1837. -webkit-box-shadow:none;
  1838. box-shadow:none;
  1839. font-family:'Microsoft YaHei', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:14px;
  1843. color:#CCCCCC;
  1844. text-align:left;
  1845. }
  1846. #u63875 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:356px;
  1850. top:191px;
  1851. width:1207px;
  1852. height:120px;
  1853. display:flex;
  1854. font-family:'Microsoft YaHei', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#CCCCCC;
  1859. text-align:left;
  1860. }
  1861. #u63875 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 8px 2px 8px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u63875_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. visibility:hidden;
  1873. }
  1874. #u63876_div {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:127px;
  1880. height:60px;
  1881. background:inherit;
  1882. background-color:rgba(255, 255, 255, 0);
  1883. border:none;
  1884. border-left:0px;
  1885. border-top:0px;
  1886. border-right:0px;
  1887. border-radius:0px;
  1888. border-bottom-right-radius:0px;
  1889. border-bottom-left-radius:0px;
  1890. -moz-box-shadow:none;
  1891. -webkit-box-shadow:none;
  1892. box-shadow:none;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. line-height:30px;
  1898. }
  1899. #u63876 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:481px;
  1903. top:221px;
  1904. width:127px;
  1905. height:60px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:14px;
  1911. line-height:30px;
  1912. }
  1913. #u63876 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:0px 0px 0px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u63876_text {
  1921. border-width:0px;
  1922. white-space:nowrap;
  1923. text-transform:none;
  1924. }
  1925. #u63877_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:75px;
  1931. height:75px;
  1932. }
  1933. #u63877 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:385px;
  1937. top:211px;
  1938. width:75px;
  1939. height:75px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. }
  1945. #u63877 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u63877_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u63878_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:127px;
  1963. height:90px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. border:none;
  1967. border-left:0px;
  1968. border-top:0px;
  1969. border-right:0px;
  1970. border-radius:0px;
  1971. border-bottom-right-radius:0px;
  1972. border-bottom-left-radius:0px;
  1973. -moz-box-shadow:none;
  1974. -webkit-box-shadow:none;
  1975. box-shadow:none;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. line-height:30px;
  1981. }
  1982. #u63878 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:946px;
  1986. top:206px;
  1987. width:127px;
  1988. height:90px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. line-height:30px;
  1995. }
  1996. #u63878 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:0px 0px 0px 0px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u63878_text {
  2004. border-width:0px;
  2005. white-space:nowrap;
  2006. text-transform:none;
  2007. }
  2008. #u63879_img {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:75px;
  2014. height:75px;
  2015. }
  2016. #u63879 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:850px;
  2020. top:211px;
  2021. width:75px;
  2022. height:75px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. }
  2028. #u63879 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 2px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u63879_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u63880_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:127px;
  2046. height:90px;
  2047. background:inherit;
  2048. background-color:rgba(255, 255, 255, 0);
  2049. border:none;
  2050. border-left:0px;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-radius:0px;
  2054. border-bottom-right-radius:0px;
  2055. border-bottom-left-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:14px;
  2063. line-height:30px;
  2064. }
  2065. #u63880 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:1372px;
  2069. top:206px;
  2070. width:127px;
  2071. height:90px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. line-height:30px;
  2078. }
  2079. #u63880 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:0px 0px 0px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u63880_text {
  2087. border-width:0px;
  2088. white-space:nowrap;
  2089. text-transform:none;
  2090. }
  2091. #u63881_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:75px;
  2097. height:75px;
  2098. }
  2099. #u63881 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:1276px;
  2103. top:211px;
  2104. width:75px;
  2105. height:75px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. }
  2111. #u63881 .text {
  2112. position:absolute;
  2113. align-self:center;
  2114. padding:2px 2px 2px 2px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u63881_text {
  2119. border-width:0px;
  2120. word-wrap:break-word;
  2121. text-transform:none;
  2122. }
  2123. #u63882_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:100px;
  2129. height:30px;
  2130. background:inherit;
  2131. background-color:rgba(24, 144, 255, 1);
  2132. border:none;
  2133. border-radius:4px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:14px;
  2141. color:#FFFFFF;
  2142. }
  2143. #u63882 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1460px;
  2147. top:333px;
  2148. width:100px;
  2149. height:30px;
  2150. display:flex;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:14px;
  2155. color:#FFFFFF;
  2156. }
  2157. #u63882 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u63882_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. }
  2169. #u63883_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:60px;
  2175. height:30px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 1);
  2178. box-sizing:border-box;
  2179. border-width:1px;
  2180. border-style:solid;
  2181. border-color:rgba(170, 170, 170, 1);
  2182. border-radius:4px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:14px;
  2190. }
  2191. #u63883 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:1390px;
  2195. top:333px;
  2196. width:60px;
  2197. height:30px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:14px;
  2203. }
  2204. #u63883 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u63883_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. }
  2216. #u63884 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:0px;
  2222. height:0px;
  2223. }
  2224. #u63885_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:10px;
  2230. height:10px;
  2231. }
  2232. #u63885 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:373px;
  2236. top:397px;
  2237. width:10px;
  2238. height:10px;
  2239. display:flex;
  2240. color:#D9001B;
  2241. }
  2242. #u63885 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:2px 2px 2px 2px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u63885_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. visibility:hidden;
  2254. }
  2255. #u63886_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:37px;
  2261. height:20px;
  2262. background:inherit;
  2263. background-color:rgba(255, 255, 255, 0);
  2264. border:none;
  2265. border-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:12px;
  2273. color:#4B4D53;
  2274. }
  2275. #u63886 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:391px;
  2279. top:393px;
  2280. width:37px;
  2281. height:20px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#4B4D53;
  2288. }
  2289. #u63886 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u63886_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u63887 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:0px;
  2307. height:0px;
  2308. }
  2309. #u63888_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:10px;
  2315. height:10px;
  2316. }
  2317. #u63888 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:551px;
  2321. top:398px;
  2322. width:10px;
  2323. height:10px;
  2324. display:flex;
  2325. }
  2326. #u63888 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u63888_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u63889_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:37px;
  2345. height:20px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-radius:0px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. color:#4B4D53;
  2358. }
  2359. #u63889 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:569px;
  2363. top:393px;
  2364. width:37px;
  2365. height:20px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. color:#4B4D53;
  2372. }
  2373. #u63889 .text {
  2374. position:absolute;
  2375. align-self:flex-start;
  2376. padding:0px 0px 0px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u63889_text {
  2381. border-width:0px;
  2382. white-space:nowrap;
  2383. text-transform:none;
  2384. }
  2385. #u63890 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:0px;
  2391. height:0px;
  2392. }
  2393. #u63891_img {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:10px;
  2399. height:10px;
  2400. }
  2401. #u63891 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:629px;
  2405. top:398px;
  2406. width:10px;
  2407. height:10px;
  2408. display:flex;
  2409. }
  2410. #u63891 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 2px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u63891_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u63892_div {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:37px;
  2429. height:20px;
  2430. background:inherit;
  2431. background-color:rgba(255, 255, 255, 0);
  2432. border:none;
  2433. border-radius:0px;
  2434. -moz-box-shadow:none;
  2435. -webkit-box-shadow:none;
  2436. box-shadow:none;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. color:#4B4D53;
  2442. }
  2443. #u63892 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:647px;
  2447. top:393px;
  2448. width:37px;
  2449. height:20px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. color:#4B4D53;
  2456. }
  2457. #u63892 .text {
  2458. position:absolute;
  2459. align-self:flex-start;
  2460. padding:0px 0px 0px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u63892_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u63893 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:0px;
  2475. height:0px;
  2476. }
  2477. #u63894_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:10px;
  2483. height:10px;
  2484. }
  2485. #u63894 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:448px;
  2489. top:398px;
  2490. width:10px;
  2491. height:10px;
  2492. display:flex;
  2493. }
  2494. #u63894 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u63894_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. visibility:hidden;
  2506. }
  2507. #u63895_div {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:61px;
  2513. height:20px;
  2514. background:inherit;
  2515. background-color:rgba(255, 255, 255, 0);
  2516. border:none;
  2517. border-radius:0px;
  2518. -moz-box-shadow:none;
  2519. -webkit-box-shadow:none;
  2520. box-shadow:none;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. color:#4B4D53;
  2526. }
  2527. #u63895 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:466px;
  2531. top:393px;
  2532. width:61px;
  2533. height:20px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. color:#4B4D53;
  2540. }
  2541. #u63895 .text {
  2542. position:absolute;
  2543. align-self:flex-start;
  2544. padding:0px 0px 0px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u63895_text {
  2549. border-width:0px;
  2550. white-space:nowrap;
  2551. text-transform:none;
  2552. }
  2553. #u63896 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:0px;
  2559. height:0px;
  2560. }
  2561. #u63897_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:200px;
  2567. height:30px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 1);
  2570. box-sizing:border-box;
  2571. border-width:1px;
  2572. border-style:solid;
  2573. border-color:rgba(201, 201, 201, 1);
  2574. border-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-family:'Microsoft YaHei', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. color:#CCCCCC;
  2583. text-align:left;
  2584. }
  2585. #u63897 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:1363px;
  2589. top:383px;
  2590. width:200px;
  2591. height:30px;
  2592. display:flex;
  2593. font-family:'Microsoft YaHei', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. color:#CCCCCC;
  2598. text-align:left;
  2599. }
  2600. #u63897 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 8px 2px 8px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u63897_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u63898_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:13px;
  2619. height:13px;
  2620. }
  2621. #u63898 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:1541px;
  2625. top:392px;
  2626. width:13px;
  2627. height:13px;
  2628. display:flex;
  2629. }
  2630. #u63898 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 2px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u63898_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u63899_input {
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:80px;
  2648. height:22px;
  2649. padding:2px 2px 2px 2px;
  2650. font-family:'ArialMT', 'Arial', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:13px;
  2654. letter-spacing:normal;
  2655. color:#000000;
  2656. vertical-align:none;
  2657. text-align:left;
  2658. text-transform:none;
  2659. background-color:transparent;
  2660. border-color:transparent;
  2661. }
  2662. #u63899_input.disabled {
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:80px;
  2667. height:22px;
  2668. padding:2px 2px 2px 2px;
  2669. font-family:'ArialMT', 'Arial', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:13px;
  2673. letter-spacing:normal;
  2674. color:#000000;
  2675. vertical-align:none;
  2676. text-align:left;
  2677. text-transform:none;
  2678. background-color:transparent;
  2679. border-color:transparent;
  2680. }
  2681. #u63899_div {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:80px;
  2687. height:22px;
  2688. background:inherit;
  2689. background-color:rgba(255, 255, 255, 1);
  2690. border:none;
  2691. border-radius:0px;
  2692. -moz-box-shadow:none;
  2693. -webkit-box-shadow:none;
  2694. box-shadow:none;
  2695. }
  2696. #u63899 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1374px;
  2700. top:387px;
  2701. width:80px;
  2702. height:22px;
  2703. display:flex;
  2704. }
  2705. #u63899 .text {
  2706. position:absolute;
  2707. align-self:flex-start;
  2708. padding:2px 2px 2px 2px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u63899_div.disabled {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:80px;
  2718. height:22px;
  2719. background:inherit;
  2720. background-color:rgba(240, 240, 240, 1);
  2721. border:none;
  2722. border-radius:0px;
  2723. -moz-box-shadow:none;
  2724. -webkit-box-shadow:none;
  2725. box-shadow:none;
  2726. }
  2727. #u63899.disabled {
  2728. }
  2729. .u63899_input_option {
  2730. }
  2731. #u63900_input {
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:80px;
  2736. height:22px;
  2737. padding:2px 2px 2px 2px;
  2738. font-family:'ArialMT', 'Arial', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:13px;
  2742. letter-spacing:normal;
  2743. color:#000000;
  2744. vertical-align:none;
  2745. text-align:left;
  2746. text-transform:none;
  2747. background-color:transparent;
  2748. border-color:transparent;
  2749. }
  2750. #u63900_input.disabled {
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:80px;
  2755. height:22px;
  2756. padding:2px 2px 2px 2px;
  2757. font-family:'ArialMT', 'Arial', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:13px;
  2761. letter-spacing:normal;
  2762. color:#000000;
  2763. vertical-align:none;
  2764. text-align:left;
  2765. text-transform:none;
  2766. background-color:transparent;
  2767. border-color:transparent;
  2768. }
  2769. #u63900_div {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:80px;
  2775. height:22px;
  2776. background:inherit;
  2777. background-color:rgba(255, 255, 255, 1);
  2778. border:none;
  2779. border-radius:0px;
  2780. -moz-box-shadow:none;
  2781. -webkit-box-shadow:none;
  2782. box-shadow:none;
  2783. }
  2784. #u63900 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:1454px;
  2788. top:387px;
  2789. width:80px;
  2790. height:22px;
  2791. display:flex;
  2792. }
  2793. #u63900 .text {
  2794. position:absolute;
  2795. align-self:flex-start;
  2796. padding:2px 2px 2px 2px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u63900_div.disabled {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:80px;
  2806. height:22px;
  2807. background:inherit;
  2808. background-color:rgba(240, 240, 240, 1);
  2809. border:none;
  2810. border-radius:0px;
  2811. -moz-box-shadow:none;
  2812. -webkit-box-shadow:none;
  2813. box-shadow:none;
  2814. }
  2815. #u63900.disabled {
  2816. }
  2817. .u63900_input_option {
  2818. }
  2819. #u63901_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:150px;
  2825. height:60px;
  2826. background:inherit;
  2827. background-color:rgba(255, 255, 255, 0);
  2828. box-sizing:border-box;
  2829. border-width:1px;
  2830. border-style:solid;
  2831. border-color:rgba(215, 215, 215, 1);
  2832. border-left:0px;
  2833. border-top:0px;
  2834. border-right:0px;
  2835. border-radius:0px;
  2836. border-bottom-right-radius:0px;
  2837. border-bottom-left-radius:0px;
  2838. -moz-box-shadow:none;
  2839. -webkit-box-shadow:none;
  2840. box-shadow:none;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. text-align:right;
  2846. line-height:30px;
  2847. }
  2848. #u63901 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:373px;
  2852. top:436px;
  2853. width:150px;
  2854. height:60px;
  2855. display:flex;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:14px;
  2860. text-align:right;
  2861. line-height:30px;
  2862. }
  2863. #u63901 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:0px 0px 0px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u63901_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. }
  2875. #u63902_div {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:150px;
  2881. height:60px;
  2882. background:inherit;
  2883. background-color:rgba(255, 255, 255, 0);
  2884. box-sizing:border-box;
  2885. border-width:1px;
  2886. border-style:solid;
  2887. border-color:rgba(215, 215, 215, 1);
  2888. border-left:0px;
  2889. border-top:0px;
  2890. border-right:0px;
  2891. border-radius:0px;
  2892. border-bottom-right-radius:0px;
  2893. border-bottom-left-radius:0px;
  2894. -moz-box-shadow:none;
  2895. -webkit-box-shadow:none;
  2896. box-shadow:none;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:14px;
  2901. text-align:right;
  2902. line-height:30px;
  2903. }
  2904. #u63902 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:546px;
  2908. top:436px;
  2909. width:150px;
  2910. height:60px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. text-align:right;
  2917. line-height:30px;
  2918. }
  2919. #u63902 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:0px 0px 0px 0px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u63902_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. }
  2931. #u63903_div {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:150px;
  2937. height:60px;
  2938. background:inherit;
  2939. background-color:rgba(255, 255, 255, 0);
  2940. box-sizing:border-box;
  2941. border-width:1px;
  2942. border-style:solid;
  2943. border-color:rgba(215, 215, 215, 1);
  2944. border-left:0px;
  2945. border-top:0px;
  2946. border-right:0px;
  2947. border-radius:0px;
  2948. border-bottom-right-radius:0px;
  2949. border-bottom-left-radius:0px;
  2950. -moz-box-shadow:none;
  2951. -webkit-box-shadow:none;
  2952. box-shadow:none;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:14px;
  2957. text-align:right;
  2958. line-height:30px;
  2959. }
  2960. #u63903 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:720px;
  2964. top:436px;
  2965. width:150px;
  2966. height:60px;
  2967. display:flex;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. text-align:right;
  2973. line-height:30px;
  2974. }
  2975. #u63903 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:0px 0px 0px 0px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u63903_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. }
  2987. #u63904_div {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:150px;
  2993. height:60px;
  2994. background:inherit;
  2995. background-color:rgba(255, 255, 255, 0);
  2996. box-sizing:border-box;
  2997. border-width:1px;
  2998. border-style:solid;
  2999. border-color:rgba(215, 215, 215, 1);
  3000. border-left:0px;
  3001. border-top:0px;
  3002. border-right:0px;
  3003. border-radius:0px;
  3004. border-bottom-right-radius:0px;
  3005. border-bottom-left-radius:0px;
  3006. -moz-box-shadow:none;
  3007. -webkit-box-shadow:none;
  3008. box-shadow:none;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:14px;
  3013. text-align:right;
  3014. line-height:30px;
  3015. }
  3016. #u63904 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:893px;
  3020. top:436px;
  3021. width:150px;
  3022. height:60px;
  3023. display:flex;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:14px;
  3028. text-align:right;
  3029. line-height:30px;
  3030. }
  3031. #u63904 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u63904_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. }
  3043. #u63905_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:150px;
  3049. height:60px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 0);
  3052. box-sizing:border-box;
  3053. border-width:1px;
  3054. border-style:solid;
  3055. border-color:rgba(215, 215, 215, 1);
  3056. border-left:0px;
  3057. border-top:0px;
  3058. border-right:0px;
  3059. border-radius:0px;
  3060. border-bottom-right-radius:0px;
  3061. border-bottom-left-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:14px;
  3069. text-align:right;
  3070. line-height:30px;
  3071. }
  3072. #u63905 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:1066px;
  3076. top:436px;
  3077. width:150px;
  3078. height:60px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:14px;
  3084. text-align:right;
  3085. line-height:30px;
  3086. }
  3087. #u63905 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:0px 0px 0px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u63905_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. }
  3099. #u63906_div {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:150px;
  3105. height:60px;
  3106. background:inherit;
  3107. background-color:rgba(255, 255, 255, 0);
  3108. box-sizing:border-box;
  3109. border-width:1px;
  3110. border-style:solid;
  3111. border-color:rgba(215, 215, 215, 1);
  3112. border-left:0px;
  3113. border-top:0px;
  3114. border-right:0px;
  3115. border-radius:0px;
  3116. border-bottom-right-radius:0px;
  3117. border-bottom-left-radius:0px;
  3118. -moz-box-shadow:none;
  3119. -webkit-box-shadow:none;
  3120. box-shadow:none;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:14px;
  3125. text-align:right;
  3126. line-height:30px;
  3127. }
  3128. #u63906 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:1240px;
  3132. top:436px;
  3133. width:150px;
  3134. height:60px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:14px;
  3140. text-align:right;
  3141. line-height:30px;
  3142. }
  3143. #u63906 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:0px 0px 0px 0px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u63906_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. }
  3155. #u63907_div {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:150px;
  3161. height:60px;
  3162. background:inherit;
  3163. background-color:rgba(255, 255, 255, 0);
  3164. box-sizing:border-box;
  3165. border-width:1px;
  3166. border-style:solid;
  3167. border-color:rgba(215, 215, 215, 1);
  3168. border-left:0px;
  3169. border-top:0px;
  3170. border-right:0px;
  3171. border-radius:0px;
  3172. border-bottom-right-radius:0px;
  3173. border-bottom-left-radius:0px;
  3174. -moz-box-shadow:none;
  3175. -webkit-box-shadow:none;
  3176. box-shadow:none;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:14px;
  3181. text-align:right;
  3182. line-height:30px;
  3183. }
  3184. #u63907 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:1413px;
  3188. top:436px;
  3189. width:150px;
  3190. height:60px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:14px;
  3196. text-align:right;
  3197. line-height:30px;
  3198. }
  3199. #u63907 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:0px 0px 0px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u63907_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. }
  3211. #u63908_div {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:150px;
  3217. height:120px;
  3218. background:inherit;
  3219. background-color:rgba(255, 255, 255, 0);
  3220. box-sizing:border-box;
  3221. border-width:1px;
  3222. border-style:solid;
  3223. border-color:rgba(215, 215, 215, 1);
  3224. border-left:0px;
  3225. border-top:0px;
  3226. border-right:0px;
  3227. border-radius:0px;
  3228. border-bottom-right-radius:0px;
  3229. border-bottom-left-radius:0px;
  3230. -moz-box-shadow:none;
  3231. -webkit-box-shadow:none;
  3232. box-shadow:none;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. text-align:right;
  3238. line-height:30px;
  3239. }
  3240. #u63908 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:373px;
  3244. top:496px;
  3245. width:150px;
  3246. height:120px;
  3247. display:flex;
  3248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. text-align:right;
  3253. line-height:30px;
  3254. }
  3255. #u63908 .text {
  3256. position:absolute;
  3257. align-self:flex-start;
  3258. padding:0px 0px 0px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u63908_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. }
  3267. #u63909_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:150px;
  3273. height:120px;
  3274. background:inherit;
  3275. background-color:rgba(255, 255, 255, 0);
  3276. box-sizing:border-box;
  3277. border-width:1px;
  3278. border-style:solid;
  3279. border-color:rgba(215, 215, 215, 1);
  3280. border-left:0px;
  3281. border-top:0px;
  3282. border-right:0px;
  3283. border-radius:0px;
  3284. border-bottom-right-radius:0px;
  3285. border-bottom-left-radius:0px;
  3286. -moz-box-shadow:none;
  3287. -webkit-box-shadow:none;
  3288. box-shadow:none;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:14px;
  3293. text-align:right;
  3294. line-height:30px;
  3295. }
  3296. #u63909 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:546px;
  3300. top:496px;
  3301. width:150px;
  3302. height:120px;
  3303. display:flex;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:14px;
  3308. text-align:right;
  3309. line-height:30px;
  3310. }
  3311. #u63909 .text {
  3312. position:absolute;
  3313. align-self:flex-start;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u63909_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. }
  3323. #u63910_div {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:150px;
  3329. height:120px;
  3330. background:inherit;
  3331. background-color:rgba(255, 255, 255, 0);
  3332. box-sizing:border-box;
  3333. border-width:1px;
  3334. border-style:solid;
  3335. border-color:rgba(215, 215, 215, 1);
  3336. border-left:0px;
  3337. border-top:0px;
  3338. border-right:0px;
  3339. border-radius:0px;
  3340. border-bottom-right-radius:0px;
  3341. border-bottom-left-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. text-align:right;
  3350. line-height:30px;
  3351. }
  3352. #u63910 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:720px;
  3356. top:496px;
  3357. width:150px;
  3358. height:120px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:14px;
  3364. text-align:right;
  3365. line-height:30px;
  3366. }
  3367. #u63910 .text {
  3368. position:absolute;
  3369. align-self:flex-start;
  3370. padding:0px 0px 0px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u63910_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. }
  3379. #u63911_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:150px;
  3385. height:120px;
  3386. background:inherit;
  3387. background-color:rgba(255, 255, 255, 0);
  3388. box-sizing:border-box;
  3389. border-width:1px;
  3390. border-style:solid;
  3391. border-color:rgba(215, 215, 215, 1);
  3392. border-left:0px;
  3393. border-top:0px;
  3394. border-right:0px;
  3395. border-radius:0px;
  3396. border-bottom-right-radius:0px;
  3397. border-bottom-left-radius:0px;
  3398. -moz-box-shadow:none;
  3399. -webkit-box-shadow:none;
  3400. box-shadow:none;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:14px;
  3405. text-align:right;
  3406. line-height:30px;
  3407. }
  3408. #u63911 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:893px;
  3412. top:496px;
  3413. width:150px;
  3414. height:120px;
  3415. display:flex;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. text-align:right;
  3421. line-height:30px;
  3422. }
  3423. #u63911 .text {
  3424. position:absolute;
  3425. align-self:flex-start;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u63911_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. }
  3435. #u63912_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:150px;
  3441. height:120px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. box-sizing:border-box;
  3445. border-width:1px;
  3446. border-style:solid;
  3447. border-color:rgba(215, 215, 215, 1);
  3448. border-left:0px;
  3449. border-top:0px;
  3450. border-right:0px;
  3451. border-radius:0px;
  3452. border-bottom-right-radius:0px;
  3453. border-bottom-left-radius:0px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. text-align:right;
  3462. line-height:30px;
  3463. }
  3464. #u63912 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:1066px;
  3468. top:496px;
  3469. width:150px;
  3470. height:120px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:14px;
  3476. text-align:right;
  3477. line-height:30px;
  3478. }
  3479. #u63912 .text {
  3480. position:absolute;
  3481. align-self:flex-start;
  3482. padding:0px 0px 0px 0px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u63912_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. }
  3491. #u63913_div {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:150px;
  3497. height:120px;
  3498. background:inherit;
  3499. background-color:rgba(255, 255, 255, 0);
  3500. box-sizing:border-box;
  3501. border-width:1px;
  3502. border-style:solid;
  3503. border-color:rgba(215, 215, 215, 1);
  3504. border-left:0px;
  3505. border-top:0px;
  3506. border-right:0px;
  3507. border-radius:0px;
  3508. border-bottom-right-radius:0px;
  3509. border-bottom-left-radius:0px;
  3510. -moz-box-shadow:none;
  3511. -webkit-box-shadow:none;
  3512. box-shadow:none;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:14px;
  3517. text-align:right;
  3518. line-height:30px;
  3519. }
  3520. #u63913 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:1240px;
  3524. top:496px;
  3525. width:150px;
  3526. height:120px;
  3527. display:flex;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:14px;
  3532. text-align:right;
  3533. line-height:30px;
  3534. }
  3535. #u63913 .text {
  3536. position:absolute;
  3537. align-self:flex-start;
  3538. padding:0px 0px 0px 0px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u63913_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. }
  3547. #u63914_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:150px;
  3553. height:120px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 0);
  3556. box-sizing:border-box;
  3557. border-width:1px;
  3558. border-style:solid;
  3559. border-color:rgba(215, 215, 215, 1);
  3560. border-left:0px;
  3561. border-top:0px;
  3562. border-right:0px;
  3563. border-radius:0px;
  3564. border-bottom-right-radius:0px;
  3565. border-bottom-left-radius:0px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. text-align:right;
  3574. line-height:30px;
  3575. }
  3576. #u63914 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:1413px;
  3580. top:496px;
  3581. width:150px;
  3582. height:120px;
  3583. display:flex;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:14px;
  3588. text-align:right;
  3589. line-height:30px;
  3590. }
  3591. #u63914 .text {
  3592. position:absolute;
  3593. align-self:flex-start;
  3594. padding:0px 0px 0px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u63914_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. }
  3603. #u63915_div {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:150px;
  3609. height:120px;
  3610. background:inherit;
  3611. background-color:rgba(255, 255, 255, 0);
  3612. box-sizing:border-box;
  3613. border-width:1px;
  3614. border-style:solid;
  3615. border-color:rgba(215, 215, 215, 1);
  3616. border-left:0px;
  3617. border-top:0px;
  3618. border-right:0px;
  3619. border-radius:0px;
  3620. border-bottom-right-radius:0px;
  3621. border-bottom-left-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. text-align:right;
  3630. line-height:30px;
  3631. }
  3632. #u63915 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:373px;
  3636. top:617px;
  3637. width:150px;
  3638. height:120px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:14px;
  3644. text-align:right;
  3645. line-height:30px;
  3646. }
  3647. #u63915 .text {
  3648. position:absolute;
  3649. align-self:flex-start;
  3650. padding:0px 0px 0px 0px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u63915_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. }
  3659. #u63916_div {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:150px;
  3665. height:120px;
  3666. background:inherit;
  3667. background-color:rgba(255, 255, 255, 0);
  3668. box-sizing:border-box;
  3669. border-width:1px;
  3670. border-style:solid;
  3671. border-color:rgba(215, 215, 215, 1);
  3672. border-left:0px;
  3673. border-top:0px;
  3674. border-right:0px;
  3675. border-radius:0px;
  3676. border-bottom-right-radius:0px;
  3677. border-bottom-left-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3682. font-weight:500;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. color:#1890FF;
  3686. text-align:right;
  3687. line-height:30px;
  3688. }
  3689. #u63916 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:546px;
  3693. top:617px;
  3694. width:150px;
  3695. height:120px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3698. font-weight:500;
  3699. font-style:normal;
  3700. font-size:14px;
  3701. color:#1890FF;
  3702. text-align:right;
  3703. line-height:30px;
  3704. }
  3705. #u63916 .text {
  3706. position:absolute;
  3707. align-self:flex-start;
  3708. padding:0px 0px 0px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u63916_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. }
  3717. #u63917_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:150px;
  3723. height:120px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 0);
  3726. box-sizing:border-box;
  3727. border-width:1px;
  3728. border-style:solid;
  3729. border-color:rgba(215, 215, 215, 1);
  3730. border-left:0px;
  3731. border-top:0px;
  3732. border-right:0px;
  3733. border-radius:0px;
  3734. border-bottom-right-radius:0px;
  3735. border-bottom-left-radius:0px;
  3736. -moz-box-shadow:none;
  3737. -webkit-box-shadow:none;
  3738. box-shadow:none;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:14px;
  3743. text-align:right;
  3744. line-height:30px;
  3745. }
  3746. #u63917 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:720px;
  3750. top:617px;
  3751. width:150px;
  3752. height:120px;
  3753. display:flex;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:14px;
  3758. text-align:right;
  3759. line-height:30px;
  3760. }
  3761. #u63917 .text {
  3762. position:absolute;
  3763. align-self:flex-start;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u63917_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. }
  3773. #u63918_div {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:150px;
  3779. height:120px;
  3780. background:inherit;
  3781. background-color:rgba(255, 255, 255, 0);
  3782. box-sizing:border-box;
  3783. border-width:1px;
  3784. border-style:solid;
  3785. border-color:rgba(215, 215, 215, 1);
  3786. border-left:0px;
  3787. border-top:0px;
  3788. border-right:0px;
  3789. border-radius:0px;
  3790. border-bottom-right-radius:0px;
  3791. border-bottom-left-radius:0px;
  3792. -moz-box-shadow:none;
  3793. -webkit-box-shadow:none;
  3794. box-shadow:none;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:14px;
  3799. text-align:right;
  3800. line-height:30px;
  3801. }
  3802. #u63918 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:893px;
  3806. top:617px;
  3807. width:150px;
  3808. height:120px;
  3809. display:flex;
  3810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:14px;
  3814. text-align:right;
  3815. line-height:30px;
  3816. }
  3817. #u63918 .text {
  3818. position:absolute;
  3819. align-self:flex-start;
  3820. padding:0px 0px 0px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u63918_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. }
  3829. #u63919_div {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:150px;
  3835. height:120px;
  3836. background:inherit;
  3837. background-color:rgba(255, 255, 255, 0);
  3838. box-sizing:border-box;
  3839. border-width:1px;
  3840. border-style:solid;
  3841. border-color:rgba(215, 215, 215, 1);
  3842. border-left:0px;
  3843. border-top:0px;
  3844. border-right:0px;
  3845. border-radius:0px;
  3846. border-bottom-right-radius:0px;
  3847. border-bottom-left-radius:0px;
  3848. -moz-box-shadow:none;
  3849. -webkit-box-shadow:none;
  3850. box-shadow:none;
  3851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. font-size:14px;
  3855. text-align:right;
  3856. line-height:30px;
  3857. }
  3858. #u63919 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:1066px;
  3862. top:617px;
  3863. width:150px;
  3864. height:120px;
  3865. display:flex;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:14px;
  3870. text-align:right;
  3871. line-height:30px;
  3872. }
  3873. #u63919 .text {
  3874. position:absolute;
  3875. align-self:flex-start;
  3876. padding:0px 0px 0px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u63919_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. }
  3885. #u63920_div {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:150px;
  3891. height:120px;
  3892. background:inherit;
  3893. background-color:rgba(255, 255, 255, 0);
  3894. box-sizing:border-box;
  3895. border-width:1px;
  3896. border-style:solid;
  3897. border-color:rgba(215, 215, 215, 1);
  3898. border-left:0px;
  3899. border-top:0px;
  3900. border-right:0px;
  3901. border-radius:0px;
  3902. border-bottom-right-radius:0px;
  3903. border-bottom-left-radius:0px;
  3904. -moz-box-shadow:none;
  3905. -webkit-box-shadow:none;
  3906. box-shadow:none;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:14px;
  3911. text-align:right;
  3912. line-height:30px;
  3913. }
  3914. #u63920 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:1240px;
  3918. top:617px;
  3919. width:150px;
  3920. height:120px;
  3921. display:flex;
  3922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:14px;
  3926. text-align:right;
  3927. line-height:30px;
  3928. }
  3929. #u63920 .text {
  3930. position:absolute;
  3931. align-self:flex-start;
  3932. padding:0px 0px 0px 0px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u63920_text {
  3937. border-width:0px;
  3938. word-wrap:break-word;
  3939. text-transform:none;
  3940. }
  3941. #u63921_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:150px;
  3947. height:120px;
  3948. background:inherit;
  3949. background-color:rgba(255, 255, 255, 0);
  3950. box-sizing:border-box;
  3951. border-width:1px;
  3952. border-style:solid;
  3953. border-color:rgba(215, 215, 215, 1);
  3954. border-left:0px;
  3955. border-top:0px;
  3956. border-right:0px;
  3957. border-radius:0px;
  3958. border-bottom-right-radius:0px;
  3959. border-bottom-left-radius:0px;
  3960. -moz-box-shadow:none;
  3961. -webkit-box-shadow:none;
  3962. box-shadow:none;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. text-align:right;
  3968. line-height:30px;
  3969. }
  3970. #u63921 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:1413px;
  3974. top:617px;
  3975. width:150px;
  3976. height:120px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:14px;
  3982. text-align:right;
  3983. line-height:30px;
  3984. }
  3985. #u63921 .text {
  3986. position:absolute;
  3987. align-self:flex-start;
  3988. padding:0px 0px 0px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u63921_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. }
  3997. #u63922_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:150px;
  4003. height:120px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. box-sizing:border-box;
  4007. border-width:1px;
  4008. border-style:solid;
  4009. border-color:rgba(215, 215, 215, 1);
  4010. border-left:0px;
  4011. border-top:0px;
  4012. border-right:0px;
  4013. border-radius:0px;
  4014. border-bottom-right-radius:0px;
  4015. border-bottom-left-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. text-align:right;
  4024. line-height:30px;
  4025. }
  4026. #u63922 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:373px;
  4030. top:738px;
  4031. width:150px;
  4032. height:120px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:14px;
  4038. text-align:right;
  4039. line-height:30px;
  4040. }
  4041. #u63922 .text {
  4042. position:absolute;
  4043. align-self:flex-start;
  4044. padding:0px 0px 0px 0px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u63922_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. }
  4053. #u63923_div {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:150px;
  4059. height:120px;
  4060. background:inherit;
  4061. background-color:rgba(255, 255, 255, 0);
  4062. box-sizing:border-box;
  4063. border-width:1px;
  4064. border-style:solid;
  4065. border-color:rgba(215, 215, 215, 1);
  4066. border-left:0px;
  4067. border-top:0px;
  4068. border-right:0px;
  4069. border-radius:0px;
  4070. border-bottom-right-radius:0px;
  4071. border-bottom-left-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:14px;
  4079. text-align:right;
  4080. line-height:30px;
  4081. }
  4082. #u63923 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:546px;
  4086. top:738px;
  4087. width:150px;
  4088. height:120px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:14px;
  4094. text-align:right;
  4095. line-height:30px;
  4096. }
  4097. #u63923 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:0px 0px 0px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u63923_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u63924_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:150px;
  4115. height:120px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. box-sizing:border-box;
  4119. border-width:1px;
  4120. border-style:solid;
  4121. border-color:rgba(215, 215, 215, 1);
  4122. border-left:0px;
  4123. border-top:0px;
  4124. border-right:0px;
  4125. border-radius:0px;
  4126. border-bottom-right-radius:0px;
  4127. border-bottom-left-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:14px;
  4135. text-align:right;
  4136. line-height:30px;
  4137. }
  4138. #u63924 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:720px;
  4142. top:738px;
  4143. width:150px;
  4144. height:120px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. text-align:right;
  4151. line-height:30px;
  4152. }
  4153. #u63924 .text {
  4154. position:absolute;
  4155. align-self:flex-start;
  4156. padding:0px 0px 0px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u63924_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. }
  4165. #u63925_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:150px;
  4171. height:120px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 0);
  4174. box-sizing:border-box;
  4175. border-width:1px;
  4176. border-style:solid;
  4177. border-color:rgba(215, 215, 215, 1);
  4178. border-left:0px;
  4179. border-top:0px;
  4180. border-right:0px;
  4181. border-radius:0px;
  4182. border-bottom-right-radius:0px;
  4183. border-bottom-left-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:14px;
  4191. text-align:right;
  4192. line-height:30px;
  4193. }
  4194. #u63925 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:893px;
  4198. top:738px;
  4199. width:150px;
  4200. height:120px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. text-align:right;
  4207. line-height:30px;
  4208. }
  4209. #u63925 .text {
  4210. position:absolute;
  4211. align-self:flex-start;
  4212. padding:0px 0px 0px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u63925_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. }
  4221. #u63926_div {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:150px;
  4227. height:120px;
  4228. background:inherit;
  4229. background-color:rgba(255, 255, 255, 0);
  4230. box-sizing:border-box;
  4231. border-width:1px;
  4232. border-style:solid;
  4233. border-color:rgba(215, 215, 215, 1);
  4234. border-left:0px;
  4235. border-top:0px;
  4236. border-right:0px;
  4237. border-radius:0px;
  4238. border-bottom-right-radius:0px;
  4239. border-bottom-left-radius:0px;
  4240. -moz-box-shadow:none;
  4241. -webkit-box-shadow:none;
  4242. box-shadow:none;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:14px;
  4247. text-align:right;
  4248. line-height:30px;
  4249. }
  4250. #u63926 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:1066px;
  4254. top:738px;
  4255. width:150px;
  4256. height:120px;
  4257. display:flex;
  4258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:14px;
  4262. text-align:right;
  4263. line-height:30px;
  4264. }
  4265. #u63926 .text {
  4266. position:absolute;
  4267. align-self:flex-start;
  4268. padding:0px 0px 0px 0px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u63926_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. }
  4277. #u63927_div {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:150px;
  4283. height:120px;
  4284. background:inherit;
  4285. background-color:rgba(255, 255, 255, 0);
  4286. box-sizing:border-box;
  4287. border-width:1px;
  4288. border-style:solid;
  4289. border-color:rgba(215, 215, 215, 1);
  4290. border-left:0px;
  4291. border-top:0px;
  4292. border-right:0px;
  4293. border-radius:0px;
  4294. border-bottom-right-radius:0px;
  4295. border-bottom-left-radius:0px;
  4296. -moz-box-shadow:none;
  4297. -webkit-box-shadow:none;
  4298. box-shadow:none;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:14px;
  4303. text-align:right;
  4304. line-height:30px;
  4305. }
  4306. #u63927 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:1240px;
  4310. top:738px;
  4311. width:150px;
  4312. height:120px;
  4313. display:flex;
  4314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:14px;
  4318. text-align:right;
  4319. line-height:30px;
  4320. }
  4321. #u63927 .text {
  4322. position:absolute;
  4323. align-self:flex-start;
  4324. padding:0px 0px 0px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u63927_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. }
  4333. #u63928_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:150px;
  4339. height:120px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 0);
  4342. box-sizing:border-box;
  4343. border-width:1px;
  4344. border-style:solid;
  4345. border-color:rgba(215, 215, 215, 1);
  4346. border-left:0px;
  4347. border-top:0px;
  4348. border-right:0px;
  4349. border-radius:0px;
  4350. border-bottom-right-radius:0px;
  4351. border-bottom-left-radius:0px;
  4352. -moz-box-shadow:none;
  4353. -webkit-box-shadow:none;
  4354. box-shadow:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:14px;
  4359. text-align:right;
  4360. line-height:30px;
  4361. }
  4362. #u63928 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:1413px;
  4366. top:738px;
  4367. width:150px;
  4368. height:120px;
  4369. display:flex;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:14px;
  4374. text-align:right;
  4375. line-height:30px;
  4376. }
  4377. #u63928 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u63928_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. }
  4389. #u63929_div {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:150px;
  4395. height:120px;
  4396. background:inherit;
  4397. background-color:rgba(255, 255, 255, 0);
  4398. box-sizing:border-box;
  4399. border-width:1px;
  4400. border-style:solid;
  4401. border-color:rgba(215, 215, 215, 1);
  4402. border-left:0px;
  4403. border-top:0px;
  4404. border-right:0px;
  4405. border-radius:0px;
  4406. border-bottom-right-radius:0px;
  4407. border-bottom-left-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:14px;
  4415. text-align:right;
  4416. line-height:30px;
  4417. }
  4418. #u63929 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:373px;
  4422. top:859px;
  4423. width:150px;
  4424. height:120px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. text-align:right;
  4431. line-height:30px;
  4432. }
  4433. #u63929 .text {
  4434. position:absolute;
  4435. align-self:flex-start;
  4436. padding:0px 0px 0px 0px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u63929_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. }
  4445. #u63930_div {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:150px;
  4451. height:120px;
  4452. background:inherit;
  4453. background-color:rgba(255, 255, 255, 0);
  4454. box-sizing:border-box;
  4455. border-width:1px;
  4456. border-style:solid;
  4457. border-color:rgba(215, 215, 215, 1);
  4458. border-left:0px;
  4459. border-top:0px;
  4460. border-right:0px;
  4461. border-radius:0px;
  4462. border-bottom-right-radius:0px;
  4463. border-bottom-left-radius:0px;
  4464. -moz-box-shadow:none;
  4465. -webkit-box-shadow:none;
  4466. box-shadow:none;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:14px;
  4471. text-align:right;
  4472. line-height:30px;
  4473. }
  4474. #u63930 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:546px;
  4478. top:859px;
  4479. width:150px;
  4480. height:120px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. text-align:right;
  4487. line-height:30px;
  4488. }
  4489. #u63930 .text {
  4490. position:absolute;
  4491. align-self:flex-start;
  4492. padding:0px 0px 0px 0px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u63930_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. }
  4501. #u63931_div {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:150px;
  4507. height:120px;
  4508. background:inherit;
  4509. background-color:rgba(255, 255, 255, 0);
  4510. box-sizing:border-box;
  4511. border-width:1px;
  4512. border-style:solid;
  4513. border-color:rgba(215, 215, 215, 1);
  4514. border-left:0px;
  4515. border-top:0px;
  4516. border-right:0px;
  4517. border-radius:0px;
  4518. border-bottom-right-radius:0px;
  4519. border-bottom-left-radius:0px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. text-align:right;
  4528. line-height:30px;
  4529. }
  4530. #u63931 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:720px;
  4534. top:859px;
  4535. width:150px;
  4536. height:120px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. text-align:right;
  4543. line-height:30px;
  4544. }
  4545. #u63931 .text {
  4546. position:absolute;
  4547. align-self:flex-start;
  4548. padding:0px 0px 0px 0px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u63931_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u63932_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:150px;
  4563. height:120px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 0);
  4566. box-sizing:border-box;
  4567. border-width:1px;
  4568. border-style:solid;
  4569. border-color:rgba(215, 215, 215, 1);
  4570. border-left:0px;
  4571. border-top:0px;
  4572. border-right:0px;
  4573. border-radius:0px;
  4574. border-bottom-right-radius:0px;
  4575. border-bottom-left-radius:0px;
  4576. -moz-box-shadow:none;
  4577. -webkit-box-shadow:none;
  4578. box-shadow:none;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:14px;
  4583. text-align:right;
  4584. line-height:30px;
  4585. }
  4586. #u63932 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:893px;
  4590. top:859px;
  4591. width:150px;
  4592. height:120px;
  4593. display:flex;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:14px;
  4598. text-align:right;
  4599. line-height:30px;
  4600. }
  4601. #u63932 .text {
  4602. position:absolute;
  4603. align-self:flex-start;
  4604. padding:0px 0px 0px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u63932_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. }
  4613. #u63933_div {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:150px;
  4619. height:120px;
  4620. background:inherit;
  4621. background-color:rgba(255, 255, 255, 0);
  4622. box-sizing:border-box;
  4623. border-width:1px;
  4624. border-style:solid;
  4625. border-color:rgba(215, 215, 215, 1);
  4626. border-left:0px;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-radius:0px;
  4630. border-bottom-right-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:14px;
  4639. text-align:right;
  4640. line-height:30px;
  4641. }
  4642. #u63933 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:1066px;
  4646. top:859px;
  4647. width:150px;
  4648. height:120px;
  4649. display:flex;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. text-align:right;
  4655. line-height:30px;
  4656. }
  4657. #u63933 .text {
  4658. position:absolute;
  4659. align-self:flex-start;
  4660. padding:0px 0px 0px 0px;
  4661. box-sizing:border-box;
  4662. width:100%;
  4663. }
  4664. #u63933_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. }
  4669. #u63934_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:150px;
  4675. height:120px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 0);
  4678. box-sizing:border-box;
  4679. border-width:1px;
  4680. border-style:solid;
  4681. border-color:rgba(215, 215, 215, 1);
  4682. border-left:0px;
  4683. border-top:0px;
  4684. border-right:0px;
  4685. border-radius:0px;
  4686. border-bottom-right-radius:0px;
  4687. border-bottom-left-radius:0px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:14px;
  4695. text-align:right;
  4696. line-height:30px;
  4697. }
  4698. #u63934 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:1240px;
  4702. top:859px;
  4703. width:150px;
  4704. height:120px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:14px;
  4710. text-align:right;
  4711. line-height:30px;
  4712. }
  4713. #u63934 .text {
  4714. position:absolute;
  4715. align-self:flex-start;
  4716. padding:0px 0px 0px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u63934_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. }
  4725. #u63935_div {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:150px;
  4731. height:120px;
  4732. background:inherit;
  4733. background-color:rgba(255, 255, 255, 0);
  4734. box-sizing:border-box;
  4735. border-width:1px;
  4736. border-style:solid;
  4737. border-color:rgba(215, 215, 215, 1);
  4738. border-left:0px;
  4739. border-top:0px;
  4740. border-right:0px;
  4741. border-radius:0px;
  4742. border-bottom-right-radius:0px;
  4743. border-bottom-left-radius:0px;
  4744. -moz-box-shadow:none;
  4745. -webkit-box-shadow:none;
  4746. box-shadow:none;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:14px;
  4751. text-align:right;
  4752. line-height:30px;
  4753. }
  4754. #u63935 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:1413px;
  4758. top:859px;
  4759. width:150px;
  4760. height:120px;
  4761. display:flex;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:14px;
  4766. text-align:right;
  4767. line-height:30px;
  4768. }
  4769. #u63935 .text {
  4770. position:absolute;
  4771. align-self:flex-start;
  4772. padding:0px 0px 0px 0px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u63935_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. }
  4781. #u63936_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:150px;
  4787. height:120px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 0);
  4790. box-sizing:border-box;
  4791. border-width:1px;
  4792. border-style:solid;
  4793. border-color:rgba(215, 215, 215, 1);
  4794. border-left:0px;
  4795. border-top:0px;
  4796. border-right:0px;
  4797. border-radius:0px;
  4798. border-bottom-right-radius:0px;
  4799. border-bottom-left-radius:0px;
  4800. -moz-box-shadow:none;
  4801. -webkit-box-shadow:none;
  4802. box-shadow:none;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:14px;
  4807. text-align:right;
  4808. line-height:30px;
  4809. }
  4810. #u63936 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:373px;
  4814. top:980px;
  4815. width:150px;
  4816. height:120px;
  4817. display:flex;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:14px;
  4822. text-align:right;
  4823. line-height:30px;
  4824. }
  4825. #u63936 .text {
  4826. position:absolute;
  4827. align-self:flex-start;
  4828. padding:0px 0px 0px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u63936_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u63937_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:150px;
  4843. height:120px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. box-sizing:border-box;
  4847. border-width:1px;
  4848. border-style:solid;
  4849. border-color:rgba(215, 215, 215, 1);
  4850. border-left:0px;
  4851. border-top:0px;
  4852. border-right:0px;
  4853. border-radius:0px;
  4854. border-bottom-right-radius:0px;
  4855. border-bottom-left-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4860. font-weight:400;
  4861. font-style:normal;
  4862. font-size:14px;
  4863. text-align:right;
  4864. line-height:30px;
  4865. }
  4866. #u63937 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:546px;
  4870. top:980px;
  4871. width:150px;
  4872. height:120px;
  4873. display:flex;
  4874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:14px;
  4878. text-align:right;
  4879. line-height:30px;
  4880. }
  4881. #u63937 .text {
  4882. position:absolute;
  4883. align-self:flex-start;
  4884. padding:0px 0px 0px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u63937_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. }
  4893. #u63938_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:150px;
  4899. height:120px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 0);
  4902. box-sizing:border-box;
  4903. border-width:1px;
  4904. border-style:solid;
  4905. border-color:rgba(215, 215, 215, 1);
  4906. border-left:0px;
  4907. border-top:0px;
  4908. border-right:0px;
  4909. border-radius:0px;
  4910. border-bottom-right-radius:0px;
  4911. border-bottom-left-radius:0px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:14px;
  4919. text-align:right;
  4920. line-height:30px;
  4921. }
  4922. #u63938 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:720px;
  4926. top:980px;
  4927. width:150px;
  4928. height:120px;
  4929. display:flex;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:14px;
  4934. text-align:right;
  4935. line-height:30px;
  4936. }
  4937. #u63938 .text {
  4938. position:absolute;
  4939. align-self:flex-start;
  4940. padding:0px 0px 0px 0px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u63938_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. }
  4949. #u63939_div {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:150px;
  4955. height:120px;
  4956. background:inherit;
  4957. background-color:rgba(255, 255, 255, 0);
  4958. box-sizing:border-box;
  4959. border-width:1px;
  4960. border-style:solid;
  4961. border-color:rgba(215, 215, 215, 1);
  4962. border-left:0px;
  4963. border-top:0px;
  4964. border-right:0px;
  4965. border-radius:0px;
  4966. border-bottom-right-radius:0px;
  4967. border-bottom-left-radius:0px;
  4968. -moz-box-shadow:none;
  4969. -webkit-box-shadow:none;
  4970. box-shadow:none;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. color:#AAAAAA;
  4976. text-align:right;
  4977. line-height:30px;
  4978. }
  4979. #u63939 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:893px;
  4983. top:980px;
  4984. width:150px;
  4985. height:120px;
  4986. display:flex;
  4987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:14px;
  4991. color:#AAAAAA;
  4992. text-align:right;
  4993. line-height:30px;
  4994. }
  4995. #u63939 .text {
  4996. position:absolute;
  4997. align-self:flex-start;
  4998. padding:0px 0px 0px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u63939_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. }
  5007. #u63940_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:150px;
  5013. height:120px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0);
  5016. box-sizing:border-box;
  5017. border-width:1px;
  5018. border-style:solid;
  5019. border-color:rgba(215, 215, 215, 1);
  5020. border-left:0px;
  5021. border-top:0px;
  5022. border-right:0px;
  5023. border-radius:0px;
  5024. border-bottom-right-radius:0px;
  5025. border-bottom-left-radius:0px;
  5026. -moz-box-shadow:none;
  5027. -webkit-box-shadow:none;
  5028. box-shadow:none;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. color:#AAAAAA;
  5034. text-align:right;
  5035. line-height:30px;
  5036. }
  5037. #u63940 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:1066px;
  5041. top:980px;
  5042. width:150px;
  5043. height:120px;
  5044. display:flex;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:14px;
  5049. color:#AAAAAA;
  5050. text-align:right;
  5051. line-height:30px;
  5052. }
  5053. #u63940 .text {
  5054. position:absolute;
  5055. align-self:flex-start;
  5056. padding:0px 0px 0px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u63940_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. }
  5065. #u63941_div {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:150px;
  5071. height:120px;
  5072. background:inherit;
  5073. background-color:rgba(255, 255, 255, 0);
  5074. box-sizing:border-box;
  5075. border-width:1px;
  5076. border-style:solid;
  5077. border-color:rgba(215, 215, 215, 1);
  5078. border-left:0px;
  5079. border-top:0px;
  5080. border-right:0px;
  5081. border-radius:0px;
  5082. border-bottom-right-radius:0px;
  5083. border-bottom-left-radius:0px;
  5084. -moz-box-shadow:none;
  5085. -webkit-box-shadow:none;
  5086. box-shadow:none;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:14px;
  5091. color:#AAAAAA;
  5092. text-align:right;
  5093. line-height:30px;
  5094. }
  5095. #u63941 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:1240px;
  5099. top:980px;
  5100. width:150px;
  5101. height:120px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:14px;
  5107. color:#AAAAAA;
  5108. text-align:right;
  5109. line-height:30px;
  5110. }
  5111. #u63941 .text {
  5112. position:absolute;
  5113. align-self:flex-start;
  5114. padding:0px 0px 0px 0px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u63941_text {
  5119. border-width:0px;
  5120. word-wrap:break-word;
  5121. text-transform:none;
  5122. }
  5123. #u63942_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:150px;
  5129. height:120px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 0);
  5132. box-sizing:border-box;
  5133. border-width:1px;
  5134. border-style:solid;
  5135. border-color:rgba(215, 215, 215, 1);
  5136. border-left:0px;
  5137. border-top:0px;
  5138. border-right:0px;
  5139. border-radius:0px;
  5140. border-bottom-right-radius:0px;
  5141. border-bottom-left-radius:0px;
  5142. -moz-box-shadow:none;
  5143. -webkit-box-shadow:none;
  5144. box-shadow:none;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:14px;
  5149. color:#AAAAAA;
  5150. text-align:right;
  5151. line-height:30px;
  5152. }
  5153. #u63942 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1413px;
  5157. top:980px;
  5158. width:150px;
  5159. height:120px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:14px;
  5165. color:#AAAAAA;
  5166. text-align:right;
  5167. line-height:30px;
  5168. }
  5169. #u63942 .text {
  5170. position:absolute;
  5171. align-self:flex-start;
  5172. padding:0px 0px 0px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u63942_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. }
  5181. #u63943_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:109px;
  5187. height:90px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-left:0px;
  5192. border-top:0px;
  5193. border-right:0px;
  5194. border-radius:0px;
  5195. border-bottom-right-radius:0px;
  5196. border-bottom-left-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. line-height:30px;
  5204. }
  5205. #u63943 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:557px;
  5209. top:632px;
  5210. width:109px;
  5211. height:90px;
  5212. display:flex;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. line-height:30px;
  5217. }
  5218. #u63943 .text {
  5219. position:absolute;
  5220. align-self:flex-start;
  5221. padding:0px 0px 0px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u63943_text {
  5226. border-width:0px;
  5227. white-space:nowrap;
  5228. text-transform:none;
  5229. }
  5230. #u63944 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:0px;
  5236. height:0px;
  5237. }
  5238. #u63945_img {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:10px;
  5244. height:10px;
  5245. }
  5246. #u63945 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:702px;
  5250. top:398px;
  5251. width:10px;
  5252. height:10px;
  5253. display:flex;
  5254. }
  5255. #u63945 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:2px 2px 2px 2px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u63945_text {
  5263. border-width:0px;
  5264. word-wrap:break-word;
  5265. text-transform:none;
  5266. visibility:hidden;
  5267. }
  5268. #u63946_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:37px;
  5274. height:20px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border:none;
  5278. border-radius:0px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. color:#4B4D53;
  5287. }
  5288. #u63946 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:720px;
  5292. top:393px;
  5293. width:37px;
  5294. height:20px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:12px;
  5300. color:#4B4D53;
  5301. }
  5302. #u63946 .text {
  5303. position:absolute;
  5304. align-self:flex-start;
  5305. padding:0px 0px 0px 0px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u63946_text {
  5310. border-width:0px;
  5311. white-space:nowrap;
  5312. text-transform:none;
  5313. }
  5314. #u63947 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:0px;
  5320. height:0px;
  5321. }
  5322. #u63948_div {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:160px;
  5328. height:30px;
  5329. background:inherit;
  5330. background-color:rgba(255, 255, 255, 1);
  5331. box-sizing:border-box;
  5332. border-width:1px;
  5333. border-style:solid;
  5334. border-color:rgba(201, 201, 201, 1);
  5335. border-radius:4px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. font-family:'Microsoft YaHei', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:14px;
  5343. color:#CCCCCC;
  5344. text-align:left;
  5345. }
  5346. #u63948 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:868px;
  5350. top:101px;
  5351. width:160px;
  5352. height:30px;
  5353. display:flex;
  5354. font-family:'Microsoft YaHei', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. color:#CCCCCC;
  5359. text-align:left;
  5360. }
  5361. #u63948 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 8px 2px 8px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u63948_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u63949_input {
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:150px;
  5379. height:28px;
  5380. padding:2px 2px 2px 2px;
  5381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. font-size:14px;
  5385. letter-spacing:normal;
  5386. color:#000000;
  5387. vertical-align:none;
  5388. text-align:left;
  5389. text-transform:none;
  5390. background-color:transparent;
  5391. border-color:transparent;
  5392. }
  5393. #u63949_input.disabled {
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:150px;
  5398. height:28px;
  5399. padding:2px 2px 2px 2px;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. letter-spacing:normal;
  5405. color:#000000;
  5406. vertical-align:none;
  5407. text-align:left;
  5408. text-transform:none;
  5409. background-color:transparent;
  5410. border-color:transparent;
  5411. }
  5412. #u63949_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:150px;
  5418. height:28px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. border:none;
  5422. border-radius:0px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:14px;
  5430. }
  5431. #u63949 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:874px;
  5435. top:102px;
  5436. width:150px;
  5437. height:28px;
  5438. display:flex;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:14px;
  5443. }
  5444. #u63949 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:2px 2px 2px 2px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u63949_div.disabled {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:150px;
  5457. height:28px;
  5458. background:inherit;
  5459. background-color:rgba(240, 240, 240, 1);
  5460. border:none;
  5461. border-radius:0px;
  5462. -moz-box-shadow:none;
  5463. -webkit-box-shadow:none;
  5464. box-shadow:none;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. }
  5470. #u63949.disabled {
  5471. }
  5472. #u63950 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u63951_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:60px;
  5486. height:30px;
  5487. background:inherit;
  5488. background-color:rgba(24, 144, 255, 1);
  5489. border:none;
  5490. border-radius:4px;
  5491. -moz-box-shadow:none;
  5492. -webkit-box-shadow:none;
  5493. box-shadow:none;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:14px;
  5498. color:#FFFFFF;
  5499. }
  5500. #u63951 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:527px;
  5504. top:141px;
  5505. width:60px;
  5506. height:30px;
  5507. display:flex;
  5508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:14px;
  5512. color:#FFFFFF;
  5513. }
  5514. #u63951 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 2px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u63951_text {
  5522. border-width:0px;
  5523. word-wrap:break-word;
  5524. text-transform:none;
  5525. }
  5526. #u63952_div {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:60px;
  5532. height:30px;
  5533. background:inherit;
  5534. background-color:rgba(255, 255, 255, 1);
  5535. box-sizing:border-box;
  5536. border-width:1px;
  5537. border-style:solid;
  5538. border-color:rgba(170, 170, 170, 1);
  5539. border-radius:4px;
  5540. -moz-box-shadow:none;
  5541. -webkit-box-shadow:none;
  5542. box-shadow:none;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:14px;
  5547. }
  5548. #u63952 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:597px;
  5552. top:141px;
  5553. width:60px;
  5554. height:30px;
  5555. display:flex;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:14px;
  5560. }
  5561. #u63952 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u63952_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. }
  5573. #u63953 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:0px;
  5579. height:0px;
  5580. }
  5581. #u63954_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:160px;
  5587. height:30px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 1);
  5590. box-sizing:border-box;
  5591. border-width:1px;
  5592. border-style:solid;
  5593. border-color:rgba(215, 215, 215, 1);
  5594. border-radius:4px;
  5595. -moz-box-shadow:none;
  5596. -webkit-box-shadow:none;
  5597. box-shadow:none;
  5598. font-size:14px;
  5599. }
  5600. #u63954 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:1038px;
  5604. top:101px;
  5605. width:160px;
  5606. height:30px;
  5607. display:flex;
  5608. font-size:14px;
  5609. }
  5610. #u63954 .text {
  5611. position:absolute;
  5612. align-self:center;
  5613. padding:2px 2px 2px 2px;
  5614. box-sizing:border-box;
  5615. width:100%;
  5616. }
  5617. #u63954_text {
  5618. border-width:0px;
  5619. word-wrap:break-word;
  5620. text-transform:none;
  5621. visibility:hidden;
  5622. }
  5623. #u63955_input {
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:153px;
  5628. height:23px;
  5629. padding:2px 2px 2px 2px;
  5630. font-family:'ArialMT', 'Arial', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:14px;
  5634. letter-spacing:normal;
  5635. color:#AAAAAA;
  5636. vertical-align:none;
  5637. text-align:left;
  5638. text-transform:none;
  5639. background-color:transparent;
  5640. border-color:transparent;
  5641. }
  5642. #u63955_input.disabled {
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:153px;
  5647. height:23px;
  5648. padding:2px 2px 2px 2px;
  5649. font-family:'ArialMT', 'Arial', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:14px;
  5653. letter-spacing:normal;
  5654. color:#AAAAAA;
  5655. vertical-align:none;
  5656. text-align:left;
  5657. text-transform:none;
  5658. background-color:transparent;
  5659. border-color:transparent;
  5660. }
  5661. #u63955_div {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:153px;
  5667. height:23px;
  5668. background:inherit;
  5669. background-color:rgba(255, 255, 255, 1);
  5670. border:none;
  5671. border-radius:0px;
  5672. -moz-box-shadow:none;
  5673. -webkit-box-shadow:none;
  5674. box-shadow:none;
  5675. font-size:14px;
  5676. color:#AAAAAA;
  5677. }
  5678. #u63955 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:1043px;
  5682. top:103px;
  5683. width:153px;
  5684. height:23px;
  5685. display:flex;
  5686. font-size:14px;
  5687. color:#AAAAAA;
  5688. }
  5689. #u63955 .text {
  5690. position:absolute;
  5691. align-self:flex-start;
  5692. padding:2px 2px 2px 2px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u63955_div.disabled {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:153px;
  5702. height:23px;
  5703. background:inherit;
  5704. background-color:rgba(240, 240, 240, 1);
  5705. border:none;
  5706. border-radius:0px;
  5707. -moz-box-shadow:none;
  5708. -webkit-box-shadow:none;
  5709. box-shadow:none;
  5710. font-size:14px;
  5711. color:#AAAAAA;
  5712. }
  5713. #u63955.disabled {
  5714. }
  5715. .u63955_input_option {
  5716. font-size:14px;
  5717. }
  5718. #u63956 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:0px;
  5724. height:0px;
  5725. }
  5726. #u63957_div {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:160px;
  5732. height:30px;
  5733. background:inherit;
  5734. background-color:rgba(255, 255, 255, 1);
  5735. box-sizing:border-box;
  5736. border-width:1px;
  5737. border-style:solid;
  5738. border-color:rgba(215, 215, 215, 1);
  5739. border-radius:4px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-size:14px;
  5744. }
  5745. #u63957 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:698px;
  5749. top:101px;
  5750. width:160px;
  5751. height:30px;
  5752. display:flex;
  5753. font-size:14px;
  5754. }
  5755. #u63957 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:2px 2px 2px 2px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u63957_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. visibility:hidden;
  5767. }
  5768. #u63958_input {
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:153px;
  5773. height:23px;
  5774. padding:2px 2px 2px 2px;
  5775. font-family:'ArialMT', 'Arial', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:14px;
  5779. letter-spacing:normal;
  5780. color:#AAAAAA;
  5781. vertical-align:none;
  5782. text-align:left;
  5783. text-transform:none;
  5784. background-color:transparent;
  5785. border-color:transparent;
  5786. }
  5787. #u63958_input.disabled {
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:153px;
  5792. height:23px;
  5793. padding:2px 2px 2px 2px;
  5794. font-family:'ArialMT', 'Arial', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:14px;
  5798. letter-spacing:normal;
  5799. color:#AAAAAA;
  5800. vertical-align:none;
  5801. text-align:left;
  5802. text-transform:none;
  5803. background-color:transparent;
  5804. border-color:transparent;
  5805. }
  5806. #u63958_div {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:153px;
  5812. height:23px;
  5813. background:inherit;
  5814. background-color:rgba(255, 255, 255, 1);
  5815. border:none;
  5816. border-radius:0px;
  5817. -moz-box-shadow:none;
  5818. -webkit-box-shadow:none;
  5819. box-shadow:none;
  5820. font-size:14px;
  5821. color:#AAAAAA;
  5822. }
  5823. #u63958 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:703px;
  5827. top:103px;
  5828. width:153px;
  5829. height:23px;
  5830. display:flex;
  5831. font-size:14px;
  5832. color:#AAAAAA;
  5833. }
  5834. #u63958 .text {
  5835. position:absolute;
  5836. align-self:flex-start;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u63958_div.disabled {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:153px;
  5847. height:23px;
  5848. background:inherit;
  5849. background-color:rgba(240, 240, 240, 1);
  5850. border:none;
  5851. border-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-size:14px;
  5856. color:#AAAAAA;
  5857. }
  5858. #u63958.disabled {
  5859. }
  5860. .u63958_input_option {
  5861. font-size:14px;
  5862. }
  5863. #u63959 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:0px;
  5869. height:0px;
  5870. }
  5871. #u63960_div {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:160px;
  5877. height:30px;
  5878. background:inherit;
  5879. background-color:rgba(255, 255, 255, 1);
  5880. box-sizing:border-box;
  5881. border-width:1px;
  5882. border-style:solid;
  5883. border-color:rgba(215, 215, 215, 1);
  5884. border-radius:4px;
  5885. -moz-box-shadow:none;
  5886. -webkit-box-shadow:none;
  5887. box-shadow:none;
  5888. font-size:14px;
  5889. }
  5890. #u63960 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:1378px;
  5894. top:101px;
  5895. width:160px;
  5896. height:30px;
  5897. display:flex;
  5898. font-size:14px;
  5899. }
  5900. #u63960 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:2px 2px 2px 2px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u63960_text {
  5908. border-width:0px;
  5909. word-wrap:break-word;
  5910. text-transform:none;
  5911. visibility:hidden;
  5912. }
  5913. #u63961_input {
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:153px;
  5918. height:23px;
  5919. padding:2px 2px 2px 2px;
  5920. font-family:'ArialMT', 'Arial', sans-serif;
  5921. font-weight:400;
  5922. font-style:normal;
  5923. font-size:14px;
  5924. letter-spacing:normal;
  5925. color:#AAAAAA;
  5926. vertical-align:none;
  5927. text-align:left;
  5928. text-transform:none;
  5929. background-color:transparent;
  5930. border-color:transparent;
  5931. }
  5932. #u63961_input.disabled {
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:153px;
  5937. height:23px;
  5938. padding:2px 2px 2px 2px;
  5939. font-family:'ArialMT', 'Arial', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:14px;
  5943. letter-spacing:normal;
  5944. color:#AAAAAA;
  5945. vertical-align:none;
  5946. text-align:left;
  5947. text-transform:none;
  5948. background-color:transparent;
  5949. border-color:transparent;
  5950. }
  5951. #u63961_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:153px;
  5957. height:23px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 1);
  5960. border:none;
  5961. border-radius:0px;
  5962. -moz-box-shadow:none;
  5963. -webkit-box-shadow:none;
  5964. box-shadow:none;
  5965. font-size:14px;
  5966. color:#AAAAAA;
  5967. }
  5968. #u63961 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:1383px;
  5972. top:103px;
  5973. width:153px;
  5974. height:23px;
  5975. display:flex;
  5976. font-size:14px;
  5977. color:#AAAAAA;
  5978. }
  5979. #u63961 .text {
  5980. position:absolute;
  5981. align-self:flex-start;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u63961_div.disabled {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:153px;
  5992. height:23px;
  5993. background:inherit;
  5994. background-color:rgba(240, 240, 240, 1);
  5995. border:none;
  5996. border-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-size:14px;
  6001. color:#AAAAAA;
  6002. }
  6003. #u63961.disabled {
  6004. }
  6005. .u63961_input_option {
  6006. font-size:14px;
  6007. }
  6008. #u63962 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:0px;
  6014. height:0px;
  6015. }
  6016. #u63963_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:160px;
  6022. height:30px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 1);
  6025. box-sizing:border-box;
  6026. border-width:1px;
  6027. border-style:solid;
  6028. border-color:rgba(215, 215, 215, 1);
  6029. border-radius:4px;
  6030. -moz-box-shadow:none;
  6031. -webkit-box-shadow:none;
  6032. box-shadow:none;
  6033. font-size:14px;
  6034. }
  6035. #u63963 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:357px;
  6039. top:141px;
  6040. width:160px;
  6041. height:30px;
  6042. display:flex;
  6043. font-size:14px;
  6044. }
  6045. #u63963 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 2px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u63963_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u63964_input {
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:153px;
  6063. height:23px;
  6064. padding:2px 2px 2px 2px;
  6065. font-family:'ArialMT', 'Arial', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:14px;
  6069. letter-spacing:normal;
  6070. color:#AAAAAA;
  6071. vertical-align:none;
  6072. text-align:left;
  6073. text-transform:none;
  6074. background-color:transparent;
  6075. border-color:transparent;
  6076. }
  6077. #u63964_input.disabled {
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:153px;
  6082. height:23px;
  6083. padding:2px 2px 2px 2px;
  6084. font-family:'ArialMT', 'Arial', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:14px;
  6088. letter-spacing:normal;
  6089. color:#AAAAAA;
  6090. vertical-align:none;
  6091. text-align:left;
  6092. text-transform:none;
  6093. background-color:transparent;
  6094. border-color:transparent;
  6095. }
  6096. #u63964_div {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:153px;
  6102. height:23px;
  6103. background:inherit;
  6104. background-color:rgba(255, 255, 255, 1);
  6105. border:none;
  6106. border-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-size:14px;
  6111. color:#AAAAAA;
  6112. }
  6113. #u63964 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:362px;
  6117. top:143px;
  6118. width:153px;
  6119. height:23px;
  6120. display:flex;
  6121. font-size:14px;
  6122. color:#AAAAAA;
  6123. }
  6124. #u63964 .text {
  6125. position:absolute;
  6126. align-self:flex-start;
  6127. padding:2px 2px 2px 2px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u63964_div.disabled {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:153px;
  6137. height:23px;
  6138. background:inherit;
  6139. background-color:rgba(240, 240, 240, 1);
  6140. border:none;
  6141. border-radius:0px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-size:14px;
  6146. color:#AAAAAA;
  6147. }
  6148. #u63964.disabled {
  6149. }
  6150. .u63964_input_option {
  6151. font-size:14px;
  6152. }
  6153. #u63965 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:0px;
  6159. height:0px;
  6160. }
  6161. #u63966_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:160px;
  6167. height:30px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 1);
  6170. box-sizing:border-box;
  6171. border-width:1px;
  6172. border-style:solid;
  6173. border-color:rgba(215, 215, 215, 1);
  6174. border-radius:4px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-size:14px;
  6179. }
  6180. #u63966 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1208px;
  6184. top:101px;
  6185. width:160px;
  6186. height:30px;
  6187. display:flex;
  6188. font-size:14px;
  6189. }
  6190. #u63966 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 2px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u63966_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u63967_input {
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:153px;
  6208. height:23px;
  6209. padding:2px 2px 2px 2px;
  6210. font-family:'ArialMT', 'Arial', sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:14px;
  6214. letter-spacing:normal;
  6215. color:#AAAAAA;
  6216. vertical-align:none;
  6217. text-align:left;
  6218. text-transform:none;
  6219. background-color:transparent;
  6220. border-color:transparent;
  6221. }
  6222. #u63967_input.disabled {
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:153px;
  6227. height:23px;
  6228. padding:2px 2px 2px 2px;
  6229. font-family:'ArialMT', 'Arial', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:14px;
  6233. letter-spacing:normal;
  6234. color:#AAAAAA;
  6235. vertical-align:none;
  6236. text-align:left;
  6237. text-transform:none;
  6238. background-color:transparent;
  6239. border-color:transparent;
  6240. }
  6241. #u63967_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:153px;
  6247. height:23px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 1);
  6250. border:none;
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-size:14px;
  6256. color:#AAAAAA;
  6257. }
  6258. #u63967 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:1213px;
  6262. top:103px;
  6263. width:153px;
  6264. height:23px;
  6265. display:flex;
  6266. font-size:14px;
  6267. color:#AAAAAA;
  6268. }
  6269. #u63967 .text {
  6270. position:absolute;
  6271. align-self:flex-start;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u63967_div.disabled {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:153px;
  6282. height:23px;
  6283. background:inherit;
  6284. background-color:rgba(240, 240, 240, 1);
  6285. border:none;
  6286. border-radius:0px;
  6287. -moz-box-shadow:none;
  6288. -webkit-box-shadow:none;
  6289. box-shadow:none;
  6290. font-size:14px;
  6291. color:#AAAAAA;
  6292. }
  6293. #u63967.disabled {
  6294. }
  6295. .u63967_input_option {
  6296. font-size:14px;
  6297. }
  6298. #u63968 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:0px;
  6304. height:0px;
  6305. }
  6306. #u63969_div {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:160px;
  6312. height:30px;
  6313. background:inherit;
  6314. background-color:rgba(255, 255, 255, 1);
  6315. box-sizing:border-box;
  6316. border-width:1px;
  6317. border-style:solid;
  6318. border-color:rgba(215, 215, 215, 1);
  6319. border-radius:4px;
  6320. -moz-box-shadow:none;
  6321. -webkit-box-shadow:none;
  6322. box-shadow:none;
  6323. font-size:14px;
  6324. }
  6325. #u63969 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:357px;
  6329. top:101px;
  6330. width:160px;
  6331. height:30px;
  6332. display:flex;
  6333. font-size:14px;
  6334. }
  6335. #u63969 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:2px 2px 2px 2px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u63969_text {
  6343. border-width:0px;
  6344. word-wrap:break-word;
  6345. text-transform:none;
  6346. visibility:hidden;
  6347. }
  6348. #u63970_input {
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:153px;
  6353. height:23px;
  6354. padding:2px 2px 2px 2px;
  6355. font-family:'ArialMT', 'Arial', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. letter-spacing:normal;
  6360. color:#AAAAAA;
  6361. vertical-align:none;
  6362. text-align:left;
  6363. text-transform:none;
  6364. background-color:transparent;
  6365. border-color:transparent;
  6366. }
  6367. #u63970_input.disabled {
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:153px;
  6372. height:23px;
  6373. padding:2px 2px 2px 2px;
  6374. font-family:'ArialMT', 'Arial', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. letter-spacing:normal;
  6379. color:#AAAAAA;
  6380. vertical-align:none;
  6381. text-align:left;
  6382. text-transform:none;
  6383. background-color:transparent;
  6384. border-color:transparent;
  6385. }
  6386. #u63970_div {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:153px;
  6392. height:23px;
  6393. background:inherit;
  6394. background-color:rgba(255, 255, 255, 1);
  6395. border:none;
  6396. border-radius:0px;
  6397. -moz-box-shadow:none;
  6398. -webkit-box-shadow:none;
  6399. box-shadow:none;
  6400. font-size:14px;
  6401. color:#AAAAAA;
  6402. }
  6403. #u63970 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:362px;
  6407. top:103px;
  6408. width:153px;
  6409. height:23px;
  6410. display:flex;
  6411. font-size:14px;
  6412. color:#AAAAAA;
  6413. }
  6414. #u63970 .text {
  6415. position:absolute;
  6416. align-self:flex-start;
  6417. padding:2px 2px 2px 2px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u63970_div.disabled {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:153px;
  6427. height:23px;
  6428. background:inherit;
  6429. background-color:rgba(240, 240, 240, 1);
  6430. border:none;
  6431. border-radius:0px;
  6432. -moz-box-shadow:none;
  6433. -webkit-box-shadow:none;
  6434. box-shadow:none;
  6435. font-size:14px;
  6436. color:#AAAAAA;
  6437. }
  6438. #u63970.disabled {
  6439. }
  6440. .u63970_input_option {
  6441. font-size:14px;
  6442. }
  6443. #u63971 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:0px;
  6449. height:0px;
  6450. }
  6451. #u63972_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:160px;
  6457. height:30px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 1);
  6460. box-sizing:border-box;
  6461. border-width:1px;
  6462. border-style:solid;
  6463. border-color:rgba(215, 215, 215, 1);
  6464. border-radius:4px;
  6465. -moz-box-shadow:none;
  6466. -webkit-box-shadow:none;
  6467. box-shadow:none;
  6468. font-size:14px;
  6469. }
  6470. #u63972 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:527px;
  6474. top:101px;
  6475. width:160px;
  6476. height:30px;
  6477. display:flex;
  6478. font-size:14px;
  6479. }
  6480. #u63972 .text {
  6481. position:absolute;
  6482. align-self:center;
  6483. padding:2px 2px 2px 2px;
  6484. box-sizing:border-box;
  6485. width:100%;
  6486. }
  6487. #u63972_text {
  6488. border-width:0px;
  6489. word-wrap:break-word;
  6490. text-transform:none;
  6491. visibility:hidden;
  6492. }
  6493. #u63973_input {
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:153px;
  6498. height:23px;
  6499. padding:2px 2px 2px 2px;
  6500. font-family:'ArialMT', 'Arial', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:14px;
  6504. letter-spacing:normal;
  6505. color:#AAAAAA;
  6506. vertical-align:none;
  6507. text-align:left;
  6508. text-transform:none;
  6509. background-color:transparent;
  6510. border-color:transparent;
  6511. }
  6512. #u63973_input.disabled {
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:153px;
  6517. height:23px;
  6518. padding:2px 2px 2px 2px;
  6519. font-family:'ArialMT', 'Arial', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. letter-spacing:normal;
  6524. color:#AAAAAA;
  6525. vertical-align:none;
  6526. text-align:left;
  6527. text-transform:none;
  6528. background-color:transparent;
  6529. border-color:transparent;
  6530. }
  6531. #u63973_div {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:153px;
  6537. height:23px;
  6538. background:inherit;
  6539. background-color:rgba(255, 255, 255, 1);
  6540. border:none;
  6541. border-radius:0px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-size:14px;
  6546. color:#AAAAAA;
  6547. }
  6548. #u63973 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:532px;
  6552. top:103px;
  6553. width:153px;
  6554. height:23px;
  6555. display:flex;
  6556. font-size:14px;
  6557. color:#AAAAAA;
  6558. }
  6559. #u63973 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:2px 2px 2px 2px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u63973_div.disabled {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:153px;
  6572. height:23px;
  6573. background:inherit;
  6574. background-color:rgba(240, 240, 240, 1);
  6575. border:none;
  6576. border-radius:0px;
  6577. -moz-box-shadow:none;
  6578. -webkit-box-shadow:none;
  6579. box-shadow:none;
  6580. font-size:14px;
  6581. color:#AAAAAA;
  6582. }
  6583. #u63973.disabled {
  6584. }
  6585. .u63973_input_option {
  6586. font-size:14px;
  6587. }
  6588. #u63974 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:0px;
  6594. height:0px;
  6595. }
  6596. #u63975_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:200px;
  6602. height:1188px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 1);
  6605. border:none;
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. }
  6611. #u63975 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:120px;
  6615. top:50px;
  6616. width:200px;
  6617. height:1188px;
  6618. display:flex;
  6619. }
  6620. #u63975 .text {
  6621. position:absolute;
  6622. align-self:center;
  6623. padding:2px 2px 2px 2px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u63975_text {
  6628. border-width:0px;
  6629. word-wrap:break-word;
  6630. text-transform:none;
  6631. visibility:hidden;
  6632. }
  6633. #u63976_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:200px;
  6639. height:60px;
  6640. background:inherit;
  6641. background-color:rgba(224, 231, 247, 1);
  6642. border:none;
  6643. border-radius:0px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6648. font-weight:500;
  6649. font-style:normal;
  6650. font-size:18px;
  6651. }
  6652. #u63976 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:120px;
  6656. top:50px;
  6657. width:200px;
  6658. height:60px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6661. font-weight:500;
  6662. font-style:normal;
  6663. font-size:18px;
  6664. }
  6665. #u63976 .text {
  6666. position:absolute;
  6667. align-self:center;
  6668. padding:0px 0px 0px 20px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u63976_text {
  6673. border-width:0px;
  6674. word-wrap:break-word;
  6675. text-transform:none;
  6676. }
  6677. #u63977_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:65px;
  6683. height:22px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 0);
  6686. border:none;
  6687. border-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:16px;
  6695. }
  6696. #u63977 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:147px;
  6700. top:346px;
  6701. width:65px;
  6702. height:22px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:16px;
  6708. }
  6709. #u63977 .text {
  6710. position:absolute;
  6711. align-self:flex-start;
  6712. padding:0px 0px 0px 0px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u63977_text {
  6717. border-width:0px;
  6718. white-space:nowrap;
  6719. text-transform:none;
  6720. }
  6721. #u63978_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:65px;
  6727. height:22px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border:none;
  6731. border-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:16px;
  6739. }
  6740. #u63978 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:147px;
  6744. top:388px;
  6745. width:65px;
  6746. height:22px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:16px;
  6752. }
  6753. #u63978 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u63978_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u63979_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:81px;
  6771. height:22px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border:none;
  6775. border-radius:0px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:16px;
  6783. }
  6784. #u63979 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:147px;
  6788. top:430px;
  6789. width:81px;
  6790. height:22px;
  6791. display:flex;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:16px;
  6796. }
  6797. #u63979 .text {
  6798. position:absolute;
  6799. align-self:flex-start;
  6800. padding:0px 0px 0px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u63979_text {
  6805. border-width:0px;
  6806. white-space:nowrap;
  6807. text-transform:none;
  6808. }
  6809. #u63980_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:81px;
  6815. height:22px;
  6816. background:inherit;
  6817. background-color:rgba(255, 255, 255, 0);
  6818. border:none;
  6819. border-radius:0px;
  6820. -moz-box-shadow:none;
  6821. -webkit-box-shadow:none;
  6822. box-shadow:none;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:16px;
  6827. }
  6828. #u63980 {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:147px;
  6832. top:472px;
  6833. width:81px;
  6834. height:22px;
  6835. display:flex;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:16px;
  6840. }
  6841. #u63980 .text {
  6842. position:absolute;
  6843. align-self:flex-start;
  6844. padding:0px 0px 0px 0px;
  6845. box-sizing:border-box;
  6846. width:100%;
  6847. }
  6848. #u63980_text {
  6849. border-width:0px;
  6850. white-space:nowrap;
  6851. text-transform:none;
  6852. }
  6853. #u63981_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:49px;
  6859. height:17px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 0);
  6862. border:none;
  6863. border-radius:0px;
  6864. -moz-box-shadow:none;
  6865. -webkit-box-shadow:none;
  6866. box-shadow:none;
  6867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:12px;
  6871. color:#AAAAAA;
  6872. }
  6873. #u63981 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:147px;
  6877. top:310px;
  6878. width:49px;
  6879. height:17px;
  6880. display:flex;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#AAAAAA;
  6886. }
  6887. #u63981 .text {
  6888. position:absolute;
  6889. align-self:flex-start;
  6890. padding:0px 0px 0px 0px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u63981_text {
  6895. border-width:0px;
  6896. white-space:nowrap;
  6897. text-transform:none;
  6898. }
  6899. #u63982_img {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:201px;
  6905. height:2px;
  6906. }
  6907. #u63982 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:120px;
  6911. top:598px;
  6912. width:200px;
  6913. height:1px;
  6914. display:flex;
  6915. }
  6916. #u63982 .text {
  6917. position:absolute;
  6918. align-self:center;
  6919. padding:2px 2px 2px 2px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u63982_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. visibility:hidden;
  6928. }
  6929. #u63983_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:65px;
  6935. height:22px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:16px;
  6947. }
  6948. #u63983 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:147px;
  6952. top:514px;
  6953. width:65px;
  6954. height:22px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:16px;
  6960. }
  6961. #u63983 .text {
  6962. position:absolute;
  6963. align-self:flex-start;
  6964. padding:0px 0px 0px 0px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u63983_text {
  6969. border-width:0px;
  6970. white-space:nowrap;
  6971. text-transform:none;
  6972. }
  6973. #u63984_div {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:65px;
  6979. height:22px;
  6980. background:inherit;
  6981. background-color:rgba(255, 255, 255, 0);
  6982. border:none;
  6983. border-radius:0px;
  6984. -moz-box-shadow:none;
  6985. -webkit-box-shadow:none;
  6986. box-shadow:none;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:16px;
  6991. }
  6992. #u63984 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:147px;
  6996. top:556px;
  6997. width:65px;
  6998. height:22px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:16px;
  7004. }
  7005. #u63984 .text {
  7006. position:absolute;
  7007. align-self:flex-start;
  7008. padding:0px 0px 0px 0px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u63984_text {
  7013. border-width:0px;
  7014. white-space:nowrap;
  7015. text-transform:none;
  7016. }
  7017. #u63985_div {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:65px;
  7023. height:22px;
  7024. background:inherit;
  7025. background-color:rgba(255, 255, 255, 0);
  7026. border:none;
  7027. border-radius:0px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:16px;
  7035. }
  7036. #u63985 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:147px;
  7040. top:656px;
  7041. width:65px;
  7042. height:22px;
  7043. display:flex;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:16px;
  7048. }
  7049. #u63985 .text {
  7050. position:absolute;
  7051. align-self:flex-start;
  7052. padding:0px 0px 0px 0px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u63985_text {
  7057. border-width:0px;
  7058. white-space:nowrap;
  7059. text-transform:none;
  7060. }
  7061. #u63986_div {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:49px;
  7067. height:17px;
  7068. background:inherit;
  7069. background-color:rgba(255, 255, 255, 0);
  7070. border:none;
  7071. border-radius:0px;
  7072. -moz-box-shadow:none;
  7073. -webkit-box-shadow:none;
  7074. box-shadow:none;
  7075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:12px;
  7079. color:#AAAAAA;
  7080. }
  7081. #u63986 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:147px;
  7085. top:620px;
  7086. width:49px;
  7087. height:17px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#AAAAAA;
  7094. }
  7095. #u63986 .text {
  7096. position:absolute;
  7097. align-self:flex-start;
  7098. padding:0px 0px 0px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u63986_text {
  7103. border-width:0px;
  7104. white-space:nowrap;
  7105. text-transform:none;
  7106. }
  7107. #u63987_div {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:65px;
  7113. height:22px;
  7114. background:inherit;
  7115. background-color:rgba(255, 255, 255, 0);
  7116. border:none;
  7117. border-radius:0px;
  7118. -moz-box-shadow:none;
  7119. -webkit-box-shadow:none;
  7120. box-shadow:none;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:16px;
  7125. }
  7126. #u63987 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:147px;
  7130. top:166px;
  7131. width:65px;
  7132. height:22px;
  7133. display:flex;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. }
  7139. #u63987 .text {
  7140. position:absolute;
  7141. align-self:flex-start;
  7142. padding:0px 0px 0px 0px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u63987_text {
  7147. border-width:0px;
  7148. white-space:nowrap;
  7149. text-transform:none;
  7150. }
  7151. #u63988_div {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:65px;
  7157. height:22px;
  7158. background:inherit;
  7159. background-color:rgba(255, 255, 255, 0);
  7160. border:none;
  7161. border-radius:0px;
  7162. -moz-box-shadow:none;
  7163. -webkit-box-shadow:none;
  7164. box-shadow:none;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:16px;
  7169. }
  7170. #u63988 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:147px;
  7174. top:248px;
  7175. width:65px;
  7176. height:22px;
  7177. display:flex;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:16px;
  7182. }
  7183. #u63988 .text {
  7184. position:absolute;
  7185. align-self:flex-start;
  7186. padding:0px 0px 0px 0px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u63988_text {
  7191. border-width:0px;
  7192. white-space:nowrap;
  7193. text-transform:none;
  7194. }
  7195. #u63989_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:49px;
  7201. height:17px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 0);
  7204. border:none;
  7205. border-radius:0px;
  7206. -moz-box-shadow:none;
  7207. -webkit-box-shadow:none;
  7208. box-shadow:none;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:12px;
  7213. color:#AAAAAA;
  7214. }
  7215. #u63989 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:147px;
  7219. top:130px;
  7220. width:49px;
  7221. height:17px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:12px;
  7227. color:#AAAAAA;
  7228. }
  7229. #u63989 .text {
  7230. position:absolute;
  7231. align-self:flex-start;
  7232. padding:0px 0px 0px 0px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u63989_text {
  7237. border-width:0px;
  7238. white-space:nowrap;
  7239. text-transform:none;
  7240. }
  7241. #u63990_img {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:201px;
  7247. height:2px;
  7248. }
  7249. #u63990 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:120px;
  7253. top:289px;
  7254. width:200px;
  7255. height:1px;
  7256. display:flex;
  7257. }
  7258. #u63990 .text {
  7259. position:absolute;
  7260. align-self:center;
  7261. padding:2px 2px 2px 2px;
  7262. box-sizing:border-box;
  7263. width:100%;
  7264. }
  7265. #u63990_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. visibility:hidden;
  7270. }
  7271. #u63991_div {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:65px;
  7277. height:22px;
  7278. background:inherit;
  7279. background-color:rgba(255, 255, 255, 0);
  7280. border:none;
  7281. border-radius:0px;
  7282. -moz-box-shadow:none;
  7283. -webkit-box-shadow:none;
  7284. box-shadow:none;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:16px;
  7289. }
  7290. #u63991 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:147px;
  7294. top:206px;
  7295. width:65px;
  7296. height:22px;
  7297. display:flex;
  7298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7299. font-weight:400;
  7300. font-style:normal;
  7301. font-size:16px;
  7302. }
  7303. #u63991 .text {
  7304. position:absolute;
  7305. align-self:flex-start;
  7306. padding:0px 0px 0px 0px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u63991_text {
  7311. border-width:0px;
  7312. white-space:nowrap;
  7313. text-transform:none;
  7314. }