styles.css 131 KB

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