styles.css 126 KB

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