styles.css 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299
  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. #u207_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u207 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u207 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u207_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u208_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u208 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u208 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u208_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u209 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u210_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u210 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u210 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u210_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u211_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u211 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u211 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u211_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u212_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u212 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u212 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u212_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u213_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u213 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u213 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u213_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u214 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u215_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u215 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u215 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u215_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u216_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u216 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u216 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u216_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u217 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u218_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u218 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u218 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u218_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u219_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u219 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u219 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u219_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u220 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u221_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u221 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u221 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u221_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u222_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u222 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u222 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u222_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u223 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u224_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u224 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u224 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u224_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u225_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u225 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u225 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u225_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u226 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u227_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u227 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u227 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u227_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u228_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u228 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u228 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u228_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u229 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u230_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u230 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u230 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u230_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u231_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u231 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u231 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u231_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u232 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u233_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u233 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:443px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u233 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u233_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u234_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u234 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:447px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u234 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u234_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u235 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u236_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u236 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:485px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u236 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u236_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u237_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u237 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:489px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u237 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u237_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u238 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u239_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u239 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:611px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u239 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u239_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u240_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u240 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:615px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u240 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u240_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u241 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u242_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u242 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:569px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u242 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u242_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u243_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u243 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:573px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u243 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u243_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u244_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u244_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u244_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u244 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u244 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u244_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u244.disabled {
  1184. }
  1185. .u244_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u245_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u245 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u245 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u245_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u246_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u246 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u246 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u246_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u247_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u247 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u247 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u247_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u248 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u249_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u249 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u249 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u249_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u250_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u250 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u250 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u250_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u251 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u252_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u252 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u252 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u252_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u253_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u253 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u253 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u253_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u254 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u255_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u255 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u255 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u255_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u256_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u256 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u256 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u256_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u257 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u258_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u258 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:527px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u258 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u258_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u259_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u259 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:531px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u259 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u259_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u260 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u261_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u261 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u261 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u261_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u262_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u262 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u262 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u262_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u263 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:0px;
  1720. height:0px;
  1721. }
  1722. #u264_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:33px;
  1728. height:22px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 0);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:16px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u264 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:39px;
  1746. top:403px;
  1747. width:33px;
  1748. height:22px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:16px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u264 .text {
  1757. position:absolute;
  1758. align-self:flex-start;
  1759. padding:0px 0px 0px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u264_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u265_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:14px;
  1774. height:14px;
  1775. }
  1776. #u265 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:20px;
  1780. top:407px;
  1781. width:14px;
  1782. height:14px;
  1783. display:flex;
  1784. }
  1785. #u265 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u265_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u266_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:1259px;
  1804. height:1180px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 1);
  1807. border:none;
  1808. border-radius:0px;
  1809. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1810. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1811. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1812. }
  1813. #u266 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:330px;
  1817. top:50px;
  1818. width:1259px;
  1819. height:1180px;
  1820. display:flex;
  1821. }
  1822. #u266 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 2px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u266_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. visibility:hidden;
  1834. }
  1835. #u267_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:200px;
  1841. height:1180px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. }
  1850. #u267 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:120px;
  1854. top:50px;
  1855. width:200px;
  1856. height:1180px;
  1857. display:flex;
  1858. }
  1859. #u267 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u267_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u268_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:200px;
  1878. height:60px;
  1879. background:inherit;
  1880. background-color:rgba(224, 231, 247, 1);
  1881. border:none;
  1882. border-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1887. font-weight:500;
  1888. font-style:normal;
  1889. font-size:18px;
  1890. }
  1891. #u268 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:120px;
  1895. top:50px;
  1896. width:200px;
  1897. height:60px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1900. font-weight:500;
  1901. font-style:normal;
  1902. font-size:18px;
  1903. }
  1904. #u268 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:0px 0px 0px 20px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u268_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u269_div {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:65px;
  1922. height:22px;
  1923. background:inherit;
  1924. background-color:rgba(255, 255, 255, 0);
  1925. border:none;
  1926. border-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:16px;
  1934. }
  1935. #u269 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:147px;
  1939. top:167px;
  1940. width:65px;
  1941. height:22px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:16px;
  1947. }
  1948. #u269 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u269_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u270_div {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:65px;
  1966. height:22px;
  1967. background:inherit;
  1968. background-color:rgba(255, 255, 255, 0);
  1969. border:none;
  1970. border-radius:0px;
  1971. -moz-box-shadow:none;
  1972. -webkit-box-shadow:none;
  1973. box-shadow:none;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:16px;
  1978. }
  1979. #u270 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:147px;
  1983. top:209px;
  1984. width:65px;
  1985. height:22px;
  1986. display:flex;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:16px;
  1991. }
  1992. #u270 .text {
  1993. position:absolute;
  1994. align-self:flex-start;
  1995. padding:0px 0px 0px 0px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u270_text {
  2000. border-width:0px;
  2001. white-space:nowrap;
  2002. text-transform:none;
  2003. }
  2004. #u271_div {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:65px;
  2010. height:22px;
  2011. background:inherit;
  2012. background-color:rgba(255, 255, 255, 0);
  2013. border:none;
  2014. border-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:16px;
  2022. }
  2023. #u271 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:146px;
  2027. top:309px;
  2028. width:65px;
  2029. height:22px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:16px;
  2035. }
  2036. #u271 .text {
  2037. position:absolute;
  2038. align-self:flex-start;
  2039. padding:0px 0px 0px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u271_text {
  2044. border-width:0px;
  2045. white-space:nowrap;
  2046. text-transform:none;
  2047. }
  2048. #u272_div {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:65px;
  2054. height:22px;
  2055. background:inherit;
  2056. background-color:rgba(255, 255, 255, 0);
  2057. border:none;
  2058. border-radius:0px;
  2059. -moz-box-shadow:none;
  2060. -webkit-box-shadow:none;
  2061. box-shadow:none;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:16px;
  2066. }
  2067. #u272 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:146px;
  2071. top:351px;
  2072. width:65px;
  2073. height:22px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:16px;
  2079. }
  2080. #u272 .text {
  2081. position:absolute;
  2082. align-self:flex-start;
  2083. padding:0px 0px 0px 0px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u272_text {
  2088. border-width:0px;
  2089. white-space:nowrap;
  2090. text-transform:none;
  2091. }
  2092. #u273_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:49px;
  2098. height:17px;
  2099. background:inherit;
  2100. background-color:rgba(255, 255, 255, 0);
  2101. border:none;
  2102. border-radius:0px;
  2103. -moz-box-shadow:none;
  2104. -webkit-box-shadow:none;
  2105. box-shadow:none;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#AAAAAA;
  2111. }
  2112. #u273 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:147px;
  2116. top:130px;
  2117. width:49px;
  2118. height:17px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. color:#AAAAAA;
  2125. }
  2126. #u273 .text {
  2127. position:absolute;
  2128. align-self:flex-start;
  2129. padding:0px 0px 0px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u273_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u274_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:201px;
  2144. height:2px;
  2145. }
  2146. #u274 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:120px;
  2150. top:251px;
  2151. width:200px;
  2152. height:1px;
  2153. display:flex;
  2154. }
  2155. #u274 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 2px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u274_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u275_div {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:49px;
  2174. height:17px;
  2175. background:inherit;
  2176. background-color:rgba(255, 255, 255, 0);
  2177. border:none;
  2178. border-radius:0px;
  2179. -moz-box-shadow:none;
  2180. -webkit-box-shadow:none;
  2181. box-shadow:none;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#AAAAAA;
  2187. }
  2188. #u275 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:146px;
  2192. top:272px;
  2193. width:49px;
  2194. height:17px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:12px;
  2200. color:#AAAAAA;
  2201. }
  2202. #u275 .text {
  2203. position:absolute;
  2204. align-self:flex-start;
  2205. padding:0px 0px 0px 0px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u275_text {
  2210. border-width:0px;
  2211. white-space:nowrap;
  2212. text-transform:none;
  2213. }
  2214. #u276_div {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:73px;
  2220. height:60px;
  2221. background:inherit;
  2222. background-color:rgba(255, 255, 255, 0);
  2223. border:none;
  2224. border-radius:0px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:18px;
  2232. }
  2233. #u276 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:365px;
  2237. top:50px;
  2238. width:73px;
  2239. height:60px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:18px;
  2245. }
  2246. #u276 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:0px 0px 0px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u276_text {
  2254. border-width:0px;
  2255. white-space:nowrap;
  2256. text-transform:none;
  2257. }
  2258. #u277 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:0px;
  2264. height:0px;
  2265. }
  2266. #u278_div {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:59px;
  2272. height:30px;
  2273. background:inherit;
  2274. background-color:rgba(24, 144, 255, 1);
  2275. box-sizing:border-box;
  2276. border-width:1px;
  2277. border-style:solid;
  2278. border-color:rgba(0, 153, 255, 1);
  2279. border-radius:4px;
  2280. -moz-box-shadow:none;
  2281. -webkit-box-shadow:none;
  2282. box-shadow:none;
  2283. font-family:'Microsoft YaHei', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:14px;
  2287. color:#FFFFFF;
  2288. }
  2289. #u278 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:1115px;
  2293. top:111px;
  2294. width:59px;
  2295. height:30px;
  2296. display:flex;
  2297. font-family:'Microsoft YaHei', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:14px;
  2301. color:#FFFFFF;
  2302. }
  2303. #u278 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:5px 15px 5px 15px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u278_text {
  2311. border-width:0px;
  2312. white-space:nowrap;
  2313. text-transform:none;
  2314. }
  2315. #u279_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:55px;
  2321. height:30px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 1);
  2324. box-sizing:border-box;
  2325. border-width:1px;
  2326. border-style:solid;
  2327. border-color:rgba(170, 170, 170, 1);
  2328. border-radius:4px;
  2329. -moz-box-shadow:none;
  2330. -webkit-box-shadow:none;
  2331. box-shadow:none;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:12px;
  2336. color:#555555;
  2337. }
  2338. #u279 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:1184px;
  2342. top:111px;
  2343. width:55px;
  2344. height:30px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:12px;
  2350. color:#555555;
  2351. }
  2352. #u279 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:5px 15px 5px 15px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u279_text {
  2360. border-width:0px;
  2361. white-space:nowrap;
  2362. text-transform:none;
  2363. }
  2364. #u280 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:0px;
  2370. height:0px;
  2371. }
  2372. #u281_div {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:140px;
  2378. height:30px;
  2379. background:inherit;
  2380. background-color:rgba(255, 255, 255, 1);
  2381. box-sizing:border-box;
  2382. border-width:1px;
  2383. border-style:solid;
  2384. border-color:rgba(201, 201, 201, 1);
  2385. border-radius:4px;
  2386. -moz-box-shadow:none;
  2387. -webkit-box-shadow:none;
  2388. box-shadow:none;
  2389. font-family:'Microsoft YaHei', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:14px;
  2393. color:#CCCCCC;
  2394. text-align:left;
  2395. }
  2396. #u281 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:665px;
  2400. top:111px;
  2401. width:140px;
  2402. height:30px;
  2403. display:flex;
  2404. font-family:'Microsoft YaHei', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:14px;
  2408. color:#CCCCCC;
  2409. text-align:left;
  2410. }
  2411. #u281 .text {
  2412. position:absolute;
  2413. align-self:center;
  2414. padding:2px 8px 2px 8px;
  2415. box-sizing:border-box;
  2416. width:100%;
  2417. }
  2418. #u281_text {
  2419. border-width:0px;
  2420. word-wrap:break-word;
  2421. text-transform:none;
  2422. visibility:hidden;
  2423. }
  2424. #u282_input {
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:127px;
  2429. height:25px;
  2430. padding:2px 2px 2px 2px;
  2431. font-family:'Microsoft YaHei', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:10px;
  2435. letter-spacing:normal;
  2436. color:#000000;
  2437. vertical-align:none;
  2438. text-align:left;
  2439. text-transform:none;
  2440. background-color:transparent;
  2441. border-color:transparent;
  2442. }
  2443. #u282_input.disabled {
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:127px;
  2448. height:25px;
  2449. padding:2px 2px 2px 2px;
  2450. font-family:'Microsoft YaHei', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:10px;
  2454. letter-spacing:normal;
  2455. color:#000000;
  2456. vertical-align:none;
  2457. text-align:left;
  2458. text-transform:none;
  2459. background-color:transparent;
  2460. border-color:transparent;
  2461. }
  2462. #u282_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:127px;
  2468. height:25px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 1);
  2471. border:none;
  2472. border-radius:0px;
  2473. -moz-box-shadow:none;
  2474. -webkit-box-shadow:none;
  2475. box-shadow:none;
  2476. font-family:'Microsoft YaHei', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:10px;
  2480. }
  2481. #u282 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:673px;
  2485. top:112px;
  2486. width:127px;
  2487. height:25px;
  2488. display:flex;
  2489. font-family:'Microsoft YaHei', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:10px;
  2493. }
  2494. #u282 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u282_div.disabled {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:127px;
  2507. height:25px;
  2508. background:inherit;
  2509. background-color:rgba(240, 240, 240, 1);
  2510. border:none;
  2511. border-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. font-family:'Microsoft YaHei', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:10px;
  2519. }
  2520. #u282.disabled {
  2521. }
  2522. #u283 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:0px;
  2528. height:0px;
  2529. }
  2530. #u284_div {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:140px;
  2536. height:30px;
  2537. background:inherit;
  2538. background-color:rgba(255, 255, 255, 1);
  2539. box-sizing:border-box;
  2540. border-width:1px;
  2541. border-style:solid;
  2542. border-color:rgba(215, 215, 215, 1);
  2543. border-radius:4px;
  2544. -moz-box-shadow:none;
  2545. -webkit-box-shadow:none;
  2546. box-shadow:none;
  2547. font-size:11px;
  2548. }
  2549. #u284 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:515px;
  2553. top:111px;
  2554. width:140px;
  2555. height:30px;
  2556. display:flex;
  2557. font-size:11px;
  2558. }
  2559. #u284 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 2px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u284_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u285_input {
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:126px;
  2577. height:23px;
  2578. padding:2px 2px 2px 2px;
  2579. font-family:'ArialMT', 'Arial', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:11px;
  2583. letter-spacing:normal;
  2584. color:#AAAAAA;
  2585. vertical-align:none;
  2586. text-align:left;
  2587. text-transform:none;
  2588. background-color:transparent;
  2589. border-color:transparent;
  2590. }
  2591. #u285_input.disabled {
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:126px;
  2596. height:23px;
  2597. padding:2px 2px 2px 2px;
  2598. font-family:'ArialMT', 'Arial', sans-serif;
  2599. font-weight:400;
  2600. font-style:normal;
  2601. font-size:11px;
  2602. letter-spacing:normal;
  2603. color:#AAAAAA;
  2604. vertical-align:none;
  2605. text-align:left;
  2606. text-transform:none;
  2607. background-color:transparent;
  2608. border-color:transparent;
  2609. }
  2610. #u285_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:126px;
  2616. height:23px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 1);
  2619. border:none;
  2620. border-radius:0px;
  2621. -moz-box-shadow:none;
  2622. -webkit-box-shadow:none;
  2623. box-shadow:none;
  2624. font-size:11px;
  2625. color:#AAAAAA;
  2626. }
  2627. #u285 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:522px;
  2631. top:113px;
  2632. width:126px;
  2633. height:23px;
  2634. display:flex;
  2635. font-size:11px;
  2636. color:#AAAAAA;
  2637. }
  2638. #u285 .text {
  2639. position:absolute;
  2640. align-self:flex-start;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u285_div.disabled {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:126px;
  2651. height:23px;
  2652. background:inherit;
  2653. background-color:rgba(240, 240, 240, 1);
  2654. border:none;
  2655. border-radius:0px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. font-size:11px;
  2660. color:#AAAAAA;
  2661. }
  2662. #u285.disabled {
  2663. }
  2664. .u285_input_option {
  2665. font-size:11px;
  2666. }
  2667. #u286 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:0px;
  2673. height:0px;
  2674. }
  2675. #u287_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:140px;
  2681. height:30px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 1);
  2684. box-sizing:border-box;
  2685. border-width:1px;
  2686. border-style:solid;
  2687. border-color:rgba(215, 215, 215, 1);
  2688. border-radius:4px;
  2689. -moz-box-shadow:none;
  2690. -webkit-box-shadow:none;
  2691. box-shadow:none;
  2692. font-size:11px;
  2693. }
  2694. #u287 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:815px;
  2698. top:111px;
  2699. width:140px;
  2700. height:30px;
  2701. display:flex;
  2702. font-size:11px;
  2703. }
  2704. #u287 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u287_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u288_input {
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:126px;
  2722. height:23px;
  2723. padding:2px 2px 2px 2px;
  2724. font-family:'ArialMT', 'Arial', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:11px;
  2728. letter-spacing:normal;
  2729. color:#AAAAAA;
  2730. vertical-align:none;
  2731. text-align:left;
  2732. text-transform:none;
  2733. background-color:transparent;
  2734. border-color:transparent;
  2735. }
  2736. #u288_input.disabled {
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:126px;
  2741. height:23px;
  2742. padding:2px 2px 2px 2px;
  2743. font-family:'ArialMT', 'Arial', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:11px;
  2747. letter-spacing:normal;
  2748. color:#AAAAAA;
  2749. vertical-align:none;
  2750. text-align:left;
  2751. text-transform:none;
  2752. background-color:transparent;
  2753. border-color:transparent;
  2754. }
  2755. #u288_div {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:126px;
  2761. height:23px;
  2762. background:inherit;
  2763. background-color:rgba(255, 255, 255, 1);
  2764. border:none;
  2765. border-radius:0px;
  2766. -moz-box-shadow:none;
  2767. -webkit-box-shadow:none;
  2768. box-shadow:none;
  2769. font-size:11px;
  2770. color:#AAAAAA;
  2771. }
  2772. #u288 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:822px;
  2776. top:113px;
  2777. width:126px;
  2778. height:23px;
  2779. display:flex;
  2780. font-size:11px;
  2781. color:#AAAAAA;
  2782. }
  2783. #u288 .text {
  2784. position:absolute;
  2785. align-self:flex-start;
  2786. padding:2px 2px 2px 2px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u288_div.disabled {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:126px;
  2796. height:23px;
  2797. background:inherit;
  2798. background-color:rgba(240, 240, 240, 1);
  2799. border:none;
  2800. border-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. font-size:11px;
  2805. color:#AAAAAA;
  2806. }
  2807. #u288.disabled {
  2808. }
  2809. .u288_input_option {
  2810. font-size:11px;
  2811. }
  2812. #u289 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:0px;
  2818. height:0px;
  2819. }
  2820. #u290_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:140px;
  2826. height:30px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(215, 215, 215, 1);
  2833. border-radius:4px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-size:11px;
  2838. }
  2839. #u290 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:965px;
  2843. top:111px;
  2844. width:140px;
  2845. height:30px;
  2846. display:flex;
  2847. font-size:11px;
  2848. }
  2849. #u290 .text {
  2850. position:absolute;
  2851. align-self:center;
  2852. padding:2px 2px 2px 2px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u290_text {
  2857. border-width:0px;
  2858. word-wrap:break-word;
  2859. text-transform:none;
  2860. visibility:hidden;
  2861. }
  2862. #u291_input {
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:126px;
  2867. height:23px;
  2868. padding:2px 2px 2px 2px;
  2869. font-family:'ArialMT', 'Arial', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:11px;
  2873. letter-spacing:normal;
  2874. color:#AAAAAA;
  2875. vertical-align:none;
  2876. text-align:left;
  2877. text-transform:none;
  2878. background-color:transparent;
  2879. border-color:transparent;
  2880. }
  2881. #u291_input.disabled {
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:126px;
  2886. height:23px;
  2887. padding:2px 2px 2px 2px;
  2888. font-family:'ArialMT', 'Arial', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:11px;
  2892. letter-spacing:normal;
  2893. color:#AAAAAA;
  2894. vertical-align:none;
  2895. text-align:left;
  2896. text-transform:none;
  2897. background-color:transparent;
  2898. border-color:transparent;
  2899. }
  2900. #u291_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:126px;
  2906. height:23px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 1);
  2909. border:none;
  2910. border-radius:0px;
  2911. -moz-box-shadow:none;
  2912. -webkit-box-shadow:none;
  2913. box-shadow:none;
  2914. font-size:11px;
  2915. color:#AAAAAA;
  2916. }
  2917. #u291 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:972px;
  2921. top:113px;
  2922. width:126px;
  2923. height:23px;
  2924. display:flex;
  2925. font-size:11px;
  2926. color:#AAAAAA;
  2927. }
  2928. #u291 .text {
  2929. position:absolute;
  2930. align-self:flex-start;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u291_div.disabled {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:126px;
  2941. height:23px;
  2942. background:inherit;
  2943. background-color:rgba(240, 240, 240, 1);
  2944. border:none;
  2945. border-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. font-size:11px;
  2950. color:#AAAAAA;
  2951. }
  2952. #u291.disabled {
  2953. }
  2954. .u291_input_option {
  2955. font-size:11px;
  2956. }
  2957. #u292 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:365px;
  2961. top:156px;
  2962. width:1208px;
  2963. height:328px;
  2964. }
  2965. #u293_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:66px;
  2971. height:44px;
  2972. }
  2973. #u293 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:66px;
  2979. height:44px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. color:#FFFFFF;
  2986. }
  2987. #u293 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u293_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. }
  2999. #u294_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:80px;
  3005. height:44px;
  3006. }
  3007. #u294 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:66px;
  3011. top:0px;
  3012. width:80px;
  3013. height:44px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#FFFFFF;
  3020. }
  3021. #u294 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u294_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. }
  3033. #u295_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:110px;
  3039. height:44px;
  3040. }
  3041. #u295 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:146px;
  3045. top:0px;
  3046. width:110px;
  3047. height:44px;
  3048. display:flex;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. color:#FFFFFF;
  3054. }
  3055. #u295 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u295_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. }
  3067. #u296_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:88px;
  3073. height:44px;
  3074. }
  3075. #u296 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:256px;
  3079. top:0px;
  3080. width:88px;
  3081. height:44px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:12px;
  3087. color:#FFFFFF;
  3088. }
  3089. #u296 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u296_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u297_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:88px;
  3107. height:44px;
  3108. }
  3109. #u297 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:344px;
  3113. top:0px;
  3114. width:88px;
  3115. height:44px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:#FFFFFF;
  3122. }
  3123. #u297 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u297_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. }
  3135. #u298_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:140px;
  3141. height:44px;
  3142. }
  3143. #u298 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:432px;
  3147. top:0px;
  3148. width:140px;
  3149. height:44px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#FFFFFF;
  3156. }
  3157. #u298 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u298_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. }
  3169. #u299_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:110px;
  3175. height:44px;
  3176. }
  3177. #u299 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:572px;
  3181. top:0px;
  3182. width:110px;
  3183. height:44px;
  3184. display:flex;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. color:#FFFFFF;
  3190. }
  3191. #u299 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 0px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u299_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. }
  3203. #u300_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:88px;
  3209. height:44px;
  3210. }
  3211. #u300 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:682px;
  3215. top:0px;
  3216. width:88px;
  3217. height:44px;
  3218. display:flex;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. color:#FFFFFF;
  3224. }
  3225. #u300 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 0px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u300_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. }
  3237. #u301_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:66px;
  3243. height:44px;
  3244. }
  3245. #u301 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:770px;
  3249. top:0px;
  3250. width:66px;
  3251. height:44px;
  3252. display:flex;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. color:#FFFFFF;
  3258. }
  3259. #u301 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u301_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. }
  3271. #u302_img {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:110px;
  3277. height:44px;
  3278. }
  3279. #u302 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:836px;
  3283. top:0px;
  3284. width:110px;
  3285. height:44px;
  3286. display:flex;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. color:#FFFFFF;
  3292. }
  3293. #u302 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u302_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. }
  3305. #u303_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:110px;
  3311. height:44px;
  3312. }
  3313. #u303 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:946px;
  3317. top:0px;
  3318. width:110px;
  3319. height:44px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. color:#FFFFFF;
  3326. }
  3327. #u303 .text {
  3328. position:absolute;
  3329. align-self:center;
  3330. padding:2px 2px 2px 0px;
  3331. box-sizing:border-box;
  3332. width:100%;
  3333. }
  3334. #u303_text {
  3335. border-width:0px;
  3336. word-wrap:break-word;
  3337. text-transform:none;
  3338. }
  3339. #u304_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:152px;
  3345. height:44px;
  3346. }
  3347. #u304 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:1056px;
  3351. top:0px;
  3352. width:152px;
  3353. height:44px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#FFFFFF;
  3360. }
  3361. #u304 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u304_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. }
  3373. #u305_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:66px;
  3379. height:38px;
  3380. }
  3381. #u305 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:44px;
  3386. width:66px;
  3387. height:38px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. color:#333333;
  3394. }
  3395. #u305 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u305_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u306_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:80px;
  3414. height:38px;
  3415. }
  3416. #u306 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:66px;
  3420. top:44px;
  3421. width:80px;
  3422. height:38px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#333333;
  3429. }
  3430. #u306 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u306_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u307_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:110px;
  3449. height:38px;
  3450. }
  3451. #u307 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:146px;
  3455. top:44px;
  3456. width:110px;
  3457. height:38px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. color:#333333;
  3464. }
  3465. #u307 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u307_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. visibility:hidden;
  3477. }
  3478. #u308_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:88px;
  3484. height:38px;
  3485. }
  3486. #u308 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:256px;
  3490. top:44px;
  3491. width:88px;
  3492. height:38px;
  3493. display:flex;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. color:#333333;
  3499. }
  3500. #u308 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 0px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u308_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. visibility:hidden;
  3512. }
  3513. #u309_img {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:88px;
  3519. height:38px;
  3520. }
  3521. #u309 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:344px;
  3525. top:44px;
  3526. width:88px;
  3527. height:38px;
  3528. display:flex;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. color:#333333;
  3534. }
  3535. #u309 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 0px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u309_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. }
  3547. #u310_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:140px;
  3553. height:38px;
  3554. }
  3555. #u310 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:432px;
  3559. top:44px;
  3560. width:140px;
  3561. height:38px;
  3562. display:flex;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:12px;
  3567. color:#BCBCBC;
  3568. line-height:24px;
  3569. }
  3570. #u310 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 0px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u310_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u311_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:110px;
  3589. height:38px;
  3590. }
  3591. #u311 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:572px;
  3595. top:44px;
  3596. width:110px;
  3597. height:38px;
  3598. display:flex;
  3599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. color:#333333;
  3604. }
  3605. #u311 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u311_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u312_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:88px;
  3624. height:38px;
  3625. }
  3626. #u312 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:682px;
  3630. top:44px;
  3631. width:88px;
  3632. height:38px;
  3633. display:flex;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#333333;
  3639. }
  3640. #u312 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 0px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u312_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. }
  3652. #u313_img {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:66px;
  3658. height:38px;
  3659. }
  3660. #u313 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:770px;
  3664. top:44px;
  3665. width:66px;
  3666. height:38px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. color:#333333;
  3673. }
  3674. #u313 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u313_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. }
  3686. #u314_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:110px;
  3692. height:38px;
  3693. }
  3694. #u314 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:836px;
  3698. top:44px;
  3699. width:110px;
  3700. height:38px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:12px;
  3706. color:#333333;
  3707. }
  3708. #u314 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u314_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. visibility:hidden;
  3720. }
  3721. #u315_img {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:110px;
  3727. height:38px;
  3728. }
  3729. #u315 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:946px;
  3733. top:44px;
  3734. width:110px;
  3735. height:38px;
  3736. display:flex;
  3737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:12px;
  3741. color:#333333;
  3742. }
  3743. #u315 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u315_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u316_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:152px;
  3762. height:38px;
  3763. }
  3764. #u316 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:1056px;
  3768. top:44px;
  3769. width:152px;
  3770. height:38px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. color:#0089FE;
  3777. }
  3778. #u316 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u316_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. }
  3790. #u317_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:66px;
  3796. height:38px;
  3797. }
  3798. #u317 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:82px;
  3803. width:66px;
  3804. height:38px;
  3805. display:flex;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#333333;
  3811. }
  3812. #u317 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u317_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u318_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:80px;
  3831. height:38px;
  3832. }
  3833. #u318 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:66px;
  3837. top:82px;
  3838. width:80px;
  3839. height:38px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#333333;
  3846. }
  3847. #u318 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u318_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u319_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:110px;
  3866. height:38px;
  3867. }
  3868. #u319 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:146px;
  3872. top:82px;
  3873. width:110px;
  3874. height:38px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. color:#333333;
  3881. }
  3882. #u319 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u319_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u320_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:88px;
  3901. height:38px;
  3902. }
  3903. #u320 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:256px;
  3907. top:82px;
  3908. width:88px;
  3909. height:38px;
  3910. display:flex;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#333333;
  3916. }
  3917. #u320 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u320_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. visibility:hidden;
  3929. }
  3930. #u321_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:88px;
  3936. height:38px;
  3937. }
  3938. #u321 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:344px;
  3942. top:82px;
  3943. width:88px;
  3944. height:38px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. color:#333333;
  3951. }
  3952. #u321 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u321_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. }
  3964. #u322_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:140px;
  3970. height:38px;
  3971. }
  3972. #u322 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:432px;
  3976. top:82px;
  3977. width:140px;
  3978. height:38px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. color:#333333;
  3985. }
  3986. #u322 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 0px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u322_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u323_img {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:110px;
  4005. height:38px;
  4006. }
  4007. #u323 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:572px;
  4011. top:82px;
  4012. width:110px;
  4013. height:38px;
  4014. display:flex;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:12px;
  4019. color:#333333;
  4020. }
  4021. #u323 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:2px 2px 2px 0px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u323_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. visibility:hidden;
  4033. }
  4034. #u324_img {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:88px;
  4040. height:38px;
  4041. }
  4042. #u324 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:682px;
  4046. top:82px;
  4047. width:88px;
  4048. height:38px;
  4049. display:flex;
  4050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4051. font-weight:400;
  4052. font-style:normal;
  4053. font-size:12px;
  4054. color:#333333;
  4055. }
  4056. #u324 .text {
  4057. position:absolute;
  4058. align-self:center;
  4059. padding:2px 2px 2px 0px;
  4060. box-sizing:border-box;
  4061. width:100%;
  4062. }
  4063. #u324_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. }
  4068. #u325_img {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:66px;
  4074. height:38px;
  4075. }
  4076. #u325 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:770px;
  4080. top:82px;
  4081. width:66px;
  4082. height:38px;
  4083. display:flex;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. color:#333333;
  4089. }
  4090. #u325 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u325_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. }
  4102. #u326_img {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:110px;
  4108. height:38px;
  4109. }
  4110. #u326 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:836px;
  4114. top:82px;
  4115. width:110px;
  4116. height:38px;
  4117. display:flex;
  4118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4119. font-weight:400;
  4120. font-style:normal;
  4121. font-size:12px;
  4122. color:#333333;
  4123. }
  4124. #u326 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 0px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u326_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u327_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:110px;
  4143. height:38px;
  4144. }
  4145. #u327 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:946px;
  4149. top:82px;
  4150. width:110px;
  4151. height:38px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:12px;
  4157. color:#333333;
  4158. }
  4159. #u327 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 0px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u327_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u328_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:152px;
  4178. height:38px;
  4179. }
  4180. #u328 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:1056px;
  4184. top:82px;
  4185. width:152px;
  4186. height:38px;
  4187. display:flex;
  4188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:12px;
  4192. color:#0089FE;
  4193. }
  4194. #u328 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 0px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u328_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. }
  4206. #u329_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:66px;
  4212. height:38px;
  4213. }
  4214. #u329 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:120px;
  4219. width:66px;
  4220. height:38px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#333333;
  4227. }
  4228. #u329 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u329_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u330_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:80px;
  4247. height:38px;
  4248. }
  4249. #u330 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:66px;
  4253. top:120px;
  4254. width:80px;
  4255. height:38px;
  4256. display:flex;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#333333;
  4262. }
  4263. #u330 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u330_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u331_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:110px;
  4282. height:38px;
  4283. }
  4284. #u331 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:146px;
  4288. top:120px;
  4289. width:110px;
  4290. height:38px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#333333;
  4297. }
  4298. #u331 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u331_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u332_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:88px;
  4317. height:38px;
  4318. }
  4319. #u332 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:256px;
  4323. top:120px;
  4324. width:88px;
  4325. height:38px;
  4326. display:flex;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#333333;
  4332. }
  4333. #u332 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u332_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u333_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:88px;
  4352. height:38px;
  4353. }
  4354. #u333 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:344px;
  4358. top:120px;
  4359. width:88px;
  4360. height:38px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#333333;
  4367. }
  4368. #u333 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u333_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. }
  4380. #u334_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:140px;
  4386. height:38px;
  4387. }
  4388. #u334 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:432px;
  4392. top:120px;
  4393. width:140px;
  4394. height:38px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#333333;
  4401. }
  4402. #u334 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u334_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u335_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:110px;
  4421. height:38px;
  4422. }
  4423. #u335 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:572px;
  4427. top:120px;
  4428. width:110px;
  4429. height:38px;
  4430. display:flex;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. color:#333333;
  4436. }
  4437. #u335 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 0px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u335_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u336_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:88px;
  4456. height:38px;
  4457. }
  4458. #u336 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:682px;
  4462. top:120px;
  4463. width:88px;
  4464. height:38px;
  4465. display:flex;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:12px;
  4470. color:#333333;
  4471. }
  4472. #u336 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 0px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u336_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. visibility:hidden;
  4484. }
  4485. #u337_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:66px;
  4491. height:38px;
  4492. }
  4493. #u337 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:770px;
  4497. top:120px;
  4498. width:66px;
  4499. height:38px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. color:#333333;
  4506. }
  4507. #u337 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u337_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. }
  4519. #u338_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:110px;
  4525. height:38px;
  4526. }
  4527. #u338 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:836px;
  4531. top:120px;
  4532. width:110px;
  4533. height:38px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#333333;
  4540. }
  4541. #u338 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u338_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. visibility:hidden;
  4553. }
  4554. #u339_img {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:110px;
  4560. height:38px;
  4561. }
  4562. #u339 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:946px;
  4566. top:120px;
  4567. width:110px;
  4568. height:38px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:12px;
  4574. color:#333333;
  4575. }
  4576. #u339 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:2px 2px 2px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u339_text {
  4584. border-width:0px;
  4585. word-wrap:break-word;
  4586. text-transform:none;
  4587. visibility:hidden;
  4588. }
  4589. #u340_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:152px;
  4595. height:38px;
  4596. }
  4597. #u340 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:1056px;
  4601. top:120px;
  4602. width:152px;
  4603. height:38px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:12px;
  4609. color:#0089FE;
  4610. }
  4611. #u340 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 0px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u340_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. }
  4623. #u341_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:66px;
  4629. height:38px;
  4630. }
  4631. #u341 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:158px;
  4636. width:66px;
  4637. height:38px;
  4638. display:flex;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#333333;
  4644. }
  4645. #u341 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u341_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u342_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:80px;
  4664. height:38px;
  4665. }
  4666. #u342 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:66px;
  4670. top:158px;
  4671. width:80px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#333333;
  4679. }
  4680. #u342 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u342_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u343_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:110px;
  4699. height:38px;
  4700. }
  4701. #u343 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:146px;
  4705. top:158px;
  4706. width:110px;
  4707. height:38px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#333333;
  4714. }
  4715. #u343 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u343_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u344_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:88px;
  4734. height:38px;
  4735. }
  4736. #u344 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:256px;
  4740. top:158px;
  4741. width:88px;
  4742. height:38px;
  4743. display:flex;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#333333;
  4749. }
  4750. #u344 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u344_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u345_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:88px;
  4769. height:38px;
  4770. }
  4771. #u345 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:344px;
  4775. top:158px;
  4776. width:88px;
  4777. height:38px;
  4778. display:flex;
  4779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#333333;
  4784. }
  4785. #u345 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u345_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. }
  4797. #u346_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:140px;
  4803. height:38px;
  4804. }
  4805. #u346 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:432px;
  4809. top:158px;
  4810. width:140px;
  4811. height:38px;
  4812. display:flex;
  4813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#333333;
  4818. }
  4819. #u346 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u346_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. }
  4831. #u347_img {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:110px;
  4837. height:38px;
  4838. }
  4839. #u347 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:572px;
  4843. top:158px;
  4844. width:110px;
  4845. height:38px;
  4846. display:flex;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#333333;
  4852. }
  4853. #u347 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u347_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u348_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:88px;
  4872. height:38px;
  4873. }
  4874. #u348 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:682px;
  4878. top:158px;
  4879. width:88px;
  4880. height:38px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#333333;
  4887. }
  4888. #u348 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u348_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u349_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:66px;
  4907. height:38px;
  4908. }
  4909. #u349 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:770px;
  4913. top:158px;
  4914. width:66px;
  4915. height:38px;
  4916. display:flex;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#333333;
  4922. }
  4923. #u349 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u349_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. }
  4935. #u350_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:110px;
  4941. height:38px;
  4942. }
  4943. #u350 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:836px;
  4947. top:158px;
  4948. width:110px;
  4949. height:38px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#333333;
  4956. }
  4957. #u350 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u350_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u351_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:110px;
  4976. height:38px;
  4977. }
  4978. #u351 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:946px;
  4982. top:158px;
  4983. width:110px;
  4984. height:38px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. }
  4992. #u351 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u351_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u352_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:152px;
  5011. height:38px;
  5012. }
  5013. #u352 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1056px;
  5017. top:158px;
  5018. width:152px;
  5019. height:38px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#0089FE;
  5026. }
  5027. #u352 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u352_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. }
  5039. #u353_img {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:66px;
  5045. height:35px;
  5046. }
  5047. #u353 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:196px;
  5052. width:66px;
  5053. height:35px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:12px;
  5059. color:#333333;
  5060. }
  5061. #u353 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u353_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u354_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:80px;
  5080. height:35px;
  5081. }
  5082. #u354 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:66px;
  5086. top:196px;
  5087. width:80px;
  5088. height:35px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#333333;
  5095. }
  5096. #u354 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u354_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. visibility:hidden;
  5108. }
  5109. #u355_img {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:110px;
  5115. height:35px;
  5116. }
  5117. #u355 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:146px;
  5121. top:196px;
  5122. width:110px;
  5123. height:35px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. color:#333333;
  5130. }
  5131. #u355 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 0px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u355_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u356_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:88px;
  5150. height:35px;
  5151. }
  5152. #u356 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:256px;
  5156. top:196px;
  5157. width:88px;
  5158. height:35px;
  5159. display:flex;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:12px;
  5164. color:#333333;
  5165. }
  5166. #u356 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u356_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u357_img {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:88px;
  5185. height:35px;
  5186. }
  5187. #u357 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:344px;
  5191. top:196px;
  5192. width:88px;
  5193. height:35px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. color:#333333;
  5200. }
  5201. #u357 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 0px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u357_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u358_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:140px;
  5220. height:35px;
  5221. }
  5222. #u358 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:432px;
  5226. top:196px;
  5227. width:140px;
  5228. height:35px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. color:#333333;
  5235. }
  5236. #u358 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u358_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u359_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:110px;
  5255. height:35px;
  5256. }
  5257. #u359 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:572px;
  5261. top:196px;
  5262. width:110px;
  5263. height:35px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#333333;
  5270. }
  5271. #u359 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 0px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u359_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u360_img {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:88px;
  5290. height:35px;
  5291. }
  5292. #u360 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:682px;
  5296. top:196px;
  5297. width:88px;
  5298. height:35px;
  5299. display:flex;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. color:#333333;
  5305. }
  5306. #u360 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u360_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. visibility:hidden;
  5318. }
  5319. #u361_img {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:66px;
  5325. height:35px;
  5326. }
  5327. #u361 {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:770px;
  5331. top:196px;
  5332. width:66px;
  5333. height:35px;
  5334. display:flex;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:12px;
  5339. color:#333333;
  5340. }
  5341. #u361 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 0px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u361_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u362_img {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:110px;
  5360. height:35px;
  5361. }
  5362. #u362 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:836px;
  5366. top:196px;
  5367. width:110px;
  5368. height:35px;
  5369. display:flex;
  5370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. font-size:12px;
  5374. color:#333333;
  5375. }
  5376. #u362 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:2px 2px 2px 0px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u362_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. #u363_img {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:110px;
  5395. height:35px;
  5396. }
  5397. #u363 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:946px;
  5401. top:196px;
  5402. width:110px;
  5403. height:35px;
  5404. display:flex;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:12px;
  5409. color:#333333;
  5410. }
  5411. #u363 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u363_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u364_img {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:152px;
  5430. height:35px;
  5431. }
  5432. #u364 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:1056px;
  5436. top:196px;
  5437. width:152px;
  5438. height:35px;
  5439. display:flex;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:12px;
  5444. color:#AAAAAA;
  5445. }
  5446. #u364 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 0px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u364_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u365_img {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:66px;
  5465. height:35px;
  5466. }
  5467. #u365 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:231px;
  5472. width:66px;
  5473. height:35px;
  5474. display:flex;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:12px;
  5479. color:#333333;
  5480. }
  5481. #u365 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 0px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u365_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. visibility:hidden;
  5493. }
  5494. #u366_img {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:80px;
  5500. height:35px;
  5501. }
  5502. #u366 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:66px;
  5506. top:231px;
  5507. width:80px;
  5508. height:35px;
  5509. display:flex;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:#333333;
  5515. }
  5516. #u366 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 0px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u366_text {
  5524. border-width:0px;
  5525. word-wrap:break-word;
  5526. text-transform:none;
  5527. visibility:hidden;
  5528. }
  5529. #u367_img {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:110px;
  5535. height:35px;
  5536. }
  5537. #u367 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:146px;
  5541. top:231px;
  5542. width:110px;
  5543. height:35px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. color:#333333;
  5550. }
  5551. #u367 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 0px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u367_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u368_img {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:88px;
  5570. height:35px;
  5571. }
  5572. #u368 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:256px;
  5576. top:231px;
  5577. width:88px;
  5578. height:35px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:12px;
  5584. color:#333333;
  5585. }
  5586. #u368 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 0px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u368_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. visibility:hidden;
  5598. }
  5599. #u369_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:88px;
  5605. height:35px;
  5606. }
  5607. #u369 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:344px;
  5611. top:231px;
  5612. width:88px;
  5613. height:35px;
  5614. display:flex;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. font-size:12px;
  5619. color:#333333;
  5620. }
  5621. #u369 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u369_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. visibility:hidden;
  5633. }
  5634. #u370_img {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:140px;
  5640. height:35px;
  5641. }
  5642. #u370 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:432px;
  5646. top:231px;
  5647. width:140px;
  5648. height:35px;
  5649. display:flex;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:12px;
  5654. color:#333333;
  5655. }
  5656. #u370 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u370_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. visibility:hidden;
  5668. }
  5669. #u371_img {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:110px;
  5675. height:35px;
  5676. }
  5677. #u371 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:572px;
  5681. top:231px;
  5682. width:110px;
  5683. height:35px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#333333;
  5690. }
  5691. #u371 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 0px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u371_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u372_img {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:88px;
  5710. height:35px;
  5711. }
  5712. #u372 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:682px;
  5716. top:231px;
  5717. width:88px;
  5718. height:35px;
  5719. display:flex;
  5720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:12px;
  5724. color:#333333;
  5725. }
  5726. #u372 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 0px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u372_text {
  5734. border-width:0px;
  5735. word-wrap:break-word;
  5736. text-transform:none;
  5737. visibility:hidden;
  5738. }
  5739. #u373_img {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:66px;
  5745. height:35px;
  5746. }
  5747. #u373 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:770px;
  5751. top:231px;
  5752. width:66px;
  5753. height:35px;
  5754. display:flex;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:12px;
  5759. color:#333333;
  5760. }
  5761. #u373 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 0px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u373_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u374_img {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:110px;
  5780. height:35px;
  5781. }
  5782. #u374 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:836px;
  5786. top:231px;
  5787. width:110px;
  5788. height:35px;
  5789. display:flex;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:12px;
  5794. color:#333333;
  5795. }
  5796. #u374 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 2px 2px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u374_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. visibility:hidden;
  5808. }
  5809. #u375_img {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:110px;
  5815. height:35px;
  5816. }
  5817. #u375 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:946px;
  5821. top:231px;
  5822. width:110px;
  5823. height:35px;
  5824. display:flex;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. color:#333333;
  5830. }
  5831. #u375 .text {
  5832. position:absolute;
  5833. align-self:center;
  5834. padding:2px 2px 2px 0px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u375_text {
  5839. border-width:0px;
  5840. word-wrap:break-word;
  5841. text-transform:none;
  5842. visibility:hidden;
  5843. }
  5844. #u376_img {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:152px;
  5850. height:35px;
  5851. }
  5852. #u376 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:1056px;
  5856. top:231px;
  5857. width:152px;
  5858. height:35px;
  5859. display:flex;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:12px;
  5864. color:#333333;
  5865. }
  5866. #u376 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:2px 2px 2px 0px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u376_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u377_img {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:66px;
  5885. height:32px;
  5886. }
  5887. #u377 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:266px;
  5892. width:66px;
  5893. height:32px;
  5894. display:flex;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:12px;
  5899. color:#333333;
  5900. }
  5901. #u377 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 0px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u377_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u378_img {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:80px;
  5920. height:32px;
  5921. }
  5922. #u378 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:66px;
  5926. top:266px;
  5927. width:80px;
  5928. height:32px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:12px;
  5934. color:#333333;
  5935. }
  5936. #u378 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u378_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. visibility:hidden;
  5948. }
  5949. #u379_img {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:110px;
  5955. height:32px;
  5956. }
  5957. #u379 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:146px;
  5961. top:266px;
  5962. width:110px;
  5963. height:32px;
  5964. display:flex;
  5965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:12px;
  5969. color:#333333;
  5970. }
  5971. #u379 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 0px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u379_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. visibility:hidden;
  5983. }
  5984. #u380_img {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:88px;
  5990. height:32px;
  5991. }
  5992. #u380 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:256px;
  5996. top:266px;
  5997. width:88px;
  5998. height:32px;
  5999. display:flex;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:12px;
  6004. color:#333333;
  6005. }
  6006. #u380 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 2px 2px 0px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u380_text {
  6014. border-width:0px;
  6015. word-wrap:break-word;
  6016. text-transform:none;
  6017. visibility:hidden;
  6018. }
  6019. #u381_img {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:88px;
  6025. height:32px;
  6026. }
  6027. #u381 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:344px;
  6031. top:266px;
  6032. width:88px;
  6033. height:32px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. color:#333333;
  6040. }
  6041. #u381 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:2px 2px 2px 0px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u381_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. visibility:hidden;
  6053. }
  6054. #u382_img {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:140px;
  6060. height:32px;
  6061. }
  6062. #u382 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:432px;
  6066. top:266px;
  6067. width:140px;
  6068. height:32px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:12px;
  6074. color:#333333;
  6075. }
  6076. #u382 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u382_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u383_img {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:110px;
  6095. height:32px;
  6096. }
  6097. #u383 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:572px;
  6101. top:266px;
  6102. width:110px;
  6103. height:32px;
  6104. display:flex;
  6105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:12px;
  6109. color:#333333;
  6110. }
  6111. #u383 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 0px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u383_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. visibility:hidden;
  6123. }
  6124. #u384_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:88px;
  6130. height:32px;
  6131. }
  6132. #u384 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:682px;
  6136. top:266px;
  6137. width:88px;
  6138. height:32px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:12px;
  6144. color:#333333;
  6145. }
  6146. #u384 .text {
  6147. position:absolute;
  6148. align-self:center;
  6149. padding:2px 2px 2px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u384_text {
  6154. border-width:0px;
  6155. word-wrap:break-word;
  6156. text-transform:none;
  6157. visibility:hidden;
  6158. }
  6159. #u385_img {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:66px;
  6165. height:32px;
  6166. }
  6167. #u385 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:770px;
  6171. top:266px;
  6172. width:66px;
  6173. height:32px;
  6174. display:flex;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:12px;
  6179. color:#333333;
  6180. }
  6181. #u385 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 2px 2px 0px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u385_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u386_img {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:110px;
  6200. height:32px;
  6201. }
  6202. #u386 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:836px;
  6206. top:266px;
  6207. width:110px;
  6208. height:32px;
  6209. display:flex;
  6210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:12px;
  6214. color:#333333;
  6215. }
  6216. #u386 .text {
  6217. position:absolute;
  6218. align-self:center;
  6219. padding:2px 2px 2px 0px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u386_text {
  6224. border-width:0px;
  6225. word-wrap:break-word;
  6226. text-transform:none;
  6227. visibility:hidden;
  6228. }
  6229. #u387_img {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:110px;
  6235. height:32px;
  6236. }
  6237. #u387 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:946px;
  6241. top:266px;
  6242. width:110px;
  6243. height:32px;
  6244. display:flex;
  6245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:12px;
  6249. color:#333333;
  6250. }
  6251. #u387 .text {
  6252. position:absolute;
  6253. align-self:center;
  6254. padding:2px 2px 2px 0px;
  6255. box-sizing:border-box;
  6256. width:100%;
  6257. }
  6258. #u387_text {
  6259. border-width:0px;
  6260. word-wrap:break-word;
  6261. text-transform:none;
  6262. visibility:hidden;
  6263. }
  6264. #u388_img {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:152px;
  6270. height:32px;
  6271. }
  6272. #u388 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:1056px;
  6276. top:266px;
  6277. width:152px;
  6278. height:32px;
  6279. display:flex;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:12px;
  6284. color:#333333;
  6285. }
  6286. #u388 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 0px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u388_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u389_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:66px;
  6305. height:30px;
  6306. }
  6307. #u389 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:298px;
  6312. width:66px;
  6313. height:30px;
  6314. display:flex;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:12px;
  6319. color:#333333;
  6320. }
  6321. #u389 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 2px 2px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u389_text {
  6329. border-width:0px;
  6330. word-wrap:break-word;
  6331. text-transform:none;
  6332. visibility:hidden;
  6333. }
  6334. #u390_img {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:80px;
  6340. height:30px;
  6341. }
  6342. #u390 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:66px;
  6346. top:298px;
  6347. width:80px;
  6348. height:30px;
  6349. display:flex;
  6350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:12px;
  6354. color:#333333;
  6355. }
  6356. #u390 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:2px 2px 2px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u390_text {
  6364. border-width:0px;
  6365. word-wrap:break-word;
  6366. text-transform:none;
  6367. visibility:hidden;
  6368. }
  6369. #u391_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:110px;
  6375. height:30px;
  6376. }
  6377. #u391 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:146px;
  6381. top:298px;
  6382. width:110px;
  6383. height:30px;
  6384. display:flex;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:12px;
  6389. color:#333333;
  6390. }
  6391. #u391 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:2px 2px 2px 0px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u391_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. visibility:hidden;
  6403. }
  6404. #u392_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:88px;
  6410. height:30px;
  6411. }
  6412. #u392 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:256px;
  6416. top:298px;
  6417. width:88px;
  6418. height:30px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:12px;
  6424. color:#333333;
  6425. }
  6426. #u392 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:2px 2px 2px 0px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u392_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. visibility:hidden;
  6438. }
  6439. #u393_img {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:88px;
  6445. height:30px;
  6446. }
  6447. #u393 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:344px;
  6451. top:298px;
  6452. width:88px;
  6453. height:30px;
  6454. display:flex;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:12px;
  6459. color:#333333;
  6460. }
  6461. #u393 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 0px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u393_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u394_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:140px;
  6480. height:30px;
  6481. }
  6482. #u394 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:432px;
  6486. top:298px;
  6487. width:140px;
  6488. height:30px;
  6489. display:flex;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:12px;
  6494. color:#333333;
  6495. }
  6496. #u394 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 2px 2px 0px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u394_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u395_img {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:110px;
  6515. height:30px;
  6516. }
  6517. #u395 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:572px;
  6521. top:298px;
  6522. width:110px;
  6523. height:30px;
  6524. display:flex;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:12px;
  6529. color:#333333;
  6530. }
  6531. #u395 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:2px 2px 2px 0px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u395_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u396_img {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:88px;
  6550. height:30px;
  6551. }
  6552. #u396 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:682px;
  6556. top:298px;
  6557. width:88px;
  6558. height:30px;
  6559. display:flex;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#333333;
  6565. }
  6566. #u396 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:2px 2px 2px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u396_text {
  6574. border-width:0px;
  6575. word-wrap:break-word;
  6576. text-transform:none;
  6577. visibility:hidden;
  6578. }
  6579. #u397_img {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:66px;
  6585. height:30px;
  6586. }
  6587. #u397 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:770px;
  6591. top:298px;
  6592. width:66px;
  6593. height:30px;
  6594. display:flex;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:12px;
  6599. color:#333333;
  6600. }
  6601. #u397 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:2px 2px 2px 0px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u397_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u398_img {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:110px;
  6620. height:30px;
  6621. }
  6622. #u398 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:836px;
  6626. top:298px;
  6627. width:110px;
  6628. height:30px;
  6629. display:flex;
  6630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:12px;
  6634. color:#333333;
  6635. }
  6636. #u398 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 0px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u398_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u399_img {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:110px;
  6655. height:30px;
  6656. }
  6657. #u399 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:946px;
  6661. top:298px;
  6662. width:110px;
  6663. height:30px;
  6664. display:flex;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:12px;
  6669. color:#333333;
  6670. }
  6671. #u399 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 0px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u399_text {
  6679. border-width:0px;
  6680. word-wrap:break-word;
  6681. text-transform:none;
  6682. visibility:hidden;
  6683. }
  6684. #u400_img {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:152px;
  6690. height:30px;
  6691. }
  6692. #u400 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:1056px;
  6696. top:298px;
  6697. width:152px;
  6698. height:30px;
  6699. display:flex;
  6700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:12px;
  6704. color:#333333;
  6705. }
  6706. #u400 .text {
  6707. position:absolute;
  6708. align-self:center;
  6709. padding:2px 2px 2px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u400_text {
  6714. border-width:0px;
  6715. word-wrap:break-word;
  6716. text-transform:none;
  6717. visibility:hidden;
  6718. }
  6719. #u401 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:0px;
  6725. height:0px;
  6726. }
  6727. #u402_div {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:30px;
  6733. height:17px;
  6734. background:inherit;
  6735. background-color:rgba(107, 107, 107, 1);
  6736. border:none;
  6737. border-radius:0px;
  6738. -moz-box-shadow:none;
  6739. -webkit-box-shadow:none;
  6740. box-shadow:none;
  6741. font-family:'Microsoft YaHei', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:10px;
  6745. color:#FFFFFF;
  6746. }
  6747. #u402 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:815px;
  6751. top:210px;
  6752. width:30px;
  6753. height:17px;
  6754. display:flex;
  6755. font-family:'Microsoft YaHei', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:10px;
  6759. color:#FFFFFF;
  6760. }
  6761. #u402 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 2px 2px 2px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u402_text {
  6769. border-width:0px;
  6770. word-wrap:break-word;
  6771. text-transform:none;
  6772. }
  6773. #u403_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:72px;
  6779. height:24px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 0);
  6782. border:none;
  6783. border-radius:0px;
  6784. -moz-box-shadow:none;
  6785. -webkit-box-shadow:none;
  6786. box-shadow:none;
  6787. font-size:12px;
  6788. text-align:center;
  6789. line-height:24px;
  6790. }
  6791. #u403 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:849px;
  6795. top:207px;
  6796. width:72px;
  6797. height:24px;
  6798. display:flex;
  6799. font-size:12px;
  6800. text-align:center;
  6801. line-height:24px;
  6802. }
  6803. #u403 .text {
  6804. position:absolute;
  6805. align-self:flex-start;
  6806. padding:0px 0px 0px 0px;
  6807. box-sizing:border-box;
  6808. width:100%;
  6809. }
  6810. #u403_text {
  6811. border-width:0px;
  6812. white-space:nowrap;
  6813. text-transform:none;
  6814. }
  6815. #u404_div {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:30px;
  6821. height:17px;
  6822. background:inherit;
  6823. background-color:rgba(107, 107, 107, 1);
  6824. border:none;
  6825. border-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:10px;
  6833. color:#FFFFFF;
  6834. }
  6835. #u404 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:815px;
  6839. top:247px;
  6840. width:30px;
  6841. height:17px;
  6842. display:flex;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:10px;
  6847. color:#FFFFFF;
  6848. }
  6849. #u404 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:2px 2px 2px 2px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u404_text {
  6857. border-width:0px;
  6858. word-wrap:break-word;
  6859. text-transform:none;
  6860. }
  6861. #u405_div {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:65px;
  6867. height:24px;
  6868. background:inherit;
  6869. background-color:rgba(255, 255, 255, 0);
  6870. border:none;
  6871. border-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-size:12px;
  6876. text-align:center;
  6877. line-height:24px;
  6878. }
  6879. #u405 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:853px;
  6883. top:244px;
  6884. width:65px;
  6885. height:24px;
  6886. display:flex;
  6887. font-size:12px;
  6888. text-align:center;
  6889. line-height:24px;
  6890. }
  6891. #u405 .text {
  6892. position:absolute;
  6893. align-self:flex-start;
  6894. padding:0px 0px 0px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u405_text {
  6899. border-width:0px;
  6900. white-space:nowrap;
  6901. text-transform:none;
  6902. }
  6903. #u406_div {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:30px;
  6909. height:17px;
  6910. background:inherit;
  6911. background-color:rgba(107, 107, 107, 1);
  6912. border:none;
  6913. border-radius:0px;
  6914. -moz-box-shadow:none;
  6915. -webkit-box-shadow:none;
  6916. box-shadow:none;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:10px;
  6921. color:#FFFFFF;
  6922. }
  6923. #u406 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:815px;
  6927. top:288px;
  6928. width:30px;
  6929. height:17px;
  6930. display:flex;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:10px;
  6935. color:#FFFFFF;
  6936. }
  6937. #u406 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 2px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u406_text {
  6945. border-width:0px;
  6946. word-wrap:break-word;
  6947. text-transform:none;
  6948. }
  6949. #u407_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:65px;
  6955. height:24px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 0);
  6958. border:none;
  6959. border-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-size:12px;
  6964. text-align:center;
  6965. line-height:24px;
  6966. }
  6967. #u407 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:853px;
  6971. top:285px;
  6972. width:65px;
  6973. height:24px;
  6974. display:flex;
  6975. font-size:12px;
  6976. text-align:center;
  6977. line-height:24px;
  6978. }
  6979. #u407 .text {
  6980. position:absolute;
  6981. align-self:flex-start;
  6982. padding:0px 0px 0px 0px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u407_text {
  6987. border-width:0px;
  6988. white-space:nowrap;
  6989. text-transform:none;
  6990. }
  6991. #u408 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:0px;
  6997. height:0px;
  6998. }
  6999. #u409_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:140px;
  7005. height:30px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 1);
  7008. box-sizing:border-box;
  7009. border-width:1px;
  7010. border-style:solid;
  7011. border-color:rgba(215, 215, 215, 1);
  7012. border-radius:4px;
  7013. -moz-box-shadow:none;
  7014. -webkit-box-shadow:none;
  7015. box-shadow:none;
  7016. font-size:11px;
  7017. }
  7018. #u409 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:365px;
  7022. top:111px;
  7023. width:140px;
  7024. height:30px;
  7025. display:flex;
  7026. font-size:11px;
  7027. }
  7028. #u409 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:2px 2px 2px 2px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u409_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. visibility:hidden;
  7040. }
  7041. #u410_input {
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:126px;
  7046. height:23px;
  7047. padding:2px 2px 2px 2px;
  7048. font-family:'ArialMT', 'Arial', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:11px;
  7052. letter-spacing:normal;
  7053. color:#AAAAAA;
  7054. vertical-align:none;
  7055. text-align:left;
  7056. text-transform:none;
  7057. background-color:transparent;
  7058. border-color:transparent;
  7059. }
  7060. #u410_input.disabled {
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:126px;
  7065. height:23px;
  7066. padding:2px 2px 2px 2px;
  7067. font-family:'ArialMT', 'Arial', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:11px;
  7071. letter-spacing:normal;
  7072. color:#AAAAAA;
  7073. vertical-align:none;
  7074. text-align:left;
  7075. text-transform:none;
  7076. background-color:transparent;
  7077. border-color:transparent;
  7078. }
  7079. #u410_div {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:126px;
  7085. height:23px;
  7086. background:inherit;
  7087. background-color:rgba(255, 255, 255, 1);
  7088. border:none;
  7089. border-radius:0px;
  7090. -moz-box-shadow:none;
  7091. -webkit-box-shadow:none;
  7092. box-shadow:none;
  7093. font-size:11px;
  7094. color:#AAAAAA;
  7095. }
  7096. #u410 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:372px;
  7100. top:113px;
  7101. width:126px;
  7102. height:23px;
  7103. display:flex;
  7104. font-size:11px;
  7105. color:#AAAAAA;
  7106. }
  7107. #u410 .text {
  7108. position:absolute;
  7109. align-self:flex-start;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u410_div.disabled {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:126px;
  7120. height:23px;
  7121. background:inherit;
  7122. background-color:rgba(240, 240, 240, 1);
  7123. border:none;
  7124. border-radius:0px;
  7125. -moz-box-shadow:none;
  7126. -webkit-box-shadow:none;
  7127. box-shadow:none;
  7128. font-size:11px;
  7129. color:#AAAAAA;
  7130. }
  7131. #u410.disabled {
  7132. }
  7133. .u410_input_option {
  7134. font-size:11px;
  7135. }
  7136. #u411_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:65px;
  7142. height:22px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 0);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:16px;
  7154. }
  7155. #u411 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:146px;
  7159. top:451px;
  7160. width:65px;
  7161. height:22px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:16px;
  7167. }
  7168. #u411 .text {
  7169. position:absolute;
  7170. align-self:flex-start;
  7171. padding:0px 0px 0px 0px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u411_text {
  7176. border-width:0px;
  7177. white-space:nowrap;
  7178. text-transform:none;
  7179. }
  7180. #u412_div {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:65px;
  7186. height:22px;
  7187. background:inherit;
  7188. background-color:rgba(255, 255, 255, 0);
  7189. border:none;
  7190. border-radius:0px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u412 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:146px;
  7203. top:493px;
  7204. width:65px;
  7205. height:22px;
  7206. display:flex;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:16px;
  7211. }
  7212. #u412 .text {
  7213. position:absolute;
  7214. align-self:flex-start;
  7215. padding:0px 0px 0px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u412_text {
  7220. border-width:0px;
  7221. white-space:nowrap;
  7222. text-transform:none;
  7223. }
  7224. #u413_img {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:201px;
  7230. height:2px;
  7231. }
  7232. #u413 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:120px;
  7236. top:393px;
  7237. width:200px;
  7238. height:1px;
  7239. display:flex;
  7240. }
  7241. #u413 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 2px 2px 2px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u413_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. visibility:hidden;
  7253. }
  7254. #u414_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:49px;
  7260. height:17px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 0);
  7263. border:none;
  7264. border-radius:0px;
  7265. -moz-box-shadow:none;
  7266. -webkit-box-shadow:none;
  7267. box-shadow:none;
  7268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:12px;
  7272. color:#AAAAAA;
  7273. }
  7274. #u414 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:146px;
  7278. top:414px;
  7279. width:49px;
  7280. height:17px;
  7281. display:flex;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:12px;
  7286. color:#AAAAAA;
  7287. }
  7288. #u414 .text {
  7289. position:absolute;
  7290. align-self:flex-start;
  7291. padding:0px 0px 0px 0px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u414_text {
  7296. border-width:0px;
  7297. white-space:nowrap;
  7298. text-transform:none;
  7299. }